Class: Azure::Web::Mgmt::V2018_02_01::Models::CertificateDetails
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::CertificateDetails
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb
Overview
SSL certificate details.
Instance Attribute Summary collapse
-
#issuer ⇒ String
Certificate Issuer.
-
#not_after ⇒ DateTime
Date Certificate is valid to.
-
#not_before ⇒ DateTime
Date Certificate is valid from.
-
#raw_data ⇒ String
Raw certificate data.
-
#serial_number ⇒ String
Certificate Serial Number.
-
#signature_algorithm ⇒ String
Certificate Signature algorithm.
-
#subject ⇒ String
Certificate Subject.
-
#thumbprint ⇒ String
Certificate Thumbprint.
-
#version ⇒ Integer
Certificate Version.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CertificateDetails class as Ruby Hash.
Instance Attribute Details
#issuer ⇒ String
Returns Certificate Issuer.
37 38 39 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 37 def issuer @issuer end |
#not_after ⇒ DateTime
Returns Date Certificate is valid to.
31 32 33 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 31 def not_after @not_after end |
#not_before ⇒ DateTime
Returns Date Certificate is valid from.
28 29 30 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 28 def not_before @not_before end |
#raw_data ⇒ String
Returns Raw certificate data.
40 41 42 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 40 def raw_data @raw_data end |
#serial_number ⇒ String
Returns Certificate Serial Number.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 19 def serial_number @serial_number end |
#signature_algorithm ⇒ String
Returns Certificate Signature algorithm.
34 35 36 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 34 def signature_algorithm @signature_algorithm end |
#subject ⇒ String
Returns Certificate Subject.
25 26 27 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 25 def subject @subject end |
#thumbprint ⇒ String
Returns Certificate Thumbprint.
22 23 24 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 22 def thumbprint @thumbprint end |
#version ⇒ Integer
Returns Certificate Version.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 16 def version @version end |
Class Method Details
.mapper ⇒ Object
Mapper for CertificateDetails class as Ruby Hash. This will be used for serialization/deserialization.
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/certificate_details.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CertificateDetails', type: { name: 'Composite', class_name: 'CertificateDetails', model_properties: { version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'version', type: { name: 'Number' } }, serial_number: { client_side_validation: true, required: false, read_only: true, serialized_name: 'serialNumber', type: { name: 'String' } }, thumbprint: { client_side_validation: true, required: false, read_only: true, serialized_name: 'thumbprint', type: { name: 'String' } }, subject: { client_side_validation: true, required: false, read_only: true, serialized_name: 'subject', type: { name: 'String' } }, not_before: { client_side_validation: true, required: false, read_only: true, serialized_name: 'notBefore', type: { name: 'DateTime' } }, not_after: { client_side_validation: true, required: false, read_only: true, serialized_name: 'notAfter', type: { name: 'DateTime' } }, signature_algorithm: { client_side_validation: true, required: false, read_only: true, serialized_name: 'signatureAlgorithm', type: { name: 'String' } }, issuer: { client_side_validation: true, required: false, read_only: true, serialized_name: 'issuer', type: { name: 'String' } }, raw_data: { client_side_validation: true, required: false, read_only: true, serialized_name: 'rawData', type: { name: 'String' } } } } } end |