Module Values.CreateSecurityGroupRequestSource

Creates a new security group in a Wickr network. Security groups allow you to organize users and control their permissions, features, and security settings.

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

    The ID of the Wickr network where the security group will be created.

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

    The name for the new security group.

    *)
  3. securityGroupSettings : SecurityGroupSettingsRequest.t;
    (*

    The configuration settings for the security group, including permissions, federation settings, and feature controls.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A unique identifier for this request to ensure idempotency.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> networkId:NetworkId.t -> name:GenericString.t -> securityGroupSettings:SecurityGroupSettingsRequest.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 NetworkId.t | `Structure of (string * [> `String of GenericString.t ]) list ] 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