Class: Azure::ARM::DataLakeStore::Models::InnerError
- Inherits:
-
Object
- Object
- Azure::ARM::DataLakeStore::Models::InnerError
- Includes:
- MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_datalake_store/models/inner_error.rb
Overview
Data Lake Store inner error information
Instance Attribute Summary collapse
-
#context ⇒ String
The context for the error message.
-
#trace ⇒ String
The stack trace for the error.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for InnerError class as Ruby Hash.
Instance Attribute Details
#context ⇒ String
Returns the context for the error message.
19 20 21 |
# File 'lib/generated/azure_mgmt_datalake_store/models/inner_error.rb', line 19 def context @context end |
#trace ⇒ String
Returns the stack trace for the error.
16 17 18 |
# File 'lib/generated/azure_mgmt_datalake_store/models/inner_error.rb', line 16 def trace @trace 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 |
# File 'lib/generated/azure_mgmt_datalake_store/models/inner_error.rb', line 26 def self.mapper() { required: false, serialized_name: 'InnerError', type: { name: 'Composite', class_name: 'InnerError', model_properties: { trace: { required: false, read_only: true, serialized_name: 'trace', type: { name: 'String' } }, context: { required: false, read_only: true, serialized_name: 'context', type: { name: 'String' } } } } } end |