Source code for azure.mgmt.devtestlabs.models.user_secret_store

# 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


[docs]class UserSecretStore(Model): """Properties of a user's secret store. :param key_vault_uri: The URI of the user's Key vault. :type key_vault_uri: str :param key_vault_id: The ID of the user's Key vault. :type key_vault_id: str """ _attribute_map = { 'key_vault_uri': {'key': 'keyVaultUri', 'type': 'str'}, 'key_vault_id': {'key': 'keyVaultId', 'type': 'str'}, } def __init__(self, key_vault_uri=None, key_vault_id=None): super(UserSecretStore, self).__init__() self.key_vault_uri = key_vault_uri self.key_vault_id = key_vault_id