Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ClientCertificateThumbprint
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ClientCertificateThumbprint
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_service_fabric/models/client_certificate_thumbprint.rb
Overview
Describes the client certificate details using thumbprint.
Instance Attribute Summary collapse
-
#certificate_thumbprint ⇒ String
The thumbprint of the client certificate.
-
#is_admin ⇒ Boolean
to the cluster.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ClientCertificateThumbprint class as Ruby Hash.
Instance Attribute Details
#certificate_thumbprint ⇒ String
Returns The thumbprint of the client certificate.
21 22 23 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/client_certificate_thumbprint.rb', line 21 def certificate_thumbprint @certificate_thumbprint end |
#is_admin ⇒ Boolean
to the cluster. Non admin clients can perform only read only operations on the cluster.
18 19 20 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/client_certificate_thumbprint.rb', line 18 def is_admin @is_admin end |
Class Method Details
.mapper ⇒ Object
Mapper for ClientCertificateThumbprint class as Ruby Hash. This will be used for serialization/deserialization.
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 55 56 |
# 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 |