Class: Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::TenantBackfillStatusResult
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::TenantBackfillStatusResult
- 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
-
#status ⇒ Status
include: ‘NotStarted’, ‘NotStartedButGroupsExist’, ‘Started’, ‘Failed’, ‘Cancelled’, ‘Completed’.
-
#tenant_id ⇒ String
group.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TenantBackfillStatusResult class as Ruby Hash.
Instance Attribute Details
#status ⇒ Status
include: ‘NotStarted’, ‘NotStartedButGroupsExist’, ‘Started’, ‘Failed’, ‘Cancelled’, ‘Completed’
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_id ⇒ String
group. For example, 00000000-0000-0000-0000-000000000000
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
.mapper ⇒ Object
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 |