Module Values.CreateServiceInstanceInputSource

Create a service instance.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    The client token of the service instance to create.

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

    The name of the service instance to create.

    *)
  3. serviceName : ResourceName.t;
    (*

    The name of the service the service instance is added to.

    *)
  4. spec : SpecContents.t;
    (*

    The spec for the service instance you want to create.

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

    An optional list of metadata items that you can associate with the Proton service instance. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.

    *)
  6. templateMajorVersion : TemplateVersionPart.t option;
    (*

    To create a new major and minor version of the service template, exclude major Version.

    *)
  7. templateMinorVersion : TemplateVersionPart.t option;
    (*

    To create a new minor version of the service template, include a major Version.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?tags:??? -> ?templateMajorVersion:??? -> ?templateMinorVersion:??? -> name:ResourceName.t -> serviceName:ResourceName.t -> spec:SpecContents.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ClientToken.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