azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
60 lines (55 loc) • 1.42 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 List Virtual Machine operation response.
*/
class VirtualMachineSizeListResult extends Array {
/**
* Create a VirtualMachineSizeListResult.
*/
constructor() {
super();
}
/**
* Defines the metadata of VirtualMachineSizeListResult
*
* @returns {object} metadata of VirtualMachineSizeListResult
*
*/
mapper() {
return {
required: false,
serializedName: 'VirtualMachineSizeListResult',
type: {
name: 'Composite',
className: 'VirtualMachineSizeListResult',
modelProperties: {
value: {
required: false,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'VirtualMachineSizeElementType',
type: {
name: 'Composite',
className: 'VirtualMachineSize'
}
}
}
}
}
}
};
}
}
module.exports = VirtualMachineSizeListResult;