Class: Azure::ApiManagement::Mgmt::V2019_12_01::Models::X509CertificateName
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2019_12_01::Models::X509CertificateName
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb
Overview
Properties of server X509Names.
Instance Attribute Summary collapse
-
#issuer_certificate_thumbprint ⇒ String
Thumbprint for the Issuer of the Certificate.
-
#name ⇒ String
Common Name of the Certificate.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for X509CertificateName class as Ruby Hash.
Instance Attribute Details
#issuer_certificate_thumbprint ⇒ String
Returns Thumbprint for the Issuer of the Certificate.
19 20 21 |
# File 'lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb', line 19 def issuer_certificate_thumbprint @issuer_certificate_thumbprint end |
#name ⇒ String
Returns Common Name of the Certificate.
16 17 18 |
# File 'lib/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for X509CertificateName 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/2019-12-01/generated/azure_mgmt_api_management/models/x509certificate_name.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'X509CertificateName', type: { name: 'Composite', class_name: 'X509CertificateName', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, issuer_certificate_thumbprint: { client_side_validation: true, required: false, serialized_name: 'issuerCertificateThumbprint', type: { name: 'String' } } } } } end |