Source code for models_v2.hyperv_target_params_5

# -*- coding: utf-8 -*-

import cohesity_management_sdk.models_v2.rename_recovered_vms_params
import cohesity_management_sdk.models_v2.recovery_target_config_9
import cohesity_management_sdk.models_v2.vlan_config_1

[docs]class HypervTargetParams5(object): """Implementation of the 'HypervTargetParams5' model. Specifies the params for recovering to a HyperV target. Attributes: rename_recovered_vms_params (RenameRecoveredVmsParams): Specifies params to rename the VMs that are recovered. If not specified, the original names of the VMs are preserved. recovery_target_config (RecoveryTargetConfig9): Specifies the recovery target configuration if recovery has to be done to a different location which is different from original source or to original Source with different configuration. If not specified, then the recovery of the vms will be performed to original location with all configuration parameters retained. power_on_vms (bool): Specifies whether to power on vms after recovery. If not specified, or false, recovered vms will be in powered off state. continue_on_error (bool): Specifies whether to continue recovering other vms if one of vms failed to recover. Default value is false. instant_recovery (bool): Specifies whether to perform an instant recovery. By instant recovery, the recovered VM is available before files are completely copied to the recovered VM. Default is true. preserve_uuids (bool): Specifies whether to preserve uuids of recovered VMs. Default is false. vlan_config (VlanConfig1): Specifies VLAN Params associated with the recovered. If this is not specified, then the VLAN settings will be automatically selected from one of the below options: a. If VLANs are configured on Cohesity, then the VLAN host/VIP will be automatically based on the client's (e.g. ESXI host) IP address. b. If VLANs are not configured on Cohesity, then the partition hostname or VIPs will be used for Recovery. """ # Create a mapping from Model property names to API property names _names = { "rename_recovered_vms_params":'renameRecoveredVmsParams', "recovery_target_config":'recoveryTargetConfig', "power_on_vms":'powerOnVms', "continue_on_error":'continueOnError', "instant_recovery":'instantRecovery', "preserve_uuids":'preserveUuids', "vlan_config":'vlanConfig' } def __init__(self, rename_recovered_vms_params=None, recovery_target_config=None, power_on_vms=None, continue_on_error=None, instant_recovery=None, preserve_uuids=None, vlan_config=None): """Constructor for the HypervTargetParams5 class""" # Initialize members of the class self.rename_recovered_vms_params = rename_recovered_vms_params self.recovery_target_config = recovery_target_config self.power_on_vms = power_on_vms self.continue_on_error = continue_on_error self.instant_recovery = instant_recovery self.preserve_uuids = preserve_uuids self.vlan_config = vlan_config
[docs] @classmethod def from_dictionary(cls, dictionary): """Creates an instance of this model from a dictionary Args: dictionary (dictionary): A dictionary representation of the object as obtained from the deserialization of the server's response. The keys MUST match property names in the API description. Returns: object: An instance of this structure class. """ if dictionary is None: return None # Extract variables from the dictionary rename_recovered_vms_params = cohesity_management_sdk.models_v2.rename_recovered_vms_params.RenameRecoveredVmsParams.from_dictionary(dictionary.get('renameRecoveredVmsParams')) if dictionary.get('renameRecoveredVmsParams') else None recovery_target_config = cohesity_management_sdk.models_v2.recovery_target_config_9.RecoveryTargetConfig9.from_dictionary(dictionary.get('recoveryTargetConfig')) if dictionary.get('recoveryTargetConfig') else None power_on_vms = dictionary.get('powerOnVms') continue_on_error = dictionary.get('continueOnError') instant_recovery = dictionary.get('instantRecovery') preserve_uuids = dictionary.get('preserveUuids') vlan_config = cohesity_management_sdk.models_v2.vlan_config_1.VlanConfig1.from_dictionary(dictionary.get('vlanConfig')) if dictionary.get('vlanConfig') else None # Return an object of this model return cls(rename_recovered_vms_params, recovery_target_config, power_on_vms, continue_on_error, instant_recovery, preserve_uuids, vlan_config)