Module Values.GetNetworkResponseSource

Retrieves detailed information about a specific Wickr network, including its configuration, access level, and status.

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

    The unique identifier of the network.

    *)
  2. networkName : GenericString.t option;
    (*

    The name of the network.

    *)
  3. accessLevel : AccessLevel.t option;
    (*

    The access level of the network (STANDARD or PREMIUM), which determines available features and capabilities.

    *)
  4. awsAccountId : GenericString.t option;
    (*

    The Amazon Web Services account ID that owns the network.

    *)
  5. networkArn : GenericString.t option;
    (*

    The Amazon Resource Name (ARN) of the network.

    *)
  6. standing : Integer.t option;
    (*

    The current standing or status of the network.

    *)
  7. freeTrialExpiration : GenericString.t option;
    (*

    The expiration date and time for the network's free trial period, if applicable.

    *)
  8. migrationState : Integer.t option;
    (*

    The SSO redirect URI migration state, managed by the SSO redirect migration wizard. Values: 0 (not started), 1 (in progress), or 2 (completed).

    *)
  9. encryptionKeyArn : GenericString.t option;
    (*

    The ARN of the Amazon Web Services KMS customer managed key used for encrypting sensitive data in the network.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestError of BadRequestError.t
  2. | `ForbiddenError of ForbiddenError.t
  3. | `InternalServerError of InternalServerError.t
  4. | `RateLimitError of RateLimitError.t
  5. | `ResourceNotFoundError of ResourceNotFoundError.t
  6. | `UnauthorizedError of UnauthorizedError.t
  7. | `ValidationError of ValidationError.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?networkId:??? -> ?networkName:??? -> ?accessLevel:??? -> ?awsAccountId:??? -> ?networkArn:??? -> ?standing:??? -> ?freeTrialExpiration:??? -> ?migrationState:??? -> ?encryptionKeyArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestError of BadRequestError.t | `ForbiddenError of ForbiddenError.t | `InternalServerError of InternalServerError.t | `RateLimitError of RateLimitError.t | `ResourceNotFoundError of ResourceNotFoundError.t | `UnauthorizedError of UnauthorizedError.t | `Unknown_operation_error of string * string option | `ValidationError of ValidationError.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestError of BadRequestError.t | `ForbiddenError of ForbiddenError.t | `InternalServerError of InternalServerError.t | `RateLimitError of RateLimitError.t | `ResourceNotFoundError of ResourceNotFoundError.t | `UnauthorizedError of UnauthorizedError.t | `Unknown_operation_error of string * string option | `ValidationError of ValidationError.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of NetworkId.t ]) 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