class Azure::KeyVault::V7_2_preview::Models::IssuerParameters

Parameters for the issuer of the X509 component of a certificate.

Attributes

certificate_transparency[RW]

@return [Boolean] Indicates if the certificates generated under this policy should be published to certificate transparency logs.

certificate_type[RW]

@return [String] Certificate type as supported by the provider (optional); for example 'OV-SSL', 'EV-SSL'

name[RW]

@return [String] Name of the referenced issuer object or reserved names; for example, 'Self' or 'Unknown'.

Private Class Methods

mapper() click to toggle source

Mapper for IssuerParameters class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/7.2-preview/generated/azure_key_vault/models/issuer_parameters.rb, line 32
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