Source code for models_v2.disk_removal_parameters

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


[docs]class DiskRemovalParameters(object): """Implementation of the 'Disk Removal Parameters.' model. Specifies parameters to initiate/cancel disk removal. Attributes: cancel (bool): If true, cancels disk removal which is already in progress. """ # Create a mapping from Model property names to API property names _names = { "cancel":'cancel' } def __init__(self, cancel=None): """Constructor for the DiskRemovalParameters class""" # Initialize members of the class self.cancel = cancel
[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 cancel = dictionary.get('cancel') # Return an object of this model return cls(cancel)