Module Values.UpdateServiceInputSource

Edit a service description or use a spec to add and delete service instances. Existing service instances and the service pipeline can't be edited using this API. They can only be deleted. Use the description parameter to modify the description. Edit the spec parameter to add or delete instances. You can't delete a service instance (remove it from the spec) if it has an attached component. For more information about components, see Proton components in the Proton User Guide.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    The edited service description.

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

    The name of the service to edit.

    *)
  3. spec : SpecContents.t option;
    (*

    Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list. Don't include edits to the existing service instances or pipeline. For more information, see Edit a service in the Proton User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?spec:??? -> name:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Description.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