Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51924,7 +51924,7 @@ components:
- INCIDENT
- RELATION
InputSchema:
description: "A list of input parameters for the workflow. These can be used as dynamic runtime values in your workflow."
description: "A list of input parameters for the workflow. Input parameters are available under the `Trigger` object and can be referenced in workflow steps using `{{ Trigger.<parameter_name> }}`."
properties:
parameters:
description: The `InputSchema` `parameters`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
import java.util.Objects;

/**
* A list of input parameters for the workflow. These can be used as dynamic runtime values in your
* workflow.
* A list of input parameters for the workflow. Input parameters are available under the <code>
* Trigger</code> object and can be referenced in workflow steps using <code>
* {{ Trigger.&lt;parameter_name&gt; }}</code>.
*/
@JsonPropertyOrder({InputSchema.JSON_PROPERTY_PARAMETERS})
@jakarta.annotation.Generated(
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/com/datadog/api/client/v2/model/Spec.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,9 @@ public Spec inputSchema(InputSchema inputSchema) {
}

/**
* A list of input parameters for the workflow. These can be used as dynamic runtime values in
* your workflow.
* A list of input parameters for the workflow. Input parameters are available under the <code>
* Trigger</code> object and can be referenced in workflow steps using <code>
* {{ Trigger.&lt;parameter_name&gt; }}</code>.
*
* @return inputSchema
*/
Expand Down
Loading