aws-sdk-bedrockagentcorecontrol 1.72.0 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +263 -13
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +73 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +233 -1
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +14 -8
- data/sig/params.rbs +42 -0
- data/sig/types.rbs +94 -12
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -62,7 +62,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
62
62
|
attr_accessor agent_runtime_name: ::String
|
|
63
63
|
attr_accessor description: ::String
|
|
64
64
|
attr_accessor last_updated_at: ::Time
|
|
65
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
65
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
66
66
|
SENSITIVE: [:description]
|
|
67
67
|
end
|
|
68
68
|
|
|
@@ -86,7 +86,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
86
86
|
attr_accessor target_version: ::String
|
|
87
87
|
attr_accessor agent_runtime_endpoint_arn: ::String
|
|
88
88
|
attr_accessor agent_runtime_arn: ::String
|
|
89
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
89
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
90
90
|
attr_accessor id: ::String
|
|
91
91
|
attr_accessor description: ::String
|
|
92
92
|
attr_accessor created_at: ::Time
|
|
@@ -97,7 +97,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
97
97
|
class AgentRuntimeVersionSummary
|
|
98
98
|
attr_accessor agent_runtime_arn: ::String
|
|
99
99
|
attr_accessor agent_runtime_version: ::String
|
|
100
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
100
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
101
101
|
SENSITIVE: []
|
|
102
102
|
end
|
|
103
103
|
|
|
@@ -632,7 +632,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
632
632
|
attr_accessor agent_runtime_arn: ::String
|
|
633
633
|
attr_accessor agent_runtime_id: ::String
|
|
634
634
|
attr_accessor endpoint_name: ::String
|
|
635
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
635
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
636
636
|
attr_accessor created_at: ::Time
|
|
637
637
|
SENSITIVE: [:endpoint_name]
|
|
638
638
|
end
|
|
@@ -662,7 +662,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
662
662
|
attr_accessor agent_runtime_id: ::String
|
|
663
663
|
attr_accessor agent_runtime_version: ::String
|
|
664
664
|
attr_accessor created_at: ::Time
|
|
665
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
665
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
666
666
|
SENSITIVE: []
|
|
667
667
|
end
|
|
668
668
|
|
|
@@ -1011,6 +1011,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1011
1011
|
attr_accessor allowed_tools: ::Array[::String]
|
|
1012
1012
|
attr_accessor memory: Types::HarnessMemoryConfiguration
|
|
1013
1013
|
attr_accessor truncation: Types::HarnessTruncationConfiguration
|
|
1014
|
+
attr_accessor hooks: ::Array[Types::HarnessHook]
|
|
1014
1015
|
attr_accessor max_iterations: ::Integer
|
|
1015
1016
|
attr_accessor max_tokens: ::Integer
|
|
1016
1017
|
attr_accessor timeout_seconds: ::Integer
|
|
@@ -1532,7 +1533,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1532
1533
|
end
|
|
1533
1534
|
|
|
1534
1535
|
class DeleteAgentRuntimeEndpointResponse
|
|
1535
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
1536
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
1536
1537
|
attr_accessor agent_runtime_id: ::String
|
|
1537
1538
|
attr_accessor endpoint_name: ::String
|
|
1538
1539
|
SENSITIVE: [:endpoint_name]
|
|
@@ -1546,7 +1547,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1546
1547
|
end
|
|
1547
1548
|
|
|
1548
1549
|
class DeleteAgentRuntimeResponse
|
|
1549
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
1550
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
1550
1551
|
attr_accessor agent_runtime_id: ::String
|
|
1551
1552
|
attr_accessor agent_runtime_version: ::String
|
|
1552
1553
|
SENSITIVE: []
|
|
@@ -2269,7 +2270,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2269
2270
|
attr_accessor agent_runtime_endpoint_arn: ::String
|
|
2270
2271
|
attr_accessor agent_runtime_arn: ::String
|
|
2271
2272
|
attr_accessor description: ::String
|
|
2272
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
2273
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2273
2274
|
attr_accessor created_at: ::Time
|
|
2274
2275
|
attr_accessor last_updated_at: ::Time
|
|
2275
2276
|
attr_accessor failure_reason: ::String
|
|
@@ -2293,7 +2294,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2293
2294
|
attr_accessor last_updated_at: ::Time
|
|
2294
2295
|
attr_accessor role_arn: ::String
|
|
2295
2296
|
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
2296
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
2297
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
2297
2298
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
|
2298
2299
|
attr_accessor failure_reason: ::String
|
|
2299
2300
|
attr_accessor description: ::String
|
|
@@ -2991,6 +2992,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2991
2992
|
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
2992
2993
|
attr_accessor authorizer_configuration: Types::AuthorizerConfiguration
|
|
2993
2994
|
attr_accessor memory: Types::HarnessMemoryConfiguration
|
|
2995
|
+
attr_accessor hooks: ::Array[Types::HarnessHook]
|
|
2994
2996
|
attr_accessor max_iterations: ::Integer
|
|
2995
2997
|
attr_accessor max_tokens: ::Integer
|
|
2996
2998
|
attr_accessor timeout_seconds: ::Integer
|
|
@@ -2998,6 +3000,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
2998
3000
|
SENSITIVE: [:environment_variables]
|
|
2999
3001
|
end
|
|
3000
3002
|
|
|
3003
|
+
class HarnessAfterInvocationHook
|
|
3004
|
+
attr_accessor name: ::String
|
|
3005
|
+
attr_accessor target: Types::HarnessHookTarget
|
|
3006
|
+
SENSITIVE: []
|
|
3007
|
+
end
|
|
3008
|
+
|
|
3009
|
+
class HarnessAfterToolCallHook
|
|
3010
|
+
attr_accessor name: ::String
|
|
3011
|
+
attr_accessor target: Types::HarnessHookTarget
|
|
3012
|
+
SENSITIVE: []
|
|
3013
|
+
end
|
|
3014
|
+
|
|
3001
3015
|
class HarnessAgentCoreBrowserConfig
|
|
3002
3016
|
attr_accessor browser_arn: ::String
|
|
3003
3017
|
SENSITIVE: []
|
|
@@ -3056,6 +3070,18 @@ module Aws::BedrockAgentCoreControl
|
|
|
3056
3070
|
SENSITIVE: []
|
|
3057
3071
|
end
|
|
3058
3072
|
|
|
3073
|
+
class HarnessBeforeInvocationHook
|
|
3074
|
+
attr_accessor name: ::String
|
|
3075
|
+
attr_accessor target: Types::HarnessHookTarget
|
|
3076
|
+
SENSITIVE: []
|
|
3077
|
+
end
|
|
3078
|
+
|
|
3079
|
+
class HarnessBeforeToolCallHook
|
|
3080
|
+
attr_accessor name: ::String
|
|
3081
|
+
attr_accessor target: Types::HarnessHookTarget
|
|
3082
|
+
SENSITIVE: []
|
|
3083
|
+
end
|
|
3084
|
+
|
|
3059
3085
|
class HarnessDisabledMemoryConfiguration < Aws::EmptyStructure
|
|
3060
3086
|
end
|
|
3061
3087
|
|
|
@@ -3135,6 +3161,60 @@ module Aws::BedrockAgentCoreControl
|
|
|
3135
3161
|
SENSITIVE: []
|
|
3136
3162
|
end
|
|
3137
3163
|
|
|
3164
|
+
class HarnessHook
|
|
3165
|
+
attr_accessor before_invocation: Types::HarnessBeforeInvocationHook
|
|
3166
|
+
attr_accessor after_invocation: Types::HarnessAfterInvocationHook
|
|
3167
|
+
attr_accessor before_tool_call: Types::HarnessBeforeToolCallHook
|
|
3168
|
+
attr_accessor after_tool_call: Types::HarnessAfterToolCallHook
|
|
3169
|
+
attr_accessor unknown: untyped
|
|
3170
|
+
SENSITIVE: []
|
|
3171
|
+
|
|
3172
|
+
class BeforeInvocation < HarnessHook
|
|
3173
|
+
end
|
|
3174
|
+
class AfterInvocation < HarnessHook
|
|
3175
|
+
end
|
|
3176
|
+
class BeforeToolCall < HarnessHook
|
|
3177
|
+
end
|
|
3178
|
+
class AfterToolCall < HarnessHook
|
|
3179
|
+
end
|
|
3180
|
+
class Unknown < HarnessHook
|
|
3181
|
+
end
|
|
3182
|
+
end
|
|
3183
|
+
|
|
3184
|
+
class HarnessHookEventBridgeTarget
|
|
3185
|
+
attr_accessor arn: ::String
|
|
3186
|
+
SENSITIVE: []
|
|
3187
|
+
end
|
|
3188
|
+
|
|
3189
|
+
class HarnessHookLambdaTarget
|
|
3190
|
+
attr_accessor arn: ::String
|
|
3191
|
+
attr_accessor timeout_seconds: ::Integer
|
|
3192
|
+
attr_accessor failure_mode: ("allow" | "deny")
|
|
3193
|
+
SENSITIVE: []
|
|
3194
|
+
end
|
|
3195
|
+
|
|
3196
|
+
class HarnessHookSnsTarget
|
|
3197
|
+
attr_accessor arn: ::String
|
|
3198
|
+
SENSITIVE: []
|
|
3199
|
+
end
|
|
3200
|
+
|
|
3201
|
+
class HarnessHookTarget
|
|
3202
|
+
attr_accessor lambda: Types::HarnessHookLambdaTarget
|
|
3203
|
+
attr_accessor sns: Types::HarnessHookSnsTarget
|
|
3204
|
+
attr_accessor event_bridge: Types::HarnessHookEventBridgeTarget
|
|
3205
|
+
attr_accessor unknown: untyped
|
|
3206
|
+
SENSITIVE: []
|
|
3207
|
+
|
|
3208
|
+
class Lambda < HarnessHookTarget
|
|
3209
|
+
end
|
|
3210
|
+
class Sns < HarnessHookTarget
|
|
3211
|
+
end
|
|
3212
|
+
class EventBridge < HarnessHookTarget
|
|
3213
|
+
end
|
|
3214
|
+
class Unknown < HarnessHookTarget
|
|
3215
|
+
end
|
|
3216
|
+
end
|
|
3217
|
+
|
|
3138
3218
|
class HarnessInlineFunctionConfig
|
|
3139
3219
|
attr_accessor description: ::String
|
|
3140
3220
|
attr_accessor input_schema: untyped
|
|
@@ -3200,12 +3280,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
3200
3280
|
class HarnessOpenAiModelConfig
|
|
3201
3281
|
attr_accessor model_id: ::String
|
|
3202
3282
|
attr_accessor api_key_arn: ::String
|
|
3283
|
+
attr_accessor api_base: ::String
|
|
3203
3284
|
attr_accessor max_tokens: ::Integer
|
|
3204
3285
|
attr_accessor temperature: ::Float
|
|
3205
3286
|
attr_accessor top_p: ::Float
|
|
3206
3287
|
attr_accessor api_format: ("chat_completions" | "responses")
|
|
3207
3288
|
attr_accessor additional_params: untyped
|
|
3208
|
-
SENSITIVE: []
|
|
3289
|
+
SENSITIVE: [:api_base]
|
|
3209
3290
|
end
|
|
3210
3291
|
|
|
3211
3292
|
class HarnessRemoteMcpConfig
|
|
@@ -5684,7 +5765,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5684
5765
|
attr_accessor target_version: ::String
|
|
5685
5766
|
attr_accessor agent_runtime_endpoint_arn: ::String
|
|
5686
5767
|
attr_accessor agent_runtime_arn: ::String
|
|
5687
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
5768
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
5688
5769
|
attr_accessor created_at: ::Time
|
|
5689
5770
|
attr_accessor last_updated_at: ::Time
|
|
5690
5771
|
SENSITIVE: []
|
|
@@ -5716,7 +5797,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5716
5797
|
attr_accessor agent_runtime_version: ::String
|
|
5717
5798
|
attr_accessor created_at: ::Time
|
|
5718
5799
|
attr_accessor last_updated_at: ::Time
|
|
5719
|
-
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
|
|
5800
|
+
attr_accessor status: ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED")
|
|
5720
5801
|
SENSITIVE: []
|
|
5721
5802
|
end
|
|
5722
5803
|
|
|
@@ -5999,6 +6080,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5999
6080
|
attr_accessor allowed_tools: ::Array[::String]
|
|
6000
6081
|
attr_accessor memory: Types::UpdatedHarnessMemoryConfiguration
|
|
6001
6082
|
attr_accessor truncation: Types::HarnessTruncationConfiguration
|
|
6083
|
+
attr_accessor hooks: ::Array[Types::HarnessHook]
|
|
6002
6084
|
attr_accessor max_iterations: ::Integer
|
|
6003
6085
|
attr_accessor max_tokens: ::Integer
|
|
6004
6086
|
attr_accessor timeout_seconds: ::Integer
|