models.exchange_database_info module

class models.exchange_database_info.ExchangeDatabaseInfo(app_server_id=None, backup_supported=None, backup_unsupported_reasons=None, created_time_msecs=None, database_state=None, db_size_bytes=None, dbguid=None, name=None, owner_id=None, utc_offset_min=None)[source]

Bases: object

Implementation of the ‘ExchangeDatabaseInfo’ model.

Specifies the information about the Exchange Database.

Attributes:
app_server_id (int): Specifies the entity id of the Exchange

Application Server which has this database copy.

backup_supported (bool): Specifies if backup is supported for the

Exchange database copy.

backup_unsupported_reasons (list of string): Specifies any reason(s)

for Exchange database backup not supported.

created_time_msecs (int): Specifies the time when the database is

created in Unix epoch time in milliseconds.

database_state (DatabaseStateEnum): Specifies the state of the

Exchange database copy. Specifies the state of Exchange Database Copy.

‘kUnknown’ indicates the status is not known. ‘kMounted’ indicates the exchange database copy is mounted and healthy. ‘kError’ indicates the exchange database copy is unmounted or partially mounted or is in error state.

db_size_bytes (int): Specifies the size of the Exchange database copy

in bytes.

dbguid (string): Specifies the guid of the Exchange Database. name (string): Specifes the name of the Exchange Database. owner_id (int): Specifies the owner entity id of the Exchange

Application Server which has this database copy.

utc_offset_min (int): Specifies UTC time offset of database creation

time.

classmethod from_dictionary(dictionary)[source]

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.