# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class UptieringRunOnceParams(object):
"""Implementation of the 'UptieringRunOnceParams' model.
Attributes:
uptier_path (string): Ignore the uptiering policy and uptier the
pointed by the 'uptier_path'. If path is '/', then uptier
everything.
"""
# Create a mapping from Model property names to API property names
_names = {
"uptier_path":'uptierPath'
}
def __init__(self,
uptier_path=None):
"""Constructor for the UptieringRunOnceParams class"""
# Initialize members of the class
self.uptier_path = uptier_path
[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
uptier_path = dictionary.get('uptierPath')
# Return an object of this model
return cls(uptier_path)