Class: Azure::ContainerRegistry::Mgmt::V2018_02_01_preview::Models::ProxyResource

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-02-01-preview/generated/azure_mgmt_container_registry/models/proxy_resource.rb

Overview

The resource model definition for a ARM proxy resource. It will have everything other than required location and tags.

Direct Known Subclasses

Build, BuildStep

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString

Returns The resource ID.

Returns:

  • (String)

    The resource ID.



17
18
19
# File 'lib/2018-02-01-preview/generated/azure_mgmt_container_registry/models/proxy_resource.rb', line 17

def id
  @id
end

#nameString

Returns The name of the resource.

Returns:

  • (String)

    The name of the resource.



20
21
22
# File 'lib/2018-02-01-preview/generated/azure_mgmt_container_registry/models/proxy_resource.rb', line 20

def name
  @name
end

#typeString

Returns The type of the resource.

Returns:

  • (String)

    The type of the resource.



23
24
25
# File 'lib/2018-02-01-preview/generated/azure_mgmt_container_registry/models/proxy_resource.rb', line 23

def type
  @type
end

Class Method Details

.mapperObject

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



30
31
32
33
34
35
36
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
# File 'lib/2018-02-01-preview/generated/azure_mgmt_container_registry/models/proxy_resource.rb', line 30

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ProxyResource',
    type: {
      name: 'Composite',
      class_name: 'ProxyResource',
      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'
          }
        }
      }
    }
  }
end