Sha256: dec6df6c959df0cc6925ebd75e2404a5e95369505f2d243f05ab89c569429d22
Contents?: true
Size: 1.99 KB
Versions: 5
Compression:
Stored size: 1.99 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::KeyVault::V7_0 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] Type of certificate to be requested from the issuer # provider. 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
Version data entries
5 entries across 5 versions & 1 rubygems