Source code for netapp.santricity.models.v2.snapshot_group

# coding: utf-8

"""
SnapshotGroup.py

 The Clear BSD License

 Copyright (c) – 2016, NetApp, Inc. All rights reserved.

 Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

 * Neither the name of NetApp, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

 NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""

from pprint import pformat
from six import iteritems


[docs]class SnapshotGroup(object): """ NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ def __init__(self): """ SnapshotGroup - a model defined in Swagger :param dict swaggerTypes: The key is attribute name and the value is attribute type. :param dict attributeMap: The key is attribute name and the value is json key in definition. """ self.swagger_types = { 'pit_group_ref': 'str', # (required parameter) 'label': 'str', # (required parameter) 'status': 'str', # (required parameter) 'base_volume': 'str', # (required parameter) 'repository_volume': 'str', # (required parameter) 'cluster_size': 'int', # (required parameter) 'max_repository_capacity': 'int', # (required parameter) 'max_base_capacity': 'int', # (required parameter) 'unusable_repository_capacity': 'int', # (required parameter) 'rep_full_policy': 'str', # (required parameter) 'full_warn_threshold': 'int', # (required parameter) 'auto_delete_limit': 'int', # (required parameter) 'action': 'str', # (required parameter) 'rollback_status': 'str', # (required parameter) 'rollback_priority': 'str', # (required parameter) 'consistency_group': 'bool', # (required parameter) 'consistency_group_ref': 'str', # (required parameter) 'creation_pending_status': 'str', # (required parameter) 'volume_handle': 'int', # (required parameter) 'volcopy_id': 'str', 'snapshot_count': 'int', 'repository_capacity': 'int', 'id': 'str', 'name': 'str' } self.attribute_map = { 'pit_group_ref': 'pitGroupRef', # (required parameter) 'label': 'label', # (required parameter) 'status': 'status', # (required parameter) 'base_volume': 'baseVolume', # (required parameter) 'repository_volume': 'repositoryVolume', # (required parameter) 'cluster_size': 'clusterSize', # (required parameter) 'max_repository_capacity': 'maxRepositoryCapacity', # (required parameter) 'max_base_capacity': 'maxBaseCapacity', # (required parameter) 'unusable_repository_capacity': 'unusableRepositoryCapacity', # (required parameter) 'rep_full_policy': 'repFullPolicy', # (required parameter) 'full_warn_threshold': 'fullWarnThreshold', # (required parameter) 'auto_delete_limit': 'autoDeleteLimit', # (required parameter) 'action': 'action', # (required parameter) 'rollback_status': 'rollbackStatus', # (required parameter) 'rollback_priority': 'rollbackPriority', # (required parameter) 'consistency_group': 'consistencyGroup', # (required parameter) 'consistency_group_ref': 'consistencyGroupRef', # (required parameter) 'creation_pending_status': 'creationPendingStatus', # (required parameter) 'volume_handle': 'volumeHandle', # (required parameter) 'volcopy_id': 'volcopyId', 'snapshot_count': 'snapshotCount', 'repository_capacity': 'repositoryCapacity', 'id': 'id', 'name': 'name' } self._pit_group_ref = None self._label = None self._status = None self._base_volume = None self._repository_volume = None self._cluster_size = None self._max_repository_capacity = None self._max_base_capacity = None self._unusable_repository_capacity = None self._rep_full_policy = None self._full_warn_threshold = None self._auto_delete_limit = None self._action = None self._rollback_status = None self._rollback_priority = None self._consistency_group = None self._consistency_group_ref = None self._creation_pending_status = None self._volume_handle = None self._volcopy_id = None self._snapshot_count = None self._repository_capacity = None self._id = None self._name = None @property def pit_group_ref(self): """ Gets the pit_group_ref of this SnapshotGroup. The reference (key) for the PiT Group. :return: The pit_group_ref of this SnapshotGroup. :rtype: str :required/optional: required """ return self._pit_group_ref @pit_group_ref.setter def pit_group_ref(self, pit_group_ref): """ Sets the pit_group_ref of this SnapshotGroup. The reference (key) for the PiT Group. :param pit_group_ref: The pit_group_ref of this SnapshotGroup. :type: str """ self._pit_group_ref = pit_group_ref @property def label(self): """ Gets the label of this SnapshotGroup. The name of the PiT Group. If this PiT group is part of a consistency group, then this label does not have to be present or unique as the parent consistency group label will be used. :return: The label of this SnapshotGroup. :rtype: str :required/optional: required """ return self._label @label.setter def label(self, label): """ Sets the label of this SnapshotGroup. The name of the PiT Group. If this PiT group is part of a consistency group, then this label does not have to be present or unique as the parent consistency group label will be used. :param label: The label of this SnapshotGroup. :type: str """ self._label = label @property def status(self): """ Gets the status of this SnapshotGroup. The status of the PiT Group. :return: The status of this SnapshotGroup. :rtype: str :required/optional: required """ return self._status @status.setter def status(self, status): """ Sets the status of this SnapshotGroup. The status of the PiT Group. :param status: The status of this SnapshotGroup. :type: str """ allowed_values = ["unknown", "optimal", "full", "failed", "overThreshold", "__UNDEFINED"] if status not in allowed_values: raise ValueError( "Invalid value for `status`, must be one of {0}" .format(allowed_values) ) self._status = status @property def base_volume(self): """ Gets the base_volume of this SnapshotGroup. The base volume for this PiT Group. :return: The base_volume of this SnapshotGroup. :rtype: str :required/optional: required """ return self._base_volume @base_volume.setter def base_volume(self, base_volume): """ Sets the base_volume of this SnapshotGroup. The base volume for this PiT Group. :param base_volume: The base_volume of this SnapshotGroup. :type: str """ self._base_volume = base_volume @property def repository_volume(self): """ Gets the repository_volume of this SnapshotGroup. The copy-on-write (CoW) Repository for this PiT group. :return: The repository_volume of this SnapshotGroup. :rtype: str :required/optional: required """ return self._repository_volume @repository_volume.setter def repository_volume(self, repository_volume): """ Sets the repository_volume of this SnapshotGroup. The copy-on-write (CoW) Repository for this PiT group. :param repository_volume: The repository_volume of this SnapshotGroup. :type: str """ self._repository_volume = repository_volume @property def cluster_size(self): """ Gets the cluster_size of this SnapshotGroup. The cluster size (in bytes). :return: The cluster_size of this SnapshotGroup. :rtype: int :required/optional: required """ return self._cluster_size @cluster_size.setter def cluster_size(self, cluster_size): """ Sets the cluster_size of this SnapshotGroup. The cluster size (in bytes). :param cluster_size: The cluster_size of this SnapshotGroup. :type: int """ self._cluster_size = cluster_size @property def max_repository_capacity(self): """ Gets the max_repository_capacity of this SnapshotGroup. The maximum allowable repository size (in bytes) based on current cluster size. Only applicable if there is at least one PiT in the PiT group. :return: The max_repository_capacity of this SnapshotGroup. :rtype: int :required/optional: required """ return self._max_repository_capacity @max_repository_capacity.setter def max_repository_capacity(self, max_repository_capacity): """ Sets the max_repository_capacity of this SnapshotGroup. The maximum allowable repository size (in bytes) based on current cluster size. Only applicable if there is at least one PiT in the PiT group. :param max_repository_capacity: The max_repository_capacity of this SnapshotGroup. :type: int """ self._max_repository_capacity = max_repository_capacity @property def max_base_capacity(self): """ Gets the max_base_capacity of this SnapshotGroup. The maximum allowable base volume size (in bytes) based on current cluster size. Only applicable if there is at least one PiT in the PiT group. :return: The max_base_capacity of this SnapshotGroup. :rtype: int :required/optional: required """ return self._max_base_capacity @max_base_capacity.setter def max_base_capacity(self, max_base_capacity): """ Sets the max_base_capacity of this SnapshotGroup. The maximum allowable base volume size (in bytes) based on current cluster size. Only applicable if there is at least one PiT in the PiT group. :param max_base_capacity: The max_base_capacity of this SnapshotGroup. :type: int """ self._max_base_capacity = max_base_capacity @property def unusable_repository_capacity(self): """ Gets the unusable_repository_capacity of this SnapshotGroup. The amount of repository capacity that is unusable due to limited addressability of the current cluster size. :return: The unusable_repository_capacity of this SnapshotGroup. :rtype: int :required/optional: required """ return self._unusable_repository_capacity @unusable_repository_capacity.setter def unusable_repository_capacity(self, unusable_repository_capacity): """ Sets the unusable_repository_capacity of this SnapshotGroup. The amount of repository capacity that is unusable due to limited addressability of the current cluster size. :param unusable_repository_capacity: The unusable_repository_capacity of this SnapshotGroup. :type: int """ self._unusable_repository_capacity = unusable_repository_capacity @property def rep_full_policy(self): """ Gets the rep_full_policy of this SnapshotGroup. The behavior on repository full condition. Overridden by consistency group setting if this PITGroup is associated with a consistency group. :return: The rep_full_policy of this SnapshotGroup. :rtype: str :required/optional: required """ return self._rep_full_policy @rep_full_policy.setter def rep_full_policy(self, rep_full_policy): """ Sets the rep_full_policy of this SnapshotGroup. The behavior on repository full condition. Overridden by consistency group setting if this PITGroup is associated with a consistency group. :param rep_full_policy: The rep_full_policy of this SnapshotGroup. :type: str """ allowed_values = ["unknown", "failbasewrites", "purgepit", "__UNDEFINED"] if rep_full_policy not in allowed_values: raise ValueError( "Invalid value for `rep_full_policy`, must be one of {0}" .format(allowed_values) ) self._rep_full_policy = rep_full_policy @property def full_warn_threshold(self): """ Gets the full_warn_threshold of this SnapshotGroup. The repository utilization warning threshold percentage. :return: The full_warn_threshold of this SnapshotGroup. :rtype: int :required/optional: required """ return self._full_warn_threshold @full_warn_threshold.setter def full_warn_threshold(self, full_warn_threshold): """ Sets the full_warn_threshold of this SnapshotGroup. The repository utilization warning threshold percentage. :param full_warn_threshold: The full_warn_threshold of this SnapshotGroup. :type: int """ self._full_warn_threshold = full_warn_threshold @property def auto_delete_limit(self): """ Gets the auto_delete_limit of this SnapshotGroup. The auto-delete indicator. If non-zero, the oldest PiT will be automatically deleted when creating a new one to keep the total number of PiTs limited to the number specified. This value is overridden by the consistency group setting if this PITGroup is associated with a consistency group. :return: The auto_delete_limit of this SnapshotGroup. :rtype: int :required/optional: required """ return self._auto_delete_limit @auto_delete_limit.setter def auto_delete_limit(self, auto_delete_limit): """ Sets the auto_delete_limit of this SnapshotGroup. The auto-delete indicator. If non-zero, the oldest PiT will be automatically deleted when creating a new one to keep the total number of PiTs limited to the number specified. This value is overridden by the consistency group setting if this PITGroup is associated with a consistency group. :param auto_delete_limit: The auto_delete_limit of this SnapshotGroup. :type: int """ self._auto_delete_limit = auto_delete_limit @property def action(self): """ Gets the action of this SnapshotGroup. Long running operation. :return: The action of this SnapshotGroup. :rtype: str :required/optional: required """ return self._action @action.setter def action(self, action): """ Sets the action of this SnapshotGroup. Long running operation. :param action: The action of this SnapshotGroup. :type: str """ allowed_values = ["none", "copyback", "initializing", "reconstructing", "remappingDce", "remappingDrm", "remappingDcedrm", "remappingDseg", "remappingDve", "remappingDcedve", "remappingInternal", "remappingDefrag", "formatting", "synchronizing", "parityScan", "volumeCopy", "snapshotRollback", "pitRollback", "asyncMirrorGroupInitialSync", "reconstructingCritical", "rebalancing", "copyThenFail", "copyThenFailPending", "copyThenReplace", "copyThenReplaceAndFail", "thinDefrag", "creating", "deleting", "__UNDEFINED"] if action not in allowed_values: raise ValueError( "Invalid value for `action`, must be one of {0}" .format(allowed_values) ) self._action = action @property def rollback_status(self): """ Gets the rollback_status of this SnapshotGroup. The status of the rollback (if rollback is indicated in VolumeAction above). :return: The rollback_status of this SnapshotGroup. :rtype: str :required/optional: required """ return self._rollback_status @rollback_status.setter def rollback_status(self, rollback_status): """ Sets the rollback_status of this SnapshotGroup. The status of the rollback (if rollback is indicated in VolumeAction above). :param rollback_status: The rollback_status of this SnapshotGroup. :type: str """ allowed_values = ["unknown", "none", "inProgress", "pending", "paused", "__UNDEFINED"] if rollback_status not in allowed_values: raise ValueError( "Invalid value for `rollback_status`, must be one of {0}" .format(allowed_values) ) self._rollback_status = rollback_status @property def rollback_priority(self): """ Gets the rollback_priority of this SnapshotGroup. The importance of the rollback operation. :return: The rollback_priority of this SnapshotGroup. :rtype: str :required/optional: required """ return self._rollback_priority @rollback_priority.setter def rollback_priority(self, rollback_priority): """ Sets the rollback_priority of this SnapshotGroup. The importance of the rollback operation. :param rollback_priority: The rollback_priority of this SnapshotGroup. :type: str """ allowed_values = ["highest", "high", "medium", "low", "lowest", "__UNDEFINED"] if rollback_priority not in allowed_values: raise ValueError( "Invalid value for `rollback_priority`, must be one of {0}" .format(allowed_values) ) self._rollback_priority = rollback_priority @property def consistency_group(self): """ Gets the consistency_group of this SnapshotGroup. If true, this PiT group is part of a consistency group. :return: The consistency_group of this SnapshotGroup. :rtype: bool :required/optional: required """ return self._consistency_group @consistency_group.setter def consistency_group(self, consistency_group): """ Sets the consistency_group of this SnapshotGroup. If true, this PiT group is part of a consistency group. :param consistency_group: The consistency_group of this SnapshotGroup. :type: bool """ self._consistency_group = consistency_group @property def consistency_group_ref(self): """ Gets the consistency_group_ref of this SnapshotGroup. A reference to the parent consistency group, if applicable. This value will be NULL if this PiT group is not part of a consistency group. :return: The consistency_group_ref of this SnapshotGroup. :rtype: str :required/optional: required """ return self._consistency_group_ref @consistency_group_ref.setter def consistency_group_ref(self, consistency_group_ref): """ Sets the consistency_group_ref of this SnapshotGroup. A reference to the parent consistency group, if applicable. This value will be NULL if this PiT group is not part of a consistency group. :param consistency_group_ref: The consistency_group_ref of this SnapshotGroup. :type: str """ self._consistency_group_ref = consistency_group_ref @property def creation_pending_status(self): """ Gets the creation_pending_status of this SnapshotGroup. The status of Pending PiT Creation. :return: The creation_pending_status of this SnapshotGroup. :rtype: str :required/optional: required """ return self._creation_pending_status @creation_pending_status.setter def creation_pending_status(self, creation_pending_status): """ Sets the creation_pending_status of this SnapshotGroup. The status of Pending PiT Creation. :param creation_pending_status: The creation_pending_status of this SnapshotGroup. :type: str """ allowed_values = ["unknown", "none", "waiting", "failed", "__UNDEFINED"] if creation_pending_status not in allowed_values: raise ValueError( "Invalid value for `creation_pending_status`, must be one of {0}" .format(allowed_values) ) self._creation_pending_status = creation_pending_status @property def volume_handle(self): """ Gets the volume_handle of this SnapshotGroup. The PiT group SSID. This is provided primarily for debug purposes. :return: The volume_handle of this SnapshotGroup. :rtype: int :required/optional: required """ return self._volume_handle @volume_handle.setter def volume_handle(self, volume_handle): """ Sets the volume_handle of this SnapshotGroup. The PiT group SSID. This is provided primarily for debug purposes. :param volume_handle: The volume_handle of this SnapshotGroup. :type: int """ self._volume_handle = volume_handle @property def volcopy_id(self): """ Gets the volcopy_id of this SnapshotGroup. :return: The volcopy_id of this SnapshotGroup. :rtype: str :required/optional: optional """ return self._volcopy_id @volcopy_id.setter def volcopy_id(self, volcopy_id): """ Sets the volcopy_id of this SnapshotGroup. :param volcopy_id: The volcopy_id of this SnapshotGroup. :type: str """ self._volcopy_id = volcopy_id @property def snapshot_count(self): """ Gets the snapshot_count of this SnapshotGroup. :return: The snapshot_count of this SnapshotGroup. :rtype: int :required/optional: optional """ return self._snapshot_count @snapshot_count.setter def snapshot_count(self, snapshot_count): """ Sets the snapshot_count of this SnapshotGroup. :param snapshot_count: The snapshot_count of this SnapshotGroup. :type: int """ self._snapshot_count = snapshot_count @property def repository_capacity(self): """ Gets the repository_capacity of this SnapshotGroup. The aggregate capacity of the repository in bytes :return: The repository_capacity of this SnapshotGroup. :rtype: int :required/optional: optional """ return self._repository_capacity @repository_capacity.setter def repository_capacity(self, repository_capacity): """ Sets the repository_capacity of this SnapshotGroup. The aggregate capacity of the repository in bytes :param repository_capacity: The repository_capacity of this SnapshotGroup. :type: int """ self._repository_capacity = repository_capacity @property def id(self): """ Gets the id of this SnapshotGroup. :return: The id of this SnapshotGroup. :rtype: str :required/optional: optional """ return self._id @id.setter def id(self, id): """ Sets the id of this SnapshotGroup. :param id: The id of this SnapshotGroup. :type: str """ self._id = id @property def name(self): """ Gets the name of this SnapshotGroup. :return: The name of this SnapshotGroup. :rtype: str :required/optional: optional """ return self._name @name.setter def name(self, name): """ Sets the name of this SnapshotGroup. :param name: The name of this SnapshotGroup. :type: str """ self._name = name
[docs] def to_dict(self): """ Returns the model properties as a dict """ result = {} for attr, _ in iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result
[docs] def to_str(self): """ Returns the string representation of the model """ return pformat(self.to_dict())
def __repr__(self): """ For `print` and `pprint` """ if self is None: return None return self.to_str() def __eq__(self, other): """ Returns true if both objects are equal """ if self is None or other is None: return None return self.__dict__ == other.__dict__ def __ne__(self, other): """ Returns true if both objects are not equal """ return not self == other