Class SessionUpdateParams
-
- All Implemented Interfaces:
-
com.anthropic.core.Params
public final class SessionUpdateParams implements Params
Update Session
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classSessionUpdateParams.BuilderA builder for SessionUpdateParams.
public final classSessionUpdateParams.BodyRequest parameters for updating a
session. Omit a field to preserve its current value.public final classSessionUpdateParams.MetadataMetadata patch. Set a key to a string to upsert it, or to null to delete it. Omit the field to preserve.
-
Method Summary
Modifier and Type Method Description final Optional<String>sessionId()final Optional<List<AnthropicBeta>>betas()Optional header to specify the beta version(s) you want to use. final Optional<BetaManagedAgentsSessionAgentUpdate>agent()Mid-session agent configuration update. final Optional<SessionUpdateParams.Metadata>metadata()Metadata patch. final Optional<String>title()Human-readable session title. final Optional<List<String>>vaultIds()Vault IDs ( vlt_*) to attach to the session.final JsonField<BetaManagedAgentsSessionAgentUpdate>_agent()Returns the raw JSON value of agent. final JsonField<SessionUpdateParams.Metadata>_metadata()Returns the raw JSON value of metadata. final JsonField<String>_title()Returns the raw JSON value of title. final JsonField<List<String>>_vaultIds()Returns the raw JSON value of vaultIds. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final SessionUpdateParams.BuildertoBuilder()final SessionUpdateParams.Body_body()final String_pathParam(Integer index)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 SessionUpdateParamsnone()final static SessionUpdateParams.Builderbuilder()Returns a mutable builder for constructing an instance of SessionUpdateParams. -
-
Method Detail
-
betas
final Optional<List<AnthropicBeta>> betas()
Optional header to specify the beta version(s) you want to use.
-
agent
final Optional<BetaManagedAgentsSessionAgentUpdate> agent()
Mid-session agent configuration update. Only
toolsandmcp_serversare updatable. Full replacement: the provided array becomes the new value. To preserve existing entries, GET the session, modify the array, and POST it back.
-
metadata
final Optional<SessionUpdateParams.Metadata> metadata()
Metadata patch. Set a key to a string to upsert it, or to null to delete it. Omit the field to preserve.
-
vaultIds
final Optional<List<String>> vaultIds()
Vault IDs (
vlt_*) to attach to the session. Not yet supported; requests setting this field are rejected. Reserved for future use.
-
_agent
final JsonField<BetaManagedAgentsSessionAgentUpdate> _agent()
Returns the raw JSON value of agent.
Unlike agent, this method doesn't throw if the JSON field has an unexpected type.
-
_metadata
final JsonField<SessionUpdateParams.Metadata> _metadata()
Returns the raw JSON value of metadata.
Unlike metadata, this method doesn't throw if the JSON field has an unexpected type.
-
_title
final JsonField<String> _title()
Returns the raw JSON value of title.
Unlike title, this method doesn't throw if the JSON field has an unexpected type.
-
_vaultIds
final JsonField<List<String>> _vaultIds()
Returns the raw JSON value of vaultIds.
Unlike vaultIds, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_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 SessionUpdateParams.Builder toBuilder()
-
_body
final SessionUpdateParams.Body _body()
-
_pathParam
final String _pathParam(Integer index)
-
_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 SessionUpdateParams none()
-
builder
final static SessionUpdateParams.Builder builder()
Returns a mutable builder for constructing an instance of SessionUpdateParams.
-
-
-
-