Module Values.UpdateKeyGroupRequestSource

Updates a key group. When you update a key group, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update a key group: Get the current key group with GetKeyGroup or GetKeyGroupConfig. Locally modify the fields in the key group that you want to update. For example, add or remove public key IDs. Call UpdateKeyGroup with the entire key group object, including the fields that you modified and those that you didn't.

Sourcetype nonrec t = {
  1. keyGroupConfig : KeyGroupConfig.t;
    (*

    The key group configuration.

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

    The identifier of the key group that you are updating.

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

    The version of the key group that you are updating. The version is the key group's ETag value.

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