Source code for models_v2.vmware_object_protection_update_request_params

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

import cohesity_management_sdk.models_v2.indexing_policy
import cohesity_management_sdk.models_v2.pre_and_post_script_params
import cohesity_management_sdk.models_v2.disk_information

[docs]class VmwareObjectProtectionUpdateRequestParams(object): """Implementation of the 'VmwareObjectProtectionUpdateRequestParams' model. Specifies the parameters which are specific to VMware object protection. Attributes: app_consistent_snapshot (bool): Specifies whether or not to quiesce apps and the file system in order to take app consistent snapshots. fallback_to_crash_consistent_snapshot (bool): Specifies whether or not to fallback to a crash consistent snapshot in the event that an app consistent snapshot fails. This parameter defaults to true and only changes the behavior of the operation if 'appConsistentSnapshot' is set to 'true'. skip_physical_rdm_disks (bool): Specifies whether or not to skip backing up physical RDM disks. Physical RDM disks cannot be backed up, so if you attempt to backup a VM with physical RDM disks and this value is set to 'false', then those VM backups will fail. indexing_policy (IndexingPolicy): Specifies settings for indexing files found in an Object (such as a VM) so these files can be searched and recovered. This also specifies inclusion and exclusion rules that determine the directories to index. pre_post_script (PreAndPostScriptParams): Specifies the params for pre and post scripts. leverage_san_transport (bool): If this field is set to true, then the backup for the objects will be performed using dedicated storage area network (SAN) instead of LAN or managment network. enable_nbdssl_fallback (bool): If this field is set to true and SAN transport backup fails, then backup will fallback to use NBDSSL transport. This field only applies if 'leverageSanTransport' is set to true. exclude_disks (list of DiskInformation): Specifies a list of disks to exclude from being protected. This is only applicable to VM objects. truncate_exchange_logs (bool): Specifies whether or not to truncate MS Exchange logs while taking an app consistent snapshot of this object. This is only applicable to objects which have a registered MS Exchange app. exclude_object_ids (list of long|int): Specifies the list of IDs of the objects to not be protected in this backup. This field only applies if provided object id is non leaf entity such as Tag or a folder. This can be used to ignore specific objects under a parent object which has been included for protection. """ # Create a mapping from Model property names to API property names _names = { "app_consistent_snapshot":'appConsistentSnapshot', "fallback_to_crash_consistent_snapshot":'fallbackToCrashConsistentSnapshot', "skip_physical_rdm_disks":'skipPhysicalRDMDisks', "indexing_policy":'indexingPolicy', "pre_post_script":'prePostScript', "leverage_san_transport":'leverageSanTransport', "enable_nbdssl_fallback":'enableNBDSSLFallback', "exclude_disks":'excludeDisks', "truncate_exchange_logs":'truncateExchangeLogs', "exclude_object_ids":'excludeObjectIds' } def __init__(self, app_consistent_snapshot=None, fallback_to_crash_consistent_snapshot=None, skip_physical_rdm_disks=None, indexing_policy=None, pre_post_script=None, leverage_san_transport=None, enable_nbdssl_fallback=None, exclude_disks=None, truncate_exchange_logs=None, exclude_object_ids=None): """Constructor for the VmwareObjectProtectionUpdateRequestParams class""" # Initialize members of the class self.app_consistent_snapshot = app_consistent_snapshot self.fallback_to_crash_consistent_snapshot = fallback_to_crash_consistent_snapshot self.skip_physical_rdm_disks = skip_physical_rdm_disks self.indexing_policy = indexing_policy self.pre_post_script = pre_post_script self.leverage_san_transport = leverage_san_transport self.enable_nbdssl_fallback = enable_nbdssl_fallback self.exclude_disks = exclude_disks self.truncate_exchange_logs = truncate_exchange_logs self.exclude_object_ids = exclude_object_ids
[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 app_consistent_snapshot = dictionary.get('appConsistentSnapshot') fallback_to_crash_consistent_snapshot = dictionary.get('fallbackToCrashConsistentSnapshot') skip_physical_rdm_disks = dictionary.get('skipPhysicalRDMDisks') indexing_policy = cohesity_management_sdk.models_v2.indexing_policy.IndexingPolicy.from_dictionary(dictionary.get('indexingPolicy')) if dictionary.get('indexingPolicy') else None pre_post_script = cohesity_management_sdk.models_v2.pre_and_post_script_params.PreAndPostScriptParams.from_dictionary(dictionary.get('prePostScript')) if dictionary.get('prePostScript') else None leverage_san_transport = dictionary.get('leverageSanTransport') enable_nbdssl_fallback = dictionary.get('enableNBDSSLFallback') exclude_disks = None if dictionary.get('excludeDisks') != None: exclude_disks = list() for structure in dictionary.get('excludeDisks'): exclude_disks.append(cohesity_management_sdk.models_v2.disk_information.DiskInformation.from_dictionary(structure)) truncate_exchange_logs = dictionary.get('truncateExchangeLogs') exclude_object_ids = dictionary.get('excludeObjectIds') # Return an object of this model return cls(app_consistent_snapshot, fallback_to_crash_consistent_snapshot, skip_physical_rdm_disks, indexing_policy, pre_post_script, leverage_san_transport, enable_nbdssl_fallback, exclude_disks, truncate_exchange_logs, exclude_object_ids)