azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
70 lines (65 loc) • 1.84 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.
*/
;
/**
* The Virtual Machine Scale Set List Skus operation response.
*/
class VirtualMachineScaleSetListSkusResult extends Array {
/**
* Create a VirtualMachineScaleSetListSkusResult.
* @member {string} [nextLink] The uri to fetch the next page of Virtual
* Machine Scale Set Skus. Call ListNext() with this to fetch the next page
* of VMSS Skus.
*/
constructor() {
super();
}
/**
* Defines the metadata of VirtualMachineScaleSetListSkusResult
*
* @returns {object} metadata of VirtualMachineScaleSetListSkusResult
*
*/
mapper() {
return {
required: false,
serializedName: 'VirtualMachineScaleSetListSkusResult',
type: {
name: 'Composite',
className: 'VirtualMachineScaleSetListSkusResult',
modelProperties: {
value: {
required: true,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'VirtualMachineScaleSetSkuElementType',
type: {
name: 'Composite',
className: 'VirtualMachineScaleSetSku'
}
}
}
},
nextLink: {
required: false,
serializedName: 'nextLink',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = VirtualMachineScaleSetListSkusResult;