aws-sdk-bedrockagent 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagent/client.rb +40 -25
- data/lib/aws-sdk-bedrockagent/client_api.rb +2 -0
- data/lib/aws-sdk-bedrockagent/types.rb +45 -32
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a70c499077cbaacd2eac2117840c3582bf001036d96b4de1ed7f831fa3f1a817
|
4
|
+
data.tar.gz: 520d7cb2efe36812db626cc83fff84bf54315ac62f076d55b3c9e8e94017530e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 953a43ae0c1a968c54d1e5b96525634005b808efbd7d506c011b7ff691ea1b08521c9d6b9475ee64ab74232a64da1492f70851aa0f22ce1c9e5d606fad221819
|
7
|
+
data.tar.gz: 2ab3d68c65f8be14b5c7feebfeae955c92408b280fb7a025c9b294fcadf5a7cc8235ec9cdef354601e62c987d97554764a7aa95538a13a122cc96b3aecdc6722
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -810,6 +810,7 @@ module Aws::BedrockAgent
|
|
810
810
|
# type: "string", # required, accepts string, number, integer, boolean, array
|
811
811
|
# },
|
812
812
|
# },
|
813
|
+
# require_confirmation: "ENABLED", # accepts ENABLED, DISABLED
|
813
814
|
# },
|
814
815
|
# ],
|
815
816
|
# },
|
@@ -838,6 +839,7 @@ module Aws::BedrockAgent
|
|
838
839
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].description #=> String
|
839
840
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
|
840
841
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
|
842
|
+
# resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
|
841
843
|
# resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter"
|
842
844
|
# resp.agent_action_group.updated_at #=> Time
|
843
845
|
#
|
@@ -957,14 +959,16 @@ module Aws::BedrockAgent
|
|
957
959
|
#
|
958
960
|
# You can set the data deletion policy to:
|
959
961
|
#
|
960
|
-
# * DELETE: Deletes all
|
961
|
-
#
|
962
|
-
#
|
963
|
-
#
|
964
|
-
#
|
962
|
+
# * DELETE: Deletes all data from your data source that’s converted into
|
963
|
+
# vector embeddings upon deletion of a knowledge base or data source
|
964
|
+
# resource. Note that the **vector store itself is not deleted**, only
|
965
|
+
# the data. This flag is ignored if an Amazon Web Services account is
|
966
|
+
# deleted.
|
965
967
|
#
|
966
|
-
# * RETAIN: Retains all
|
967
|
-
# deletion of a knowledge base or data source
|
968
|
+
# * RETAIN: Retains all data from your data source that’s converted into
|
969
|
+
# vector embeddings upon deletion of a knowledge base or data source
|
970
|
+
# resource. Note that the **vector store itself is not deleted** if
|
971
|
+
# you delete a knowledge base or data source resource.
|
968
972
|
#
|
969
973
|
# @option params [required, Types::DataSourceConfiguration] :data_source_configuration
|
970
974
|
# The connection configuration for the data source.
|
@@ -2478,10 +2482,11 @@ module Aws::BedrockAgent
|
|
2478
2482
|
req.send_request(options)
|
2479
2483
|
end
|
2480
2484
|
|
2481
|
-
# Deletes a prompt or a
|
2482
|
-
# For more information, see [Delete
|
2483
|
-
# tool][1] and [Delete a version of a
|
2484
|
-
# tool][2] in the Amazon Bedrock User
|
2485
|
+
# Deletes a prompt or a version of it, depending on whether you include
|
2486
|
+
# the `promptVersion` field or not. For more information, see [Delete
|
2487
|
+
# prompts from the Prompt management tool][1] and [Delete a version of a
|
2488
|
+
# prompt from the Prompt management tool][2] in the Amazon Bedrock User
|
2489
|
+
# Guide.
|
2485
2490
|
#
|
2486
2491
|
#
|
2487
2492
|
#
|
@@ -2492,7 +2497,8 @@ module Aws::BedrockAgent
|
|
2492
2497
|
# The unique identifier of the prompt.
|
2493
2498
|
#
|
2494
2499
|
# @option params [String] :prompt_version
|
2495
|
-
# The version of the prompt to delete.
|
2500
|
+
# The version of the prompt to delete. To delete the prompt, omit this
|
2501
|
+
# field.
|
2496
2502
|
#
|
2497
2503
|
# @return [Types::DeletePromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2498
2504
|
#
|
@@ -2662,6 +2668,7 @@ module Aws::BedrockAgent
|
|
2662
2668
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].description #=> String
|
2663
2669
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
|
2664
2670
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
|
2671
|
+
# resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
|
2665
2672
|
# resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter"
|
2666
2673
|
# resp.agent_action_group.updated_at #=> Time
|
2667
2674
|
#
|
@@ -3315,10 +3322,12 @@ module Aws::BedrockAgent
|
|
3315
3322
|
req.send_request(options)
|
3316
3323
|
end
|
3317
3324
|
|
3318
|
-
# Retrieves information about
|
3319
|
-
#
|
3320
|
-
#
|
3321
|
-
#
|
3325
|
+
# Retrieves information about the working draft (`DRAFT` version) of a
|
3326
|
+
# prompt or a version of it, depending on whether you include the
|
3327
|
+
# `promptVersion` field or not. For more information, see [View
|
3328
|
+
# information about prompts using Prompt management][1] and [View
|
3329
|
+
# information about a version of your prompt][2] in the Amazon Bedrock
|
3330
|
+
# User Guide.
|
3322
3331
|
#
|
3323
3332
|
#
|
3324
3333
|
#
|
@@ -3330,7 +3339,8 @@ module Aws::BedrockAgent
|
|
3330
3339
|
#
|
3331
3340
|
# @option params [String] :prompt_version
|
3332
3341
|
# The version of the prompt about which you want to retrieve
|
3333
|
-
# information.
|
3342
|
+
# information. Omit this field to return information about the working
|
3343
|
+
# draft of the prompt.
|
3334
3344
|
#
|
3335
3345
|
# @return [Types::GetPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3336
3346
|
#
|
@@ -4013,10 +4023,11 @@ module Aws::BedrockAgent
|
|
4013
4023
|
req.send_request(options)
|
4014
4024
|
end
|
4015
4025
|
|
4016
|
-
# Returns
|
4017
|
-
#
|
4018
|
-
#
|
4019
|
-
#
|
4026
|
+
# Returns either information about the working draft (`DRAFT` version)
|
4027
|
+
# of each prompt in an account, or information about of all versions of
|
4028
|
+
# a prompt, depending on whether you include the `promptIdentifier`
|
4029
|
+
# field or not. For more information, see [View information about
|
4030
|
+
# prompts using Prompt management][1] in the Amazon Bedrock User Guide.
|
4020
4031
|
#
|
4021
4032
|
#
|
4022
4033
|
#
|
@@ -4035,7 +4046,9 @@ module Aws::BedrockAgent
|
|
4035
4046
|
# results.
|
4036
4047
|
#
|
4037
4048
|
# @option params [String] :prompt_identifier
|
4038
|
-
# The unique identifier of the prompt
|
4049
|
+
# The unique identifier of the prompt for whose versions you want to
|
4050
|
+
# return information. Omit this field to list information about all
|
4051
|
+
# prompts in an account.
|
4039
4052
|
#
|
4040
4053
|
# @return [Types::ListPromptsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4041
4054
|
#
|
@@ -4541,6 +4554,7 @@ module Aws::BedrockAgent
|
|
4541
4554
|
# type: "string", # required, accepts string, number, integer, boolean, array
|
4542
4555
|
# },
|
4543
4556
|
# },
|
4557
|
+
# require_confirmation: "ENABLED", # accepts ENABLED, DISABLED
|
4544
4558
|
# },
|
4545
4559
|
# ],
|
4546
4560
|
# },
|
@@ -4569,6 +4583,7 @@ module Aws::BedrockAgent
|
|
4569
4583
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].description #=> String
|
4570
4584
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
|
4571
4585
|
# resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
|
4586
|
+
# resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
|
4572
4587
|
# resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter"
|
4573
4588
|
# resp.agent_action_group.updated_at #=> Time
|
4574
4589
|
#
|
@@ -5233,13 +5248,13 @@ module Aws::BedrockAgent
|
|
5233
5248
|
# The unique identifier of the alias.
|
5234
5249
|
#
|
5235
5250
|
# @option params [String] :description
|
5236
|
-
# A description for the
|
5251
|
+
# A description for the alias.
|
5237
5252
|
#
|
5238
5253
|
# @option params [required, String] :flow_identifier
|
5239
5254
|
# The unique identifier of the flow.
|
5240
5255
|
#
|
5241
5256
|
# @option params [required, String] :name
|
5242
|
-
# The name of the
|
5257
|
+
# The name of the alias.
|
5243
5258
|
#
|
5244
5259
|
# @option params [required, Array<Types::FlowAliasRoutingConfigurationListItem>] :routing_configuration
|
5245
5260
|
# Contains information about the version to which to map the alias.
|
@@ -5603,7 +5618,7 @@ module Aws::BedrockAgent
|
|
5603
5618
|
params: params,
|
5604
5619
|
config: config)
|
5605
5620
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
5606
|
-
context[:gem_version] = '1.
|
5621
|
+
context[:gem_version] = '1.20.0'
|
5607
5622
|
Seahorse::Client::Request.new(handlers, context)
|
5608
5623
|
end
|
5609
5624
|
|
@@ -362,6 +362,7 @@ module Aws::BedrockAgent
|
|
362
362
|
RedisEnterpriseCloudEndpoint = Shapes::StringShape.new(name: 'RedisEnterpriseCloudEndpoint')
|
363
363
|
RedisEnterpriseCloudFieldMapping = Shapes::StructureShape.new(name: 'RedisEnterpriseCloudFieldMapping')
|
364
364
|
RedisEnterpriseCloudIndexName = Shapes::StringShape.new(name: 'RedisEnterpriseCloudIndexName')
|
365
|
+
RequireConfirmation = Shapes::StringShape.new(name: 'RequireConfirmation')
|
365
366
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
366
367
|
RetrievalFlowNodeConfiguration = Shapes::StructureShape.new(name: 'RetrievalFlowNodeConfiguration')
|
367
368
|
RetrievalFlowNodeS3Configuration = Shapes::StructureShape.new(name: 'RetrievalFlowNodeS3Configuration')
|
@@ -1107,6 +1108,7 @@ module Aws::BedrockAgent
|
|
1107
1108
|
Function.add_member(:description, Shapes::ShapeRef.new(shape: FunctionDescription, location_name: "description"))
|
1108
1109
|
Function.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
1109
1110
|
Function.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterMap, location_name: "parameters"))
|
1111
|
+
Function.add_member(:require_confirmation, Shapes::ShapeRef.new(shape: RequireConfirmation, location_name: "requireConfirmation"))
|
1110
1112
|
Function.struct_class = Types::Function
|
1111
1113
|
|
1112
1114
|
FunctionSchema.add_member(:functions, Shapes::ShapeRef.new(shape: Functions, location_name: "functions"))
|
@@ -1141,8 +1141,8 @@ module Aws::BedrockAgent
|
|
1141
1141
|
#
|
1142
1142
|
# @!attribute [rw] credentials_secret_arn
|
1143
1143
|
# The Amazon Resource Name of an Secrets Manager secret that stores
|
1144
|
-
# your authentication credentials for your
|
1145
|
-
# more information on the key-value pairs that must be included in
|
1144
|
+
# your authentication credentials for your Confluence instance URL.
|
1145
|
+
# For more information on the key-value pairs that must be included in
|
1146
1146
|
# your secret, depending on your authentication type, see [Confluence
|
1147
1147
|
# connection configuration][1].
|
1148
1148
|
#
|
@@ -1491,14 +1491,16 @@ module Aws::BedrockAgent
|
|
1491
1491
|
#
|
1492
1492
|
# You can set the data deletion policy to:
|
1493
1493
|
#
|
1494
|
-
# * DELETE: Deletes all
|
1495
|
-
#
|
1496
|
-
# source resource. Note that the vector store itself is not
|
1497
|
-
# only the
|
1494
|
+
# * DELETE: Deletes all data from your data source that’s converted
|
1495
|
+
# into vector embeddings upon deletion of a knowledge base or data
|
1496
|
+
# source resource. Note that the **vector store itself is not
|
1497
|
+
# deleted**, only the data. This flag is ignored if an Amazon Web
|
1498
1498
|
# Services account is deleted.
|
1499
1499
|
#
|
1500
|
-
# * RETAIN: Retains all
|
1501
|
-
# deletion of a knowledge base or data
|
1500
|
+
# * RETAIN: Retains all data from your data source that’s converted
|
1501
|
+
# into vector embeddings upon deletion of a knowledge base or data
|
1502
|
+
# source resource. Note that the **vector store itself is not
|
1503
|
+
# deleted** if you delete a knowledge base or data source resource.
|
1502
1504
|
# @return [String]
|
1503
1505
|
#
|
1504
1506
|
# @!attribute [rw] data_source_configuration
|
@@ -1840,7 +1842,7 @@ module Aws::BedrockAgent
|
|
1840
1842
|
# @return [Types::FlowDefinition]
|
1841
1843
|
#
|
1842
1844
|
# @!attribute [rw] description
|
1843
|
-
# The description of the
|
1845
|
+
# The description of the version.
|
1844
1846
|
# @return [String]
|
1845
1847
|
#
|
1846
1848
|
# @!attribute [rw] execution_role_arn
|
@@ -1858,7 +1860,7 @@ module Aws::BedrockAgent
|
|
1858
1860
|
# @return [String]
|
1859
1861
|
#
|
1860
1862
|
# @!attribute [rw] name
|
1861
|
-
# The name of the
|
1863
|
+
# The name of the version.
|
1862
1864
|
# @return [String]
|
1863
1865
|
#
|
1864
1866
|
# @!attribute [rw] status
|
@@ -2144,7 +2146,7 @@ module Aws::BedrockAgent
|
|
2144
2146
|
# @return [String]
|
2145
2147
|
#
|
2146
2148
|
# @!attribute [rw] description
|
2147
|
-
# A description for the
|
2149
|
+
# A description for the version.
|
2148
2150
|
# @return [String]
|
2149
2151
|
#
|
2150
2152
|
# @!attribute [rw] id
|
@@ -2152,7 +2154,7 @@ module Aws::BedrockAgent
|
|
2152
2154
|
# @return [String]
|
2153
2155
|
#
|
2154
2156
|
# @!attribute [rw] name
|
2155
|
-
# The name of the prompt
|
2157
|
+
# The name of the prompt.
|
2156
2158
|
# @return [String]
|
2157
2159
|
#
|
2158
2160
|
# @!attribute [rw] updated_at
|
@@ -2735,7 +2737,8 @@ module Aws::BedrockAgent
|
|
2735
2737
|
# @return [String]
|
2736
2738
|
#
|
2737
2739
|
# @!attribute [rw] prompt_version
|
2738
|
-
# The version of the prompt to delete.
|
2740
|
+
# The version of the prompt to delete. To delete the prompt, omit this
|
2741
|
+
# field.
|
2739
2742
|
# @return [String]
|
2740
2743
|
#
|
2741
2744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/DeletePromptRequest AWS API Documentation
|
@@ -2853,7 +2856,7 @@ module Aws::BedrockAgent
|
|
2853
2856
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_ListFlowAliases.html#API_agent_ListFlowAliases_ResponseSyntax
|
2854
2857
|
#
|
2855
2858
|
# @!attribute [rw] arn
|
2856
|
-
# The Amazon Resource Name (ARN) of the
|
2859
|
+
# The Amazon Resource Name (ARN) of the alias.
|
2857
2860
|
# @return [String]
|
2858
2861
|
#
|
2859
2862
|
# @!attribute [rw] created_at
|
@@ -3358,7 +3361,7 @@ module Aws::BedrockAgent
|
|
3358
3361
|
include Aws::Structure
|
3359
3362
|
end
|
3360
3363
|
|
3361
|
-
# Contains information about
|
3364
|
+
# Contains information about a version of a flow.
|
3362
3365
|
#
|
3363
3366
|
# This data type is used in the following API operations:
|
3364
3367
|
#
|
@@ -3376,7 +3379,7 @@ module Aws::BedrockAgent
|
|
3376
3379
|
# @return [String]
|
3377
3380
|
#
|
3378
3381
|
# @!attribute [rw] created_at
|
3379
|
-
# The time at the
|
3382
|
+
# The time at the version was created.
|
3380
3383
|
# @return [Time]
|
3381
3384
|
#
|
3382
3385
|
# @!attribute [rw] id
|
@@ -3439,12 +3442,18 @@ module Aws::BedrockAgent
|
|
3439
3442
|
# function.
|
3440
3443
|
# @return [Hash<String,Types::ParameterDetail>]
|
3441
3444
|
#
|
3445
|
+
# @!attribute [rw] require_confirmation
|
3446
|
+
# Contains information if user confirmation is required to invoke the
|
3447
|
+
# function.
|
3448
|
+
# @return [String]
|
3449
|
+
#
|
3442
3450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/Function AWS API Documentation
|
3443
3451
|
#
|
3444
3452
|
class Function < Struct.new(
|
3445
3453
|
:description,
|
3446
3454
|
:name,
|
3447
|
-
:parameters
|
3455
|
+
:parameters,
|
3456
|
+
:require_confirmation)
|
3448
3457
|
SENSITIVE = []
|
3449
3458
|
include Aws::Structure
|
3450
3459
|
end
|
@@ -3718,7 +3727,7 @@ module Aws::BedrockAgent
|
|
3718
3727
|
# @return [String]
|
3719
3728
|
#
|
3720
3729
|
# @!attribute [rw] name
|
3721
|
-
# The name of the
|
3730
|
+
# The name of the alias.
|
3722
3731
|
# @return [String]
|
3723
3732
|
#
|
3724
3733
|
# @!attribute [rw] routing_configuration
|
@@ -3726,7 +3735,7 @@ module Aws::BedrockAgent
|
|
3726
3735
|
# @return [Array<Types::FlowAliasRoutingConfigurationListItem>]
|
3727
3736
|
#
|
3728
3737
|
# @!attribute [rw] updated_at
|
3729
|
-
# The time at which the
|
3738
|
+
# The time at which the alias was last updated.
|
3730
3739
|
# @return [Time]
|
3731
3740
|
#
|
3732
3741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetFlowAliasResponse AWS API Documentation
|
@@ -3907,7 +3916,7 @@ module Aws::BedrockAgent
|
|
3907
3916
|
# @return [String]
|
3908
3917
|
#
|
3909
3918
|
# @!attribute [rw] name
|
3910
|
-
# The name of the
|
3919
|
+
# The name of the version.
|
3911
3920
|
# @return [String]
|
3912
3921
|
#
|
3913
3922
|
# @!attribute [rw] status
|
@@ -4001,7 +4010,8 @@ module Aws::BedrockAgent
|
|
4001
4010
|
#
|
4002
4011
|
# @!attribute [rw] prompt_version
|
4003
4012
|
# The version of the prompt about which you want to retrieve
|
4004
|
-
# information.
|
4013
|
+
# information. Omit this field to return information about the working
|
4014
|
+
# draft of the prompt.
|
4005
4015
|
# @return [String]
|
4006
4016
|
#
|
4007
4017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetPromptRequest AWS API Documentation
|
@@ -4014,7 +4024,8 @@ module Aws::BedrockAgent
|
|
4014
4024
|
end
|
4015
4025
|
|
4016
4026
|
# @!attribute [rw] arn
|
4017
|
-
# The Amazon Resource Name (ARN) of the prompt
|
4027
|
+
# The Amazon Resource Name (ARN) of the prompt or the prompt version
|
4028
|
+
# (if you specified a version in the request).
|
4018
4029
|
# @return [String]
|
4019
4030
|
#
|
4020
4031
|
# @!attribute [rw] created_at
|
@@ -5003,8 +5014,7 @@ module Aws::BedrockAgent
|
|
5003
5014
|
end
|
5004
5015
|
|
5005
5016
|
# @!attribute [rw] flow_alias_summaries
|
5006
|
-
# A list, each member of which contains information about
|
5007
|
-
# alias.
|
5017
|
+
# A list, each member of which contains information about an alias.
|
5008
5018
|
# @return [Array<Types::FlowAliasSummary>]
|
5009
5019
|
#
|
5010
5020
|
# @!attribute [rw] next_token
|
@@ -5239,7 +5249,9 @@ module Aws::BedrockAgent
|
|
5239
5249
|
# @return [String]
|
5240
5250
|
#
|
5241
5251
|
# @!attribute [rw] prompt_identifier
|
5242
|
-
# The unique identifier of the prompt
|
5252
|
+
# The unique identifier of the prompt for whose versions you want to
|
5253
|
+
# return information. Omit this field to list information about all
|
5254
|
+
# prompts in an account.
|
5243
5255
|
# @return [String]
|
5244
5256
|
#
|
5245
5257
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/ListPromptsRequest AWS API Documentation
|
@@ -6065,7 +6077,8 @@ module Aws::BedrockAgent
|
|
6065
6077
|
# [1]: https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_ListPrompts.html#API_agent_ListPrompts_ResponseSyntax
|
6066
6078
|
#
|
6067
6079
|
# @!attribute [rw] arn
|
6068
|
-
# The Amazon Resource Name (ARN) of the prompt
|
6080
|
+
# The Amazon Resource Name (ARN) of the prompt or the prompt version
|
6081
|
+
# (if you specified a version in the request).
|
6069
6082
|
# @return [String]
|
6070
6083
|
#
|
6071
6084
|
# @!attribute [rw] created_at
|
@@ -6495,8 +6508,8 @@ module Aws::BedrockAgent
|
|
6495
6508
|
#
|
6496
6509
|
# @!attribute [rw] credentials_secret_arn
|
6497
6510
|
# The Amazon Resource Name of an Secrets Manager secret that stores
|
6498
|
-
# your authentication credentials for your
|
6499
|
-
# more information on the key-value pairs that must be included in
|
6511
|
+
# your authentication credentials for your Salesforce instance URL.
|
6512
|
+
# For more information on the key-value pairs that must be included in
|
6500
6513
|
# your secret, depending on your authentication type, see [Salesforce
|
6501
6514
|
# connection configuration][1].
|
6502
6515
|
#
|
@@ -7327,7 +7340,7 @@ module Aws::BedrockAgent
|
|
7327
7340
|
# @return [String]
|
7328
7341
|
#
|
7329
7342
|
# @!attribute [rw] description
|
7330
|
-
# A description for the
|
7343
|
+
# A description for the alias.
|
7331
7344
|
# @return [String]
|
7332
7345
|
#
|
7333
7346
|
# @!attribute [rw] flow_identifier
|
@@ -7335,7 +7348,7 @@ module Aws::BedrockAgent
|
|
7335
7348
|
# @return [String]
|
7336
7349
|
#
|
7337
7350
|
# @!attribute [rw] name
|
7338
|
-
# The name of the
|
7351
|
+
# The name of the alias.
|
7339
7352
|
# @return [String]
|
7340
7353
|
#
|
7341
7354
|
# @!attribute [rw] routing_configuration
|
@@ -7375,7 +7388,7 @@ module Aws::BedrockAgent
|
|
7375
7388
|
# @return [String]
|
7376
7389
|
#
|
7377
7390
|
# @!attribute [rw] name
|
7378
|
-
# The name of the
|
7391
|
+
# The name of the alias.
|
7379
7392
|
# @return [String]
|
7380
7393
|
#
|
7381
7394
|
# @!attribute [rw] routing_configuration
|
@@ -7383,7 +7396,7 @@ module Aws::BedrockAgent
|
|
7383
7396
|
# @return [Array<Types::FlowAliasRoutingConfigurationListItem>]
|
7384
7397
|
#
|
7385
7398
|
# @!attribute [rw] updated_at
|
7386
|
-
# The time at which the
|
7399
|
+
# The time at which the alias was last updated.
|
7387
7400
|
# @return [Time]
|
7388
7401
|
#
|
7389
7402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/UpdateFlowAliasResponse AWS API Documentation
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -164,7 +164,8 @@ module Aws
|
|
164
164
|
description: ::String?,
|
165
165
|
required: bool?,
|
166
166
|
type: ("string" | "number" | "integer" | "boolean" | "array")
|
167
|
-
}]
|
167
|
+
}]?,
|
168
|
+
require_confirmation: ("ENABLED" | "DISABLED")?
|
168
169
|
},
|
169
170
|
]?
|
170
171
|
},
|
@@ -1302,7 +1303,8 @@ module Aws
|
|
1302
1303
|
description: ::String?,
|
1303
1304
|
required: bool?,
|
1304
1305
|
type: ("string" | "number" | "integer" | "boolean" | "array")
|
1305
|
-
}]
|
1306
|
+
}]?,
|
1307
|
+
require_confirmation: ("ENABLED" | "DISABLED")?
|
1306
1308
|
},
|
1307
1309
|
]?
|
1308
1310
|
},
|
data/sig/types.rbs
CHANGED
@@ -819,6 +819,7 @@ module Aws::BedrockAgent
|
|
819
819
|
attr_accessor description: ::String
|
820
820
|
attr_accessor name: ::String
|
821
821
|
attr_accessor parameters: ::Hash[::String, Types::ParameterDetail]
|
822
|
+
attr_accessor require_confirmation: ("ENABLED" | "DISABLED")
|
822
823
|
SENSITIVE: []
|
823
824
|
end
|
824
825
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockagent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|