# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
import cohesity_management_sdk.models.ad_attribute_restore_param
import cohesity_management_sdk.models.ad_object_restore_param
[docs]class ADUpdateRestoreTaskOptions(object):
"""Implementation of the 'ADUpdateRestoreTaskOptions' model.
TODO: type model description here.
Attributes:
object_attributes_param (ADAttributeRestoreParam): TODO: type
description here.
object_param (ADObjectRestoreParam): TODO: type description here.
mtype (int): Specifies the AD restore request type.
"""
# Create a mapping from Model property names to API property names
_names = {
"object_attributes_param":'objectAttributesParam',
"object_param":'objectParam',
"mtype":'type'
}
def __init__(self,
object_attributes_param=None,
object_param=None,
mtype=None):
"""Constructor for the ADUpdateRestoreTaskOptions class"""
# Initialize members of the class
self.object_attributes_param = object_attributes_param
self.object_param = object_param
self.mtype = mtype
[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
object_attributes_param = cohesity_management_sdk.models.ad_attribute_restore_param.ADAttributeRestoreParam.from_dictionary(dictionary.get('objectAttributesParam')) if dictionary.get('objectAttributesParam') else None
object_param = cohesity_management_sdk.models.ad_object_restore_param.ADObjectRestoreParam.from_dictionary(dictionary.get('objectParam')) if dictionary.get('objectParam') else None
mtype = dictionary.get('type')
# Return an object of this model
return cls(object_attributes_param,
object_param,
mtype)