class Azure::ContainerRegistry::Mgmt::V2017_06_01_preview::Models::RegistryUpdateParameters
The parameters for updating a container registry.
Attributes
admin_user_enabled[RW]
@return [Boolean] The value that indicates whether the admin user is enabled.
sku[RW]
@return [Sku] The SKU of the container registry.
storage_account[RW]
@return [StorageAccountProperties] The parameters of a storage account for the container registry. Only applicable to Basic SKU. If specified, the storage account must be in the same physical location as the container registry.
Public Class Methods
mapper()
click to toggle source
Mapper for RegistryUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-06-01-preview/generated/azure_mgmt_container_registry/models/registry_update_parameters.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RegistryUpdateParameters', type: { name: 'Composite', class_name: 'RegistryUpdateParameters', model_properties: { tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, sku: { client_side_validation: true, required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'Sku' } }, admin_user_enabled: { client_side_validation: true, required: false, serialized_name: 'properties.adminUserEnabled', type: { name: 'Boolean' } }, storage_account: { client_side_validation: true, required: false, serialized_name: 'properties.storageAccount', type: { name: 'Composite', class_name: 'StorageAccountProperties' } } } } } end