Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
# 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 .sub_resource import SubResource
class NetworkInterfaceReference(SubResource):
"""Describes a network interface reference.
:param id: Resource Id
:type id: str
:param primary: Specifies the primary network interface in case the
virtual machine has more than 1 network interface.
:type primary: bool
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'primary': {'key': 'properties.primary', 'type': 'bool'},
}
def __init__(self, **kwargs):
super(NetworkInterfaceReference, self).__init__(**kwargs)
# 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 .sub_resource import SubResource
class VirtualMachineScaleSetUpdateNetworkConfiguration(SubResource):
"""Describes a virtual machine scale set network profile's network
configurations.
:param id: Resource Id
:type id: str
:param name: The network configuration name.
:type name: str
:param primary: Whether this is a primary NIC on a virtual machine.
:type primary: bool
:param enable_accelerated_networking: Specifies whether the network
interface is accelerated networking-enabled.
:type enable_accelerated_networking: bool
:param network_security_group: The network security group.
:type network_security_group:
~azure.mgmt.compute.v2017_03_30.models.SubResource
:param dns_settings: The dns settings to be applied on the network
# 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 .sub_resource import SubResource
class VirtualMachineScaleSetUpdateIPConfiguration(SubResource):
"""Describes a virtual machine scale set network profile's IP configuration.
:param id: Resource Id
:type id: str
:param name: The IP configuration name.
:type name: str
:param subnet: The subnet.
:type subnet: ~azure.mgmt.compute.v2017_03_30.models.ApiEntityReference
:param primary: Specifies the primary IP Configuration in case the network
interface has more than one IP Configuration.
:type primary: bool
:param public_ip_address_configuration: The publicIPAddressConfiguration.
:type public_ip_address_configuration:
~azure.mgmt.compute.v2017_03_30.models.VirtualMachineScaleSetUpdatePublicIPAddressConfiguration
:param private_ip_address_version: Available from Api-Version 2017-03-30
onwards, it represents whether the specific ipconfiguration is IPv4 or
# 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 .sub_resource import SubResource
class ManagedDiskParameters(SubResource):
"""The parameters of a managed disk.
:param id: Resource Id
:type id: str
:param storage_account_type: Specifies the storage account type for the
managed disk. Possible values are: Standard_LRS or Premium_LRS. Possible
values include: 'Standard_LRS', 'Premium_LRS'
:type storage_account_type: str or
~azure.mgmt.compute.v2017_03_30.models.StorageAccountTypes
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'storage_account_type': {'key': 'storageAccountType', 'type': 'StorageAccountTypes'},
}
# 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 .sub_resource import SubResource
class VirtualMachineCaptureResult(SubResource):
"""Resource Id.
:param id: Resource Id
:type id: str
:param output: Operation output data (raw JSON)
:type output: object
"""
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'output': {'key': 'properties.output', 'type': 'object'},
}
def __init__(self, **kwargs):
super(VirtualMachineCaptureResult, self).__init__(**kwargs)
self.output = kwargs.get('output', None)
def __init__(self, **kwargs):
super(SubResource, self).__init__(**kwargs)
self.id = kwargs.get('id', None)
# 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 .sub_resource import SubResource
class VirtualMachineScaleSetNetworkConfiguration(SubResource):
"""Describes a virtual machine scale set network profile's network
configurations.
All required parameters must be populated in order to send to Azure.
:param id: Resource Id
:type id: str
:param name: Required. The network configuration name.
:type name: str
:param primary: Specifies the primary network interface in case the
virtual machine has more than 1 network interface.
:type primary: bool
:param enable_accelerated_networking: Specifies whether the network
interface is accelerated networking-enabled.
:type enable_accelerated_networking: bool
:param network_security_group: The network security group.
# 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 .sub_resource import SubResource
class VirtualMachineScaleSetIPConfiguration(SubResource):
"""Describes a virtual machine scale set network profile's IP configuration.
All required parameters must be populated in order to send to Azure.
:param id: Resource Id
:type id: str
:param name: Required. The IP configuration name.
:type name: str
:param subnet: Specifies the identifier of the subnet.
:type subnet: ~azure.mgmt.compute.v2017_03_30.models.ApiEntityReference
:param primary: Specifies the primary network interface in case the
virtual machine has more than 1 network interface.
:type primary: bool
:param public_ip_address_configuration: The publicIPAddressConfiguration.
:type public_ip_address_configuration:
~azure.mgmt.compute.v2017_03_30.models.VirtualMachineScaleSetPublicIPAddressConfiguration