1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class MabContainerExtendedInfo(Model):
"""Additional information of the container.
:param last_refreshed_at: Time stamp when this container was refreshed.
:type last_refreshed_at: datetime
:param backup_item_type: Type of backup items associated with this
container. Possible values include: 'Invalid', 'VM', 'FileFolder',
'AzureSqlDb', 'SQLDB', 'Exchange', 'Sharepoint', 'VMwareVM',
'SystemState', 'Client', 'GenericDataSource', 'SQLDataBase',
'AzureFileShare', 'SAPHanaDatabase'
:type backup_item_type: str or
~azure.mgmt.recoveryservicesbackup.models.BackupItemType
:param backup_items: List of backup items associated with this container.
:type backup_items: list[str]
:param policy_name: Backup policy associated with this container.
:type policy_name: str
:param last_backup_status: Latest backup status of this container.
:type last_backup_status: str
"""
_attribute_map = {
'last_refreshed_at': {'key': 'lastRefreshedAt', 'type': 'iso-8601'},
'backup_item_type': {'key': 'backupItemType', 'type': 'str'},
'backup_items': {'key': 'backupItems', 'type': '[str]'},
'policy_name': {'key': 'policyName', 'type': 'str'},
'last_backup_status': {'key': 'lastBackupStatus', 'type': 'str'},
}
def __init__(self, *, last_refreshed_at=None, backup_item_type=None, backup_items=None, policy_name: str=None, last_backup_status: str=None, **kwargs) -> None:
super(MabContainerExtendedInfo, self).__init__(**kwargs)
self.last_refreshed_at = last_refreshed_at
self.backup_item_type = backup_item_type
self.backup_items = backup_items
self.policy_name = policy_name
self.last_backup_status = last_backup_status
|