Class: Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::ManagementGroup
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::ManagementGroup
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-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.
-
#roles ⇒ Array<String>
management group.
-
#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.
43 44 45 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 43 def children @children end |
#details ⇒ ManagementGroupDetails
Returns Details.
40 41 42 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 40 def details @details end |
#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.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.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.rb', line 26 def name @name end |
#roles ⇒ Array<String>
management group.
37 38 39 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 37 def roles @roles 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.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.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.
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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 50 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' } }, roles: { client_side_validation: true, required: false, serialized_name: 'properties.roles', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', 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 |