Class DeploymentRunListParams
-
- All Implemented Interfaces:
-
com.anthropic.core.Params
public final class DeploymentRunListParams implements Params
List Deployment Runs
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classDeploymentRunListParams.BuilderA builder for DeploymentRunListParams.
-
Method Summary
Modifier and Type Method Description final Optional<OffsetDateTime>createdAtGt()Return runs created strictly after this time (exclusive). final Optional<OffsetDateTime>createdAtGte()Return runs created at or after this time (inclusive). final Optional<OffsetDateTime>createdAtLt()Return runs created strictly before this time (exclusive). final Optional<OffsetDateTime>createdAtLte()Return runs created at or before this time (inclusive). final Optional<String>deploymentId()Filter to a specific deployment. final Optional<Boolean>hasError()Filter: true for runs with non-null error, false for runs with non-null session_id. final Optional<Integer>limit()Maximum results per page. final Optional<String>page()Opaque pagination cursor. final Optional<BetaManagedAgentsTriggerType>triggerType()Filter runs by what triggered them. final Optional<List<AnthropicBeta>>betas()Optional header to specify the beta version(s) you want to use. final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final DeploymentRunListParams.BuildertoBuilder()Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static DeploymentRunListParamsnone()final static DeploymentRunListParams.Builderbuilder()Returns a mutable builder for constructing an instance of DeploymentRunListParams. -
-
Method Detail
-
createdAtGt
final Optional<OffsetDateTime> createdAtGt()
Return runs created strictly after this time (exclusive).
-
createdAtGte
final Optional<OffsetDateTime> createdAtGte()
Return runs created at or after this time (inclusive).
-
createdAtLt
final Optional<OffsetDateTime> createdAtLt()
Return runs created strictly before this time (exclusive).
-
createdAtLte
final Optional<OffsetDateTime> createdAtLte()
Return runs created at or before this time (inclusive).
-
deploymentId
final Optional<String> deploymentId()
Filter to a specific deployment. Omit to list across all deployments in the workspace. Filtering by a non-existent deployment_id returns 200 with empty data.
-
hasError
final Optional<Boolean> hasError()
Filter: true for runs with non-null error, false for runs with non-null session_id. Omit for all.
-
page
final Optional<String> page()
Opaque pagination cursor. Pass next_page from the previous response. Invalid or expired cursors return 400.
-
triggerType
final Optional<BetaManagedAgentsTriggerType> triggerType()
Filter runs by what triggered them. Omit to return all runs.
-
betas
final Optional<List<AnthropicBeta>> betas()
Optional header to specify the beta version(s) you want to use.
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final DeploymentRunListParams.Builder toBuilder()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
none
final static DeploymentRunListParams none()
-
builder
final static DeploymentRunListParams.Builder builder()
Returns a mutable builder for constructing an instance of DeploymentRunListParams.
-
-
-
-