Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions sdk/mariadb/arm-mariadb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,3 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
## Related projects

- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/mariadb/arm-mariadb/README.png)
4 changes: 2 additions & 2 deletions sdk/mariadb/arm-mariadb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "1.3.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^1.3.2",
"@azure/ms-rest-js": "^1.6.0",
"@azure/ms-rest-js": "^1.8.1",
"tslib": "^1.9.3"
},
"keywords": [
Expand All @@ -26,7 +26,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.4.9"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/sdk/mariadb/arm-mariadb",
"homepage": "https://github.com/azure/azure-sdk-for-js",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-js.git"
Expand Down
12 changes: 12 additions & 0 deletions sdk/mariadb/arm-mariadb/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ export interface StorageProfile {
* Max storage allowed for a server.
*/
storageMB?: number;
/**
* Enable Storage Auto Grow. Possible values include: 'Enabled', 'Disabled'
*/
storageAutogrow?: StorageAutogrow;
}

/**
Expand Down Expand Up @@ -742,6 +746,14 @@ export type ServerState = 'Ready' | 'Dropping' | 'Disabled';
*/
export type GeoRedundantBackup = 'Enabled' | 'Disabled';

/**
* Defines values for StorageAutogrow.
* Possible values include: 'Enabled', 'Disabled'
* @readonly
* @enum {string}
*/
export type StorageAutogrow = 'Enabled' | 'Disabled';

/**
* Defines values for SkuTier.
* Possible values include: 'Basic', 'GeneralPurpose', 'MemoryOptimized'
Expand Down
6 changes: 6 additions & 0 deletions sdk/mariadb/arm-mariadb/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ export const StorageProfile: msRest.CompositeMapper = {
type: {
name: "Number"
}
},
storageAutogrow: {
serializedName: "storageAutogrow",
type: {
name: "String"
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/mysql/arm-mysql/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
11 changes: 4 additions & 7 deletions sdk/mysql/arm-mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This package contains an isomorphic SDK for MySQLManagementClient.

### How to Install

```
```bash
npm install @azure/arm-mysql
```

Expand All @@ -19,13 +19,13 @@ npm install @azure/arm-mysql

##### Install @azure/ms-rest-nodeauth

```
```bash
npm install @azure/ms-rest-nodeauth
```

##### Sample code

```ts
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
Expand All @@ -49,7 +49,7 @@ msRestNodeAuth.interactiveLogin().then((creds) => {

##### Install @azure/ms-rest-browserauth

```
```bash
npm install @azure/ms-rest-browserauth
```

Expand Down Expand Up @@ -98,6 +98,3 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
## Related projects

- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/mysql/arm-mysql/README.png)
10 changes: 6 additions & 4 deletions sdk/mysql/arm-mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "MySQLManagementClient Library with typescript type definitions for node.js and browser.",
"version": "3.2.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^1.1.0",
"@azure/ms-rest-js": "^1.1.0",
"@azure/ms-rest-azure-js": "^1.3.2",
"@azure/ms-rest-js": "^1.8.1",
"tslib": "^1.9.3"
},
"keywords": [
Expand All @@ -23,9 +23,10 @@
"typescript": "^3.1.1",
"rollup": "^0.66.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.4.9"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/sdk/mysql/arm-mysql",
"homepage": "https://github.com/azure/azure-sdk-for-js",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-js.git"
Expand All @@ -43,6 +44,7 @@
"esm/**/*.d.ts",
"esm/**/*.d.ts.map",
"src/**/*.ts",
"README.md",
"rollup.config.js",
"tsconfig.json"
],
Expand All @@ -52,5 +54,5 @@
"prepack": "npm install && npm run build"
},
"sideEffects": false,
"authPublish": true
"autoPublish": true
}
22 changes: 14 additions & 8 deletions sdk/mysql/arm-mysql/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import rollup from "rollup";
import nodeResolve from "rollup-plugin-node-resolve";
import sourcemaps from "rollup-plugin-sourcemaps";

/**
* @type {import('rollup').RollupFileOptions}
* @type {rollup.RollupFileOptions}
*/
const config = {
input: './esm/mySQLManagementClient.js',
external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"],
input: "./esm/mySQLManagementClient.js",
external: [
"@azure/ms-rest-js",
"@azure/ms-rest-azure-js"
],
output: {
file: "./dist/arm-mysql.js",
format: "umd",
Expand All @@ -16,16 +22,16 @@ const config = {
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/`
},
plugins: [
nodeResolve({ module: true })
nodeResolve({ module: true }),
sourcemaps()
]
};

export default config;
11 changes: 4 additions & 7 deletions sdk/mysql/arm-mysql/src/models/checkNameAvailabilityMappers.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
discriminators,
NameAvailabilityRequest,
CloudError,
NameAvailability,
CloudError
NameAvailabilityRequest
} from "../models/mappers";

23 changes: 10 additions & 13 deletions sdk/mysql/arm-mysql/src/models/configurationsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
discriminators,
Configuration,
ProxyResource,
BaseResource,
CloudError,
Configuration,
ConfigurationListResult,
TrackedResource,
Database,
FirewallRule,
LogFile,
ProxyResource,
Server,
ServerSecurityAlertPolicy,
Sku,
StorageProfile,
FirewallRule,
VirtualNetworkRule,
Database,
LogFile,
ServerSecurityAlertPolicy
TrackedResource,
VirtualNetworkRule
} from "../models/mappers";

23 changes: 10 additions & 13 deletions sdk/mysql/arm-mysql/src/models/databasesMappers.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
discriminators,
Database,
ProxyResource,
BaseResource,
CloudError,
Configuration,
Database,
DatabaseListResult,
TrackedResource,
FirewallRule,
LogFile,
ProxyResource,
Server,
ServerSecurityAlertPolicy,
Sku,
StorageProfile,
FirewallRule,
VirtualNetworkRule,
Configuration,
LogFile,
ServerSecurityAlertPolicy
TrackedResource,
VirtualNetworkRule
} from "../models/mappers";

23 changes: 10 additions & 13 deletions sdk/mysql/arm-mysql/src/models/firewallRulesMappers.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
discriminators,
FirewallRule,
ProxyResource,
BaseResource,
CloudError,
Configuration,
Database,
FirewallRule,
FirewallRuleListResult,
TrackedResource,
LogFile,
ProxyResource,
Server,
ServerSecurityAlertPolicy,
Sku,
StorageProfile,
VirtualNetworkRule,
Database,
Configuration,
LogFile,
ServerSecurityAlertPolicy
TrackedResource,
VirtualNetworkRule
} from "../models/mappers";

Loading