Class: Azure::ContainerRegistry::Mgmt::V2016_06_27_preview::Models::Registry

Inherits:
Resource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry.rb

Overview

An object that represents a container registry.

Instance Attribute Summary collapse

Attributes inherited from Resource

#id, #location, #name, #tags, #type

Class Method Summary collapse

Methods inherited from Resource

#resource_group

Instance Attribute Details

#admin_user_enabledBoolean

enabled. This value is false by default. Default value: false .

Returns:

  • (Boolean)

    The value that indicates whether the admin user is



25
26
27
# File 'lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry.rb', line 25

def admin_user_enabled
  @admin_user_enabled
end

#creation_dateDateTime

ISO8601 format.

Returns:

  • (DateTime)

    The creation date of the container registry in



21
22
23
# File 'lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry.rb', line 21

def creation_date
  @creation_date
end

#login_serverString

registry.

Returns:

  • (String)

    The URL that can be used to log into the container



17
18
19
# File 'lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry.rb', line 17

def 
  @login_server
end

#storage_accountStorageAccountProperties

account for the container registry. If specified, the storage account must be in the same physical location as the container registry.

Returns:



30
31
32
# File 'lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry.rb', line 30

def 
  
end

Class Method Details

.mapperObject

Mapper for Registry class as Ruby Hash. This will be used for serialization/deserialization.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/registry.rb', line 37

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Registry',
    type: {
      name: 'Composite',
      class_name: 'Registry',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        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'
                }
            }
          }
        },
        login_server: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.loginServer',
          type: {
            name: 'String'
          }
        },
        creation_date: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.creationDate',
          type: {
            name: 'DateTime'
          }
        },
        admin_user_enabled: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.adminUserEnabled',
          default_value: false,
          type: {
            name: 'Boolean'
          }
        },
        storage_account: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.storageAccount',
          type: {
            name: 'Composite',
            class_name: 'StorageAccountProperties'
          }
        }
      }
    }
  }
end