Skip to content
Merged
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.39.0"
".": "2.40.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 106
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic/anthropic-e171bad0ea7923db27b0b640915579588c46e44f26c0d4b2bfd63eb6da486b2a.yml
openapi_spec_hash: 29b3b2ba0d00467b5c6943533fa0c07a
config_hash: 12441a8fae7ee2cb6a2accf3a5fa43ee
configured_endpoints: 116
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic/anthropic-3368ac7f3ae66514b5e46832c85918a6ea36e95c0efe98e0955c4455dd57a6b8.yml
openapi_spec_hash: 255cf18e4e19ab1ab5cdc52717abe558
config_hash: 44acd8a997dff056931fb4466201cdeb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.40.0 (2026-06-09)

Full Changelog: [v2.39.0...v2.40.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.39.0...v2.40.0)

### Features

* **api:** add support for Managed Agents deployments and environment variable credentials ([628720b](https://github.com/anthropics/anthropic-sdk-java/commit/628720bcd5dcc0b34ecf0cbf334cae528e8f0fb3))

## 2.39.0 (2026-06-09)

Full Changelog: [v2.38.0...v2.39.0](https://github.com/anthropics/anthropic-sdk-java/compare/v2.38.0...v2.39.0)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Full documentation is available at **[platform.claude.com/docs/en/api/sdks/java]
### Gradle

```kotlin
implementation("com.anthropic:anthropic-java:2.39.0")
implementation("com.anthropic:anthropic-java:2.40.0")
```

### Maven
Expand All @@ -24,7 +24,7 @@ implementation("com.anthropic:anthropic-java:2.39.0")
<dependency>
<groupId>com.anthropic</groupId>
<artifactId>anthropic-java</artifactId>
<version>2.39.0</version>
<version>2.40.0</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,352 @@
// File generated from our OpenAPI spec by Stainless.

package com.anthropic.models.beta.deploymentruns

import com.anthropic.core.Enum
import com.anthropic.core.ExcludeMissing
import com.anthropic.core.JsonField
import com.anthropic.core.JsonMissing
import com.anthropic.core.JsonValue
import com.anthropic.core.checkRequired
import com.anthropic.errors.AnthropicInvalidDataException
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
import java.util.Collections
import java.util.Objects
import kotlin.jvm.optionals.getOrNull

/** The deployment's agent was archived. */
class BetaManagedAgentsAgentArchivedRunError
@JsonCreator(mode = JsonCreator.Mode.DISABLED)
private constructor(
private val message: JsonField<String>,
private val type: JsonField<Type>,
private val additionalProperties: MutableMap<String, JsonValue>,
) {

@JsonCreator
private constructor(
@JsonProperty("message") @ExcludeMissing message: JsonField<String> = JsonMissing.of(),
@JsonProperty("type") @ExcludeMissing type: JsonField<Type> = JsonMissing.of(),
) : this(message, type, mutableMapOf())

/**
* Human-readable error description.
*
* @throws AnthropicInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
*/
fun message(): String = message.getRequired("message")

/**
* @throws AnthropicInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
*/
fun type(): Type = type.getRequired("type")

/**
* Returns the raw JSON value of [message].
*
* Unlike [message], this method doesn't throw if the JSON field has an unexpected type.
*/
@JsonProperty("message") @ExcludeMissing fun _message(): JsonField<String> = message

/**
* Returns the raw JSON value of [type].
*
* Unlike [type], this method doesn't throw if the JSON field has an unexpected type.
*/
@JsonProperty("type") @ExcludeMissing fun _type(): JsonField<Type> = type

@JsonAnySetter
private fun putAdditionalProperty(key: String, value: JsonValue) {
additionalProperties.put(key, value)
}

@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map<String, JsonValue> =
Collections.unmodifiableMap(additionalProperties)

fun toBuilder() = Builder().from(this)

companion object {

/**
* Returns a mutable builder for constructing an instance of
* [BetaManagedAgentsAgentArchivedRunError].
*
* The following fields are required:
* ```java
* .message()
* .type()
* ```
*/
@JvmStatic fun builder() = Builder()
}

/** A builder for [BetaManagedAgentsAgentArchivedRunError]. */
class Builder internal constructor() {

private var message: JsonField<String>? = null
private var type: JsonField<Type>? = null
private var additionalProperties: MutableMap<String, JsonValue> = mutableMapOf()

@JvmSynthetic
internal fun from(
betaManagedAgentsAgentArchivedRunError: BetaManagedAgentsAgentArchivedRunError
) = apply {
message = betaManagedAgentsAgentArchivedRunError.message
type = betaManagedAgentsAgentArchivedRunError.type
additionalProperties =
betaManagedAgentsAgentArchivedRunError.additionalProperties.toMutableMap()
}

/** Human-readable error description. */
fun message(message: String) = message(JsonField.of(message))

/**
* Sets [Builder.message] to an arbitrary JSON value.
*
* You should usually call [Builder.message] with a well-typed [String] value instead. This
* method is primarily for setting the field to an undocumented or not yet supported value.
*/
fun message(message: JsonField<String>) = apply { this.message = message }

fun type(type: Type) = type(JsonField.of(type))

/**
* Sets [Builder.type] to an arbitrary JSON value.
*
* You should usually call [Builder.type] with a well-typed [Type] value instead. This
* method is primarily for setting the field to an undocumented or not yet supported value.
*/
fun type(type: JsonField<Type>) = apply { this.type = type }

fun additionalProperties(additionalProperties: Map<String, JsonValue>) = apply {
this.additionalProperties.clear()
putAllAdditionalProperties(additionalProperties)
}

fun putAdditionalProperty(key: String, value: JsonValue) = apply {
additionalProperties.put(key, value)
}

fun putAllAdditionalProperties(additionalProperties: Map<String, JsonValue>) = apply {
this.additionalProperties.putAll(additionalProperties)
}

fun removeAdditionalProperty(key: String) = apply { additionalProperties.remove(key) }

fun removeAllAdditionalProperties(keys: Set<String>) = apply {
keys.forEach(::removeAdditionalProperty)
}

/**
* Returns an immutable instance of [BetaManagedAgentsAgentArchivedRunError].
*
* Further updates to this [Builder] will not mutate the returned instance.
*
* The following fields are required:
* ```java
* .message()
* .type()
* ```
*
* @throws IllegalStateException if any required field is unset.
*/
fun build(): BetaManagedAgentsAgentArchivedRunError =
BetaManagedAgentsAgentArchivedRunError(
checkRequired("message", message),
checkRequired("type", type),
additionalProperties.toMutableMap(),
)
}

private var validated: Boolean = false

/**
* Validates that the types of all values in this object match their expected types recursively.
*
* This method is _not_ forwards compatible with new types from the API for existing fields.
*
* @throws AnthropicInvalidDataException if any value type in this object doesn't match its
* expected type.
*/
fun validate(): BetaManagedAgentsAgentArchivedRunError = apply {
if (validated) {
return@apply
}

message()
type().validate()
validated = true
}

fun isValid(): Boolean =
try {
validate()
true
} catch (e: AnthropicInvalidDataException) {
false
}

/**
* Returns a score indicating how many valid values are contained in this object recursively.
*
* Used for best match union deserialization.
*/
@JvmSynthetic
internal fun validity(): Int =
(if (message.asKnown().isPresent) 1 else 0) + (type.asKnown().getOrNull()?.validity() ?: 0)

class Type @JsonCreator private constructor(private val value: JsonField<String>) : Enum {

/**
* Returns this class instance's raw value.
*
* This is usually only useful if this instance was deserialized from data that doesn't
* match any known member, and you want to know that value. For example, if the SDK is on an
* older version than the API, then the API may respond with new members that the SDK is
* unaware of.
*/
@com.fasterxml.jackson.annotation.JsonValue fun _value(): JsonField<String> = value

companion object {

@JvmField val AGENT_ARCHIVED_ERROR = of("agent_archived_error")

@JvmStatic fun of(value: String) = Type(JsonField.of(value))
}

/** An enum containing [Type]'s known values. */
enum class Known {
AGENT_ARCHIVED_ERROR
}

/**
* An enum containing [Type]'s known values, as well as an [_UNKNOWN] member.
*
* An instance of [Type] can contain an unknown value in a couple of cases:
* - It was deserialized from data that doesn't match any known member. For example, if the
* SDK is on an older version than the API, then the API may respond with new members that
* the SDK is unaware of.
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
AGENT_ARCHIVED_ERROR,
/** An enum member indicating that [Type] was instantiated with an unknown value. */
_UNKNOWN,
}

/**
* Returns an enum member corresponding to this class instance's value, or [Value._UNKNOWN]
* if the class was instantiated with an unknown value.
*
* Use the [known] method instead if you're certain the value is always known or if you want
* to throw for the unknown case.
*/
fun value(): Value =
when (this) {
AGENT_ARCHIVED_ERROR -> Value.AGENT_ARCHIVED_ERROR
else -> Value._UNKNOWN
}

/**
* Returns an enum member corresponding to this class instance's value.
*
* Use the [value] method instead if you're uncertain the value is always known and don't
* want to throw for the unknown case.
*
* @throws AnthropicInvalidDataException if this class instance's value is a not a known
* member.
*/
fun known(): Known =
when (this) {
AGENT_ARCHIVED_ERROR -> Known.AGENT_ARCHIVED_ERROR
else -> throw AnthropicInvalidDataException("Unknown Type: $value")
}

/**
* Returns this class instance's primitive wire representation.
*
* This differs from the [toString] method because that method is primarily for debugging
* and generally doesn't throw.
*
* @throws AnthropicInvalidDataException if this class instance's value does not have the
* expected primitive type.
*/
fun asString(): String =
_value().asString().orElseThrow {
AnthropicInvalidDataException("Value is not a String")
}

private var validated: Boolean = false

/**
* Validates that the types of all values in this object match their expected types
* recursively.
*
* This method is _not_ forwards compatible with new types from the API for existing fields.
*
* @throws AnthropicInvalidDataException if any value type in this object doesn't match its
* expected type.
*/
fun validate(): Type = apply {
if (validated) {
return@apply
}

known()
validated = true
}

fun isValid(): Boolean =
try {
validate()
true
} catch (e: AnthropicInvalidDataException) {
false
}

/**
* Returns a score indicating how many valid values are contained in this object
* recursively.
*
* Used for best match union deserialization.
*/
@JvmSynthetic internal fun validity(): Int = if (value() == Value._UNKNOWN) 0 else 1

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is Type && value == other.value
}

override fun hashCode() = value.hashCode()

override fun toString() = value.toString()
}

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is BetaManagedAgentsAgentArchivedRunError &&
message == other.message &&
type == other.type &&
additionalProperties == other.additionalProperties
}

private val hashCode: Int by lazy { Objects.hash(message, type, additionalProperties) }

override fun hashCode(): Int = hashCode

override fun toString() =
"BetaManagedAgentsAgentArchivedRunError{message=$message, type=$type, additionalProperties=$additionalProperties}"
}
Loading
Loading