aws-sdk-bedrockagentcorecontrol 1.0.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,1308 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module BedrockAgentCoreControl
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_checksum_calculation: String,
43
+ ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?sigv4a_signing_region_set: Array[String],
55
+ ?stub_responses: untyped,
56
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
+ ?token_provider: untyped,
58
+ ?use_dualstack_endpoint: bool,
59
+ ?use_fips_endpoint: bool,
60
+ ?validate_params: bool,
61
+ ?endpoint_provider: untyped,
62
+ ?http_proxy: String,
63
+ ?http_open_timeout: (Float | Integer),
64
+ ?http_read_timeout: (Float | Integer),
65
+ ?http_idle_timeout: (Float | Integer),
66
+ ?http_continue_timeout: (Float | Integer),
67
+ ?ssl_timeout: (Float | Integer | nil),
68
+ ?http_wire_trace: bool,
69
+ ?ssl_verify_peer: bool,
70
+ ?ssl_ca_bundle: String,
71
+ ?ssl_ca_directory: String,
72
+ ?ssl_ca_store: String,
73
+ ?on_chunk_received: Proc,
74
+ ?on_chunk_sent: Proc,
75
+ ?raise_response_errors: bool
76
+ ) -> instance
77
+ | (?Hash[Symbol, untyped]) -> instance
78
+
79
+
80
+ interface _CreateAgentRuntimeResponseSuccess
81
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAgentRuntimeResponse]
82
+ def agent_runtime_arn: () -> ::String
83
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
84
+ def agent_runtime_id: () -> ::String
85
+ def agent_runtime_version: () -> ::String
86
+ def created_at: () -> ::Time
87
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
88
+ end
89
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_agent_runtime-instance_method
90
+ def create_agent_runtime: (
91
+ agent_runtime_name: ::String,
92
+ ?description: ::String,
93
+ agent_runtime_artifact: {
94
+ container_configuration: {
95
+ container_uri: ::String
96
+ }?
97
+ },
98
+ role_arn: ::String,
99
+ network_configuration: {
100
+ network_mode: ("PUBLIC")
101
+ },
102
+ ?protocol_configuration: {
103
+ server_protocol: ("MCP" | "HTTP")
104
+ },
105
+ ?client_token: ::String,
106
+ ?environment_variables: Hash[::String, ::String],
107
+ ?authorizer_configuration: {
108
+ custom_jwt_authorizer: {
109
+ discovery_url: ::String,
110
+ allowed_audience: Array[::String]?,
111
+ allowed_clients: Array[::String]?
112
+ }?
113
+ }
114
+ ) -> _CreateAgentRuntimeResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentRuntimeResponseSuccess
116
+
117
+ interface _CreateAgentRuntimeEndpointResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAgentRuntimeEndpointResponse]
119
+ def target_version: () -> ::String
120
+ def agent_runtime_endpoint_arn: () -> ::String
121
+ def agent_runtime_arn: () -> ::String
122
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
123
+ def created_at: () -> ::Time
124
+ end
125
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_agent_runtime_endpoint-instance_method
126
+ def create_agent_runtime_endpoint: (
127
+ agent_runtime_id: ::String,
128
+ name: ::String,
129
+ ?agent_runtime_version: ::String,
130
+ ?description: ::String,
131
+ ?client_token: ::String
132
+ ) -> _CreateAgentRuntimeEndpointResponseSuccess
133
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentRuntimeEndpointResponseSuccess
134
+
135
+ interface _CreateApiKeyCredentialProviderResponseSuccess
136
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApiKeyCredentialProviderResponse]
137
+ def api_key_secret_arn: () -> Types::Secret
138
+ def name: () -> ::String
139
+ def credential_provider_arn: () -> ::String
140
+ end
141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_api_key_credential_provider-instance_method
142
+ def create_api_key_credential_provider: (
143
+ name: ::String,
144
+ api_key: ::String
145
+ ) -> _CreateApiKeyCredentialProviderResponseSuccess
146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiKeyCredentialProviderResponseSuccess
147
+
148
+ interface _CreateBrowserResponseSuccess
149
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateBrowserResponse]
150
+ def browser_id: () -> ::String
151
+ def browser_arn: () -> ::String
152
+ def created_at: () -> ::Time
153
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
154
+ end
155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_browser-instance_method
156
+ def create_browser: (
157
+ name: ::String,
158
+ ?description: ::String,
159
+ ?execution_role_arn: ::String,
160
+ network_configuration: {
161
+ network_mode: ("PUBLIC")
162
+ },
163
+ ?recording: {
164
+ enabled: bool?,
165
+ s3_location: {
166
+ bucket: ::String,
167
+ prefix: ::String
168
+ }?
169
+ },
170
+ ?client_token: ::String
171
+ ) -> _CreateBrowserResponseSuccess
172
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBrowserResponseSuccess
173
+
174
+ interface _CreateCodeInterpreterResponseSuccess
175
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCodeInterpreterResponse]
176
+ def code_interpreter_id: () -> ::String
177
+ def code_interpreter_arn: () -> ::String
178
+ def created_at: () -> ::Time
179
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
180
+ end
181
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_code_interpreter-instance_method
182
+ def create_code_interpreter: (
183
+ name: ::String,
184
+ ?description: ::String,
185
+ ?execution_role_arn: ::String,
186
+ network_configuration: {
187
+ network_mode: ("PUBLIC" | "SANDBOX")
188
+ },
189
+ ?client_token: ::String
190
+ ) -> _CreateCodeInterpreterResponseSuccess
191
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCodeInterpreterResponseSuccess
192
+
193
+ interface _CreateGatewayResponseSuccess
194
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayResponse]
195
+ def gateway_arn: () -> ::String
196
+ def gateway_id: () -> ::String
197
+ def gateway_url: () -> ::String
198
+ def created_at: () -> ::Time
199
+ def updated_at: () -> ::Time
200
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
201
+ def status_reasons: () -> ::Array[::String]
202
+ def name: () -> ::String
203
+ def description: () -> ::String
204
+ def role_arn: () -> ::String
205
+ def protocol_type: () -> ("MCP")
206
+ def protocol_configuration: () -> Types::GatewayProtocolConfiguration
207
+ def authorizer_type: () -> ("CUSTOM_JWT")
208
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
209
+ def kms_key_arn: () -> ::String
210
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
211
+ def exception_level: () -> ("DEBUG")
212
+ end
213
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway-instance_method
214
+ def create_gateway: (
215
+ name: ::String,
216
+ ?description: ::String,
217
+ ?client_token: ::String,
218
+ role_arn: ::String,
219
+ protocol_type: ("MCP"),
220
+ ?protocol_configuration: {
221
+ mcp: {
222
+ supported_versions: Array[::String]?,
223
+ instructions: ::String?,
224
+ search_type: ("SEMANTIC")?
225
+ }?
226
+ },
227
+ authorizer_type: ("CUSTOM_JWT"),
228
+ authorizer_configuration: {
229
+ custom_jwt_authorizer: {
230
+ discovery_url: ::String,
231
+ allowed_audience: Array[::String]?,
232
+ allowed_clients: Array[::String]?
233
+ }?
234
+ },
235
+ ?kms_key_arn: ::String,
236
+ ?exception_level: ("DEBUG")
237
+ ) -> _CreateGatewayResponseSuccess
238
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayResponseSuccess
239
+
240
+ interface _CreateGatewayTargetResponseSuccess
241
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGatewayTargetResponse]
242
+ def gateway_arn: () -> ::String
243
+ def target_id: () -> ::String
244
+ def created_at: () -> ::Time
245
+ def updated_at: () -> ::Time
246
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
247
+ def status_reasons: () -> ::Array[::String]
248
+ def name: () -> ::String
249
+ def description: () -> ::String
250
+ def target_configuration: () -> Types::TargetConfiguration
251
+ def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
252
+ end
253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
254
+ def create_gateway_target: (
255
+ gateway_identifier: ::String,
256
+ name: ::String,
257
+ ?description: ::String,
258
+ ?client_token: ::String,
259
+ target_configuration: {
260
+ mcp: {
261
+ open_api_schema: {
262
+ s3: {
263
+ uri: ::String?,
264
+ bucket_owner_account_id: ::String?
265
+ }?,
266
+ inline_payload: ::String?
267
+ }?,
268
+ smithy_model: {
269
+ s3: {
270
+ uri: ::String?,
271
+ bucket_owner_account_id: ::String?
272
+ }?,
273
+ inline_payload: ::String?
274
+ }?,
275
+ lambda: {
276
+ lambda_arn: ::String,
277
+ tool_schema: {
278
+ s3: {
279
+ uri: ::String?,
280
+ bucket_owner_account_id: ::String?
281
+ }?,
282
+ inline_payload: Array[
283
+ {
284
+ name: ::String,
285
+ description: ::String,
286
+ input_schema: {
287
+ type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
288
+ properties: Hash[::String, untyped]?,
289
+ required: Array[::String]?,
290
+ items: untyped?,
291
+ description: ::String?
292
+ },
293
+ output_schema: {
294
+ type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
295
+ properties: Hash[::String, untyped]?,
296
+ required: Array[::String]?,
297
+ items: untyped?,
298
+ description: ::String?
299
+ }?
300
+ },
301
+ ]?
302
+ }
303
+ }?
304
+ }?
305
+ },
306
+ credential_provider_configurations: Array[
307
+ {
308
+ credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
309
+ credential_provider: {
310
+ oauth_credential_provider: {
311
+ provider_arn: ::String,
312
+ scopes: Array[::String],
313
+ custom_parameters: Hash[::String, ::String]?
314
+ }?,
315
+ api_key_credential_provider: {
316
+ provider_arn: ::String,
317
+ credential_parameter_name: ::String?,
318
+ credential_prefix: ::String?,
319
+ credential_location: ("HEADER" | "QUERY_PARAMETER")?
320
+ }?
321
+ }?
322
+ },
323
+ ]
324
+ ) -> _CreateGatewayTargetResponseSuccess
325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayTargetResponseSuccess
326
+
327
+ interface _CreateMemoryResponseSuccess
328
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMemoryOutput]
329
+ def memory: () -> Types::Memory
330
+ end
331
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_memory-instance_method
332
+ def create_memory: (
333
+ ?client_token: ::String,
334
+ name: ::String,
335
+ ?description: ::String,
336
+ ?encryption_key_arn: ::String,
337
+ ?memory_execution_role_arn: ::String,
338
+ event_expiry_duration: ::Integer,
339
+ ?memory_strategies: Array[
340
+ {
341
+ semantic_memory_strategy: {
342
+ name: ::String,
343
+ description: ::String?,
344
+ namespaces: Array[::String]?
345
+ }?,
346
+ summary_memory_strategy: {
347
+ name: ::String,
348
+ description: ::String?,
349
+ namespaces: Array[::String]?
350
+ }?,
351
+ user_preference_memory_strategy: {
352
+ name: ::String,
353
+ description: ::String?,
354
+ namespaces: Array[::String]?
355
+ }?,
356
+ custom_memory_strategy: {
357
+ name: ::String,
358
+ description: ::String?,
359
+ namespaces: Array[::String]?,
360
+ configuration: {
361
+ semantic_override: {
362
+ extraction: {
363
+ append_to_prompt: ::String,
364
+ model_id: ::String
365
+ }?,
366
+ consolidation: {
367
+ append_to_prompt: ::String,
368
+ model_id: ::String
369
+ }?
370
+ }?,
371
+ summary_override: {
372
+ consolidation: {
373
+ append_to_prompt: ::String,
374
+ model_id: ::String
375
+ }?
376
+ }?,
377
+ user_preference_override: {
378
+ extraction: {
379
+ append_to_prompt: ::String,
380
+ model_id: ::String
381
+ }?,
382
+ consolidation: {
383
+ append_to_prompt: ::String,
384
+ model_id: ::String
385
+ }?
386
+ }?
387
+ }?
388
+ }?
389
+ },
390
+ ]
391
+ ) -> _CreateMemoryResponseSuccess
392
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMemoryResponseSuccess
393
+
394
+ interface _CreateOauth2CredentialProviderResponseSuccess
395
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateOauth2CredentialProviderResponse]
396
+ def client_secret_arn: () -> Types::Secret
397
+ def name: () -> ::String
398
+ def credential_provider_arn: () -> ::String
399
+ end
400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_oauth_2_credential_provider-instance_method
401
+ def create_oauth_2_credential_provider: (
402
+ name: ::String,
403
+ credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2"),
404
+ oauth2_provider_config_input: {
405
+ custom_oauth_2_provider_config: {
406
+ oauth_discovery: {
407
+ discovery_url: ::String?,
408
+ authorization_server_metadata: {
409
+ issuer: ::String,
410
+ authorization_endpoint: ::String,
411
+ token_endpoint: ::String,
412
+ response_types: Array[::String]?
413
+ }?
414
+ },
415
+ client_id: ::String,
416
+ client_secret: ::String
417
+ }?,
418
+ google_oauth_2_provider_config: {
419
+ client_id: ::String,
420
+ client_secret: ::String
421
+ }?,
422
+ github_oauth_2_provider_config: {
423
+ client_id: ::String,
424
+ client_secret: ::String
425
+ }?,
426
+ slack_oauth_2_provider_config: {
427
+ client_id: ::String,
428
+ client_secret: ::String
429
+ }?,
430
+ salesforce_oauth_2_provider_config: {
431
+ client_id: ::String,
432
+ client_secret: ::String
433
+ }?,
434
+ microsoft_oauth_2_provider_config: {
435
+ client_id: ::String,
436
+ client_secret: ::String
437
+ }?
438
+ }
439
+ ) -> _CreateOauth2CredentialProviderResponseSuccess
440
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOauth2CredentialProviderResponseSuccess
441
+
442
+ interface _CreateWorkloadIdentityResponseSuccess
443
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkloadIdentityResponse]
444
+ def name: () -> ::String
445
+ def workload_identity_arn: () -> ::String
446
+ def allowed_resource_oauth_2_return_urls: () -> ::Array[::String]
447
+ end
448
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_workload_identity-instance_method
449
+ def create_workload_identity: (
450
+ name: ::String,
451
+ ?allowed_resource_oauth_2_return_urls: Array[::String]
452
+ ) -> _CreateWorkloadIdentityResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadIdentityResponseSuccess
454
+
455
+ interface _DeleteAgentRuntimeResponseSuccess
456
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentRuntimeResponse]
457
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
458
+ end
459
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime-instance_method
460
+ def delete_agent_runtime: (
461
+ agent_runtime_id: ::String
462
+ ) -> _DeleteAgentRuntimeResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentRuntimeResponseSuccess
464
+
465
+ interface _DeleteAgentRuntimeEndpointResponseSuccess
466
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentRuntimeEndpointResponse]
467
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
468
+ end
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime_endpoint-instance_method
470
+ def delete_agent_runtime_endpoint: (
471
+ agent_runtime_id: ::String,
472
+ endpoint_name: ::String,
473
+ ?client_token: ::String
474
+ ) -> _DeleteAgentRuntimeEndpointResponseSuccess
475
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentRuntimeEndpointResponseSuccess
476
+
477
+ interface _DeleteApiKeyCredentialProviderResponseSuccess
478
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApiKeyCredentialProviderResponse]
479
+ end
480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_api_key_credential_provider-instance_method
481
+ def delete_api_key_credential_provider: (
482
+ name: ::String
483
+ ) -> _DeleteApiKeyCredentialProviderResponseSuccess
484
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApiKeyCredentialProviderResponseSuccess
485
+
486
+ interface _DeleteBrowserResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteBrowserResponse]
488
+ def browser_id: () -> ::String
489
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
490
+ def last_updated_at: () -> ::Time
491
+ end
492
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_browser-instance_method
493
+ def delete_browser: (
494
+ browser_id: ::String,
495
+ ?client_token: ::String
496
+ ) -> _DeleteBrowserResponseSuccess
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrowserResponseSuccess
498
+
499
+ interface _DeleteCodeInterpreterResponseSuccess
500
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCodeInterpreterResponse]
501
+ def code_interpreter_id: () -> ::String
502
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
503
+ def last_updated_at: () -> ::Time
504
+ end
505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_code_interpreter-instance_method
506
+ def delete_code_interpreter: (
507
+ code_interpreter_id: ::String,
508
+ ?client_token: ::String
509
+ ) -> _DeleteCodeInterpreterResponseSuccess
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCodeInterpreterResponseSuccess
511
+
512
+ interface _DeleteGatewayResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayResponse]
514
+ def gateway_id: () -> ::String
515
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
516
+ def status_reasons: () -> ::Array[::String]
517
+ end
518
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_gateway-instance_method
519
+ def delete_gateway: (
520
+ gateway_identifier: ::String
521
+ ) -> _DeleteGatewayResponseSuccess
522
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayResponseSuccess
523
+
524
+ interface _DeleteGatewayTargetResponseSuccess
525
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGatewayTargetResponse]
526
+ def gateway_arn: () -> ::String
527
+ def target_id: () -> ::String
528
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
529
+ def status_reasons: () -> ::Array[::String]
530
+ end
531
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_gateway_target-instance_method
532
+ def delete_gateway_target: (
533
+ gateway_identifier: ::String,
534
+ target_id: ::String
535
+ ) -> _DeleteGatewayTargetResponseSuccess
536
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGatewayTargetResponseSuccess
537
+
538
+ interface _DeleteMemoryResponseSuccess
539
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMemoryOutput]
540
+ def memory_id: () -> ::String
541
+ def status: () -> ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
542
+ end
543
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_memory-instance_method
544
+ def delete_memory: (
545
+ ?client_token: ::String,
546
+ memory_id: ::String
547
+ ) -> _DeleteMemoryResponseSuccess
548
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMemoryResponseSuccess
549
+
550
+ interface _DeleteOauth2CredentialProviderResponseSuccess
551
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOauth2CredentialProviderResponse]
552
+ end
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_oauth_2_credential_provider-instance_method
554
+ def delete_oauth_2_credential_provider: (
555
+ name: ::String
556
+ ) -> _DeleteOauth2CredentialProviderResponseSuccess
557
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOauth2CredentialProviderResponseSuccess
558
+
559
+ interface _DeleteWorkloadIdentityResponseSuccess
560
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkloadIdentityResponse]
561
+ end
562
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_workload_identity-instance_method
563
+ def delete_workload_identity: (
564
+ name: ::String
565
+ ) -> _DeleteWorkloadIdentityResponseSuccess
566
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkloadIdentityResponseSuccess
567
+
568
+ interface _GetAgentRuntimeResponseSuccess
569
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAgentRuntimeResponse]
570
+ def agent_runtime_arn: () -> ::String
571
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
572
+ def agent_runtime_name: () -> ::String
573
+ def description: () -> ::String
574
+ def agent_runtime_id: () -> ::String
575
+ def agent_runtime_version: () -> ::String
576
+ def created_at: () -> ::Time
577
+ def last_updated_at: () -> ::Time
578
+ def role_arn: () -> ::String
579
+ def agent_runtime_artifact: () -> Types::AgentArtifact
580
+ def network_configuration: () -> Types::NetworkConfiguration
581
+ def protocol_configuration: () -> Types::ProtocolConfiguration
582
+ def environment_variables: () -> ::Hash[::String, ::String]
583
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
584
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
585
+ end
586
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime-instance_method
587
+ def get_agent_runtime: (
588
+ agent_runtime_id: ::String,
589
+ ?agent_runtime_version: ::String
590
+ ) -> _GetAgentRuntimeResponseSuccess
591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentRuntimeResponseSuccess
592
+
593
+ interface _GetAgentRuntimeEndpointResponseSuccess
594
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAgentRuntimeEndpointResponse]
595
+ def live_version: () -> ::String
596
+ def target_version: () -> ::String
597
+ def agent_runtime_endpoint_arn: () -> ::String
598
+ def agent_runtime_arn: () -> ::String
599
+ def description: () -> ::String
600
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
601
+ def created_at: () -> ::Time
602
+ def last_updated_at: () -> ::Time
603
+ def failure_reason: () -> ::String
604
+ def name: () -> ::String
605
+ def id: () -> ::String
606
+ end
607
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_agent_runtime_endpoint-instance_method
608
+ def get_agent_runtime_endpoint: (
609
+ agent_runtime_id: ::String,
610
+ endpoint_name: ::String
611
+ ) -> _GetAgentRuntimeEndpointResponseSuccess
612
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentRuntimeEndpointResponseSuccess
613
+
614
+ interface _GetApiKeyCredentialProviderResponseSuccess
615
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetApiKeyCredentialProviderResponse]
616
+ def api_key_secret_arn: () -> Types::Secret
617
+ def name: () -> ::String
618
+ def credential_provider_arn: () -> ::String
619
+ def created_time: () -> ::Time
620
+ def last_updated_time: () -> ::Time
621
+ end
622
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_api_key_credential_provider-instance_method
623
+ def get_api_key_credential_provider: (
624
+ name: ::String
625
+ ) -> _GetApiKeyCredentialProviderResponseSuccess
626
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApiKeyCredentialProviderResponseSuccess
627
+
628
+ interface _GetBrowserResponseSuccess
629
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBrowserResponse]
630
+ def browser_id: () -> ::String
631
+ def browser_arn: () -> ::String
632
+ def name: () -> ::String
633
+ def description: () -> ::String
634
+ def execution_role_arn: () -> ::String
635
+ def network_configuration: () -> Types::BrowserNetworkConfiguration
636
+ def recording: () -> Types::RecordingConfig
637
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
638
+ def created_at: () -> ::Time
639
+ def last_updated_at: () -> ::Time
640
+ end
641
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_browser-instance_method
642
+ def get_browser: (
643
+ browser_id: ::String
644
+ ) -> _GetBrowserResponseSuccess
645
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBrowserResponseSuccess
646
+
647
+ interface _GetCodeInterpreterResponseSuccess
648
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCodeInterpreterResponse]
649
+ def code_interpreter_id: () -> ::String
650
+ def code_interpreter_arn: () -> ::String
651
+ def name: () -> ::String
652
+ def description: () -> ::String
653
+ def execution_role_arn: () -> ::String
654
+ def network_configuration: () -> Types::CodeInterpreterNetworkConfiguration
655
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "READY" | "DELETING" | "DELETE_FAILED" | "DELETED")
656
+ def created_at: () -> ::Time
657
+ def last_updated_at: () -> ::Time
658
+ end
659
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_code_interpreter-instance_method
660
+ def get_code_interpreter: (
661
+ code_interpreter_id: ::String
662
+ ) -> _GetCodeInterpreterResponseSuccess
663
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCodeInterpreterResponseSuccess
664
+
665
+ interface _GetGatewayResponseSuccess
666
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayResponse]
667
+ def gateway_arn: () -> ::String
668
+ def gateway_id: () -> ::String
669
+ def gateway_url: () -> ::String
670
+ def created_at: () -> ::Time
671
+ def updated_at: () -> ::Time
672
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
673
+ def status_reasons: () -> ::Array[::String]
674
+ def name: () -> ::String
675
+ def description: () -> ::String
676
+ def role_arn: () -> ::String
677
+ def protocol_type: () -> ("MCP")
678
+ def protocol_configuration: () -> Types::GatewayProtocolConfiguration
679
+ def authorizer_type: () -> ("CUSTOM_JWT")
680
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
681
+ def kms_key_arn: () -> ::String
682
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
683
+ def exception_level: () -> ("DEBUG")
684
+ end
685
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway-instance_method
686
+ def get_gateway: (
687
+ gateway_identifier: ::String
688
+ ) -> _GetGatewayResponseSuccess
689
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayResponseSuccess
690
+
691
+ interface _GetGatewayTargetResponseSuccess
692
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGatewayTargetResponse]
693
+ def gateway_arn: () -> ::String
694
+ def target_id: () -> ::String
695
+ def created_at: () -> ::Time
696
+ def updated_at: () -> ::Time
697
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
698
+ def status_reasons: () -> ::Array[::String]
699
+ def name: () -> ::String
700
+ def description: () -> ::String
701
+ def target_configuration: () -> Types::TargetConfiguration
702
+ def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
703
+ end
704
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_target-instance_method
705
+ def get_gateway_target: (
706
+ gateway_identifier: ::String,
707
+ target_id: ::String
708
+ ) -> _GetGatewayTargetResponseSuccess
709
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayTargetResponseSuccess
710
+
711
+ interface _GetMemoryResponseSuccess
712
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMemoryOutput]
713
+ def memory: () -> Types::Memory
714
+ end
715
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_memory-instance_method
716
+ def get_memory: (
717
+ memory_id: ::String
718
+ ) -> _GetMemoryResponseSuccess
719
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMemoryResponseSuccess
720
+
721
+ interface _GetOauth2CredentialProviderResponseSuccess
722
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOauth2CredentialProviderResponse]
723
+ def client_secret_arn: () -> Types::Secret
724
+ def name: () -> ::String
725
+ def credential_provider_arn: () -> ::String
726
+ def credential_provider_vendor: () -> ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
727
+ def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
728
+ def created_time: () -> ::Time
729
+ def last_updated_time: () -> ::Time
730
+ end
731
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_oauth_2_credential_provider-instance_method
732
+ def get_oauth_2_credential_provider: (
733
+ name: ::String
734
+ ) -> _GetOauth2CredentialProviderResponseSuccess
735
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOauth2CredentialProviderResponseSuccess
736
+
737
+ interface _GetTokenVaultResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTokenVaultResponse]
739
+ def token_vault_id: () -> ::String
740
+ def kms_configuration: () -> Types::KmsConfiguration
741
+ def last_modified_date: () -> ::Time
742
+ end
743
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_token_vault-instance_method
744
+ def get_token_vault: (
745
+ ?token_vault_id: ::String
746
+ ) -> _GetTokenVaultResponseSuccess
747
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTokenVaultResponseSuccess
748
+
749
+ interface _GetWorkloadIdentityResponseSuccess
750
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkloadIdentityResponse]
751
+ def name: () -> ::String
752
+ def workload_identity_arn: () -> ::String
753
+ def allowed_resource_oauth_2_return_urls: () -> ::Array[::String]
754
+ def created_time: () -> ::Time
755
+ def last_updated_time: () -> ::Time
756
+ end
757
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_workload_identity-instance_method
758
+ def get_workload_identity: (
759
+ name: ::String
760
+ ) -> _GetWorkloadIdentityResponseSuccess
761
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkloadIdentityResponseSuccess
762
+
763
+ interface _ListAgentRuntimeEndpointsResponseSuccess
764
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimeEndpointsResponse]
765
+ def runtime_endpoints: () -> ::Array[Types::AgentEndpoint]
766
+ def next_token: () -> ::String
767
+ end
768
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtime_endpoints-instance_method
769
+ def list_agent_runtime_endpoints: (
770
+ agent_runtime_id: ::String,
771
+ ?max_results: ::Integer,
772
+ ?next_token: ::String
773
+ ) -> _ListAgentRuntimeEndpointsResponseSuccess
774
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAgentRuntimeEndpointsResponseSuccess
775
+
776
+ interface _ListAgentRuntimeVersionsResponseSuccess
777
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimeVersionsResponse]
778
+ def agent_runtimes: () -> ::Array[Types::Agent]
779
+ def next_token: () -> ::String
780
+ end
781
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtime_versions-instance_method
782
+ def list_agent_runtime_versions: (
783
+ agent_runtime_id: ::String,
784
+ ?max_results: ::Integer,
785
+ ?next_token: ::String
786
+ ) -> _ListAgentRuntimeVersionsResponseSuccess
787
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAgentRuntimeVersionsResponseSuccess
788
+
789
+ interface _ListAgentRuntimesResponseSuccess
790
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentRuntimesResponse]
791
+ def agent_runtimes: () -> ::Array[Types::Agent]
792
+ def next_token: () -> ::String
793
+ end
794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_agent_runtimes-instance_method
795
+ def list_agent_runtimes: (
796
+ ?max_results: ::Integer,
797
+ ?next_token: ::String
798
+ ) -> _ListAgentRuntimesResponseSuccess
799
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAgentRuntimesResponseSuccess
800
+
801
+ interface _ListApiKeyCredentialProvidersResponseSuccess
802
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApiKeyCredentialProvidersResponse]
803
+ def credential_providers: () -> ::Array[Types::ApiKeyCredentialProviderItem]
804
+ def next_token: () -> ::String
805
+ end
806
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_api_key_credential_providers-instance_method
807
+ def list_api_key_credential_providers: (
808
+ ?next_token: ::String,
809
+ ?max_results: ::Integer
810
+ ) -> _ListApiKeyCredentialProvidersResponseSuccess
811
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApiKeyCredentialProvidersResponseSuccess
812
+
813
+ interface _ListBrowsersResponseSuccess
814
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBrowsersResponse]
815
+ def browser_summaries: () -> ::Array[Types::BrowserSummary]
816
+ def next_token: () -> ::String
817
+ end
818
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_browsers-instance_method
819
+ def list_browsers: (
820
+ ?max_results: ::Integer,
821
+ ?next_token: ::String,
822
+ ?type: ("SYSTEM" | "CUSTOM")
823
+ ) -> _ListBrowsersResponseSuccess
824
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBrowsersResponseSuccess
825
+
826
+ interface _ListCodeInterpretersResponseSuccess
827
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCodeInterpretersResponse]
828
+ def code_interpreter_summaries: () -> ::Array[Types::CodeInterpreterSummary]
829
+ def next_token: () -> ::String
830
+ end
831
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_code_interpreters-instance_method
832
+ def list_code_interpreters: (
833
+ ?max_results: ::Integer,
834
+ ?next_token: ::String,
835
+ ?type: ("SYSTEM" | "CUSTOM")
836
+ ) -> _ListCodeInterpretersResponseSuccess
837
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCodeInterpretersResponseSuccess
838
+
839
+ interface _ListGatewayTargetsResponseSuccess
840
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewayTargetsResponse]
841
+ def items: () -> ::Array[Types::TargetSummary]
842
+ def next_token: () -> ::String
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_gateway_targets-instance_method
845
+ def list_gateway_targets: (
846
+ gateway_identifier: ::String,
847
+ ?max_results: ::Integer,
848
+ ?next_token: ::String
849
+ ) -> _ListGatewayTargetsResponseSuccess
850
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewayTargetsResponseSuccess
851
+
852
+ interface _ListGatewaysResponseSuccess
853
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGatewaysResponse]
854
+ def items: () -> ::Array[Types::GatewaySummary]
855
+ def next_token: () -> ::String
856
+ end
857
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_gateways-instance_method
858
+ def list_gateways: (
859
+ ?max_results: ::Integer,
860
+ ?next_token: ::String
861
+ ) -> _ListGatewaysResponseSuccess
862
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGatewaysResponseSuccess
863
+
864
+ interface _ListMemoriesResponseSuccess
865
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMemoriesOutput]
866
+ def memories: () -> ::Array[Types::MemorySummary]
867
+ def next_token: () -> ::String
868
+ end
869
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_memories-instance_method
870
+ def list_memories: (
871
+ ?max_results: ::Integer,
872
+ ?next_token: ::String
873
+ ) -> _ListMemoriesResponseSuccess
874
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMemoriesResponseSuccess
875
+
876
+ interface _ListOauth2CredentialProvidersResponseSuccess
877
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOauth2CredentialProvidersResponse]
878
+ def credential_providers: () -> ::Array[Types::Oauth2CredentialProviderItem]
879
+ def next_token: () -> ::String
880
+ end
881
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_oauth_2_credential_providers-instance_method
882
+ def list_oauth_2_credential_providers: (
883
+ ?next_token: ::String,
884
+ ?max_results: ::Integer
885
+ ) -> _ListOauth2CredentialProvidersResponseSuccess
886
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOauth2CredentialProvidersResponseSuccess
887
+
888
+ interface _ListWorkloadIdentitiesResponseSuccess
889
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadIdentitiesResponse]
890
+ def workload_identities: () -> ::Array[Types::WorkloadIdentityType]
891
+ def next_token: () -> ::String
892
+ end
893
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#list_workload_identities-instance_method
894
+ def list_workload_identities: (
895
+ ?next_token: ::String,
896
+ ?max_results: ::Integer
897
+ ) -> _ListWorkloadIdentitiesResponseSuccess
898
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkloadIdentitiesResponseSuccess
899
+
900
+ interface _SetTokenVaultCMKResponseSuccess
901
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetTokenVaultCMKResponse]
902
+ def token_vault_id: () -> ::String
903
+ def kms_configuration: () -> Types::KmsConfiguration
904
+ def last_modified_date: () -> ::Time
905
+ end
906
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#set_token_vault_cmk-instance_method
907
+ def set_token_vault_cmk: (
908
+ ?token_vault_id: ::String,
909
+ kms_configuration: {
910
+ key_type: ("CustomerManagedKey" | "ServiceManagedKey"),
911
+ kms_key_arn: ::String?
912
+ }
913
+ ) -> _SetTokenVaultCMKResponseSuccess
914
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetTokenVaultCMKResponseSuccess
915
+
916
+ interface _UpdateAgentRuntimeResponseSuccess
917
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAgentRuntimeResponse]
918
+ def agent_runtime_arn: () -> ::String
919
+ def agent_runtime_id: () -> ::String
920
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
921
+ def agent_runtime_version: () -> ::String
922
+ def created_at: () -> ::Time
923
+ def last_updated_at: () -> ::Time
924
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
925
+ end
926
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_agent_runtime-instance_method
927
+ def update_agent_runtime: (
928
+ agent_runtime_id: ::String,
929
+ ?description: ::String,
930
+ agent_runtime_artifact: {
931
+ container_configuration: {
932
+ container_uri: ::String
933
+ }?
934
+ },
935
+ role_arn: ::String,
936
+ network_configuration: {
937
+ network_mode: ("PUBLIC")
938
+ },
939
+ ?protocol_configuration: {
940
+ server_protocol: ("MCP" | "HTTP")
941
+ },
942
+ ?client_token: ::String,
943
+ ?environment_variables: Hash[::String, ::String],
944
+ ?authorizer_configuration: {
945
+ custom_jwt_authorizer: {
946
+ discovery_url: ::String,
947
+ allowed_audience: Array[::String]?,
948
+ allowed_clients: Array[::String]?
949
+ }?
950
+ }
951
+ ) -> _UpdateAgentRuntimeResponseSuccess
952
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeResponseSuccess
953
+
954
+ interface _UpdateAgentRuntimeEndpointResponseSuccess
955
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAgentRuntimeEndpointResponse]
956
+ def live_version: () -> ::String
957
+ def target_version: () -> ::String
958
+ def agent_runtime_endpoint_arn: () -> ::String
959
+ def agent_runtime_arn: () -> ::String
960
+ def status: () -> ("CREATING" | "CREATE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "READY" | "DELETING")
961
+ def created_at: () -> ::Time
962
+ def last_updated_at: () -> ::Time
963
+ end
964
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_agent_runtime_endpoint-instance_method
965
+ def update_agent_runtime_endpoint: (
966
+ agent_runtime_id: ::String,
967
+ endpoint_name: ::String,
968
+ ?agent_runtime_version: ::String,
969
+ ?description: ::String,
970
+ ?client_token: ::String
971
+ ) -> _UpdateAgentRuntimeEndpointResponseSuccess
972
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentRuntimeEndpointResponseSuccess
973
+
974
+ interface _UpdateApiKeyCredentialProviderResponseSuccess
975
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApiKeyCredentialProviderResponse]
976
+ def api_key_secret_arn: () -> Types::Secret
977
+ def name: () -> ::String
978
+ def credential_provider_arn: () -> ::String
979
+ def created_time: () -> ::Time
980
+ def last_updated_time: () -> ::Time
981
+ end
982
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_api_key_credential_provider-instance_method
983
+ def update_api_key_credential_provider: (
984
+ name: ::String,
985
+ api_key: ::String
986
+ ) -> _UpdateApiKeyCredentialProviderResponseSuccess
987
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyCredentialProviderResponseSuccess
988
+
989
+ interface _UpdateGatewayResponseSuccess
990
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayResponse]
991
+ def gateway_arn: () -> ::String
992
+ def gateway_id: () -> ::String
993
+ def gateway_url: () -> ::String
994
+ def created_at: () -> ::Time
995
+ def updated_at: () -> ::Time
996
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
997
+ def status_reasons: () -> ::Array[::String]
998
+ def name: () -> ::String
999
+ def description: () -> ::String
1000
+ def role_arn: () -> ::String
1001
+ def protocol_type: () -> ("MCP")
1002
+ def protocol_configuration: () -> Types::GatewayProtocolConfiguration
1003
+ def authorizer_type: () -> ("CUSTOM_JWT")
1004
+ def authorizer_configuration: () -> Types::AuthorizerConfiguration
1005
+ def kms_key_arn: () -> ::String
1006
+ def workload_identity_details: () -> Types::WorkloadIdentityDetails
1007
+ def exception_level: () -> ("DEBUG")
1008
+ end
1009
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway-instance_method
1010
+ def update_gateway: (
1011
+ gateway_identifier: ::String,
1012
+ name: ::String,
1013
+ ?description: ::String,
1014
+ role_arn: ::String,
1015
+ protocol_type: ("MCP"),
1016
+ ?protocol_configuration: {
1017
+ mcp: {
1018
+ supported_versions: Array[::String]?,
1019
+ instructions: ::String?,
1020
+ search_type: ("SEMANTIC")?
1021
+ }?
1022
+ },
1023
+ authorizer_type: ("CUSTOM_JWT"),
1024
+ authorizer_configuration: {
1025
+ custom_jwt_authorizer: {
1026
+ discovery_url: ::String,
1027
+ allowed_audience: Array[::String]?,
1028
+ allowed_clients: Array[::String]?
1029
+ }?
1030
+ },
1031
+ ?kms_key_arn: ::String,
1032
+ ?exception_level: ("DEBUG")
1033
+ ) -> _UpdateGatewayResponseSuccess
1034
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayResponseSuccess
1035
+
1036
+ interface _UpdateGatewayTargetResponseSuccess
1037
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGatewayTargetResponse]
1038
+ def gateway_arn: () -> ::String
1039
+ def target_id: () -> ::String
1040
+ def created_at: () -> ::Time
1041
+ def updated_at: () -> ::Time
1042
+ def status: () -> ("CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED")
1043
+ def status_reasons: () -> ::Array[::String]
1044
+ def name: () -> ::String
1045
+ def description: () -> ::String
1046
+ def target_configuration: () -> Types::TargetConfiguration
1047
+ def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
1048
+ end
1049
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_target-instance_method
1050
+ def update_gateway_target: (
1051
+ gateway_identifier: ::String,
1052
+ target_id: ::String,
1053
+ name: ::String,
1054
+ ?description: ::String,
1055
+ target_configuration: {
1056
+ mcp: {
1057
+ open_api_schema: {
1058
+ s3: {
1059
+ uri: ::String?,
1060
+ bucket_owner_account_id: ::String?
1061
+ }?,
1062
+ inline_payload: ::String?
1063
+ }?,
1064
+ smithy_model: {
1065
+ s3: {
1066
+ uri: ::String?,
1067
+ bucket_owner_account_id: ::String?
1068
+ }?,
1069
+ inline_payload: ::String?
1070
+ }?,
1071
+ lambda: {
1072
+ lambda_arn: ::String,
1073
+ tool_schema: {
1074
+ s3: {
1075
+ uri: ::String?,
1076
+ bucket_owner_account_id: ::String?
1077
+ }?,
1078
+ inline_payload: Array[
1079
+ {
1080
+ name: ::String,
1081
+ description: ::String,
1082
+ input_schema: {
1083
+ type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
1084
+ properties: Hash[::String, untyped]?,
1085
+ required: Array[::String]?,
1086
+ items: untyped?,
1087
+ description: ::String?
1088
+ },
1089
+ output_schema: {
1090
+ type: ("string" | "number" | "object" | "array" | "boolean" | "integer"),
1091
+ properties: Hash[::String, untyped]?,
1092
+ required: Array[::String]?,
1093
+ items: untyped?,
1094
+ description: ::String?
1095
+ }?
1096
+ },
1097
+ ]?
1098
+ }
1099
+ }?
1100
+ }?
1101
+ },
1102
+ credential_provider_configurations: Array[
1103
+ {
1104
+ credential_provider_type: ("GATEWAY_IAM_ROLE" | "OAUTH" | "API_KEY"),
1105
+ credential_provider: {
1106
+ oauth_credential_provider: {
1107
+ provider_arn: ::String,
1108
+ scopes: Array[::String],
1109
+ custom_parameters: Hash[::String, ::String]?
1110
+ }?,
1111
+ api_key_credential_provider: {
1112
+ provider_arn: ::String,
1113
+ credential_parameter_name: ::String?,
1114
+ credential_prefix: ::String?,
1115
+ credential_location: ("HEADER" | "QUERY_PARAMETER")?
1116
+ }?
1117
+ }?
1118
+ },
1119
+ ]
1120
+ ) -> _UpdateGatewayTargetResponseSuccess
1121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayTargetResponseSuccess
1122
+
1123
+ interface _UpdateMemoryResponseSuccess
1124
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMemoryOutput]
1125
+ def memory: () -> Types::Memory
1126
+ end
1127
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_memory-instance_method
1128
+ def update_memory: (
1129
+ ?client_token: ::String,
1130
+ memory_id: ::String,
1131
+ ?description: ::String,
1132
+ ?event_expiry_duration: ::Integer,
1133
+ ?memory_execution_role_arn: ::String,
1134
+ ?memory_strategies: {
1135
+ add_memory_strategies: Array[
1136
+ {
1137
+ semantic_memory_strategy: {
1138
+ name: ::String,
1139
+ description: ::String?,
1140
+ namespaces: Array[::String]?
1141
+ }?,
1142
+ summary_memory_strategy: {
1143
+ name: ::String,
1144
+ description: ::String?,
1145
+ namespaces: Array[::String]?
1146
+ }?,
1147
+ user_preference_memory_strategy: {
1148
+ name: ::String,
1149
+ description: ::String?,
1150
+ namespaces: Array[::String]?
1151
+ }?,
1152
+ custom_memory_strategy: {
1153
+ name: ::String,
1154
+ description: ::String?,
1155
+ namespaces: Array[::String]?,
1156
+ configuration: {
1157
+ semantic_override: {
1158
+ extraction: {
1159
+ append_to_prompt: ::String,
1160
+ model_id: ::String
1161
+ }?,
1162
+ consolidation: {
1163
+ append_to_prompt: ::String,
1164
+ model_id: ::String
1165
+ }?
1166
+ }?,
1167
+ summary_override: {
1168
+ consolidation: {
1169
+ append_to_prompt: ::String,
1170
+ model_id: ::String
1171
+ }?
1172
+ }?,
1173
+ user_preference_override: {
1174
+ extraction: {
1175
+ append_to_prompt: ::String,
1176
+ model_id: ::String
1177
+ }?,
1178
+ consolidation: {
1179
+ append_to_prompt: ::String,
1180
+ model_id: ::String
1181
+ }?
1182
+ }?
1183
+ }?
1184
+ }?
1185
+ },
1186
+ ]?,
1187
+ modify_memory_strategies: Array[
1188
+ {
1189
+ memory_strategy_id: ::String,
1190
+ description: ::String?,
1191
+ namespaces: Array[::String]?,
1192
+ configuration: {
1193
+ extraction: {
1194
+ custom_extraction_configuration: {
1195
+ semantic_extraction_override: {
1196
+ append_to_prompt: ::String,
1197
+ model_id: ::String
1198
+ }?,
1199
+ user_preference_extraction_override: {
1200
+ append_to_prompt: ::String,
1201
+ model_id: ::String
1202
+ }?
1203
+ }?
1204
+ }?,
1205
+ consolidation: {
1206
+ custom_consolidation_configuration: {
1207
+ semantic_consolidation_override: {
1208
+ append_to_prompt: ::String,
1209
+ model_id: ::String
1210
+ }?,
1211
+ summary_consolidation_override: {
1212
+ append_to_prompt: ::String,
1213
+ model_id: ::String
1214
+ }?,
1215
+ user_preference_consolidation_override: {
1216
+ append_to_prompt: ::String,
1217
+ model_id: ::String
1218
+ }?
1219
+ }?
1220
+ }?
1221
+ }?
1222
+ },
1223
+ ]?,
1224
+ delete_memory_strategies: Array[
1225
+ {
1226
+ memory_strategy_id: ::String
1227
+ },
1228
+ ]?
1229
+ }
1230
+ ) -> _UpdateMemoryResponseSuccess
1231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMemoryResponseSuccess
1232
+
1233
+ interface _UpdateOauth2CredentialProviderResponseSuccess
1234
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOauth2CredentialProviderResponse]
1235
+ def client_secret_arn: () -> Types::Secret
1236
+ def name: () -> ::String
1237
+ def credential_provider_vendor: () -> ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2")
1238
+ def credential_provider_arn: () -> ::String
1239
+ def oauth2_provider_config_output: () -> Types::Oauth2ProviderConfigOutput
1240
+ def created_time: () -> ::Time
1241
+ def last_updated_time: () -> ::Time
1242
+ end
1243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_oauth_2_credential_provider-instance_method
1244
+ def update_oauth_2_credential_provider: (
1245
+ name: ::String,
1246
+ credential_provider_vendor: ("GoogleOauth2" | "GithubOauth2" | "SlackOauth2" | "SalesforceOauth2" | "MicrosoftOauth2" | "CustomOauth2"),
1247
+ oauth2_provider_config_input: {
1248
+ custom_oauth_2_provider_config: {
1249
+ oauth_discovery: {
1250
+ discovery_url: ::String?,
1251
+ authorization_server_metadata: {
1252
+ issuer: ::String,
1253
+ authorization_endpoint: ::String,
1254
+ token_endpoint: ::String,
1255
+ response_types: Array[::String]?
1256
+ }?
1257
+ },
1258
+ client_id: ::String,
1259
+ client_secret: ::String
1260
+ }?,
1261
+ google_oauth_2_provider_config: {
1262
+ client_id: ::String,
1263
+ client_secret: ::String
1264
+ }?,
1265
+ github_oauth_2_provider_config: {
1266
+ client_id: ::String,
1267
+ client_secret: ::String
1268
+ }?,
1269
+ slack_oauth_2_provider_config: {
1270
+ client_id: ::String,
1271
+ client_secret: ::String
1272
+ }?,
1273
+ salesforce_oauth_2_provider_config: {
1274
+ client_id: ::String,
1275
+ client_secret: ::String
1276
+ }?,
1277
+ microsoft_oauth_2_provider_config: {
1278
+ client_id: ::String,
1279
+ client_secret: ::String
1280
+ }?
1281
+ }
1282
+ ) -> _UpdateOauth2CredentialProviderResponseSuccess
1283
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOauth2CredentialProviderResponseSuccess
1284
+
1285
+ interface _UpdateWorkloadIdentityResponseSuccess
1286
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWorkloadIdentityResponse]
1287
+ def name: () -> ::String
1288
+ def workload_identity_arn: () -> ::String
1289
+ def allowed_resource_oauth_2_return_urls: () -> ::Array[::String]
1290
+ def created_time: () -> ::Time
1291
+ def last_updated_time: () -> ::Time
1292
+ end
1293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_workload_identity-instance_method
1294
+ def update_workload_identity: (
1295
+ name: ::String,
1296
+ ?allowed_resource_oauth_2_return_urls: Array[::String]
1297
+ ) -> _UpdateWorkloadIdentityResponseSuccess
1298
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkloadIdentityResponseSuccess
1299
+
1300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#wait_until-instance_method
1301
+ def wait_until: (:memory_created waiter_name,
1302
+ memory_id: ::String
1303
+ ) -> Client::_GetMemoryResponseSuccess
1304
+ | (:memory_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetMemoryResponseSuccess
1305
+ end
1306
+ end
1307
+ end
1308
+