Class: Azure::RecoveryServicesBackup::Mgmt::V2016_12_01::Models::OperationStatusJobExtendedInfo
- Inherits:
-
OperationStatusExtendedInfo
- Object
- OperationStatusExtendedInfo
- Azure::RecoveryServicesBackup::Mgmt::V2016_12_01::Models::OperationStatusJobExtendedInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/models/operation_status_job_extended_info.rb
Overview
Operation status job extended info.
Instance Attribute Summary collapse
-
#job_id ⇒ String
ID of the job created for this protected item.
-
#objectType ⇒ Object
Returns the value of attribute objectType.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationStatusJobExtendedInfo class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ OperationStatusJobExtendedInfo
constructor
A new instance of OperationStatusJobExtendedInfo.
Constructor Details
#initialize ⇒ OperationStatusJobExtendedInfo
Returns a new instance of OperationStatusJobExtendedInfo.
20 21 22 |
# File 'lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/models/operation_status_job_extended_info.rb', line 20 def initialize @objectType = "OperationStatusJobExtendedInfo" end |
Instance Attribute Details
#job_id ⇒ String
Returns ID of the job created for this protected item.
27 28 29 |
# File 'lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/models/operation_status_job_extended_info.rb', line 27 def job_id @job_id end |
#objectType ⇒ Object
Returns the value of attribute objectType.
24 25 26 |
# File 'lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/models/operation_status_job_extended_info.rb', line 24 def objectType @objectType end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationStatusJobExtendedInfo class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/models/operation_status_job_extended_info.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationStatusJobExtendedInfo', type: { name: 'Composite', class_name: 'OperationStatusJobExtendedInfo', model_properties: { objectType: { client_side_validation: true, required: true, serialized_name: 'objectType', type: { name: 'String' } }, job_id: { client_side_validation: true, required: false, serialized_name: 'jobId', type: { name: 'String' } } } } } end |