Sha256: e8eeaa8409cc754a1eb8c9b8042c6df4856e09ad6489070023307c35f4cace98
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 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::V2016_09_01 module Models # # Client certificate details using thumbprint # class ClientCertificateThumbprint include MsRestAzure # @return [Boolean] Is this certificate used for admin access from the # client, if false, it is used or query only access attr_accessor :is_admin # @return [String] Certificate thumbprint attr_accessor :certificate_thumbprint # # Mapper for ClientCertificateThumbprint class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'ClientCertificateThumbprint', type: { name: 'Composite', class_name: 'ClientCertificateThumbprint', model_properties: { is_admin: { required: true, serialized_name: 'isAdmin', type: { name: 'Boolean' } }, certificate_thumbprint: { required: true, serialized_name: 'certificateThumbprint', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems