Class: Azure::Batch::Mgmt::V2019_08_01::Models::DeleteCertificateError
- Inherits:
-
Object
- Object
- Azure::Batch::Mgmt::V2019_08_01::Models::DeleteCertificateError
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_batch/models/delete_certificate_error.rb
Overview
An error response from the Batch service.
Instance Attribute Summary collapse
-
#code ⇒ String
are intended to be consumed programmatically.
-
#details ⇒ Array<DeleteCertificateError>
about the error.
-
#message ⇒ String
suitable for display in a user interface.
-
#target ⇒ String
name of the property in error.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DeleteCertificateError class as Ruby Hash.
Instance Attribute Details
#code ⇒ String
are intended to be consumed programmatically.
17 18 19 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/delete_certificate_error.rb', line 17 def code @code end |
#details ⇒ Array<DeleteCertificateError>
about the error.
29 30 31 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/delete_certificate_error.rb', line 29 def details @details end |
#message ⇒ String
suitable for display in a user interface.
21 22 23 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/delete_certificate_error.rb', line 21 def end |
#target ⇒ String
name of the property in error.
25 26 27 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/delete_certificate_error.rb', line 25 def target @target end |
Class Method Details
.mapper ⇒ Object
Mapper for DeleteCertificateError class as Ruby Hash. This will be used for serialization/deserialization.
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/delete_certificate_error.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeleteCertificateError', type: { name: 'Composite', class_name: 'DeleteCertificateError', model_properties: { code: { client_side_validation: true, required: true, serialized_name: 'code', type: { name: 'String' } }, message: { client_side_validation: true, required: true, serialized_name: 'message', type: { name: 'String' } }, target: { client_side_validation: true, required: false, serialized_name: 'target', type: { name: 'String' } }, details: { client_side_validation: true, required: false, serialized_name: 'details', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DeleteCertificateErrorElementType', type: { name: 'Composite', class_name: 'DeleteCertificateError' } } } } } } } end |