Sha256: 6b8001db21155da2d5ebce615fe6ce002e024b504051cc6ce5a109c32b378820
Contents?: true
Size: 1.67 KB
Versions: 4
Compression:
Stored size: 1.67 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::Mgmt::V2018_02_01 module Models # # Describes the client certificate details using thumbprint. # class ClientCertificateThumbprint include MsRestAzure # @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. attr_accessor :is_admin # @return [String] The thumbprint of the client certificate. attr_accessor :certificate_thumbprint # # Mapper for ClientCertificateThumbprint class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
4 entries across 4 versions & 1 rubygems