azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
85 lines (80 loc) • 2.23 kB
JavaScript
/*
* 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.
*/
;
/**
* Describes scaling information of a SKU.
*
*/
class ResourceSkuRestrictions {
/**
* Create a ResourceSkuRestrictions.
* @member {string} [type] The type of restrictions. Possible values include:
* 'location'
* @member {array} [values] The value of restrictions. If the restriction
* type is set to location. This would be different locations where the SKU
* is restricted.
* @member {string} [reasonCode] The reason for restriction. Possible values
* include: 'QuotaId', 'NotAvailableForSubscription'
*/
constructor() {
}
/**
* Defines the metadata of ResourceSkuRestrictions
*
* @returns {object} metadata of ResourceSkuRestrictions
*
*/
mapper() {
return {
required: false,
serializedName: 'ResourceSkuRestrictions',
type: {
name: 'Composite',
className: 'ResourceSkuRestrictions',
modelProperties: {
type: {
required: false,
readOnly: true,
serializedName: 'type',
type: {
name: 'Enum',
allowedValues: [ 'location' ]
}
},
values: {
required: false,
readOnly: true,
serializedName: 'values',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
},
reasonCode: {
required: false,
readOnly: true,
serializedName: 'reasonCode',
type: {
name: 'Enum',
allowedValues: [ 'QuotaId', 'NotAvailableForSubscription' ]
}
}
}
}
};
}
}
module.exports = ResourceSkuRestrictions;