Class: Azure::MachineLearningServices::Mgmt::V2019_05_01::Models::Resource

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb

Overview

Azure Resource Manager resource envelope.

Direct Known Subclasses

ComputeResource, Workspace

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#idString

Returns Specifies the resource ID.

Returns:

  • (String)

    Specifies the resource ID.



16
17
18
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 16

def id
  @id
end

#identityIdentity

Returns The identity of the resource.

Returns:

  • (Identity)

    The identity of the resource.



22
23
24
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 22

def identity
  @identity
end

#locationString

Returns Specifies the location of the resource.

Returns:

  • (String)

    Specifies the location of the resource.



25
26
27
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 25

def location
  @location
end

#nameString

Returns Specifies the name of the resource.

Returns:

  • (String)

    Specifies the name of the resource.



19
20
21
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 19

def name
  @name
end

#tagsHash{String => String}

key/value pairs.

Returns:

  • (Hash{String => String})

    Contains resource tags defined as



32
33
34
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 32

def tags
  @tags
end

#typeString

Returns Specifies the type of the resource.

Returns:

  • (String)

    Specifies the type of the resource.



28
29
30
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 28

def type
  @type
end

Class Method Details

.mapperObject

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



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
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 48

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

Instance Method Details

#resource_groupString

Returns the name of the resource group of the resource.

Returns:

  • (String)

    the name of the resource group of the resource.



36
37
38
39
40
41
# File 'lib/2019-05-01/generated/azure_mgmt_machine_learning_services/models/resource.rb', line 36

def resource_group
  unless self.id.nil?
    groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
    groups.captures[0].strip if groups
  end
end