Class: Azure::RecoveryServicesBackup::Mgmt::V2019_06_15::Models::OperationResultInfo
- Inherits:
-
OperationResultInfoBase
- Object
- OperationResultInfoBase
- Azure::RecoveryServicesBackup::Mgmt::V2019_06_15::Models::OperationResultInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/operation_result_info.rb
Overview
Operation result info.
Instance Attribute Summary collapse
-
#job_list ⇒ Array<String>
List of jobs created by this operation.
-
#objectType ⇒ Object
Returns the value of attribute objectType.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationResultInfo class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ OperationResultInfo
constructor
A new instance of OperationResultInfo.
Constructor Details
#initialize ⇒ OperationResultInfo
Returns a new instance of OperationResultInfo.
16 17 18 |
# File 'lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/operation_result_info.rb', line 16 def initialize @objectType = "OperationResultInfo" end |
Instance Attribute Details
#job_list ⇒ Array<String>
Returns List of jobs created by this operation.
23 24 25 |
# File 'lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/operation_result_info.rb', line 23 def job_list @job_list end |
#objectType ⇒ Object
Returns the value of attribute objectType.
20 21 22 |
# File 'lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/operation_result_info.rb', line 20 def objectType @objectType end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationResultInfo class as Ruby Hash. This will be used for serialization/deserialization.
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 61 62 63 64 65 66 |
# File 'lib/2019-06-15/generated/azure_mgmt_recovery_services_backup/models/operation_result_info.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationResultInfo', type: { name: 'Composite', class_name: 'OperationResultInfo', model_properties: { objectType: { client_side_validation: true, required: true, serialized_name: 'objectType', type: { name: 'String' } }, job_list: { client_side_validation: true, required: false, serialized_name: 'jobList', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |