Class: Azure::ResourcesManagement::Mgmt::V2018_01_01_preview::Models::CreateParentGroupInfo
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2018_01_01_preview::Models::CreateParentGroupInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/create_parent_group_info.rb
Overview
(Optional) The ID of the parent management group used during creation.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The friendly name of the parent management group.
-
#id ⇒ String
group.
-
#name ⇒ String
The name of the parent management group.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CreateParentGroupInfo class as Ruby Hash.
Instance Attribute Details
#display_name ⇒ String
Returns The friendly name of the parent management group.
24 25 26 |
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/create_parent_group_info.rb', line 24 def display_name @display_name end |
#id ⇒ String
group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
18 19 20 |
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/create_parent_group_info.rb', line 18 def id @id end |
#name ⇒ String
Returns The name of the parent management group.
21 22 23 |
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/create_parent_group_info.rb', line 21 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for CreateParentGroupInfo class as Ruby Hash. This will be used for serialization/deserialization.
31 32 33 34 35 36 37 38 39 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 |
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/create_parent_group_info.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CreateParentGroupInfo', type: { name: 'Composite', class_name: 'CreateParentGroupInfo', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, display_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'displayName', type: { name: 'String' } } } } } end |