Class: Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::TenantBackfillStatusResult

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

Overview

The tenant backfill status

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#statusStatus

include: ‘NotStarted’, ‘NotStartedButGroupsExist’, ‘Started’, ‘Failed’, ‘Cancelled’, ‘Completed’

Returns:

  • (Status)

    The status of the Tenant Backfill. Possible values



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

def status
  @status
end

#tenant_idString

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

Returns:

  • (String)

    The AAD Tenant ID associated with the management



17
18
19
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/tenant_backfill_status_result.rb', line 17

def tenant_id
  @tenant_id
end

Class Method Details

.mapperObject

Mapper for TenantBackfillStatusResult class as Ruby Hash. This will be used for serialization/deserialization.



29
30
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
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/tenant_backfill_status_result.rb', line 29

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TenantBackfillStatusResult',
    type: {
      name: 'Composite',
      class_name: 'TenantBackfillStatusResult',
      model_properties: {
        tenant_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'status',
          type: {
            name: 'Enum',
            module: 'Status'
          }
        }
      }
    }
  }
end