Module Values.DeleteEnvironmentTemplateVersionInputSource

If no other minor versions of an environment template exist, delete a major version of the environment template if it's not the Recommended version. Delete the Recommended version of the environment template if no other major versions or minor versions of the environment template exist. A major version of an environment template is a version that's not backward compatible. Delete a minor version of an environment template if it isn't the Recommended version. Delete a Recommended minor version of the environment template if no other minor versions of the environment template exist. A minor version of an environment template is a version that's backward compatible.

Sourcetype nonrec t = {
  1. majorVersion : TemplateVersionPart.t;
    (*

    The environment template major version to delete.

    *)
  2. minorVersion : TemplateVersionPart.t;
    (*

    The environment template minor version to delete.

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

    The name of the environment template.

    *)
}
Sourceval context_ : string
Sourceval make : majorVersion:TemplateVersionPart.t -> minorVersion:TemplateVersionPart.t -> templateName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TemplateVersionPart.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