azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
64 lines (59 loc) • 1.44 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 The SKU capabilites object.
*
*/
class ResourceSkuCapabilities {
/**
* Create a ResourceSkuCapabilities.
* @member {string} [name] An invariant to describe the feature.
* @member {string} [value] An invariant if the feature is measured by
* quantity.
*/
constructor() {
}
/**
* Defines the metadata of ResourceSkuCapabilities
*
* @returns {object} metadata of ResourceSkuCapabilities
*
*/
mapper() {
return {
required: false,
serializedName: 'ResourceSkuCapabilities',
type: {
name: 'Composite',
className: 'ResourceSkuCapabilities',
modelProperties: {
name: {
required: false,
readOnly: true,
serializedName: 'name',
type: {
name: 'String'
}
},
value: {
required: false,
readOnly: true,
serializedName: 'value',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = ResourceSkuCapabilities;