Source code for azure.mgmt.containerregistry.v2017_03_01.models.storage_account_parameters_py3

# 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 StorageAccountParameters(Model): """The parameters of a storage account for a container registry. All required parameters must be populated in order to send to Azure. :param name: Required. The name of the storage account. :type name: str :param access_key: Required. The access key to the storage account. :type access_key: str """ _validation = { 'name': {'required': True}, 'access_key': {'required': True}, } _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'access_key': {'key': 'accessKey', 'type': 'str'}, } def __init__(self, *, name: str, access_key: str, **kwargs) -> None: super(StorageAccountParameters, self).__init__(**kwargs) self.name = name self.access_key = access_key