Source code for models_v2.physical_snapshot_params

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


[docs]class PhysicalSnapshotParams(object): """Implementation of the 'PhysicalSnapshotParams' model. Specifies paramsters of Physical type snapshots. Attributes: protection_type (ProtectionType4Enum): Specifies the protection type of Physical snapshots. """ # Create a mapping from Model property names to API property names _names = { "protection_type":'protectionType' } def __init__(self, protection_type=None): """Constructor for the PhysicalSnapshotParams class""" # Initialize members of the class self.protection_type = protection_type
[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 protection_type = dictionary.get('protectionType') # Return an object of this model return cls(protection_type)