Class: Azure::Compute::Mgmt::V2017_12_01::Models::InnerError
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2017_12_01::Models::InnerError
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-12-01/generated/azure_mgmt_compute/models/inner_error.rb
Overview
Inner error details.
Instance Attribute Summary collapse
-
#errordetail ⇒ String
The internal error message or exception dump.
-
#exceptiontype ⇒ String
The exception type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for InnerError class as Ruby Hash.
Instance Attribute Details
#errordetail ⇒ String
Returns The internal error message or exception dump.
19 20 21 |
# File 'lib/2017-12-01/generated/azure_mgmt_compute/models/inner_error.rb', line 19 def errordetail @errordetail end |
#exceptiontype ⇒ String
Returns The exception type.
16 17 18 |
# File 'lib/2017-12-01/generated/azure_mgmt_compute/models/inner_error.rb', line 16 def exceptiontype @exceptiontype end |
Class Method Details
.mapper ⇒ Object
Mapper for InnerError class as Ruby Hash. This will be used for serialization/deserialization.
26 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 |
# File 'lib/2017-12-01/generated/azure_mgmt_compute/models/inner_error.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'InnerError', type: { name: 'Composite', class_name: 'InnerError', model_properties: { exceptiontype: { client_side_validation: true, required: false, serialized_name: 'exceptiontype', type: { name: 'String' } }, errordetail: { client_side_validation: true, required: false, serialized_name: 'errordetail', type: { name: 'String' } } } } } end |