Class: Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ResourceTestStatus
- Inherits:
-
Object
- Object
- Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::ResourceTestStatus
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/resource_test_status.rb
Overview
Describes the status of the test operation along with error information, if applicable.
Instance Attribute Summary collapse
-
#error ⇒ ErrorResponse
Describes the error that occurred.
-
#status ⇒ String
The status of the test operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResourceTestStatus class as Ruby Hash.
Instance Attribute Details
#error ⇒ ErrorResponse
Returns Describes the error that occurred.
20 21 22 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/resource_test_status.rb', line 20 def error @error end |
#status ⇒ String
Returns The status of the test operation.
17 18 19 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/resource_test_status.rb', line 17 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for ResourceTestStatus class as Ruby Hash. This will be used for serialization/deserialization.
27 28 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 |
# File 'lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/resource_test_status.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceTestStatus', type: { name: 'Composite', class_name: 'ResourceTestStatus', model_properties: { status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'status', type: { name: 'String' } }, error: { client_side_validation: true, required: false, read_only: true, serialized_name: 'error', type: { name: 'Composite', class_name: 'ErrorResponse' } } } } } end |