Class: Azure::ResourcesManagement::Mgmt::V2017_11_01_preview::Models::ManagementGroup
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2017_11_01_preview::Models::ManagementGroup
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb
Overview
The management group details.
Instance Attribute Summary collapse
-
#children ⇒ Array<ManagementGroupChildInfo>
The list of children.
-
#details ⇒ ManagementGroupDetails
Details.
-
#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 ManagementGroup class as Ruby Hash.
Instance Attribute Details
#children ⇒ Array<ManagementGroupChildInfo>
Returns The list of children.
39 40 41 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 39 def children @children end |
#details ⇒ ManagementGroupDetails
Returns Details.
36 37 38 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 36 def details @details end |
#display_name ⇒ String
Returns The friendly name of the management group.
33 34 35 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.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/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 18 def id @id end |
#name ⇒ String
00000000-0000-0000-0000-000000000000
26 27 28 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 26 def name @name end |
#tenant_id ⇒ String
group. For example, 00000000-0000-0000-0000-000000000000
30 31 32 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 30 def tenant_id @tenant_id end |
#type ⇒ String
/providers/Microsoft.Management/managementGroups
22 23 24 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 22 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ManagementGroup class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2017-11-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagementGroup', type: { name: 'Composite', class_name: 'ManagementGroup', 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' } }, details: { client_side_validation: true, required: false, serialized_name: 'properties.details', type: { name: 'Composite', class_name: 'ManagementGroupDetails' } }, children: { client_side_validation: true, required: false, serialized_name: 'properties.children', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ManagementGroupChildInfoElementType', type: { name: 'Composite', class_name: 'ManagementGroupChildInfo' } } } } } } } end |