Module Values_2.UpdateActionRequestSource

Updates an action.

Sourcetype nonrec t = {
  1. actionName : Values_0.ExperimentEntityName.t;
    (*

    The name of the action to update.

    *)
  2. description : Values_0.ExperimentDescription.t option;
    (*

    The new description for the action.

    *)
  3. status : Values_0.ActionStatus.t option;
    (*

    The new status for the action.

    *)
  4. properties : Values_0.LineageEntityParameters.t option;
    (*

    The new list of properties. Overwrites the current property list.

    *)
  5. propertiesToRemove : ListLineageEntityParameterKey.t option;
    (*

    A list of properties to remove.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?status:??? -> ?properties:??? -> ?propertiesToRemove:??? -> actionName:Values_0.ExperimentEntityName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Values_0.StringParameterValue.t ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.ExperimentEntityName.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