Module Values.DeploymentSpecificationsFieldSource

A field that details a specification of a deployment pattern.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the deployment specification.

    *)
  2. description : String_.t option;
    (*

    The description of the deployment specification.

    *)
  3. allowedValues : AllowedValues.t option;
    (*

    The allowed values of the deployment specification.

    *)
  4. required : String_.t option;
    (*

    Indicates if the deployment specification is required.

    *)
  5. conditionals : SpecificationsConditionalData.t option;
    (*

    The conditionals used for the deployment specification.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?allowedValues:??? -> ?required:??? -> ?conditionals:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ValueString.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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