# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
[docs]class LastProtectionRunStatsByEnv(object):
"""Implementation of the 'LastProtectionRunStatsByEnv' model.
Specifies the last Protection Run stats by env.
Attributes:
environment (EnvironmentLastProtectionRunStatsByEnvEnum): Specifies
the environment.
num_objects_cancelled (long|int): Specifies the number of objects
that were cancelled in the last Run across all Protection Jobs.
num_objects_failed (long|int): Specifies the count of objects that
failed last Protection Run.
num_objects_in_progress (long|int): Specifies the number of objects
that are still in progress in the last Run across all Protection
Jobs.
num_objects_failed_sla (long|int): Specifies the count of objects that
failed sla in the last Run.
num_objects_successful (long|int): Specifies the number of objects
that were successful in the last Run across all Protection Jobs.
num_objects_met_sla (long|int): Specifies the count of objects that
met sla in the last Run.
"""
# Create a mapping from Model property names to API property names
_names = {
"environment":'environment',
"num_objects_cancelled":'numObjectsCancelled',
"num_objects_failed":'numObjectsFailed',
"num_objects_in_progress":'numObjectsInProgress',
"num_objects_failed_sla":'numObjectsFailedSla',
"num_objects_successful":'numObjectsSuccessful',
"num_objects_met_sla":'numObjectsMetSla'
}
def __init__(self,
environment=None,
num_objects_cancelled=None,
num_objects_failed=None,
num_objects_in_progress=None,
num_objects_failed_sla=None,
num_objects_successful=None,
num_objects_met_sla=None):
"""Constructor for the LastProtectionRunStatsByEnv class"""
# Initialize members of the class
self.environment = environment
self.num_objects_cancelled = num_objects_cancelled
self.num_objects_failed = num_objects_failed
self.num_objects_in_progress = num_objects_in_progress
self.num_objects_failed_sla = num_objects_failed_sla
self.num_objects_successful = num_objects_successful
self.num_objects_met_sla = num_objects_met_sla
[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
environment = dictionary.get('environment')
num_objects_cancelled = dictionary.get('numObjectsCancelled')
num_objects_failed = dictionary.get('numObjectsFailed')
num_objects_in_progress = dictionary.get('numObjectsInProgress')
num_objects_failed_sla = dictionary.get('numObjectsFailedSla')
num_objects_successful = dictionary.get('numObjectsSuccessful')
num_objects_met_sla = dictionary.get('numObjectsMetSla')
# Return an object of this model
return cls(environment,
num_objects_cancelled,
num_objects_failed,
num_objects_in_progress,
num_objects_failed_sla,
num_objects_successful,
num_objects_met_sla)