# 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 RegistryCreateParameters(Model):
"""The parameters for creating a container registry.
All required parameters must be populated in order to send to Azure.
:param tags: The tags for the container registry.
:type tags: dict[str, str]
:param location: Required. The location of the container registry. This
cannot be changed after the resource is created.
:type location: str
:param sku: Required. The SKU of the container registry.
:type sku: ~azure.mgmt.containerregistry.v2017_03_01.models.Sku
:param admin_user_enabled: The value that indicates whether the admin user
is enabled. Default value: False .
:type admin_user_enabled: bool
:param storage_account: Required. The parameters of a storage account for
the container registry. If specified, the storage account must be in the
same physical location as the container registry.
:type storage_account:
~azure.mgmt.containerregistry.v2017_03_01.models.StorageAccountParameters
"""
_validation = {
'location': {'required': True},
'sku': {'required': True},
'storage_account': {'required': True},
}
_attribute_map = {
'tags': {'key': 'tags', 'type': '{str}'},
'location': {'key': 'location', 'type': 'str'},
'sku': {'key': 'sku', 'type': 'Sku'},
'admin_user_enabled': {'key': 'properties.adminUserEnabled', 'type': 'bool'},
'storage_account': {'key': 'properties.storageAccount', 'type': 'StorageAccountParameters'},
}
def __init__(self, *, location: str, sku, storage_account, tags=None, admin_user_enabled: bool=False, **kwargs) -> None:
super(RegistryCreateParameters, self).__init__(**kwargs)
self.tags = tags
self.location = location
self.sku = sku
self.admin_user_enabled = admin_user_enabled
self.storage_account = storage_account