Module Values.ImportApiKeysRequestSource

The POST request to import API keys from an external source, such as a CSV-formatted file.

Sourcetype nonrec t = {
  1. body : Blob.t;
    (*

    The payload of the POST request to import API keys. For the payload format, see API Key File Format.

    *)
  2. format : ApiKeysFormat.t;
    (*

    A query parameter to specify the input format to imported API keys. Currently, only the csv format is supported.

    *)
  3. failOnWarnings : Boolean.t option;
    (*

    A query parameter to indicate whether to rollback ApiKey importation (true) or not (false) when error is encountered.

    *)
}
Sourceval context_ : string
Sourceval make : ?failOnWarnings:??? -> body:Blob.t -> format:ApiKeysFormat.t -> unit -> t
Sourceval of_header_and_body : ((string, string) Awso.Import.List.Assoc.t * Blob.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Blob.t | `Boolean of Boolean.t | `Enum of string ]) 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