Module Values.UpdateSecurityGroupRequestSource

Updates the properties of an existing security group in a Wickr network, such as its name or settings.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network containing the security group to update.

    *)
  2. groupId : GenericString.t;
    (*

    The unique identifier of the security group to update.

    *)
  3. name : GenericString.t option;
    (*

    The new name for the security group.

    *)
  4. securityGroupSettings : SecurityGroupSettings.t option;
    (*

    The updated configuration settings for the security group. Federation mode - 0 (Local federation), 1 (Restricted federation), 2 (Global federation)

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?securityGroupSettings:??? -> networkId:NetworkId.t -> groupId:GenericString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NetworkId.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of GenericString.t | `Structure of (string * [> `String of GenericString.t ]) list ] list | `Long of Long.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t ]) list ]) 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