Class: Azure::Search::Mgmt::V2015_08_19::Models::Resource
- Inherits:
-
Object
- Object
- Azure::Search::Mgmt::V2015_08_19::Models::Resource
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb
Overview
Base type for all Azure resources.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#id ⇒ String
Azure Resource Manager to link resources together.
-
#identity ⇒ Identity
The identity of the resource.
-
#location ⇒ String
one of the supported and registered Azure Geo Regions (for example, West US, East US, Southeast Asia, and so forth).
-
#name ⇒ String
The name of the resource.
-
#tags ⇒ Hash{String => String}
in the Azure portal.
-
#type ⇒ String
The resource type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Resource class as Ruby Hash.
Instance Method Summary collapse
-
#resource_group ⇒ String
The name of the resource group of the resource.
Instance Attribute Details
#id ⇒ String
Azure Resource Manager to link resources together.
17 18 19 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 17 def id @id end |
#identity ⇒ Identity
Returns The identity of the resource.
36 37 38 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 36 def identity @identity end |
#location ⇒ String
one of the supported and registered Azure Geo Regions (for example, West US, East US, Southeast Asia, and so forth). This property is required when creating a new resource.
29 30 31 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 29 def location @location end |
#name ⇒ String
Returns The name of the resource.
20 21 22 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 20 def name @name end |
#tags ⇒ Hash{String => String}
in the Azure portal.
33 34 35 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 33 def end |
#type ⇒ String
Returns The resource type.
23 24 25 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 23 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for Resource class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 52 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' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: false, 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' } } } }, identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'Identity' } } } } } end |
Instance Method Details
#resource_group ⇒ String
Returns the name of the resource group of the resource.
40 41 42 43 44 45 |
# File 'lib/2015-08-19/generated/azure_mgmt_search/models/resource.rb', line 40 def resource_group unless self.id.nil? groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/) groups.captures[0].strip if groups end end |