Class WorkflowVersionsClient
- java.lang.Object
-
- ai.extend.resources.workflowversions.WorkflowVersionsClient
-
public class WorkflowVersionsClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description WorkflowVersionsClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WorkflowVersioncreate(java.lang.String id)Deploy a new version of a workflow.WorkflowVersioncreate(java.lang.String id, RequestOptions requestOptions)Deploy a new version of a workflow.WorkflowVersioncreate(java.lang.String id, WorkflowVersionsCreateRequest request)Deploy a new version of a workflow.WorkflowVersioncreate(java.lang.String id, WorkflowVersionsCreateRequest request, RequestOptions requestOptions)Deploy a new version of a workflow.WorkflowVersionsListResponselist(java.lang.String id)List all versions of a workflow, including the draft version.WorkflowVersionsListResponselist(java.lang.String id, RequestOptions requestOptions)List all versions of a workflow, including the draft version.WorkflowVersionsListResponselist(java.lang.String id, WorkflowVersionsListRequest request)List all versions of a workflow, including the draft version.WorkflowVersionsListResponselist(java.lang.String id, WorkflowVersionsListRequest request, RequestOptions requestOptions)List all versions of a workflow, including the draft version.WorkflowVersionretrieve(java.lang.String id, java.lang.String versionId)Get a specific version of a workflow, including its step definitions.WorkflowVersionretrieve(java.lang.String id, java.lang.String versionId, RequestOptions requestOptions)Get a specific version of a workflow, including its step definitions.RawWorkflowVersionsClientwithRawResponse()Get responses with HTTP metadata like headers
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
WorkflowVersionsClient
public WorkflowVersionsClient(ClientOptions clientOptions)
-
-
Method Detail
-
withRawResponse
public RawWorkflowVersionsClient withRawResponse()
Get responses with HTTP metadata like headers
-
list
public WorkflowVersionsListResponse list(java.lang.String id)
List all versions of a workflow, including the draft version. Returns a paginated list of version summaries.
-
list
public WorkflowVersionsListResponse list(java.lang.String id, RequestOptions requestOptions)
List all versions of a workflow, including the draft version. Returns a paginated list of version summaries.
-
list
public WorkflowVersionsListResponse list(java.lang.String id, WorkflowVersionsListRequest request)
List all versions of a workflow, including the draft version. Returns a paginated list of version summaries.
-
list
public WorkflowVersionsListResponse list(java.lang.String id, WorkflowVersionsListRequest request, RequestOptions requestOptions)
List all versions of a workflow, including the draft version. Returns a paginated list of version summaries.
-
create
public WorkflowVersion create(java.lang.String id)
Deploy a new version of a workflow. The deployed version becomes available for running workflow runs.When
stepsis omitted, the current draft is deployed as-is. Whenstepsis provided, the given steps are deployed directly without modifying the draft.
-
create
public WorkflowVersion create(java.lang.String id, RequestOptions requestOptions)
Deploy a new version of a workflow. The deployed version becomes available for running workflow runs.When
stepsis omitted, the current draft is deployed as-is. Whenstepsis provided, the given steps are deployed directly without modifying the draft.
-
create
public WorkflowVersion create(java.lang.String id, WorkflowVersionsCreateRequest request)
Deploy a new version of a workflow. The deployed version becomes available for running workflow runs.When
stepsis omitted, the current draft is deployed as-is. Whenstepsis provided, the given steps are deployed directly without modifying the draft.
-
create
public WorkflowVersion create(java.lang.String id, WorkflowVersionsCreateRequest request, RequestOptions requestOptions)
Deploy a new version of a workflow. The deployed version becomes available for running workflow runs.When
stepsis omitted, the current draft is deployed as-is. Whenstepsis provided, the given steps are deployed directly without modifying the draft.
-
retrieve
public WorkflowVersion retrieve(java.lang.String id, java.lang.String versionId)
Get a specific version of a workflow, including its step definitions.The
versionIdparameter accepts:"draft"— returns the current draft version- A version number (e.g.
"1","2") — returns that deployed version - An internal version ID (e.g.
"workflow_version_abc123") — returns that specific version
-
retrieve
public WorkflowVersion retrieve(java.lang.String id, java.lang.String versionId, RequestOptions requestOptions)
Get a specific version of a workflow, including its step definitions.The
versionIdparameter accepts:"draft"— returns the current draft version- A version number (e.g.
"1","2") — returns that deployed version - An internal version ID (e.g.
"workflow_version_abc123") — returns that specific version
-
-