Class BetaManagedAgentsCustomSkillParams.Builder
-
- All Implemented Interfaces:
public final class BetaManagedAgentsCustomSkillParams.BuilderA builder for BetaManagedAgentsCustomSkillParams.
-
-
Method Summary
-
-
Method Detail
-
skillId
final BetaManagedAgentsCustomSkillParams.Builder skillId(String skillId)
Tagged ID of the custom skill (e.g., "skill_01XJ5...").
-
skillId
final BetaManagedAgentsCustomSkillParams.Builder skillId(JsonField<String> skillId)
Sets Builder.skillId to an arbitrary JSON value.
You should usually call Builder.skillId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final BetaManagedAgentsCustomSkillParams.Builder type(BetaManagedAgentsCustomSkillParams.Type type)
-
type
final BetaManagedAgentsCustomSkillParams.Builder type(JsonField<BetaManagedAgentsCustomSkillParams.Type> 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.
-
version
final BetaManagedAgentsCustomSkillParams.Builder version(String version)
Version to pin. Defaults to latest if omitted.
-
version
final BetaManagedAgentsCustomSkillParams.Builder version(Optional<String> version)
Alias for calling Builder.version with
version.orElse(null).
-
version
final BetaManagedAgentsCustomSkillParams.Builder version(JsonField<String> version)
Sets Builder.version to an arbitrary JSON value.
You should usually call Builder.version with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaManagedAgentsCustomSkillParams.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaManagedAgentsCustomSkillParams.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaManagedAgentsCustomSkillParams.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaManagedAgentsCustomSkillParams.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaManagedAgentsCustomSkillParams.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaManagedAgentsCustomSkillParams build()
Returns an immutable instance of BetaManagedAgentsCustomSkillParams.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.skillId() .type()
-
-
-
-