Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ServerCertificateCommonName
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ServerCertificateCommonName
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_name.rb
Overview
Describes the server certificate details using common name.
Instance Attribute Summary collapse
-
#certificate_common_name ⇒ String
The common name of the server certificate.
-
#certificate_issuer_thumbprint ⇒ String
The issuer thumbprint of the server certificate.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ServerCertificateCommonName class as Ruby Hash.
Instance Attribute Details
#certificate_common_name ⇒ String
Returns The common name of the server certificate.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_name.rb', line 16 def certificate_common_name @certificate_common_name end |
#certificate_issuer_thumbprint ⇒ String
Returns The issuer thumbprint of the server certificate.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_name.rb', line 19 def certificate_issuer_thumbprint @certificate_issuer_thumbprint end |
Class Method Details
.mapper ⇒ Object
Mapper for ServerCertificateCommonName 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/2018-02-01/generated/azure_mgmt_service_fabric/models/server_certificate_common_name.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ServerCertificateCommonName', type: { name: 'Composite', class_name: 'ServerCertificateCommonName', model_properties: { certificate_common_name: { client_side_validation: true, required: true, serialized_name: 'certificateCommonName', type: { name: 'String' } }, certificate_issuer_thumbprint: { client_side_validation: true, required: true, serialized_name: 'certificateIssuerThumbprint', type: { name: 'String' } } } } } end |