Module Values_1.RegisterCACertificateRequestSource

The input to the RegisterCACertificate operation.

Sourcetype nonrec t = {
  1. caCertificate : Values_0.CertificatePem.t;
    (*

    The CA certificate.

    *)
  2. verificationCertificate : Values_0.CertificatePem.t option;
    (*

    The private key verification certificate. If certificateMode is SNI_ONLY, the verificationCertificate field must be empty. If certificateMode is DEFAULT or not provided, the verificationCertificate field must not be empty.

    *)
  3. setAsActive : Values_0.SetAsActive.t option;
    (*

    A boolean value that specifies if the CA certificate is set to active. Valid values: ACTIVE | INACTIVE

    *)
  4. allowAutoRegistration : Values_0.AllowAutoRegistration.t option;
    (*

    Allows this CA certificate to be used for auto registration of device certificates.

    *)
  5. registrationConfig : Values_0.RegistrationConfig.t option;
    (*

    Information about the registration configuration.

    *)
  6. tags : Values_0.TagList.t option;
    (*

    Metadata which can be used to manage the CA certificate. For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."

    *)
  7. certificateMode : Values_0.CertificateMode.t option;
    (*

    Describes the certificate mode in which the Certificate Authority (CA) will be registered. If the verificationCertificate field is not provided, set certificateMode to be SNI_ONLY. If the verificationCertificate field is provided, set certificateMode to be DEFAULT. When certificateMode is not provided, it defaults to DEFAULT. All the device certificates that are registered using this CA will be registered in the same certificate mode as the CA. For more information about certificate mode for device certificates, see certificate mode.

    *)
}
Sourceval context_ : string
Sourceval make : ?verificationCertificate:??? -> ?setAsActive:??? -> ?allowAutoRegistration:??? -> ?registrationConfig:??? -> ?tags:??? -> ?certificateMode:??? -> caCertificate:Values_0.CertificatePem.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.SetAsActive.t | `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.CertificatePem.t | `Structure of (string * [> `String of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t