# -*- coding: utf-8 -*-
[docs]class ConnectionInfo(object):
"""Implementation of the 'Connection Info.' model.
Specifies the connection info of a connector.
Attributes:
is_active (bool): Specifies whether the connector is currently
connected to cohesity server.
message (string): Specifies possible error message when the connector
is not able to connect.
last_connected_timestamp_msecs (long|int): Specifies last timestamp
for which connection status was known.
"""
# Create a mapping from Model property names to API property names
_names = {
"is_active":'isActive',
"message":'message',
"last_connected_timestamp_msecs":'lastConnectedTimestampMsecs'
}
def __init__(self,
is_active=None,
message=None,
last_connected_timestamp_msecs=None):
"""Constructor for the ConnectionInfo class"""
# Initialize members of the class
self.is_active = is_active
self.message = message
self.last_connected_timestamp_msecs = last_connected_timestamp_msecs
[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
is_active = dictionary.get('isActive')
message = dictionary.get('message')
last_connected_timestamp_msecs = dictionary.get('lastConnectedTimestampMsecs')
# Return an object of this model
return cls(is_active,
message,
last_connected_timestamp_msecs)