Class: Azure::ResourcesManagement::Mgmt::V2017_08_31_preview::Models::ManagementGroupDetailsProperties
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2017_08_31_preview::Models::ManagementGroupDetailsProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb
Overview
The details properties of a management group.
Instance Attribute Summary collapse
-
#management_group_type ⇒ Enum
‘Enrollment’, ‘Department’, ‘Account’, ‘Subscription’.
-
#parent ⇒ ParentGroupInfo
Parent.
-
#updated_by ⇒ String
the object.
-
#updated_time ⇒ DateTime
The date and time when this object was last updated.
-
#version ⇒ Float
The version number of the object.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ManagementGroupDetailsProperties class as Ruby Hash.
Instance Attribute Details
#management_group_type ⇒ Enum
‘Enrollment’, ‘Department’, ‘Account’, ‘Subscription’
30 31 32 |
# File 'lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb', line 30 def management_group_type @management_group_type end |
#parent ⇒ ParentGroupInfo
Returns Parent.
26 27 28 |
# File 'lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb', line 26 def parent @parent end |
#updated_by ⇒ String
the object.
23 24 25 |
# File 'lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb', line 23 def updated_by @updated_by end |
#updated_time ⇒ DateTime
Returns The date and time when this object was last updated.
19 20 21 |
# File 'lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb', line 19 def updated_time @updated_time end |
#version ⇒ Float
Returns The version number of the object.
16 17 18 |
# File 'lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb', line 16 def version @version end |
Class Method Details
.mapper ⇒ Object
Mapper for ManagementGroupDetailsProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/2017-08-31-preview/generated/azure_mgmt_resources_management/models/management_group_details_properties.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ManagementGroupDetailsProperties', type: { name: 'Composite', class_name: 'ManagementGroupDetailsProperties', model_properties: { version: { client_side_validation: true, required: false, serialized_name: 'version', type: { name: 'Double' } }, updated_time: { client_side_validation: true, required: false, serialized_name: 'updatedTime', type: { name: 'DateTime' } }, updated_by: { client_side_validation: true, required: false, serialized_name: 'updatedBy', type: { name: 'String' } }, parent: { client_side_validation: true, required: false, serialized_name: 'parent', type: { name: 'Composite', class_name: 'ParentGroupInfo' } }, management_group_type: { client_side_validation: true, required: false, serialized_name: 'managementGroupType', type: { name: 'String' } } } } } end |