Module Values.CreateQueueRequestSource

Creates a job queue. You must associate 1 or more compute node groups with the queue. You can associate 1 compute node group with multiple queues.

Sourcetype nonrec t = {
  1. clusterIdentifier : ClusterIdentifier.t;
    (*

    The name or ID of the cluster for which to create a queue.

    *)
  2. queueName : QueueName.t;
    (*

    A name to identify the queue.

    *)
  3. computeNodeGroupConfigurations : ComputeNodeGroupConfigurationList.t option;
    (*

    The list of compute node group configurations to associate with the queue. Queues assign jobs to associated compute node groups.

    *)
  4. slurmConfiguration : QueueSlurmConfigurationRequest.t option;
    (*

    Additional options related to the Slurm scheduler.

    *)
  5. clientToken : SBClientToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries with the same client token return the result from the original successful request and they have no additional effect. If you don't specify a client token, the CLI and SDK automatically generate 1 for you.

    *)
  6. tags : RequestTagMap.t option;
    (*

    1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.

    *)
}
Sourceval context_ : string
Sourceval make : ?computeNodeGroupConfigurations:??? -> ?slurmConfiguration:??? -> ?clientToken:??? -> ?tags:??? -> clusterIdentifier:ClusterIdentifier.t -> queueName:QueueName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClusterIdentifier.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.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