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
|
# 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 PreValidateEnableBackupResponse(Model):
"""Response contract for enable backup validation request.
:param status: Validation Status. Possible values include: 'Invalid',
'Succeeded', 'Failed'
:type status: str or
~azure.mgmt.recoveryservicesbackup.models.ValidationStatus
:param error_code: Response error code
:type error_code: str
:param error_message: Response error message
:type error_message: str
:param recommendation: Recommended action for user
:type recommendation: str
:param container_name: Specifies the product specific container name. E.g.
iaasvmcontainer;iaasvmcontainer;rgname;vmname. This is required for portal
:type container_name: str
:param protected_item_name: Specifies the product specific ds name. E.g.
vm;iaasvmcontainer;rgname;vmname. This is required for portal
:type protected_item_name: str
"""
_attribute_map = {
'status': {'key': 'status', 'type': 'str'},
'error_code': {'key': 'errorCode', 'type': 'str'},
'error_message': {'key': 'errorMessage', 'type': 'str'},
'recommendation': {'key': 'recommendation', 'type': 'str'},
'container_name': {'key': 'containerName', 'type': 'str'},
'protected_item_name': {'key': 'protectedItemName', 'type': 'str'},
}
def __init__(self, **kwargs):
super(PreValidateEnableBackupResponse, self).__init__(**kwargs)
self.status = kwargs.get('status', None)
self.error_code = kwargs.get('error_code', None)
self.error_message = kwargs.get('error_message', None)
self.recommendation = kwargs.get('recommendation', None)
self.container_name = kwargs.get('container_name', None)
self.protected_item_name = kwargs.get('protected_item_name', None)
|