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
|
# 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 BackupResourceConfig(Model):
"""The resource storage details.
:param storage_model_type: Storage type. Possible values include:
'Invalid', 'GeoRedundant', 'LocallyRedundant'
:type storage_model_type: str or
~azure.mgmt.recoveryservicesbackup.models.StorageType
:param storage_type: Storage type. Possible values include: 'Invalid',
'GeoRedundant', 'LocallyRedundant'
:type storage_type: str or
~azure.mgmt.recoveryservicesbackup.models.StorageType
:param storage_type_state: Locked or Unlocked. Once a machine is
registered against a resource, the storageTypeState is always Locked.
Possible values include: 'Invalid', 'Locked', 'Unlocked'
:type storage_type_state: str or
~azure.mgmt.recoveryservicesbackup.models.StorageTypeState
"""
_attribute_map = {
'storage_model_type': {'key': 'storageModelType', 'type': 'str'},
'storage_type': {'key': 'storageType', 'type': 'str'},
'storage_type_state': {'key': 'storageTypeState', 'type': 'str'},
}
def __init__(self, **kwargs):
super(BackupResourceConfig, self).__init__(**kwargs)
self.storage_model_type = kwargs.get('storage_model_type', None)
self.storage_type = kwargs.get('storage_type', None)
self.storage_type_state = kwargs.get('storage_type_state', None)
|