class Azure::ContainerRegistry::Mgmt::V2016_06_27_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. This value is false by default.
storage_account[RW]
@return [StorageAccountProperties] The properties of a storage account for the container registry. 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/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry_update_parameters.rb, line 33 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' } } } }, 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