1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for
5# license information.
6#
7# Code generated by Microsoft (R) AutoRest Code Generator.
8# Changes may cause incorrect behavior and will be lost if the code is
9# regenerated.
10# --------------------------------------------------------------------------
11
12from msrest.serialization import Model
13
14
15class BackupSecretResult(Model):
16    """The backup secret result, containing the backup blob.
17
18    Variables are only populated by the server, and will be ignored when
19    sending a request.
20
21    :ivar value: The backup blob containing the backed up secret.
22    :vartype value: bytes
23    """
24
25    _validation = {
26        'value': {'readonly': True},
27    }
28
29    _attribute_map = {
30        'value': {'key': 'value', 'type': 'base64'},
31    }
32
33    def __init__(self, **kwargs):
34        super(BackupSecretResult, self).__init__(**kwargs)
35        self.value = None
36