class Azure::ServiceFabric::Mgmt::V2017_07_01_preview::Models::CertificateDescription
Describes the certificate details.
Attributes
thumbprint[RW]
@return [String] Thumbprint of the primary certificate.
thumbprint_secondary[RW]
@return [String] Thumbprint of the secondary certificate.
x509store_name[RW]
@return [Enum] The local certificate store location. Possible values include: 'AddressBook', 'AuthRoot', 'CertificateAuthority', 'Disallowed', 'My', 'Root', 'TrustedPeople', 'TrustedPublisher'
Public Class Methods
mapper()
click to toggle source
Mapper for CertificateDescription
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/certificate_description.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CertificateDescription', type: { name: 'Composite', class_name: 'CertificateDescription', model_properties: { thumbprint: { client_side_validation: true, required: true, serialized_name: 'thumbprint', type: { name: 'String' } }, thumbprint_secondary: { client_side_validation: true, required: false, serialized_name: 'thumbprintSecondary', type: { name: 'String' } }, x509store_name: { client_side_validation: true, required: false, serialized_name: 'x509StoreName', type: { name: 'String' } } } } } end