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
2 changes: 1 addition & 1 deletion src/datadog_api_client/v2/model/input_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def openapi_types(_):

def __init__(self_, parameters: Union[List[InputSchemaParameters], UnsetType] = unset, **kwargs):
"""
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 ``Trigger`` object and can be referenced in workflow steps using ``{{ Trigger.<parameter_name> }}``.

:param parameters: The ``InputSchema`` ``parameters``.
:type parameters: [InputSchemaParameters], optional
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/v2/model/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(
:param handle: Unique identifier used to trigger workflows automatically in Datadog.
:type handle: str, optional

:param input_schema: A list of input parameters for the workflow. These can be used as dynamic runtime values in your workflow.
:param input_schema: 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> }}``.
:type input_schema: InputSchema, optional

:param output_schema: A list of output parameters for the workflow.
Expand Down
Loading