aws-sdk-bedrockagentcorecontrol 1.51.0 → 1.52.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-bedrockagentcorecontrol/client.rb +87 -168
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +2 -0
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +54 -65
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/params.rbs +1 -0
- data/sig/types.rbs +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9bb24571b662426e0795090f4f485223f02b945339bf6e6e80be84a0a89c418
|
|
4
|
+
data.tar.gz: dea863f38509950a0fe480ab1d841a64d5a33a6f3d56722b8e1e688c77c8f1cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f469cb9cb35e653a3a8b23995f771736aba3178126ec755ae877b2edb5d3945260f1b4ca79e5a006c6e89a8788cbe87fb5d6eed90f87a845c31c3911a4075614
|
|
7
|
+
data.tar.gz: ff497d93c3905659a7940ae812b53109ca28bda2e0be2dc05046aa57e52f030b2f3fba50edf1c824caff6751478bb0108a102a11713911f7347819e15ca89d3e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.52.0
|
|
@@ -474,21 +474,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
474
474
|
|
|
475
475
|
# @!group API Operations
|
|
476
476
|
|
|
477
|
-
# Adds examples to the dataset's DRAFT.
|
|
478
|
-
#
|
|
479
|
-
#
|
|
480
|
-
#
|
|
481
|
-
# the entire batch is rejected with ValidationException — no examples
|
|
482
|
-
# are written (all-or-nothing semantics).
|
|
483
|
-
#
|
|
484
|
-
# **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
|
|
485
|
-
# Use CreateDatasetVersion to publish DRAFT as a new numbered version.
|
|
486
|
-
#
|
|
487
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
488
|
-
# the dataset status is not in \{DRAFT, ACTIVE}.
|
|
489
|
-
#
|
|
490
|
-
# **Request size limit:** Max 5 MB total request body. Max 1000 examples
|
|
491
|
-
# per call.
|
|
477
|
+
# Adds examples to the dataset's DRAFT. All examples are validated
|
|
478
|
+
# against the dataset's schema type before any writes occur. If any
|
|
479
|
+
# example fails validation, the entire batch is rejected (all-or-nothing
|
|
480
|
+
# semantics).
|
|
492
481
|
#
|
|
493
482
|
# @option params [required, String] :dataset_id
|
|
494
483
|
# The unique identifier of the dataset to add examples to.
|
|
@@ -1250,20 +1239,27 @@ module Aws::BedrockAgentCoreControl
|
|
|
1250
1239
|
req.send_request(options)
|
|
1251
1240
|
end
|
|
1252
1241
|
|
|
1253
|
-
# Creates a new
|
|
1254
|
-
#
|
|
1255
|
-
#
|
|
1256
|
-
# transitions to ACTIVE or CREATE\_FAILED (with failureReason).
|
|
1242
|
+
# Creates a new dataset resource asynchronously. Returns immediately
|
|
1243
|
+
# with status CREATING. Poll `GetDataset` until status transitions to
|
|
1244
|
+
# ACTIVE or CREATE\_FAILED.
|
|
1257
1245
|
#
|
|
1258
1246
|
# @option params [String] :client_token
|
|
1259
|
-
#
|
|
1247
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
1248
|
+
# completes no more than one time. If you don't specify this field, a
|
|
1249
|
+
# value is randomly generated for you. If this token matches a previous
|
|
1250
|
+
# request, the service ignores the request, but doesn't return an
|
|
1251
|
+
# error. For more information, see [Ensuring idempotency][1].
|
|
1260
1252
|
#
|
|
1261
1253
|
# **A suitable default value is auto-generated.** You should normally
|
|
1262
1254
|
# not need to pass this option.**
|
|
1263
1255
|
#
|
|
1256
|
+
#
|
|
1257
|
+
#
|
|
1258
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
1259
|
+
#
|
|
1264
1260
|
# @option params [required, String] :dataset_name
|
|
1265
|
-
# Human-readable name for the dataset.
|
|
1266
|
-
#
|
|
1261
|
+
# Human-readable name for the dataset. Must be unique within the
|
|
1262
|
+
# account. Immutable after creation.
|
|
1267
1263
|
#
|
|
1268
1264
|
# @option params [String] :description
|
|
1269
1265
|
# A description of the dataset.
|
|
@@ -1277,7 +1273,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
1277
1273
|
# after creation.
|
|
1278
1274
|
#
|
|
1279
1275
|
# @option params [String] :kms_key_arn
|
|
1280
|
-
# Optional
|
|
1276
|
+
# Optional KMS key ARN for server-side encryption on service Amazon S3
|
|
1277
|
+
# writes.
|
|
1281
1278
|
#
|
|
1282
1279
|
# @option params [Hash<String,String>] :tags
|
|
1283
1280
|
# A map of tag keys and values to assign to the dataset.
|
|
@@ -1329,20 +1326,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
1329
1326
|
req.send_request(options)
|
|
1330
1327
|
end
|
|
1331
1328
|
|
|
1332
|
-
# Publishes the current DRAFT as a new numbered version.
|
|
1333
|
-
#
|
|
1334
|
-
#
|
|
1335
|
-
#
|
|
1336
|
-
# immediately with status UPDATING. Poll GetDataset until status
|
|
1337
|
-
# transitions to ACTIVE (draftStatus=UNMODIFIED) or UPDATE\_FAILED.
|
|
1338
|
-
#
|
|
1339
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
1340
|
-
# status is in \{CREATING, UPDATING, DELETING}, or
|
|
1341
|
-
# DATASET\_IN\_FAILED\_STATE if status is in \{CREATE\_FAILED,
|
|
1342
|
-
# DELETE\_FAILED}.
|
|
1343
|
-
#
|
|
1344
|
-
# **Quota:** MAX\_VERSIONS\_PER\_DATASET applies to published versions
|
|
1345
|
-
# only (not DRAFT).
|
|
1329
|
+
# Publishes the current DRAFT as a new numbered version. The DRAFT is
|
|
1330
|
+
# preserved and remains editable after publishing. Returns immediately
|
|
1331
|
+
# with status UPDATING. Poll `GetDataset` until status transitions to
|
|
1332
|
+
# ACTIVE or UPDATE\_FAILED.
|
|
1346
1333
|
#
|
|
1347
1334
|
# @option params [required, String] :dataset_id
|
|
1348
1335
|
# The unique identifier of the dataset to publish a version for.
|
|
@@ -2819,6 +2806,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2819
2806
|
# {
|
|
2820
2807
|
# key: "MetadataKey", # required
|
|
2821
2808
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2809
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2822
2810
|
# extraction_config: {
|
|
2823
2811
|
# llm_extraction_config: {
|
|
2824
2812
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -2852,6 +2840,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2852
2840
|
# {
|
|
2853
2841
|
# key: "MetadataKey", # required
|
|
2854
2842
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2843
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2855
2844
|
# extraction_config: {
|
|
2856
2845
|
# llm_extraction_config: {
|
|
2857
2846
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -2885,6 +2874,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2885
2874
|
# {
|
|
2886
2875
|
# key: "MetadataKey", # required
|
|
2887
2876
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2877
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2888
2878
|
# extraction_config: {
|
|
2889
2879
|
# llm_extraction_config: {
|
|
2890
2880
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -2959,6 +2949,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
2959
2949
|
# {
|
|
2960
2950
|
# key: "MetadataKey", # required
|
|
2961
2951
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
2952
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
2962
2953
|
# extraction_config: {
|
|
2963
2954
|
# llm_extraction_config: {
|
|
2964
2955
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3009,6 +3000,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3009
3000
|
# {
|
|
3010
3001
|
# key: "MetadataKey", # required
|
|
3011
3002
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
3003
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
3012
3004
|
# extraction_config: {
|
|
3013
3005
|
# llm_extraction_config: {
|
|
3014
3006
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3045,6 +3037,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3045
3037
|
# {
|
|
3046
3038
|
# key: "MetadataKey", # required
|
|
3047
3039
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
3040
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
3048
3041
|
# extraction_config: {
|
|
3049
3042
|
# llm_extraction_config: {
|
|
3050
3043
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3073,6 +3066,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3073
3066
|
# {
|
|
3074
3067
|
# key: "MetadataKey", # required
|
|
3075
3068
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
3069
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
3076
3070
|
# extraction_config: {
|
|
3077
3071
|
# llm_extraction_config: {
|
|
3078
3072
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -3133,7 +3127,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3133
3127
|
# resp.memory.encryption_key_arn #=> String
|
|
3134
3128
|
# resp.memory.memory_execution_role_arn #=> String
|
|
3135
3129
|
# resp.memory.event_expiry_duration #=> Integer
|
|
3136
|
-
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
3130
|
+
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
3137
3131
|
# resp.memory.failure_reason #=> String
|
|
3138
3132
|
# resp.memory.created_at #=> Time
|
|
3139
3133
|
# resp.memory.updated_at #=> Time
|
|
@@ -3165,6 +3159,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3165
3159
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
|
|
3166
3160
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
|
|
3167
3161
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
3162
|
+
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
3168
3163
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
3169
3164
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
3170
3165
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -3181,6 +3176,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3181
3176
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
|
|
3182
3177
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
|
|
3183
3178
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
3179
|
+
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
3184
3180
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
3185
3181
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
3186
3182
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -3208,6 +3204,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3208
3204
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
|
|
3209
3205
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
|
|
3210
3206
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
3207
|
+
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
3211
3208
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
3212
3209
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
3213
3210
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -4849,48 +4846,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
4849
4846
|
req.send_request(options)
|
|
4850
4847
|
end
|
|
4851
4848
|
|
|
4852
|
-
# Deletes a dataset version or an entire dataset
|
|
4853
|
-
#
|
|
4854
|
-
#
|
|
4855
|
-
# **State transitions:**
|
|
4856
|
-
#
|
|
4857
|
-
# * If `datasetVersion` is absent (full delete): status transitions to
|
|
4858
|
-
# DELETING immediately.
|
|
4859
|
-
# * If `datasetVersion` is provided (version-specific delete): status
|
|
4860
|
-
# transitions to UPDATING.
|
|
4861
|
-
#
|
|
4862
|
-
# **State guard (full delete):** Returns ConflictException
|
|
4863
|
-
# (DATASET\_NOT\_READY) if the dataset status is in \{CREATING,
|
|
4864
|
-
# UPDATING}. Deletion is allowed from ACTIVE, CREATE\_FAILED,
|
|
4865
|
-
# UPDATE\_FAILED, and DELETE\_FAILED states.
|
|
4866
|
-
#
|
|
4867
|
-
# **State guard (version-specific delete):** Returns ConflictException
|
|
4868
|
-
# (DATASET\_NOT\_READY) if the dataset status is not in \{ACTIVE,
|
|
4869
|
-
# CREATE\_FAILED, UPDATE\_FAILED}.
|
|
4870
|
-
#
|
|
4871
|
-
# Fails with ConflictException (REFERENCED\_BY\_EVAL\_JOB) if referenced
|
|
4872
|
-
# by an active evaluation job (full delete only).
|
|
4873
|
-
#
|
|
4874
|
-
# If the delete workflow fails after retries, status is set to
|
|
4875
|
-
# DELETE\_FAILED (full delete) or UPDATE\_FAILED (version-specific
|
|
4876
|
-
# delete). Calling DeleteDataset on a DELETE\_FAILED dataset re-triggers
|
|
4877
|
-
# the delete workflow (idempotent retry path).
|
|
4878
|
-
#
|
|
4879
|
-
# **Version parameter:**
|
|
4880
|
-
#
|
|
4881
|
-
# * If `datasetVersion` is absent: deletes ALL versions and the Dataset
|
|
4882
|
-
# record itself.
|
|
4883
|
-
# * If `datasetVersion` is provided: deletes only that specific
|
|
4884
|
-
# DatasetVersion. Returns ResourceNotFoundException if the specified
|
|
4885
|
-
# version does not exist.
|
|
4849
|
+
# Deletes a dataset version or an entire dataset asynchronously. If
|
|
4850
|
+
# `datasetVersion` is absent, deletes all versions and the dataset
|
|
4851
|
+
# record itself. If provided, deletes only that specific version.
|
|
4886
4852
|
#
|
|
4887
4853
|
# @option params [required, String] :dataset_id
|
|
4888
4854
|
# The unique identifier of the dataset to delete.
|
|
4889
4855
|
#
|
|
4890
4856
|
# @option params [String] :dataset_version
|
|
4891
|
-
# Optional version to delete.
|
|
4892
|
-
#
|
|
4893
|
-
# exist.
|
|
4857
|
+
# Optional version to delete. If absent, deletes the entire dataset. If
|
|
4858
|
+
# provided, deletes only that specific version.
|
|
4894
4859
|
#
|
|
4895
4860
|
# @return [Types::DeleteDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4896
4861
|
#
|
|
@@ -4924,18 +4889,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
4924
4889
|
req.send_request(options)
|
|
4925
4890
|
end
|
|
4926
4891
|
|
|
4927
|
-
# Deletes specific examples by ID from DRAFT.
|
|
4928
|
-
#
|
|
4929
|
-
#
|
|
4930
|
-
# occur. If any ID does not exist in DRAFT, the entire batch is rejected
|
|
4931
|
-
# with ResourceNotFoundException — no examples are deleted
|
|
4932
|
-
# (all-or-nothing semantics).
|
|
4933
|
-
#
|
|
4934
|
-
# **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
|
|
4935
|
-
# Use CreateDatasetVersion to publish DRAFT as a new numbered version.
|
|
4936
|
-
#
|
|
4937
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
4938
|
-
# the dataset status is not in \{DRAFT, ACTIVE}.
|
|
4892
|
+
# Deletes specific examples by ID from DRAFT. All example IDs are
|
|
4893
|
+
# validated before any deletes occur. If any ID does not exist in DRAFT,
|
|
4894
|
+
# the entire batch is rejected (all-or-nothing semantics).
|
|
4939
4895
|
#
|
|
4940
4896
|
# @option params [required, String] :dataset_id
|
|
4941
4897
|
# The unique identifier of the dataset.
|
|
@@ -5328,7 +5284,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5328
5284
|
# @example Response structure
|
|
5329
5285
|
#
|
|
5330
5286
|
# resp.memory_id #=> String
|
|
5331
|
-
# resp.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
5287
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
5332
5288
|
#
|
|
5333
5289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteMemory AWS API Documentation
|
|
5334
5290
|
#
|
|
@@ -6231,36 +6187,16 @@ module Aws::BedrockAgentCoreControl
|
|
|
6231
6187
|
req.send_request(options)
|
|
6232
6188
|
end
|
|
6233
6189
|
|
|
6234
|
-
# Retrieves dataset metadata
|
|
6235
|
-
#
|
|
6236
|
-
#
|
|
6237
|
-
# specific version's metadata. If absent, defaults to DRAFT (the
|
|
6238
|
-
# mutable working copy). Returns ResourceNotFoundException if the
|
|
6239
|
-
# specified version is not found.
|
|
6240
|
-
#
|
|
6241
|
-
# **Initial state after CreateDataset:** When CreateDataset completes
|
|
6242
|
-
# successfully (status transitions to ACTIVE), only a DRAFT working copy
|
|
6243
|
-
# exists. No published versions exist until CreateDatasetVersion is
|
|
6244
|
-
# called. At this point draftStatus is MODIFIED because the DRAFT has
|
|
6245
|
-
# content that has never been published.
|
|
6246
|
-
#
|
|
6247
|
-
# **Default version behavior:** When `datasetVersion` is omitted, the
|
|
6248
|
-
# operation returns the DRAFT working copy. To retrieve a specific
|
|
6249
|
-
# published version, pass the version number as a string (e.g.
|
|
6250
|
-
# `?datasetVersion=1`).
|
|
6251
|
-
#
|
|
6252
|
-
# **State guard:** Allowed for all statuses including DELETING. Returns
|
|
6253
|
-
# the dataset record with its current status so callers can observe the
|
|
6254
|
-
# deletion in progress.
|
|
6255
|
-
#
|
|
6256
|
-
# For paginated example IDs use ListDatasetExamples.
|
|
6190
|
+
# Retrieves dataset metadata. Use the `datasetVersion` query parameter
|
|
6191
|
+
# to retrieve a specific version's metadata. If absent, defaults to
|
|
6192
|
+
# DRAFT. For paginated example content, use `ListDatasetExamples`.
|
|
6257
6193
|
#
|
|
6258
6194
|
# @option params [required, String] :dataset_id
|
|
6259
6195
|
# The unique identifier of the dataset to retrieve.
|
|
6260
6196
|
#
|
|
6261
6197
|
# @option params [String] :dataset_version
|
|
6262
|
-
# Version to retrieve: "DRAFT" or a version number. Defaults to DRAFT
|
|
6263
|
-
# absent.
|
|
6198
|
+
# Version to retrieve: "DRAFT" or a version number. Defaults to DRAFT
|
|
6199
|
+
# if absent.
|
|
6264
6200
|
#
|
|
6265
6201
|
# @return [Types::GetDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6266
6202
|
#
|
|
@@ -6899,7 +6835,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6899
6835
|
# resp.memory.encryption_key_arn #=> String
|
|
6900
6836
|
# resp.memory.memory_execution_role_arn #=> String
|
|
6901
6837
|
# resp.memory.event_expiry_duration #=> Integer
|
|
6902
|
-
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
6838
|
+
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
6903
6839
|
# resp.memory.failure_reason #=> String
|
|
6904
6840
|
# resp.memory.created_at #=> Time
|
|
6905
6841
|
# resp.memory.updated_at #=> Time
|
|
@@ -6931,6 +6867,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6931
6867
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
|
|
6932
6868
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
|
|
6933
6869
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
6870
|
+
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
6934
6871
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
6935
6872
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
6936
6873
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -6947,6 +6884,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6947
6884
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
|
|
6948
6885
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
|
|
6949
6886
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
6887
|
+
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
6950
6888
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
6951
6889
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
6952
6890
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -6974,6 +6912,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
6974
6912
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
|
|
6975
6913
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
|
|
6976
6914
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
6915
|
+
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
6977
6916
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
6978
6917
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
6979
6918
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -8474,31 +8413,21 @@ module Aws::BedrockAgentCoreControl
|
|
|
8474
8413
|
req.send_request(options)
|
|
8475
8414
|
end
|
|
8476
8415
|
|
|
8477
|
-
# Returns paginated examples from the dataset.
|
|
8478
|
-
#
|
|
8479
|
-
#
|
|
8480
|
-
#
|
|
8481
|
-
# pinned to that version regardless of concurrent mutations or whether
|
|
8482
|
-
# `datasetVersion` is passed on subsequent requests. The
|
|
8483
|
-
# `datasetVersion` query parameter is only used for the first request
|
|
8484
|
-
# (when `nextToken` is absent); if omitted, defaults to DRAFT.
|
|
8485
|
-
#
|
|
8486
|
-
# **State guard:** Allowed for all statuses including DELETING.
|
|
8416
|
+
# Returns paginated examples from the dataset. The server embeds the
|
|
8417
|
+
# resolved version in the pagination token. Once pagination begins, all
|
|
8418
|
+
# subsequent pages are pinned to that version regardless of concurrent
|
|
8419
|
+
# mutations.
|
|
8487
8420
|
#
|
|
8488
8421
|
# @option params [required, String] :dataset_id
|
|
8489
8422
|
# The unique identifier of the dataset.
|
|
8490
8423
|
#
|
|
8491
8424
|
# @option params [String] :dataset_version
|
|
8492
|
-
# Version to paginate: "DRAFT" or a version number. Defaults to DRAFT
|
|
8493
|
-
# absent. Only used on the first request
|
|
8494
|
-
#
|
|
8495
|
-
# parameter is ignored.
|
|
8425
|
+
# Version to paginate: "DRAFT" or a version number. Defaults to DRAFT
|
|
8426
|
+
# if absent. Only used on the first request; for subsequent pages, the
|
|
8427
|
+
# version is extracted from the pagination token.
|
|
8496
8428
|
#
|
|
8497
8429
|
# @option params [Integer] :max_results
|
|
8498
|
-
# Maximum number of examples to return per page.
|
|
8499
|
-
# max: 1000. Response size is validated against 5 MB limit after
|
|
8500
|
-
# reading. For bulk access to all examples, use the `downloadUrl` field
|
|
8501
|
-
# from GetDataset.
|
|
8430
|
+
# Maximum number of examples to return per page.
|
|
8502
8431
|
#
|
|
8503
8432
|
# @option params [String] :next_token
|
|
8504
8433
|
# The token for the next page of results.
|
|
@@ -8542,8 +8471,6 @@ module Aws::BedrockAgentCoreControl
|
|
|
8542
8471
|
# Lists all published versions of a dataset, sorted by version number
|
|
8543
8472
|
# descending (newest first). Does not include the DRAFT working copy.
|
|
8544
8473
|
#
|
|
8545
|
-
# **State guard:** Allowed for all statuses including DELETING.
|
|
8546
|
-
#
|
|
8547
8474
|
# @option params [required, String] :dataset_id
|
|
8548
8475
|
# The unique identifier of the dataset.
|
|
8549
8476
|
#
|
|
@@ -8585,8 +8512,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8585
8512
|
req.send_request(options)
|
|
8586
8513
|
end
|
|
8587
8514
|
|
|
8588
|
-
# Lists all datasets in the caller's account, paginated.
|
|
8589
|
-
# URLs in list results.
|
|
8515
|
+
# Lists all datasets in the caller's account, paginated.
|
|
8590
8516
|
#
|
|
8591
8517
|
# @option params [String] :next_token
|
|
8592
8518
|
# The token for the next page of results.
|
|
@@ -8933,7 +8859,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
8933
8859
|
# resp.memories #=> Array
|
|
8934
8860
|
# resp.memories[0].arn #=> String
|
|
8935
8861
|
# resp.memories[0].id #=> String
|
|
8936
|
-
# resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
8862
|
+
# resp.memories[0].status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
8937
8863
|
# resp.memories[0].created_at #=> Time
|
|
8938
8864
|
# resp.memories[0].updated_at #=> Time
|
|
8939
8865
|
# resp.next_token #=> String
|
|
@@ -10679,12 +10605,9 @@ module Aws::BedrockAgentCoreControl
|
|
|
10679
10605
|
end
|
|
10680
10606
|
|
|
10681
10607
|
# Updates a dataset's metadata. Synchronous operation. Only provided
|
|
10682
|
-
# fields are updated; omitted fields remain unchanged.
|
|
10683
|
-
#
|
|
10684
|
-
#
|
|
10685
|
-
# UpdateDatasetExamples, or DeleteDatasetExamples.
|
|
10686
|
-
#
|
|
10687
|
-
# Cannot update: name, schemaType, kmsKeyArn (immutable after creation).
|
|
10608
|
+
# fields are updated; omitted fields remain unchanged. To modify dataset
|
|
10609
|
+
# content, use `AddDatasetExamples`, `UpdateDatasetExamples`, or
|
|
10610
|
+
# `DeleteDatasetExamples`.
|
|
10688
10611
|
#
|
|
10689
10612
|
# @option params [required, String] :dataset_id
|
|
10690
10613
|
# The unique identifier of the dataset to update.
|
|
@@ -10735,24 +10658,10 @@ module Aws::BedrockAgentCoreControl
|
|
|
10735
10658
|
req.send_request(options)
|
|
10736
10659
|
end
|
|
10737
10660
|
|
|
10738
|
-
# Updates multiple existing examples in-place on DRAFT.
|
|
10739
|
-
#
|
|
10740
|
-
#
|
|
10741
|
-
#
|
|
10742
|
-
# the entire batch is rejected with ValidationException — no examples
|
|
10743
|
-
# are updated (all-or-nothing semantics).
|
|
10744
|
-
#
|
|
10745
|
-
# **Asynchronous:** Operates in-place on DRAFT. No version bump occurs.
|
|
10746
|
-
# Use CreateDatasetVersion to publish DRAFT as a new numbered version.
|
|
10747
|
-
#
|
|
10748
|
-
# Fails with ResourceNotFoundException if any exampleId does not exist
|
|
10749
|
-
# in DRAFT. To add new examples, use AddDatasetExamples instead.
|
|
10750
|
-
#
|
|
10751
|
-
# **State guard:** Returns ConflictException (DATASET\_NOT\_READY) if
|
|
10752
|
-
# the dataset status is not in \{DRAFT, ACTIVE}.
|
|
10753
|
-
#
|
|
10754
|
-
# **Request size limit:** Max 5 MB total request body. Max 1000 examples
|
|
10755
|
-
# per call.
|
|
10661
|
+
# Updates multiple existing examples in-place on DRAFT. All examples are
|
|
10662
|
+
# validated against the dataset's schema type before any writes occur.
|
|
10663
|
+
# If any example fails validation, the entire batch is rejected
|
|
10664
|
+
# (all-or-nothing semantics).
|
|
10756
10665
|
#
|
|
10757
10666
|
# @option params [required, String] :dataset_id
|
|
10758
10667
|
# The unique identifier of the dataset.
|
|
@@ -10773,11 +10682,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
10773
10682
|
#
|
|
10774
10683
|
# @option params [required, Array<Hash,Array,String,Numeric,Boolean>] :examples
|
|
10775
10684
|
# Examples to update. Each element is a JSON object containing a
|
|
10776
|
-
# required `exampleId`
|
|
10777
|
-
#
|
|
10778
|
-
# before persistence; the remaining document is validated against the
|
|
10779
|
-
# dataset's schemaType. Max 1000 examples per call. Total request body
|
|
10780
|
-
# must not exceed 5 MB.
|
|
10685
|
+
# required `exampleId` field identifying the existing example, plus the
|
|
10686
|
+
# replacement fields. Maximum 1000 examples per call.
|
|
10781
10687
|
#
|
|
10782
10688
|
# @return [Types::UpdateDatasetExamplesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
10783
10689
|
#
|
|
@@ -12171,6 +12077,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12171
12077
|
# {
|
|
12172
12078
|
# key: "MetadataKey", # required
|
|
12173
12079
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12080
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12174
12081
|
# extraction_config: {
|
|
12175
12082
|
# llm_extraction_config: {
|
|
12176
12083
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12204,6 +12111,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12204
12111
|
# {
|
|
12205
12112
|
# key: "MetadataKey", # required
|
|
12206
12113
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12114
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12207
12115
|
# extraction_config: {
|
|
12208
12116
|
# llm_extraction_config: {
|
|
12209
12117
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12237,6 +12145,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12237
12145
|
# {
|
|
12238
12146
|
# key: "MetadataKey", # required
|
|
12239
12147
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12148
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12240
12149
|
# extraction_config: {
|
|
12241
12150
|
# llm_extraction_config: {
|
|
12242
12151
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12311,6 +12220,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12311
12220
|
# {
|
|
12312
12221
|
# key: "MetadataKey", # required
|
|
12313
12222
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12223
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12314
12224
|
# extraction_config: {
|
|
12315
12225
|
# llm_extraction_config: {
|
|
12316
12226
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12361,6 +12271,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12361
12271
|
# {
|
|
12362
12272
|
# key: "MetadataKey", # required
|
|
12363
12273
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12274
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12364
12275
|
# extraction_config: {
|
|
12365
12276
|
# llm_extraction_config: {
|
|
12366
12277
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12397,6 +12308,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12397
12308
|
# {
|
|
12398
12309
|
# key: "MetadataKey", # required
|
|
12399
12310
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12311
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12400
12312
|
# extraction_config: {
|
|
12401
12313
|
# llm_extraction_config: {
|
|
12402
12314
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12425,6 +12337,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12425
12337
|
# {
|
|
12426
12338
|
# key: "MetadataKey", # required
|
|
12427
12339
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12340
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12428
12341
|
# extraction_config: {
|
|
12429
12342
|
# llm_extraction_config: {
|
|
12430
12343
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12502,6 +12415,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12502
12415
|
# {
|
|
12503
12416
|
# key: "MetadataKey", # required
|
|
12504
12417
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12418
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12505
12419
|
# extraction_config: {
|
|
12506
12420
|
# llm_extraction_config: {
|
|
12507
12421
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12536,6 +12450,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12536
12450
|
# {
|
|
12537
12451
|
# key: "MetadataKey", # required
|
|
12538
12452
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12453
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12539
12454
|
# extraction_config: {
|
|
12540
12455
|
# llm_extraction_config: {
|
|
12541
12456
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12587,6 +12502,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12587
12502
|
# {
|
|
12588
12503
|
# key: "MetadataKey", # required
|
|
12589
12504
|
# type: "STRING", # accepts STRING, STRINGLIST, NUMBER
|
|
12505
|
+
# extraction_type: "LLM_INFERRED", # accepts LLM_INFERRED, STRICTLY_CONSISTENT
|
|
12590
12506
|
# extraction_config: {
|
|
12591
12507
|
# llm_extraction_config: {
|
|
12592
12508
|
# llm_extraction_instruction: "LlmExtractionInstruction",
|
|
@@ -12649,7 +12565,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12649
12565
|
# resp.memory.encryption_key_arn #=> String
|
|
12650
12566
|
# resp.memory.memory_execution_role_arn #=> String
|
|
12651
12567
|
# resp.memory.event_expiry_duration #=> Integer
|
|
12652
|
-
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING"
|
|
12568
|
+
# resp.memory.status #=> String, one of "CREATING", "ACTIVE", "FAILED", "DELETING", "UPDATING"
|
|
12653
12569
|
# resp.memory.failure_reason #=> String
|
|
12654
12570
|
# resp.memory.created_at #=> Time
|
|
12655
12571
|
# resp.memory.updated_at #=> Time
|
|
@@ -12681,6 +12597,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12681
12597
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema #=> Array
|
|
12682
12598
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].key #=> String
|
|
12683
12599
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
12600
|
+
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
12684
12601
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
12685
12602
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
12686
12603
|
# resp.memory.strategies[0].configuration.reflection.custom_reflection_configuration.episodic_reflection_override.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -12697,6 +12614,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12697
12614
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema #=> Array
|
|
12698
12615
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].key #=> String
|
|
12699
12616
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
12617
|
+
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
12700
12618
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
12701
12619
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
12702
12620
|
# resp.memory.strategies[0].configuration.reflection.episodic_reflection_configuration.memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -12724,6 +12642,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
12724
12642
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema #=> Array
|
|
12725
12643
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].key #=> String
|
|
12726
12644
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].type #=> String, one of "STRING", "STRINGLIST", "NUMBER"
|
|
12645
|
+
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_type #=> String, one of "LLM_INFERRED", "STRICTLY_CONSISTENT"
|
|
12727
12646
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.llm_extraction_instruction #=> String
|
|
12728
12647
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.definition #=> String
|
|
12729
12648
|
# resp.memory.strategies[0].memory_record_schema.metadata_schema[0].extraction_config.llm_extraction_config.validation.string_validation.allowed_values #=> Array
|
|
@@ -14108,7 +14027,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
14108
14027
|
tracer: tracer
|
|
14109
14028
|
)
|
|
14110
14029
|
context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
|
|
14111
|
-
context[:gem_version] = '1.
|
|
14030
|
+
context[:gem_version] = '1.52.0'
|
|
14112
14031
|
Seahorse::Client::Request.new(handlers, context)
|
|
14113
14032
|
end
|
|
14114
14033
|
|
|
@@ -367,6 +367,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
367
367
|
ExceptionLevel = Shapes::StringShape.new(name: 'ExceptionLevel')
|
|
368
368
|
ExtractionConfig = Shapes::UnionShape.new(name: 'ExtractionConfig')
|
|
369
369
|
ExtractionConfiguration = Shapes::UnionShape.new(name: 'ExtractionConfiguration')
|
|
370
|
+
ExtractionType = Shapes::StringShape.new(name: 'ExtractionType')
|
|
370
371
|
FilesystemConfiguration = Shapes::UnionShape.new(name: 'FilesystemConfiguration')
|
|
371
372
|
FilesystemConfigurations = Shapes::ListShape.new(name: 'FilesystemConfigurations')
|
|
372
373
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
@@ -3877,6 +3878,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3877
3878
|
|
|
3878
3879
|
MetadataSchemaEntry.add_member(:key, Shapes::ShapeRef.new(shape: MetadataKey, required: true, location_name: "key"))
|
|
3879
3880
|
MetadataSchemaEntry.add_member(:type, Shapes::ShapeRef.new(shape: MetadataValueType, location_name: "type"))
|
|
3881
|
+
MetadataSchemaEntry.add_member(:extraction_type, Shapes::ShapeRef.new(shape: ExtractionType, location_name: "extractionType"))
|
|
3880
3882
|
MetadataSchemaEntry.add_member(:extraction_config, Shapes::ShapeRef.new(shape: ExtractionConfig, location_name: "extractionConfig"))
|
|
3881
3883
|
MetadataSchemaEntry.struct_class = Types::MetadataSchemaEntry
|
|
3882
3884
|
|
|
@@ -2187,15 +2187,24 @@ module Aws::BedrockAgentCoreControl
|
|
|
2187
2187
|
end
|
|
2188
2188
|
|
|
2189
2189
|
# @!attribute [rw] client_token
|
|
2190
|
-
#
|
|
2190
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
|
2191
|
+
# completes no more than one time. If you don't specify this field, a
|
|
2192
|
+
# value is randomly generated for you. If this token matches a
|
|
2193
|
+
# previous request, the service ignores the request, but doesn't
|
|
2194
|
+
# return an error. For more information, see [Ensuring
|
|
2195
|
+
# idempotency][1].
|
|
2191
2196
|
#
|
|
2192
2197
|
# **A suitable default value is auto-generated.** You should normally
|
|
2193
2198
|
# not need to pass this option.
|
|
2199
|
+
#
|
|
2200
|
+
#
|
|
2201
|
+
#
|
|
2202
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
2194
2203
|
# @return [String]
|
|
2195
2204
|
#
|
|
2196
2205
|
# @!attribute [rw] dataset_name
|
|
2197
|
-
# Human-readable name for the dataset.
|
|
2198
|
-
#
|
|
2206
|
+
# Human-readable name for the dataset. Must be unique within the
|
|
2207
|
+
# account. Immutable after creation.
|
|
2199
2208
|
# @return [String]
|
|
2200
2209
|
#
|
|
2201
2210
|
# @!attribute [rw] description
|
|
@@ -2213,7 +2222,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2213
2222
|
# @return [String]
|
|
2214
2223
|
#
|
|
2215
2224
|
# @!attribute [rw] kms_key_arn
|
|
2216
|
-
# Optional
|
|
2225
|
+
# Optional KMS key ARN for server-side encryption on service Amazon S3
|
|
2226
|
+
# writes.
|
|
2217
2227
|
# @return [String]
|
|
2218
2228
|
#
|
|
2219
2229
|
# @!attribute [rw] tags
|
|
@@ -2243,8 +2253,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
2243
2253
|
# @return [String]
|
|
2244
2254
|
#
|
|
2245
2255
|
# @!attribute [rw] status
|
|
2246
|
-
# Always CREATING immediately after this call. Poll GetDataset until
|
|
2247
|
-
# status
|
|
2256
|
+
# Always CREATING immediately after this call. Poll `GetDataset` until
|
|
2257
|
+
# status transitions to ACTIVE or CREATE\_FAILED.
|
|
2248
2258
|
# @return [String]
|
|
2249
2259
|
#
|
|
2250
2260
|
# @!attribute [rw] created_at
|
|
@@ -2300,12 +2310,12 @@ module Aws::BedrockAgentCoreControl
|
|
|
2300
2310
|
# @return [String]
|
|
2301
2311
|
#
|
|
2302
2312
|
# @!attribute [rw] status
|
|
2303
|
-
# Always UPDATING immediately after this call. Poll GetDataset until
|
|
2304
|
-
# status
|
|
2313
|
+
# Always UPDATING immediately after this call. Poll `GetDataset` until
|
|
2314
|
+
# status transitions to ACTIVE or UPDATE\_FAILED.
|
|
2305
2315
|
# @return [String]
|
|
2306
2316
|
#
|
|
2307
2317
|
# @!attribute [rw] dataset_version
|
|
2308
|
-
# The version being created.
|
|
2318
|
+
# The version number being created.
|
|
2309
2319
|
# @return [String]
|
|
2310
2320
|
#
|
|
2311
2321
|
# @!attribute [rw] created_at
|
|
@@ -4710,8 +4720,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4710
4720
|
# @return [Types::InlineExamplesSource]
|
|
4711
4721
|
#
|
|
4712
4722
|
# @!attribute [rw] s3_source
|
|
4713
|
-
# S3 URI pointing to a JSONL file in the customer's bucket.
|
|
4714
|
-
# service reads this file using the caller's FAS credentials.
|
|
4723
|
+
# Amazon S3 URI pointing to a JSONL file in the customer's bucket.
|
|
4715
4724
|
# @return [Types::S3Source]
|
|
4716
4725
|
#
|
|
4717
4726
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DataSourceType AWS API Documentation
|
|
@@ -4752,7 +4761,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4752
4761
|
# @return [String]
|
|
4753
4762
|
#
|
|
4754
4763
|
# @!attribute [rw] draft_status
|
|
4755
|
-
# Publish synchronization state. Only authoritative when status
|
|
4764
|
+
# Publish synchronization state. Only authoritative when status is
|
|
4756
4765
|
# ACTIVE.
|
|
4757
4766
|
# @return [String]
|
|
4758
4767
|
#
|
|
@@ -4792,23 +4801,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
4792
4801
|
# Summary information about a published dataset version.
|
|
4793
4802
|
#
|
|
4794
4803
|
# @!attribute [rw] dataset_version
|
|
4795
|
-
#
|
|
4796
|
-
# integer string.
|
|
4797
|
-
#
|
|
4798
|
-
# "DRAFT" refers to the single mutable working copy of the dataset.
|
|
4799
|
-
#
|
|
4800
|
-
# * Always present after CreateDataset ingestion completes.
|
|
4801
|
-
# * Content changes in-place when examples are added, updated, or
|
|
4802
|
-
# deleted.
|
|
4803
|
-
# * NOT tracked as a DDB DatasetVersionItem — state lives in S3
|
|
4804
|
-
# (draft/manifest.json, draft/dataset.jsonl) and the
|
|
4805
|
-
# DatasetItem.exampleCount field.
|
|
4806
|
-
# * Default for read operations when ?datasetVersion is absent.
|
|
4807
|
-
#
|
|
4808
|
-
# An integer string (e.g. "1", "2", "3") refers to a published,
|
|
4809
|
-
# immutable snapshot created by CreateDatasetVersion. Once created, a
|
|
4810
|
-
# published version's content never changes. Stored as a DDB
|
|
4811
|
-
# DatasetVersionItem (SK=VERSION#\{zero-padded-N}).
|
|
4804
|
+
# The version number of this published snapshot.
|
|
4812
4805
|
# @return [String]
|
|
4813
4806
|
#
|
|
4814
4807
|
# @!attribute [rw] example_count
|
|
@@ -5187,9 +5180,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
5187
5180
|
# @return [String]
|
|
5188
5181
|
#
|
|
5189
5182
|
# @!attribute [rw] dataset_version
|
|
5190
|
-
# Optional version to delete.
|
|
5191
|
-
#
|
|
5192
|
-
# exist.
|
|
5183
|
+
# Optional version to delete. If absent, deletes the entire dataset.
|
|
5184
|
+
# If provided, deletes only that specific version.
|
|
5193
5185
|
# @return [String]
|
|
5194
5186
|
#
|
|
5195
5187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteDatasetRequest AWS API Documentation
|
|
@@ -5214,7 +5206,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
5214
5206
|
# @return [String]
|
|
5215
5207
|
#
|
|
5216
5208
|
# @!attribute [rw] dataset_version
|
|
5217
|
-
# The version deleted.
|
|
5209
|
+
# The version that was deleted.
|
|
5218
5210
|
# @return [String]
|
|
5219
5211
|
#
|
|
5220
5212
|
# @!attribute [rw] updated_at
|
|
@@ -7560,8 +7552,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
7560
7552
|
# @return [String]
|
|
7561
7553
|
#
|
|
7562
7554
|
# @!attribute [rw] dataset_version
|
|
7563
|
-
# Version to retrieve: "DRAFT" or a version number. Defaults to
|
|
7564
|
-
# if absent.
|
|
7555
|
+
# Version to retrieve: "DRAFT" or a version number. Defaults to
|
|
7556
|
+
# DRAFT if absent.
|
|
7565
7557
|
# @return [String]
|
|
7566
7558
|
#
|
|
7567
7559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetDatasetRequest AWS API Documentation
|
|
@@ -7599,15 +7591,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
7599
7591
|
# @return [String]
|
|
7600
7592
|
#
|
|
7601
7593
|
# @!attribute [rw] draft_status
|
|
7602
|
-
# Publish synchronization state. Only authoritative when status
|
|
7603
|
-
# ACTIVE. MODIFIED
|
|
7604
|
-
#
|
|
7605
|
-
# version exactly.
|
|
7594
|
+
# Publish synchronization state. Only authoritative when status is
|
|
7595
|
+
# ACTIVE. MODIFIED indicates DRAFT has unpublished changes. UNMODIFIED
|
|
7596
|
+
# indicates DRAFT matches the latest published version.
|
|
7606
7597
|
# @return [String]
|
|
7607
7598
|
#
|
|
7608
7599
|
# @!attribute [rw] failure_reason
|
|
7609
7600
|
# Populated when status is CREATE\_FAILED, UPDATE\_FAILED, or
|
|
7610
|
-
# DELETE\_FAILED.
|
|
7601
|
+
# DELETE\_FAILED. Describes the reason for the failure.
|
|
7611
7602
|
# @return [String]
|
|
7612
7603
|
#
|
|
7613
7604
|
# @!attribute [rw] schema_type
|
|
@@ -7615,23 +7606,22 @@ module Aws::BedrockAgentCoreControl
|
|
|
7615
7606
|
# @return [String]
|
|
7616
7607
|
#
|
|
7617
7608
|
# @!attribute [rw] kms_key_arn
|
|
7618
|
-
#
|
|
7619
|
-
# configured.
|
|
7609
|
+
# KMS key ARN used for server-side encryption on service Amazon S3
|
|
7610
|
+
# writes, if configured.
|
|
7620
7611
|
# @return [String]
|
|
7621
7612
|
#
|
|
7622
7613
|
# @!attribute [rw] example_count
|
|
7623
|
-
#
|
|
7614
|
+
# The number of examples in the DRAFT.
|
|
7624
7615
|
# @return [Integer]
|
|
7625
7616
|
#
|
|
7626
7617
|
# @!attribute [rw] download_url
|
|
7627
|
-
# Presigned S3 URL to download the consolidated dataset
|
|
7628
|
-
# the resolved version
|
|
7629
|
-
#
|
|
7630
|
-
# failure.
|
|
7618
|
+
# Presigned Amazon S3 URL to download the consolidated dataset file
|
|
7619
|
+
# for the resolved version. Expires after 5 minutes. Omitted if the
|
|
7620
|
+
# file does not yet exist.
|
|
7631
7621
|
# @return [String]
|
|
7632
7622
|
#
|
|
7633
7623
|
# @!attribute [rw] download_url_expires_at
|
|
7634
|
-
# Expiry timestamp for
|
|
7624
|
+
# Expiry timestamp for the download URL.
|
|
7635
7625
|
# @return [Time]
|
|
7636
7626
|
#
|
|
7637
7627
|
# @!attribute [rw] created_at
|
|
@@ -11218,17 +11208,13 @@ module Aws::BedrockAgentCoreControl
|
|
|
11218
11208
|
# @return [String]
|
|
11219
11209
|
#
|
|
11220
11210
|
# @!attribute [rw] dataset_version
|
|
11221
|
-
# Version to paginate: "DRAFT" or a version number. Defaults to
|
|
11222
|
-
# if absent. Only used on the first request
|
|
11223
|
-
#
|
|
11224
|
-
# nextToken and this parameter is ignored.
|
|
11211
|
+
# Version to paginate: "DRAFT" or a version number. Defaults to
|
|
11212
|
+
# DRAFT if absent. Only used on the first request; for subsequent
|
|
11213
|
+
# pages, the version is extracted from the pagination token.
|
|
11225
11214
|
# @return [String]
|
|
11226
11215
|
#
|
|
11227
11216
|
# @!attribute [rw] max_results
|
|
11228
|
-
# Maximum number of examples to return per page.
|
|
11229
|
-
# 1, max: 1000. Response size is validated against 5 MB limit after
|
|
11230
|
-
# reading. For bulk access to all examples, use the `downloadUrl`
|
|
11231
|
-
# field from GetDataset.
|
|
11217
|
+
# Maximum number of examples to return per page.
|
|
11232
11218
|
# @return [Integer]
|
|
11233
11219
|
#
|
|
11234
11220
|
# @!attribute [rw] next_token
|
|
@@ -13077,9 +13063,14 @@ module Aws::BedrockAgentCoreControl
|
|
|
13077
13063
|
# The MetadataValueType.
|
|
13078
13064
|
# @return [String]
|
|
13079
13065
|
#
|
|
13066
|
+
# @!attribute [rw] extraction_type
|
|
13067
|
+
# Specifies whether the metadata value is extracted by the LLM or
|
|
13068
|
+
# passed through deterministically from the event.
|
|
13069
|
+
# @return [String]
|
|
13070
|
+
#
|
|
13080
13071
|
# @!attribute [rw] extraction_config
|
|
13081
13072
|
# Configuration for extracting this metadata value from conversational
|
|
13082
|
-
# content.
|
|
13073
|
+
# content. Applicable only if extractionType is LLM inferred.
|
|
13083
13074
|
# @return [Types::ExtractionConfig]
|
|
13084
13075
|
#
|
|
13085
13076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/MetadataSchemaEntry AWS API Documentation
|
|
@@ -13087,6 +13078,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
13087
13078
|
class MetadataSchemaEntry < Struct.new(
|
|
13088
13079
|
:key,
|
|
13089
13080
|
:type,
|
|
13081
|
+
:extraction_type,
|
|
13090
13082
|
:extraction_config)
|
|
13091
13083
|
SENSITIVE = []
|
|
13092
13084
|
include Aws::Structure
|
|
@@ -15254,11 +15246,11 @@ module Aws::BedrockAgentCoreControl
|
|
|
15254
15246
|
include Aws::Structure
|
|
15255
15247
|
end
|
|
15256
15248
|
|
|
15257
|
-
# S3 location of a JSONL file containing dataset examples.
|
|
15249
|
+
# Amazon S3 location of a JSONL file containing dataset examples.
|
|
15258
15250
|
#
|
|
15259
15251
|
# @!attribute [rw] s3_uri
|
|
15260
|
-
# S3 URI of the JSONL file (
|
|
15261
|
-
# s3://my-bucket/path/to/examples.jsonl).
|
|
15252
|
+
# Amazon S3 URI of the JSONL file (for example,
|
|
15253
|
+
# `s3://my-bucket/path/to/examples.jsonl`).
|
|
15262
15254
|
# @return [String]
|
|
15263
15255
|
#
|
|
15264
15256
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3Source AWS API Documentation
|
|
@@ -17313,11 +17305,8 @@ module Aws::BedrockAgentCoreControl
|
|
|
17313
17305
|
#
|
|
17314
17306
|
# @!attribute [rw] examples
|
|
17315
17307
|
# Examples to update. Each element is a JSON object containing a
|
|
17316
|
-
# required `exampleId`
|
|
17317
|
-
#
|
|
17318
|
-
# removed before persistence; the remaining document is validated
|
|
17319
|
-
# against the dataset's schemaType. Max 1000 examples per call. Total
|
|
17320
|
-
# request body must not exceed 5 MB.
|
|
17308
|
+
# required `exampleId` field identifying the existing example, plus
|
|
17309
|
+
# the replacement fields. Maximum 1000 examples per call.
|
|
17321
17310
|
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
|
17322
17311
|
#
|
|
17323
17312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateDatasetExamplesRequest AWS API Documentation
|
data/sig/client.rbs
CHANGED
|
@@ -958,7 +958,7 @@ module Aws
|
|
|
958
958
|
interface _DeleteMemoryResponseSuccess
|
|
959
959
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMemoryOutput]
|
|
960
960
|
def memory_id: () -> ::String
|
|
961
|
-
def status: () -> ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
961
|
+
def status: () -> ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
962
962
|
end
|
|
963
963
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_memory-instance_method
|
|
964
964
|
def delete_memory: (
|
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -1464,7 +1464,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
1464
1464
|
|
|
1465
1465
|
class DeleteMemoryOutput
|
|
1466
1466
|
attr_accessor memory_id: ::String
|
|
1467
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
1467
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
1468
1468
|
SENSITIVE: []
|
|
1469
1469
|
end
|
|
1470
1470
|
|
|
@@ -3537,7 +3537,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3537
3537
|
attr_accessor encryption_key_arn: ::String
|
|
3538
3538
|
attr_accessor memory_execution_role_arn: ::String
|
|
3539
3539
|
attr_accessor event_expiry_duration: ::Integer
|
|
3540
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
3540
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3541
3541
|
attr_accessor failure_reason: ::String
|
|
3542
3542
|
attr_accessor created_at: ::Time
|
|
3543
3543
|
attr_accessor updated_at: ::Time
|
|
@@ -3593,7 +3593,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3593
3593
|
class MemorySummary
|
|
3594
3594
|
attr_accessor arn: ::String
|
|
3595
3595
|
attr_accessor id: ::String
|
|
3596
|
-
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
3596
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "FAILED" | "DELETING" | "UPDATING")
|
|
3597
3597
|
attr_accessor created_at: ::Time
|
|
3598
3598
|
attr_accessor updated_at: ::Time
|
|
3599
3599
|
SENSITIVE: []
|
|
@@ -3619,6 +3619,7 @@ module Aws::BedrockAgentCoreControl
|
|
|
3619
3619
|
class MetadataSchemaEntry
|
|
3620
3620
|
attr_accessor key: ::String
|
|
3621
3621
|
attr_accessor type: ("STRING" | "STRINGLIST" | "NUMBER")
|
|
3622
|
+
attr_accessor extraction_type: ("LLM_INFERRED" | "STRICTLY_CONSISTENT")
|
|
3622
3623
|
attr_accessor extraction_config: Types::ExtractionConfig
|
|
3623
3624
|
SENSITIVE: []
|
|
3624
3625
|
end
|