Class: Azure::Logic::Mgmt::V2016_06_01::Models::RetryHistory
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2016_06_01::Models::RetryHistory
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb
Overview
The retry history.
Instance Attribute Summary collapse
-
#client_request_id ⇒ String
Gets the client request Id.
-
#code ⇒ String
Gets the status code.
-
#end_time ⇒ DateTime
Gets the end time.
-
#error ⇒ ErrorResponse
Gets the error response.
-
#service_request_id ⇒ String
Gets the service request Id.
-
#start_time ⇒ DateTime
Gets the start time.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RetryHistory class as Ruby Hash.
Instance Attribute Details
#client_request_id ⇒ String
Returns Gets the client request Id.
25 26 27 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 25 def client_request_id @client_request_id end |
#code ⇒ String
Returns Gets the status code.
22 23 24 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 22 def code @code end |
#end_time ⇒ DateTime
Returns Gets the end time.
19 20 21 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 19 def end_time @end_time end |
#error ⇒ ErrorResponse
Returns Gets the error response.
31 32 33 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 31 def error @error end |
#service_request_id ⇒ String
Returns Gets the service request Id.
28 29 30 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 28 def service_request_id @service_request_id end |
#start_time ⇒ DateTime
Returns Gets the start time.
16 17 18 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 16 def start_time @start_time end |
Class Method Details
.mapper ⇒ Object
Mapper for RetryHistory class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2016-06-01/generated/azure_mgmt_logic/models/retry_history.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RetryHistory', type: { name: 'Composite', class_name: 'RetryHistory', model_properties: { start_time: { client_side_validation: true, required: false, serialized_name: 'startTime', type: { name: 'DateTime' } }, end_time: { client_side_validation: true, required: false, serialized_name: 'endTime', type: { name: 'DateTime' } }, code: { client_side_validation: true, required: false, serialized_name: 'code', type: { name: 'String' } }, client_request_id: { client_side_validation: true, required: false, serialized_name: 'clientRequestId', type: { name: 'String' } }, service_request_id: { client_side_validation: true, required: false, serialized_name: 'serviceRequestId', type: { name: 'String' } }, error: { client_side_validation: true, required: false, serialized_name: 'error', type: { name: 'Composite', class_name: 'ErrorResponse' } } } } } end |