Class: Azure::Network::Mgmt::V2018_08_01::Models::AzureAsyncOperationResult
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_08_01::Models::AzureAsyncOperationResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/azure_async_operation_result.rb
Overview
The response body contains the status of the specified asynchronous operation, indicating whether it has succeeded, is in progress, or has failed. Note that this status is distinct from the HTTP status code returned for the Get Operation Status operation itself. If the asynchronous operation succeeded, the response body includes the HTTP status code for the successful request. If the asynchronous operation failed, the response body includes the HTTP status code for the failed request and error information regarding the failure.
Instance Attribute Summary collapse
- #error ⇒ Error
-
#status ⇒ NetworkOperationStatus
Possible values are: 'InProgress', 'Succeeded', and 'Failed'.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureAsyncOperationResult class as Ruby Hash.
Instance Attribute Details
#error ⇒ Error
28 29 30 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_async_operation_result.rb', line 28 def error @error end |
#status ⇒ NetworkOperationStatus
Possible values are: 'InProgress', 'Succeeded', and 'Failed'. Possible values include: 'InProgress', 'Succeeded', 'Failed'
25 26 27 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_async_operation_result.rb', line 25 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureAsyncOperationResult class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/azure_async_operation_result.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureAsyncOperationResult', type: { name: 'Composite', class_name: 'AzureAsyncOperationResult', model_properties: { status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'String' } }, error: { client_side_validation: true, required: false, serialized_name: 'error', type: { name: 'Composite', class_name: 'Error' } } } } } end |