1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
# 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 .restore_request import RestoreRequest
class IaasVMRestoreRequest(RestoreRequest):
"""IaaS VM workload-specific restore.
All required parameters must be populated in order to send to Azure.
:param object_type: Required. Constant filled by server.
:type object_type: str
:param recovery_point_id: ID of the backup copy to be recovered.
:type recovery_point_id: str
:param recovery_type: Type of this recovery. Possible values include:
'Invalid', 'OriginalLocation', 'AlternateLocation', 'RestoreDisks'
:type recovery_type: str or
~azure.mgmt.recoveryservicesbackup.models.RecoveryType
:param source_resource_id: Fully qualified ARM ID of the VM which is being
recovered.
:type source_resource_id: str
:param target_virtual_machine_id: This is the complete ARM Id of the VM
that will be created.
For e.g.
/subscriptions/{subId}/resourcegroups/{rg}/provider/Microsoft.Compute/virtualmachines/{vm}
:type target_virtual_machine_id: str
:param target_resource_group_id: This is the ARM Id of the resource group
that you want to create for this Virtual machine and other artifacts.
For e.g. /subscriptions/{subId}/resourcegroups/{rg}
:type target_resource_group_id: str
:param storage_account_id: Fully qualified ARM ID of the storage account
to which the VM has to be restored.
:type storage_account_id: str
:param virtual_network_id: This is the virtual network Id of the vnet that
will be attached to the virtual machine.
User will be validated for join action permissions in the linked access.
:type virtual_network_id: str
:param subnet_id: Subnet ID, is the subnet ID associated with the to be
restored VM. For Classic VMs it would be {VnetID}/Subnet/{SubnetName} and,
for the Azure Resource Manager VMs it would be ARM resource ID used to
represent the subnet.
:type subnet_id: str
:param target_domain_name_id: Fully qualified ARM ID of the domain name to
be associated to the VM being restored. This applies only to Classic
Virtual Machines.
:type target_domain_name_id: str
:param region: Region in which the virtual machine is restored.
:type region: str
:param affinity_group: Affinity group associated to VM to be restored.
Used only for Classic Compute Virtual Machines.
:type affinity_group: str
:param create_new_cloud_service: Should a new cloud service be created
while restoring the VM. If this is false, VM will be restored to the same
cloud service as it was at the time of backup.
:type create_new_cloud_service: bool
:param original_storage_account_option: Original Storage Account Option
:type original_storage_account_option: bool
:param encryption_details: Details needed if the VM was encrypted at the
time of backup.
:type encryption_details:
~azure.mgmt.recoveryservicesbackup.models.EncryptionDetails
"""
_validation = {
'object_type': {'required': True},
}
_attribute_map = {
'object_type': {'key': 'objectType', 'type': 'str'},
'recovery_point_id': {'key': 'recoveryPointId', 'type': 'str'},
'recovery_type': {'key': 'recoveryType', 'type': 'str'},
'source_resource_id': {'key': 'sourceResourceId', 'type': 'str'},
'target_virtual_machine_id': {'key': 'targetVirtualMachineId', 'type': 'str'},
'target_resource_group_id': {'key': 'targetResourceGroupId', 'type': 'str'},
'storage_account_id': {'key': 'storageAccountId', 'type': 'str'},
'virtual_network_id': {'key': 'virtualNetworkId', 'type': 'str'},
'subnet_id': {'key': 'subnetId', 'type': 'str'},
'target_domain_name_id': {'key': 'targetDomainNameId', 'type': 'str'},
'region': {'key': 'region', 'type': 'str'},
'affinity_group': {'key': 'affinityGroup', 'type': 'str'},
'create_new_cloud_service': {'key': 'createNewCloudService', 'type': 'bool'},
'original_storage_account_option': {'key': 'originalStorageAccountOption', 'type': 'bool'},
'encryption_details': {'key': 'encryptionDetails', 'type': 'EncryptionDetails'},
}
def __init__(self, **kwargs):
super(IaasVMRestoreRequest, self).__init__(**kwargs)
self.recovery_point_id = kwargs.get('recovery_point_id', None)
self.recovery_type = kwargs.get('recovery_type', None)
self.source_resource_id = kwargs.get('source_resource_id', None)
self.target_virtual_machine_id = kwargs.get('target_virtual_machine_id', None)
self.target_resource_group_id = kwargs.get('target_resource_group_id', None)
self.storage_account_id = kwargs.get('storage_account_id', None)
self.virtual_network_id = kwargs.get('virtual_network_id', None)
self.subnet_id = kwargs.get('subnet_id', None)
self.target_domain_name_id = kwargs.get('target_domain_name_id', None)
self.region = kwargs.get('region', None)
self.affinity_group = kwargs.get('affinity_group', None)
self.create_new_cloud_service = kwargs.get('create_new_cloud_service', None)
self.original_storage_account_option = kwargs.get('original_storage_account_option', None)
self.encryption_details = kwargs.get('encryption_details', None)
self.object_type = 'IaasVMRestoreRequest'
|