Source code for azure.mgmt.compute.v2015_06_15.models.virtual_machine_scale_set_vm_instance_ids_py3

# coding=utf-8
# --------------------------------------------------------------------------
# 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.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class VirtualMachineScaleSetVMInstanceIDs(Model): """Specifies a list of virtual machine instance IDs from the VM scale set. :param instance_ids: 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. :type instance_ids: list[str] """ _attribute_map = { 'instance_ids': {'key': 'instanceIds', 'type': '[str]'}, } def __init__(self, *, instance_ids=None, **kwargs) -> None: super(VirtualMachineScaleSetVMInstanceIDs, self).__init__(**kwargs) self.instance_ids = instance_ids