diff --git a/lib/services/cosmosdbManagement/LICENSE.txt b/lib/services/cosmosdbManagement/LICENSE.txt index a70e8cf660..5431ba98b9 100644 --- a/lib/services/cosmosdbManagement/LICENSE.txt +++ b/lib/services/cosmosdbManagement/LICENSE.txt @@ -1,21 +1,21 @@ -The MIT License (MIT) - -Copyright (c) 2018 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 -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +The MIT License (MIT) + +Copyright (c) 2018 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 +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/lib/services/cosmosdbManagement/README.md b/lib/services/cosmosdbManagement/README.md index f0a84e6141..3bcee1efce 100644 --- a/lib/services/cosmosdbManagement/README.md +++ b/lib/services/cosmosdbManagement/README.md @@ -1,42 +1,42 @@ ---- -uid: azure-arm-cosmosdb -summary: *content - ---- -# Microsoft Azure SDK for Node.js - CosmosDBManagementClient -This project provides a Node.js package for accessing Azure. Right now it supports: -- **Node.js version 6.x.x or higher** - -## Features - - -## How to Install - -```bash -npm install azure-arm-cosmosdb -``` - -## How to use - -### Authentication, client creation and get databaseAccounts as an example. - -```javascript -const msRestAzure = require("ms-rest-azure"); -const CosmosDBManagementClient = require("azure-arm-cosmosdb"); -msRestAzure.interactiveLogin().then((creds) => { - const subscriptionId = ""; - const client = new CosmosDBManagementClient(creds, subscriptionId); - const resourceGroupName = "testresourceGroupName"; - const accountName = "testaccountName"; - return client.databaseAccounts.get(resourceGroupName, accountName).then((result) => { - console.log("The result is:"); - console.log(result); - }); -}).catch((err) => { - console.log('An error ocurred:'); - console.dir(err, {depth: null, colors: true}); -}); - -## Related projects - -- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node) +--- +uid: azure-arm-cosmosdb +summary: *content + +--- +# Microsoft Azure SDK for Node.js - CosmosDBManagementClient +This project provides a Node.js package for accessing Azure. Right now it supports: +- **Node.js version 6.x.x or higher** + +## Features + + +## How to Install + +```bash +npm install azure-arm-cosmosdb +``` + +## How to use + +### Authentication, client creation and get databaseAccounts as an example. + +```javascript +const msRestAzure = require("ms-rest-azure"); +const CosmosDBManagementClient = require("azure-arm-cosmosdb"); +msRestAzure.interactiveLogin().then((creds) => { + const subscriptionId = ""; + const client = new CosmosDBManagementClient(creds, subscriptionId); + const resourceGroupName = "testresourceGroupName"; + const accountName = "testaccountName"; + return client.databaseAccounts.get(resourceGroupName, accountName).then((result) => { + console.log("The result is:"); + console.log(result); + }); +}).catch((err) => { + console.log('An error occurred:'); + console.dir(err, {depth: null, colors: true}); +}); + +## Related projects + +- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node) diff --git a/lib/services/cosmosdbManagement/lib/models/databaseAccount.js b/lib/services/cosmosdbManagement/lib/models/databaseAccount.js index 8e20ef2275..64a3d7a2f4 100644 --- a/lib/services/cosmosdbManagement/lib/models/databaseAccount.js +++ b/lib/services/cosmosdbManagement/lib/models/databaseAccount.js @@ -35,6 +35,8 @@ class DatabaseAccount extends models['Resource'] { * included as the allowed list of client IPs for a given database account. * IP addresses/ranges must be comma separated and must not contain any * spaces. + * @member {boolean} [isVirtualNetworkFilterEnabled] Flag to indicate whether + * to enable/disable Virtual Network ACL rules. * @member {boolean} [enableAutomaticFailover] Enables automatic failover of * the write region in the rare event that the region is unavailable due to * an outage. Automatic failover will result in a new write region for the @@ -64,6 +66,8 @@ class DatabaseAccount extends models['Resource'] { * locations enabled for the Cosmos DB account. * @member {array} [failoverPolicies] An array that contains the regions * ordered by their failover priorities. + * @member {array} [virtualNetworkRules] List of Virtual Network ACL rules + * configured for the Cosmos DB account. */ constructor() { super(); @@ -167,6 +171,13 @@ class DatabaseAccount extends models['Resource'] { name: 'String' } }, + isVirtualNetworkFilterEnabled: { + required: false, + serializedName: 'properties.isVirtualNetworkFilterEnabled', + type: { + name: 'Boolean' + } + }, enableAutomaticFailover: { required: false, serializedName: 'properties.enableAutomaticFailover', @@ -244,6 +255,21 @@ class DatabaseAccount extends models['Resource'] { } } } + }, + virtualNetworkRules: { + required: false, + serializedName: 'properties.virtualNetworkRules', + type: { + name: 'Sequence', + element: { + required: false, + serializedName: 'VirtualNetworkRuleElementType', + type: { + name: 'Composite', + className: 'VirtualNetworkRule' + } + } + } } } } diff --git a/lib/services/cosmosdbManagement/lib/models/databaseAccountCreateUpdateParameters.js b/lib/services/cosmosdbManagement/lib/models/databaseAccountCreateUpdateParameters.js index 6980ed3484..3640bae083 100644 --- a/lib/services/cosmosdbManagement/lib/models/databaseAccountCreateUpdateParameters.js +++ b/lib/services/cosmosdbManagement/lib/models/databaseAccountCreateUpdateParameters.js @@ -47,6 +47,8 @@ class DatabaseAccountCreateUpdateParameters extends models['Resource'] { * included as the allowed list of client IPs for a given database account. * IP addresses/ranges must be comma separated and must not contain any * spaces. + * @member {boolean} [isVirtualNetworkFilterEnabled] Flag to indicate whether + * to enable/disable Virtual Network ACL rules. * @member {boolean} [enableAutomaticFailover] Enables automatic failover of * the write region in the rare event that the region is unavailable due to * an outage. Automatic failover will result in a new write region for the @@ -54,6 +56,8 @@ class DatabaseAccountCreateUpdateParameters extends models['Resource'] { * account. * @member {array} [capabilities] List of Cosmos DB capabilities for the * account + * @member {array} [virtualNetworkRules] List of Virtual Network ACL rules + * configured for the Cosmos DB account. */ constructor() { super(); @@ -165,6 +169,13 @@ class DatabaseAccountCreateUpdateParameters extends models['Resource'] { name: 'String' } }, + isVirtualNetworkFilterEnabled: { + required: false, + serializedName: 'properties.isVirtualNetworkFilterEnabled', + type: { + name: 'Boolean' + } + }, enableAutomaticFailover: { required: false, serializedName: 'properties.enableAutomaticFailover', @@ -186,6 +197,21 @@ class DatabaseAccountCreateUpdateParameters extends models['Resource'] { } } } + }, + virtualNetworkRules: { + required: false, + serializedName: 'properties.virtualNetworkRules', + type: { + name: 'Sequence', + element: { + required: false, + serializedName: 'VirtualNetworkRuleElementType', + type: { + name: 'Composite', + className: 'VirtualNetworkRule' + } + } + } } } } diff --git a/lib/services/cosmosdbManagement/lib/models/index.d.ts b/lib/services/cosmosdbManagement/lib/models/index.d.ts index eed218fe12..e9a69fa5b6 100644 --- a/lib/services/cosmosdbManagement/lib/models/index.d.ts +++ b/lib/services/cosmosdbManagement/lib/models/index.d.ts @@ -102,6 +102,19 @@ export interface FailoverPolicy { failoverPriority?: number; } +/** + * @class + * Initializes a new instance of the VirtualNetworkRule class. + * @constructor + * Virtual Network ACL Rule object + * + * @member {string} [id] Resource ID of a subnet, for example: + * /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + */ +export interface VirtualNetworkRule { + id?: string; +} + /** * @class * Initializes a new instance of the Resource class. @@ -143,6 +156,8 @@ export interface Resource extends BaseResource { * specifies the set of IP addresses or IP address ranges in CIDR form to be * included as the allowed list of client IPs for a given database account. IP * addresses/ranges must be comma separated and must not contain any spaces. + * @member {boolean} [isVirtualNetworkFilterEnabled] Flag to indicate whether + * to enable/disable Virtual Network ACL rules. * @member {boolean} [enableAutomaticFailover] Enables automatic failover of * the write region in the rare event that the region is unavailable due to an * outage. Automatic failover will result in a new write region for the account @@ -170,6 +185,8 @@ export interface Resource extends BaseResource { * enabled for the Cosmos DB account. * @member {array} [failoverPolicies] An array that contains the regions * ordered by their failover priorities. + * @member {array} [virtualNetworkRules] List of Virtual Network ACL rules + * configured for the Cosmos DB account. */ export interface DatabaseAccount extends Resource { kind?: string; @@ -177,12 +194,14 @@ export interface DatabaseAccount extends Resource { readonly documentEndpoint?: string; readonly databaseAccountOfferType?: string; ipRangeFilter?: string; + isVirtualNetworkFilterEnabled?: boolean; enableAutomaticFailover?: boolean; consistencyPolicy?: ConsistencyPolicy; capabilities?: Capability[]; readonly writeLocations?: Location[]; readonly readLocations?: Location[]; readonly failoverPolicies?: FailoverPolicy[]; + virtualNetworkRules?: VirtualNetworkRule[]; } /** @@ -227,20 +246,26 @@ export interface FailoverPolicies { * specifies the set of IP addresses or IP address ranges in CIDR form to be * included as the allowed list of client IPs for a given database account. IP * addresses/ranges must be comma separated and must not contain any spaces. + * @member {boolean} [isVirtualNetworkFilterEnabled] Flag to indicate whether + * to enable/disable Virtual Network ACL rules. * @member {boolean} [enableAutomaticFailover] Enables automatic failover of * the write region in the rare event that the region is unavailable due to an * outage. Automatic failover will result in a new write region for the account * and is chosen based on the failover priorities configured for the account. * @member {array} [capabilities] List of Cosmos DB capabilities for the * account + * @member {array} [virtualNetworkRules] List of Virtual Network ACL rules + * configured for the Cosmos DB account. */ export interface DatabaseAccountCreateUpdateParameters extends Resource { kind?: string; consistencyPolicy?: ConsistencyPolicy; locations: Location[]; ipRangeFilter?: string; + isVirtualNetworkFilterEnabled?: boolean; enableAutomaticFailover?: boolean; capabilities?: Capability[]; + virtualNetworkRules?: VirtualNetworkRule[]; } /** diff --git a/lib/services/cosmosdbManagement/lib/models/index.js b/lib/services/cosmosdbManagement/lib/models/index.js index e4dcac5f25..3436075692 100644 --- a/lib/services/cosmosdbManagement/lib/models/index.js +++ b/lib/services/cosmosdbManagement/lib/models/index.js @@ -22,6 +22,7 @@ exports.ConsistencyPolicy = require('./consistencyPolicy'); exports.Capability = require('./capability'); exports.Location = require('./location'); exports.FailoverPolicy = require('./failoverPolicy'); +exports.VirtualNetworkRule = require('./virtualNetworkRule'); exports.Resource = require('./resource'); exports.DatabaseAccount = require('./databaseAccount'); exports.FailoverPolicies = require('./failoverPolicies'); diff --git a/lib/services/cosmosdbManagement/lib/models/virtualNetworkRule.js b/lib/services/cosmosdbManagement/lib/models/virtualNetworkRule.js new file mode 100644 index 0000000000..787449b51a --- /dev/null +++ b/lib/services/cosmosdbManagement/lib/models/virtualNetworkRule.js @@ -0,0 +1,53 @@ +/* + * Copyright (c) Microsoft Corporation. All rights reserved. + * 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. + */ + +'use strict'; + +/** + * Virtual Network ACL Rule object + * + */ +class VirtualNetworkRule { + /** + * Create a VirtualNetworkRule. + * @member {string} [id] Resource ID of a subnet, for example: + * /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{virtualNetworkName}/subnets/{subnetName}. + */ + constructor() { + } + + /** + * Defines the metadata of VirtualNetworkRule + * + * @returns {object} metadata of VirtualNetworkRule + * + */ + mapper() { + return { + required: false, + serializedName: 'VirtualNetworkRule', + type: { + name: 'Composite', + className: 'VirtualNetworkRule', + modelProperties: { + id: { + required: false, + serializedName: 'id', + type: { + name: 'String' + } + } + } + } + }; + } +} + +module.exports = VirtualNetworkRule; diff --git a/lib/services/cosmosdbManagement/lib/operations/databaseAccounts.js b/lib/services/cosmosdbManagement/lib/operations/databaseAccounts.js index 442f391ca0..d1f84412e5 100644 --- a/lib/services/cosmosdbManagement/lib/operations/databaseAccounts.js +++ b/lib/services/cosmosdbManagement/lib/operations/databaseAccounts.js @@ -316,6 +316,9 @@ function _patch(resourceGroupName, accountName, updateParameters, options, callb * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -325,6 +328,9 @@ function _patch(resourceGroupName, accountName, updateParameters, options, callb * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -2306,6 +2312,9 @@ function _beginPatch(resourceGroupName, accountName, updateParameters, options, * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -2315,6 +2324,9 @@ function _beginPatch(resourceGroupName, accountName, updateParameters, options, * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -3270,6 +3282,9 @@ class DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -3279,6 +3294,9 @@ class DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -3355,6 +3373,9 @@ class DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -3364,6 +3385,9 @@ class DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -4646,6 +4670,9 @@ class DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -4655,6 +4682,9 @@ class DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -4731,6 +4761,9 @@ class DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -4740,6 +4773,9 @@ class DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * diff --git a/lib/services/cosmosdbManagement/lib/operations/index.d.ts b/lib/services/cosmosdbManagement/lib/operations/index.d.ts index 0885bfe80a..1073980bde 100644 --- a/lib/services/cosmosdbManagement/lib/operations/index.d.ts +++ b/lib/services/cosmosdbManagement/lib/operations/index.d.ts @@ -201,6 +201,9 @@ export interface DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -210,6 +213,9 @@ export interface DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -274,6 +280,9 @@ export interface DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -283,6 +292,9 @@ export interface DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -1199,6 +1211,9 @@ export interface DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -1208,6 +1223,9 @@ export interface DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * @@ -1272,6 +1290,9 @@ export interface DatabaseAccounts { * database account. IP addresses/ranges must be comma separated and must not * contain any spaces. * + * @param {boolean} [createUpdateParameters.isVirtualNetworkFilterEnabled] Flag + * to indicate whether to enable/disable Virtual Network ACL rules. + * * @param {boolean} [createUpdateParameters.enableAutomaticFailover] Enables * automatic failover of the write region in the rare event that the region is * unavailable due to an outage. Automatic failover will result in a new write @@ -1281,6 +1302,9 @@ export interface DatabaseAccounts { * @param {array} [createUpdateParameters.capabilities] List of Cosmos DB * capabilities for the account * + * @param {array} [createUpdateParameters.virtualNetworkRules] List of Virtual + * Network ACL rules configured for the Cosmos DB account. + * * @param {string} createUpdateParameters.location The location of the resource * group to which the resource belongs. * diff --git a/lib/services/cosmosdbManagement/package.json b/lib/services/cosmosdbManagement/package.json index 6b9a707b6e..92ec1639b8 100644 --- a/lib/services/cosmosdbManagement/package.json +++ b/lib/services/cosmosdbManagement/package.json @@ -2,7 +2,7 @@ "name": "azure-arm-cosmosdb", "author": "Microsoft Corporation", "description": "CosmosDBManagementClient Library with typescript type definitions for node", - "version": "1.1.2", + "version": "1.1.1-preview", "dependencies": { "ms-rest": "^2.3.2", "ms-rest-azure": "^2.5.5"