Class: Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::ManagementGroupInfo
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::ManagementGroupInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb
Overview
The management group resource.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The friendly name of the management group.
-
#id ⇒ String
example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000.
-
#name ⇒ String
00000000-0000-0000-0000-000000000000.
-
#tenant_id ⇒ String
group.
-
#type ⇒ String
/providers/Microsoft.Management/managementGroups.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ManagementGroupInfo class as Ruby Hash.
Instance Attribute Details
#display_name ⇒ String
Returns The friendly name of the management group.
33 34 35 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb', line 33 def display_name @display_name end |
#id ⇒ String
example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
18 19 20 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb', line 18 def id @id end |
#name ⇒ String
00000000-0000-0000-0000-000000000000
26 27 28 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb', line 26 def name @name end |
#tenant_id ⇒ String
group. For example, 00000000-0000-0000-0000-000000000000
30 31 32 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb', line 30 def tenant_id @tenant_id end |
#type ⇒ String
/providers/Microsoft.Management/managementGroups
22 23 24 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb', line 22 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ManagementGroupInfo class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group_info.rb', line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagementGroupInfo', type: { name: 'Composite', class_name: 'ManagementGroupInfo', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, tenant_id: { client_side_validation: true, required: false, serialized_name: 'properties.tenantId', type: { name: 'String' } }, display_name: { client_side_validation: true, required: false, serialized_name: 'properties.displayName', type: { name: 'String' } } } } } end |