# 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::KeyVault::V7_0_preview module Models # # Parameters for the issuer of the X509 component of a certificate. # class IssuerParameters include MsRestAzure # @return [String] Name of the referenced issuer object or reserved # names; for example, 'Self' or 'Unknown'. attr_accessor :name # @return [String] Certificate type as supported by the provider # (optional); for example 'OV-SSL', 'EV-SSL' attr_accessor :certificate_type # @return [Boolean] Indicates if the certificates generated under this # policy should be published to certificate transparency logs. attr_accessor :certificate_transparency # # Mapper for IssuerParameters class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IssuerParameters', type: { name: 'Composite', class_name: 'IssuerParameters', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, certificate_type: { client_side_validation: true, required: false, serialized_name: 'cty', type: { name: 'String' } }, certificate_transparency: { client_side_validation: true, required: false, serialized_name: 'cert_transparency', type: { name: 'Boolean' } } } } } end end end end