Module Values.UpdatePublicKeyRequestSource

Update public key information. Note that the only value you can change is the comment.

Sourcetype nonrec t = {
  1. publicKeyConfig : PublicKeyConfig.t;
    (*

    A public key configuration.

    *)
  2. id : String_.t;
    (*

    The identifier of the public key that you are updating.

    *)
  3. ifMatch : String_.t option;
    (*

    The value of the ETag header that you received when retrieving the public key to update. For example: E2QWRUHAPOMQZL.

    *)
}
Sourceval context_ : string
Sourceval make : ?ifMatch:??? -> publicKeyConfig:PublicKeyConfig.t -> id:String_.t -> unit -> t
Sourceval of_header_and_body : ((string, String_.t) Awso.Import.List.Assoc.t * PublicKeyConfig.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) 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