Class: Azure::ResourcesManagement::Mgmt::V2018_01_01_preview::Models::ManagementGroup

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb

Overview

The management group details.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#childrenArray<ManagementGroupChildInfo>



43
44
45
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 43

def children
  @children
end

#detailsManagementGroupDetails



40
41
42
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 40

def details
  @details
end

#display_nameString



33
34
35
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 33

def display_name
  @display_name
end

#idString

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/management_group.rb', line 18

def id
  @id
end

#nameString

00000000-0000-0000-0000-000000000000



26
27
28
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 26

def name
  @name
end

#rolesArray<String>

management group.



37
38
39
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 37

def roles
  @roles
end

#tenant_idString

group. For example, 00000000-0000-0000-0000-000000000000



30
31
32
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 30

def tenant_id
  @tenant_id
end

#typeString

/providers/Microsoft.Management/managementGroups



22
23
24
# File 'lib/2018-01-01-preview/generated/azure_mgmt_resources_management/models/management_group.rb', line 22

def type
  @type
end

Class Method Details

.mapperObject

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-01-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