Class: Azure::PolicyInsights::Mgmt::V2019_10_01::Models::TypedErrorInfo
- Inherits:
-
Object
- Object
- Azure::PolicyInsights::Mgmt::V2019_10_01::Models::TypedErrorInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-10-01/generated/azure_mgmt_policy_insights/models/typed_error_info.rb
Overview
Scenario specific error details.
Instance Attribute Summary collapse
-
#info ⇒ Object
The scenario specific error details.
-
#type ⇒ String
The type of included error details.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TypedErrorInfo class as Ruby Hash.
Instance Attribute Details
#info ⇒ Object
Returns The scenario specific error details.
19 20 21 |
# File 'lib/2019-10-01/generated/azure_mgmt_policy_insights/models/typed_error_info.rb', line 19 def info @info end |
#type ⇒ String
Returns The type of included error details.
16 17 18 |
# File 'lib/2019-10-01/generated/azure_mgmt_policy_insights/models/typed_error_info.rb', line 16 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for TypedErrorInfo 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 55 56 |
# File 'lib/2019-10-01/generated/azure_mgmt_policy_insights/models/typed_error_info.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TypedErrorInfo', type: { name: 'Composite', class_name: 'TypedErrorInfo', model_properties: { type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, info: { client_side_validation: true, required: false, read_only: true, serialized_name: 'info', type: { name: 'Object' } } } } } end |