Regenerate azure-arm-resource and update version to 7.3.0

This commit is contained in:
Dan Schulte 2018-12-20 13:30:22 -08:00
Родитель 618c2750a7
Коммит b6119d4411
13 изменённых файлов: 49 добавлений и 23 удалений

Просмотреть файл

@ -348,8 +348,8 @@ export interface ResourceLinks {
* @param {object} [options] Optional Parameters.
*
* @param {string} [options.filter] The filter to apply on the list resource
* links operation. The supported filter for list resource links is targetid.
* For example, $filter=targetid eq {value}
* links operation. The supported filter for list resource links is targetId.
* For example, $filter=targetId eq {value}
*
* @param {object} [options.customHeaders] Headers that will be added to the
* request
@ -368,8 +368,8 @@ export interface ResourceLinks {
* @param {object} [options] Optional Parameters.
*
* @param {string} [options.filter] The filter to apply on the list resource
* links operation. The supported filter for list resource links is targetid.
* For example, $filter=targetid eq {value}
* links operation. The supported filter for list resource links is targetId.
* For example, $filter=targetId eq {value}
*
* @param {object} [options.customHeaders] Headers that will be added to the
* request

Просмотреть файл

@ -461,8 +461,8 @@ function _get(linkId, options, callback) {
* @param {object} [options] Optional Parameters.
*
* @param {string} [options.filter] The filter to apply on the list resource
* links operation. The supported filter for list resource links is targetid.
* For example, $filter=targetid eq {value}
* links operation. The supported filter for list resource links is targetId.
* For example, $filter=targetId eq {value}
*
* @param {object} [options.customHeaders] Headers that will be added to the
* request
@ -1310,8 +1310,8 @@ class ResourceLinks {
* @param {object} [options] Optional Parameters.
*
* @param {string} [options.filter] The filter to apply on the list resource
* links operation. The supported filter for list resource links is targetid.
* For example, $filter=targetid eq {value}
* links operation. The supported filter for list resource links is targetId.
* For example, $filter=targetId eq {value}
*
* @param {object} [options.customHeaders] Headers that will be added to the
* request
@ -1342,8 +1342,8 @@ class ResourceLinks {
* @param {object} [options] Optional Parameters.
*
* @param {string} [options.filter] The filter to apply on the list resource
* links operation. The supported filter for list resource links is targetid.
* For example, $filter=targetid eq {value}
* links operation. The supported filter for list resource links is targetId.
* For example, $filter=targetId eq {value}
*
* @param {object} [options.customHeaders] Headers that will be added to the
* request

Просмотреть файл

@ -11,7 +11,7 @@
'use strict';
/**
* Error reponse indicates ARM appliance is not able to process the incoming
* Error response indicates ARM appliance is not able to process the incoming
* request. The reason is provided in the error message.
*
*/

Просмотреть файл

@ -306,8 +306,8 @@ export interface Identity {
}
/**
* Error reponse indicates ARM appliance is not able to process the incoming request. The reason is
* provided in the error message.
* Error response indicates ARM appliance is not able to process the incoming request. The reason
* is provided in the error message.
*/
export interface ErrorResponse {
/**

Просмотреть файл

@ -11,7 +11,7 @@
'use strict';
/**
* Error reponse indicates Azure Resource Manager is not able to process the
* Error response indicates Azure Resource Manager is not able to process the
* incoming request. The reason is provided in the error message.
*
*/

Просмотреть файл

@ -106,7 +106,7 @@ export interface PolicyAssignment extends BaseResource {
}
/**
* Error reponse indicates Azure Resource Manager is not able to process the incoming request. The
* Error response indicates Azure Resource Manager is not able to process the incoming request. The
* reason is provided in the error message.
*/
export interface ErrorResponse {

Просмотреть файл

@ -22,6 +22,7 @@ class DeploymentExtended extends models['BaseResource'] {
* Create a DeploymentExtended.
* @property {string} [id] The ID of the deployment.
* @property {string} [name] The name of the deployment.
* @property {string} [type] The type of the deployment.
* @property {string} [location] the location of the deployment.
* @property {object} [properties] Deployment properties.
* @property {string} [properties.provisioningState] The state of the
@ -31,7 +32,7 @@ class DeploymentExtended extends models['BaseResource'] {
* @property {date} [properties.timestamp] The timestamp of the template
* deployment.
* @property {object} [properties.outputs] Key/value pairs that represent
* deploymentoutput.
* deployment output.
* @property {array} [properties.providers] The list of resource providers
* needed for the deployment.
* @property {array} [properties.dependencies] The list of deployment
@ -110,6 +111,14 @@ class DeploymentExtended extends models['BaseResource'] {
name: 'String'
}
},
type: {
required: false,
readOnly: true,
serializedName: 'type',
type: {
name: 'String'
}
},
location: {
required: false,
serializedName: 'location',

Просмотреть файл

@ -20,8 +20,8 @@ class DeploymentPropertiesExtended {
* @property {string} [provisioningState] The state of the provisioning.
* @property {string} [correlationId] The correlation ID of the deployment.
* @property {date} [timestamp] The timestamp of the template deployment.
* @property {object} [outputs] Key/value pairs that represent
* deploymentoutput.
* @property {object} [outputs] Key/value pairs that represent deployment
* output.
* @property {array} [providers] The list of resource providers needed for
* the deployment.
* @property {array} [dependencies] The list of deployment dependencies.

Просмотреть файл

@ -32,7 +32,7 @@ class DeploymentValidateResult {
* @property {date} [properties.timestamp] The timestamp of the template
* deployment.
* @property {object} [properties.outputs] Key/value pairs that represent
* deploymentoutput.
* deployment output.
* @property {array} [properties.providers] The list of resource providers
* needed for the deployment.
* @property {array} [properties.dependencies] The list of deployment

Просмотреть файл

@ -72,7 +72,7 @@ export interface TemplateLink {
}
/**
* Entity representing the reference to the deployment paramaters.
* Entity representing the reference to the deployment parameters.
*/
export interface ParametersLink {
/**
@ -356,7 +356,7 @@ export interface DeploymentPropertiesExtended {
*/
readonly timestamp?: Date;
/**
* Key/value pairs that represent deploymentoutput.
* Key/value pairs that represent deployment output.
*/
outputs?: any;
/**
@ -424,6 +424,10 @@ export interface DeploymentExtended extends BaseResource {
* The name of the deployment.
*/
readonly name?: string;
/**
* The type of the deployment.
*/
readonly type?: string;
/**
* the location of the deployment.
*/
@ -604,6 +608,10 @@ export interface ResourceGroup extends BaseResource {
* The name of the resource group.
*/
readonly name?: string;
/**
* The type of the resource group.
*/
readonly type?: string;
properties?: ResourceGroupProperties;
/**
* The location of the resource group. It cannot be changed after the resource group has been

Просмотреть файл

@ -11,7 +11,7 @@
'use strict';
/**
* Entity representing the reference to the deployment paramaters.
* Entity representing the reference to the deployment parameters.
*
*/
class ParametersLink {

Просмотреть файл

@ -22,6 +22,7 @@ class ResourceGroup extends models['BaseResource'] {
* Create a ResourceGroup.
* @property {string} [id] The ID of the resource group.
* @property {string} [name] The name of the resource group.
* @property {string} [type] The type of the resource group.
* @property {object} [properties]
* @property {string} [properties.provisioningState] The provisioning state.
* @property {string} location The location of the resource group. It cannot
@ -65,6 +66,14 @@ class ResourceGroup extends models['BaseResource'] {
name: 'String'
}
},
type: {
required: false,
readOnly: true,
serializedName: 'type',
type: {
name: 'String'
}
},
properties: {
required: false,
serializedName: 'properties',

Просмотреть файл

@ -6,7 +6,7 @@
"Zavery, Amar <amzavery@microsoft.com>",
"Srinivasan, Vivek <visriniv@microsoft.com>"
],
"version": "7.2.1",
"version": "7.3.0",
"description": "Microsoft Azure Resource Management Client Library for node",
"tags": [
"azure",