class Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ClientCertificateThumbprint
Describes the client certificate details using thumbprint.
Attributes
certificate_thumbprint[RW]
@return [String] The thumbprint of the client certificate.
is_admin[RW]
@return [Boolean] Indicates if the client certificate has admin access to the cluster. Non admin clients can perform only read only operations on the cluster.
Private Class Methods
mapper()
click to toggle source
Mapper for ClientCertificateThumbprint
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-02-01/generated/azure_mgmt_service_fabric/models/client_certificate_thumbprint.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ClientCertificateThumbprint', type: { name: 'Composite', class_name: 'ClientCertificateThumbprint', model_properties: { is_admin: { client_side_validation: true, required: true, serialized_name: 'isAdmin', type: { name: 'Boolean' } }, certificate_thumbprint: { client_side_validation: true, required: true, serialized_name: 'certificateThumbprint', type: { name: 'String' } } } } } end