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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# 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 ProtectedItemQueryObject(Model):
"""Filters to list backup items.
:param health_state: Health State for the backed up item. Possible values
include: 'Passed', 'ActionRequired', 'ActionSuggested', 'Invalid'
:type health_state: str or
~azure.mgmt.recoveryservicesbackup.models.HealthState
:param backup_management_type: Backup management type for the backed up
item. Possible values include: 'Invalid', 'AzureIaasVM', 'MAB', 'DPM',
'AzureBackupServer', 'AzureSql', 'AzureStorage', 'AzureWorkload',
'DefaultBackup'
:type backup_management_type: str or
~azure.mgmt.recoveryservicesbackup.models.BackupManagementType
:param item_type: Type of workload this item represents. Possible values
include: 'Invalid', 'VM', 'FileFolder', 'AzureSqlDb', 'SQLDB', 'Exchange',
'Sharepoint', 'VMwareVM', 'SystemState', 'Client', 'GenericDataSource',
'SQLDataBase', 'AzureFileShare', 'SAPHanaDatabase'
:type item_type: str or
~azure.mgmt.recoveryservicesbackup.models.DataSourceType
:param policy_name: Backup policy name associated with the backup item.
:type policy_name: str
:param container_name: Name of the container.
:type container_name: str
:param backup_engine_name: Backup Engine name
:type backup_engine_name: str
:param friendly_name: Friendly name of protected item
:type friendly_name: str
:param fabric_name: Name of the fabric.
:type fabric_name: str
:param backup_set_name: Name of the backup set.
:type backup_set_name: str
"""
_attribute_map = {
'health_state': {'key': 'healthState', 'type': 'str'},
'backup_management_type': {'key': 'backupManagementType', 'type': 'str'},
'item_type': {'key': 'itemType', 'type': 'str'},
'policy_name': {'key': 'policyName', 'type': 'str'},
'container_name': {'key': 'containerName', 'type': 'str'},
'backup_engine_name': {'key': 'backupEngineName', 'type': 'str'},
'friendly_name': {'key': 'friendlyName', 'type': 'str'},
'fabric_name': {'key': 'fabricName', 'type': 'str'},
'backup_set_name': {'key': 'backupSetName', 'type': 'str'},
}
def __init__(self, **kwargs):
super(ProtectedItemQueryObject, self).__init__(**kwargs)
self.health_state = kwargs.get('health_state', None)
self.backup_management_type = kwargs.get('backup_management_type', None)
self.item_type = kwargs.get('item_type', None)
self.policy_name = kwargs.get('policy_name', None)
self.container_name = kwargs.get('container_name', None)
self.backup_engine_name = kwargs.get('backup_engine_name', None)
self.friendly_name = kwargs.get('friendly_name', None)
self.fabric_name = kwargs.get('fabric_name', None)
self.backup_set_name = kwargs.get('backup_set_name', None)
|