azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
63 lines (58 loc) • 1.67 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.
*/
;
/**
* Specifies a list of virtual machine instance IDs from the VM scale set.
*
*/
class VirtualMachineScaleSetVMInstanceIDs {
/**
* Create a VirtualMachineScaleSetVMInstanceIDs.
* @member {array} [instanceIds] The virtual machine scale set instance ids.
* Omitting the virtual machine scale set instance ids will result in the
* operation being performed on all virtual machines in the virtual machine
* scale set.
*/
constructor() {
}
/**
* Defines the metadata of VirtualMachineScaleSetVMInstanceIDs
*
* @returns {object} metadata of VirtualMachineScaleSetVMInstanceIDs
*
*/
mapper() {
return {
required: false,
serializedName: 'VirtualMachineScaleSetVMInstanceIDs',
type: {
name: 'Composite',
className: 'VirtualMachineScaleSetVMInstanceIDs',
modelProperties: {
instanceIds: {
required: false,
serializedName: 'instanceIds',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
}
}
}
};
}
}
module.exports = VirtualMachineScaleSetVMInstanceIDs;