aws-sdk-bedrockagent 1.38.0 → 1.39.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +278 -1
- data/lib/aws-sdk-bedrockagent/client_api.rb +175 -0
- data/lib/aws-sdk-bedrockagent/types.rb +370 -0
- data/lib/aws-sdk-bedrockagent.rb +2 -2
- data/sig/client.rbs +77 -0
- data/sig/types.rbs +105 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -52,6 +52,7 @@ module Aws::BedrockAgent
|
|
52
52
|
|
53
53
|
class Agent
|
54
54
|
attr_accessor agent_arn: ::String
|
55
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
55
56
|
attr_accessor agent_id: ::String
|
56
57
|
attr_accessor agent_name: ::String
|
57
58
|
attr_accessor agent_resource_role_arn: ::String
|
@@ -133,6 +134,38 @@ module Aws::BedrockAgent
|
|
133
134
|
SENSITIVE: []
|
134
135
|
end
|
135
136
|
|
137
|
+
class AgentCollaborator
|
138
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
139
|
+
attr_accessor agent_id: ::String
|
140
|
+
attr_accessor agent_version: ::String
|
141
|
+
attr_accessor client_token: ::String
|
142
|
+
attr_accessor collaboration_instruction: ::String
|
143
|
+
attr_accessor collaborator_id: ::String
|
144
|
+
attr_accessor collaborator_name: ::String
|
145
|
+
attr_accessor created_at: ::Time
|
146
|
+
attr_accessor last_updated_at: ::Time
|
147
|
+
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
148
|
+
SENSITIVE: [:collaboration_instruction]
|
149
|
+
end
|
150
|
+
|
151
|
+
class AgentCollaboratorSummary
|
152
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
153
|
+
attr_accessor agent_id: ::String
|
154
|
+
attr_accessor agent_version: ::String
|
155
|
+
attr_accessor collaboration_instruction: ::String
|
156
|
+
attr_accessor collaborator_id: ::String
|
157
|
+
attr_accessor collaborator_name: ::String
|
158
|
+
attr_accessor created_at: ::Time
|
159
|
+
attr_accessor last_updated_at: ::Time
|
160
|
+
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
161
|
+
SENSITIVE: [:collaboration_instruction]
|
162
|
+
end
|
163
|
+
|
164
|
+
class AgentDescriptor
|
165
|
+
attr_accessor alias_arn: ::String
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
136
169
|
class AgentFlowNodeConfiguration
|
137
170
|
attr_accessor agent_alias_arn: ::String
|
138
171
|
SENSITIVE: []
|
@@ -170,6 +203,7 @@ module Aws::BedrockAgent
|
|
170
203
|
|
171
204
|
class AgentVersion
|
172
205
|
attr_accessor agent_arn: ::String
|
206
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
173
207
|
attr_accessor agent_id: ::String
|
174
208
|
attr_accessor agent_name: ::String
|
175
209
|
attr_accessor agent_resource_role_arn: ::String
|
@@ -204,6 +238,22 @@ module Aws::BedrockAgent
|
|
204
238
|
class AnyToolChoice < Aws::EmptyStructure
|
205
239
|
end
|
206
240
|
|
241
|
+
class AssociateAgentCollaboratorRequest
|
242
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
243
|
+
attr_accessor agent_id: ::String
|
244
|
+
attr_accessor agent_version: ::String
|
245
|
+
attr_accessor client_token: ::String
|
246
|
+
attr_accessor collaboration_instruction: ::String
|
247
|
+
attr_accessor collaborator_name: ::String
|
248
|
+
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
249
|
+
SENSITIVE: [:collaboration_instruction]
|
250
|
+
end
|
251
|
+
|
252
|
+
class AssociateAgentCollaboratorResponse
|
253
|
+
attr_accessor agent_collaborator: Types::AgentCollaborator
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
207
257
|
class AssociateAgentKnowledgeBaseRequest
|
208
258
|
attr_accessor agent_id: ::String
|
209
259
|
attr_accessor agent_version: ::String
|
@@ -339,6 +389,7 @@ module Aws::BedrockAgent
|
|
339
389
|
end
|
340
390
|
|
341
391
|
class CreateAgentRequest
|
392
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
342
393
|
attr_accessor agent_name: ::String
|
343
394
|
attr_accessor agent_resource_role_arn: ::String
|
344
395
|
attr_accessor client_token: ::String
|
@@ -716,6 +767,16 @@ module Aws::BedrockAgent
|
|
716
767
|
SENSITIVE: []
|
717
768
|
end
|
718
769
|
|
770
|
+
class DisassociateAgentCollaboratorRequest
|
771
|
+
attr_accessor agent_id: ::String
|
772
|
+
attr_accessor agent_version: ::String
|
773
|
+
attr_accessor collaborator_id: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class DisassociateAgentCollaboratorResponse < Aws::EmptyStructure
|
778
|
+
end
|
779
|
+
|
719
780
|
class DisassociateAgentKnowledgeBaseRequest
|
720
781
|
attr_accessor agent_id: ::String
|
721
782
|
attr_accessor agent_version: ::String
|
@@ -1053,6 +1114,18 @@ module Aws::BedrockAgent
|
|
1053
1114
|
SENSITIVE: []
|
1054
1115
|
end
|
1055
1116
|
|
1117
|
+
class GetAgentCollaboratorRequest
|
1118
|
+
attr_accessor agent_id: ::String
|
1119
|
+
attr_accessor agent_version: ::String
|
1120
|
+
attr_accessor collaborator_id: ::String
|
1121
|
+
SENSITIVE: []
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
class GetAgentCollaboratorResponse
|
1125
|
+
attr_accessor agent_collaborator: Types::AgentCollaborator
|
1126
|
+
SENSITIVE: []
|
1127
|
+
end
|
1128
|
+
|
1056
1129
|
class GetAgentKnowledgeBaseRequest
|
1057
1130
|
attr_accessor agent_id: ::String
|
1058
1131
|
attr_accessor agent_version: ::String
|
@@ -1417,6 +1490,20 @@ module Aws::BedrockAgent
|
|
1417
1490
|
SENSITIVE: []
|
1418
1491
|
end
|
1419
1492
|
|
1493
|
+
class ListAgentCollaboratorsRequest
|
1494
|
+
attr_accessor agent_id: ::String
|
1495
|
+
attr_accessor agent_version: ::String
|
1496
|
+
attr_accessor max_results: ::Integer
|
1497
|
+
attr_accessor next_token: ::String
|
1498
|
+
SENSITIVE: []
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
class ListAgentCollaboratorsResponse
|
1502
|
+
attr_accessor agent_collaborator_summaries: ::Array[Types::AgentCollaboratorSummary]
|
1503
|
+
attr_accessor next_token: ::String
|
1504
|
+
SENSITIVE: []
|
1505
|
+
end
|
1506
|
+
|
1420
1507
|
class ListAgentKnowledgeBasesRequest
|
1421
1508
|
attr_accessor agent_id: ::String
|
1422
1509
|
attr_accessor agent_version: ::String
|
@@ -1787,6 +1874,7 @@ module Aws::BedrockAgent
|
|
1787
1874
|
|
1788
1875
|
class PromptConfiguration
|
1789
1876
|
attr_accessor base_prompt_template: ::String
|
1877
|
+
attr_accessor foundation_model: ::String
|
1790
1878
|
attr_accessor inference_configuration: Types::InferenceConfiguration
|
1791
1879
|
attr_accessor parser_mode: ("DEFAULT" | "OVERRIDDEN")
|
1792
1880
|
attr_accessor prompt_creation_mode: ("DEFAULT" | "OVERRIDDEN")
|
@@ -2306,6 +2394,22 @@ module Aws::BedrockAgent
|
|
2306
2394
|
SENSITIVE: []
|
2307
2395
|
end
|
2308
2396
|
|
2397
|
+
class UpdateAgentCollaboratorRequest
|
2398
|
+
attr_accessor agent_descriptor: Types::AgentDescriptor
|
2399
|
+
attr_accessor agent_id: ::String
|
2400
|
+
attr_accessor agent_version: ::String
|
2401
|
+
attr_accessor collaboration_instruction: ::String
|
2402
|
+
attr_accessor collaborator_id: ::String
|
2403
|
+
attr_accessor collaborator_name: ::String
|
2404
|
+
attr_accessor relay_conversation_history: ("TO_COLLABORATOR" | "DISABLED")
|
2405
|
+
SENSITIVE: [:collaboration_instruction]
|
2406
|
+
end
|
2407
|
+
|
2408
|
+
class UpdateAgentCollaboratorResponse
|
2409
|
+
attr_accessor agent_collaborator: Types::AgentCollaborator
|
2410
|
+
SENSITIVE: []
|
2411
|
+
end
|
2412
|
+
|
2309
2413
|
class UpdateAgentKnowledgeBaseRequest
|
2310
2414
|
attr_accessor agent_id: ::String
|
2311
2415
|
attr_accessor agent_version: ::String
|
@@ -2321,6 +2425,7 @@ module Aws::BedrockAgent
|
|
2321
2425
|
end
|
2322
2426
|
|
2323
2427
|
class UpdateAgentRequest
|
2428
|
+
attr_accessor agent_collaboration: ("SUPERVISOR" | "SUPERVISOR_ROUTER" | "DISABLED")
|
2324
2429
|
attr_accessor agent_id: ::String
|
2325
2430
|
attr_accessor agent_name: ::String
|
2326
2431
|
attr_accessor agent_resource_role_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockagent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|