Module Values.CreateProjectRequestSource

Creates a project in the specified portal. Make sure that the project name and description don't contain confidential information.

Sourcetype nonrec t = {
  1. portalId : ID.t;
    (*

    The ID of the portal in which to create the project.

    *)
  2. projectName : Name.t;
    (*

    A friendly name for the project.

    *)
  3. projectDescription : Description.t option;
    (*

    A description for the project.

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

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
  5. tags : TagMap.t option;
    (*

    A list of key-value pairs that contain metadata for the project. For more information, see Tagging your IoT SiteWise resources in the IoT SiteWise User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?projectDescription:??? -> ?clientToken:??? -> ?tags:??? -> portalId:ID.t -> projectName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ID.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