aws-sdk-bedrockagent 1.78.0 → 1.79.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 +19 -1
- data/lib/aws-sdk-bedrockagent/client_api.rb +4 -0
- data/lib/aws-sdk-bedrockagent/types.rb +24 -3
- data/lib/aws-sdk-bedrockagent.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +3 -0
- 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: 730c636a7a76e8fcb92c16ee8b883757eeff00d78f7cf40adef569fbe934ba4b
|
|
4
|
+
data.tar.gz: e1adfec60462245d8af4257a7431ae228df2ba789a0bec5a067b408c26996910
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd859b08ed8f4f88b3d0ba0e12992c4f814938937eb21af60364d143edf76801fe93f83d128273e76ba0e7688d9b2f3dce3b9b9c711ffe90d49a36e56758585b
|
|
7
|
+
data.tar.gz: d5a6d22037da5a762e57c5805322a707e698db403874da24c646d2687a52c5aba3ee31ea7f13bd401133acb07547e28a0fef629a33cb0c960a9da8dcd3fa9a0a
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.79.0
|
|
@@ -4017,6 +4017,11 @@ module Aws::BedrockAgent
|
|
|
4017
4017
|
# @option params [required, String] :flow_identifier
|
|
4018
4018
|
# The unique identifier of the flow.
|
|
4019
4019
|
#
|
|
4020
|
+
# @option params [String] :included_data
|
|
4021
|
+
# Controls the scope of data returned. Set to `METADATA_ONLY` to return
|
|
4022
|
+
# only resource metadata. Set to `ALL_DATA` or omit this field to return
|
|
4023
|
+
# the full response.
|
|
4024
|
+
#
|
|
4020
4025
|
# @return [Types::GetFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4021
4026
|
#
|
|
4022
4027
|
# * {Types::GetFlowResponse#name #name} => String
|
|
@@ -4036,6 +4041,7 @@ module Aws::BedrockAgent
|
|
|
4036
4041
|
#
|
|
4037
4042
|
# resp = client.get_flow({
|
|
4038
4043
|
# flow_identifier: "FlowIdentifier", # required
|
|
4044
|
+
# included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
|
|
4039
4045
|
# })
|
|
4040
4046
|
#
|
|
4041
4047
|
# @example Response structure
|
|
@@ -4275,6 +4281,11 @@ module Aws::BedrockAgent
|
|
|
4275
4281
|
# @option params [required, String] :flow_version
|
|
4276
4282
|
# The version of the flow for which to get information.
|
|
4277
4283
|
#
|
|
4284
|
+
# @option params [String] :included_data
|
|
4285
|
+
# Controls the scope of data returned. Set to `METADATA_ONLY` to return
|
|
4286
|
+
# only resource metadata. Set to `ALL_DATA` or omit this field to return
|
|
4287
|
+
# the full response.
|
|
4288
|
+
#
|
|
4278
4289
|
# @return [Types::GetFlowVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4279
4290
|
#
|
|
4280
4291
|
# * {Types::GetFlowVersionResponse#name #name} => String
|
|
@@ -4293,6 +4304,7 @@ module Aws::BedrockAgent
|
|
|
4293
4304
|
# resp = client.get_flow_version({
|
|
4294
4305
|
# flow_identifier: "FlowIdentifier", # required
|
|
4295
4306
|
# flow_version: "NumericalVersion", # required
|
|
4307
|
+
# included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
|
|
4296
4308
|
# })
|
|
4297
4309
|
#
|
|
4298
4310
|
# @example Response structure
|
|
@@ -4680,6 +4692,11 @@ module Aws::BedrockAgent
|
|
|
4680
4692
|
# information. Omit this field to return information about the working
|
|
4681
4693
|
# draft of the prompt.
|
|
4682
4694
|
#
|
|
4695
|
+
# @option params [String] :included_data
|
|
4696
|
+
# Controls the scope of data returned. Set to `METADATA_ONLY` to return
|
|
4697
|
+
# only resource metadata. Set to `ALL_DATA` or omit this field to return
|
|
4698
|
+
# the full response.
|
|
4699
|
+
#
|
|
4683
4700
|
# @return [Types::GetPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4684
4701
|
#
|
|
4685
4702
|
# * {Types::GetPromptResponse#name #name} => String
|
|
@@ -4698,6 +4715,7 @@ module Aws::BedrockAgent
|
|
|
4698
4715
|
# resp = client.get_prompt({
|
|
4699
4716
|
# prompt_identifier: "PromptIdentifier", # required
|
|
4700
4717
|
# prompt_version: "Version",
|
|
4718
|
+
# included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
|
|
4701
4719
|
# })
|
|
4702
4720
|
#
|
|
4703
4721
|
# @example Response structure
|
|
@@ -8438,7 +8456,7 @@ module Aws::BedrockAgent
|
|
|
8438
8456
|
tracer: tracer
|
|
8439
8457
|
)
|
|
8440
8458
|
context[:gem_name] = 'aws-sdk-bedrockagent'
|
|
8441
|
-
context[:gem_version] = '1.
|
|
8459
|
+
context[:gem_version] = '1.79.0'
|
|
8442
8460
|
Seahorse::Client::Request.new(handlers, context)
|
|
8443
8461
|
end
|
|
8444
8462
|
|
|
@@ -323,6 +323,7 @@ module Aws::BedrockAgent
|
|
|
323
323
|
Id = Shapes::StringShape.new(name: 'Id')
|
|
324
324
|
ImageExtractionConfiguration = Shapes::StructureShape.new(name: 'ImageExtractionConfiguration')
|
|
325
325
|
IncludeExclude = Shapes::StringShape.new(name: 'IncludeExclude')
|
|
326
|
+
IncludedData = Shapes::StringShape.new(name: 'IncludedData')
|
|
326
327
|
IncompatibleConnectionDataTypeFlowValidationDetails = Shapes::StructureShape.new(name: 'IncompatibleConnectionDataTypeFlowValidationDetails')
|
|
327
328
|
IncompatibleLoopNodeType = Shapes::StringShape.new(name: 'IncompatibleLoopNodeType')
|
|
328
329
|
IndexArn = Shapes::StringShape.new(name: 'IndexArn')
|
|
@@ -1755,6 +1756,7 @@ module Aws::BedrockAgent
|
|
|
1755
1756
|
GetFlowAliasResponse.struct_class = Types::GetFlowAliasResponse
|
|
1756
1757
|
|
|
1757
1758
|
GetFlowRequest.add_member(:flow_identifier, Shapes::ShapeRef.new(shape: FlowIdentifier, required: true, location: "uri", location_name: "flowIdentifier"))
|
|
1759
|
+
GetFlowRequest.add_member(:included_data, Shapes::ShapeRef.new(shape: IncludedData, location: "querystring", location_name: "includedData"))
|
|
1758
1760
|
GetFlowRequest.struct_class = Types::GetFlowRequest
|
|
1759
1761
|
|
|
1760
1762
|
GetFlowResponse.add_member(:name, Shapes::ShapeRef.new(shape: FlowName, required: true, location_name: "name"))
|
|
@@ -1773,6 +1775,7 @@ module Aws::BedrockAgent
|
|
|
1773
1775
|
|
|
1774
1776
|
GetFlowVersionRequest.add_member(:flow_identifier, Shapes::ShapeRef.new(shape: FlowIdentifier, required: true, location: "uri", location_name: "flowIdentifier"))
|
|
1775
1777
|
GetFlowVersionRequest.add_member(:flow_version, Shapes::ShapeRef.new(shape: NumericalVersion, required: true, location: "uri", location_name: "flowVersion"))
|
|
1778
|
+
GetFlowVersionRequest.add_member(:included_data, Shapes::ShapeRef.new(shape: IncludedData, location: "querystring", location_name: "includedData"))
|
|
1776
1779
|
GetFlowVersionRequest.struct_class = Types::GetFlowVersionRequest
|
|
1777
1780
|
|
|
1778
1781
|
GetFlowVersionResponse.add_member(:name, Shapes::ShapeRef.new(shape: FlowName, required: true, location_name: "name"))
|
|
@@ -1811,6 +1814,7 @@ module Aws::BedrockAgent
|
|
|
1811
1814
|
|
|
1812
1815
|
GetPromptRequest.add_member(:prompt_identifier, Shapes::ShapeRef.new(shape: PromptIdentifier, required: true, location: "uri", location_name: "promptIdentifier"))
|
|
1813
1816
|
GetPromptRequest.add_member(:prompt_version, Shapes::ShapeRef.new(shape: Version, location: "querystring", location_name: "promptVersion"))
|
|
1817
|
+
GetPromptRequest.add_member(:included_data, Shapes::ShapeRef.new(shape: IncludedData, location: "querystring", location_name: "includedData"))
|
|
1814
1818
|
GetPromptRequest.struct_class = Types::GetPromptRequest
|
|
1815
1819
|
|
|
1816
1820
|
GetPromptResponse.add_member(:name, Shapes::ShapeRef.new(shape: PromptName, required: true, location_name: "name"))
|
|
@@ -5233,10 +5233,17 @@ module Aws::BedrockAgent
|
|
|
5233
5233
|
# The unique identifier of the flow.
|
|
5234
5234
|
# @return [String]
|
|
5235
5235
|
#
|
|
5236
|
+
# @!attribute [rw] included_data
|
|
5237
|
+
# Controls the scope of data returned. Set to `METADATA_ONLY` to
|
|
5238
|
+
# return only resource metadata. Set to `ALL_DATA` or omit this field
|
|
5239
|
+
# to return the full response.
|
|
5240
|
+
# @return [String]
|
|
5241
|
+
#
|
|
5236
5242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetFlowRequest AWS API Documentation
|
|
5237
5243
|
#
|
|
5238
5244
|
class GetFlowRequest < Struct.new(
|
|
5239
|
-
:flow_identifier
|
|
5245
|
+
:flow_identifier,
|
|
5246
|
+
:included_data)
|
|
5240
5247
|
SENSITIVE = []
|
|
5241
5248
|
include Aws::Structure
|
|
5242
5249
|
end
|
|
@@ -5346,11 +5353,18 @@ module Aws::BedrockAgent
|
|
|
5346
5353
|
# The version of the flow for which to get information.
|
|
5347
5354
|
# @return [String]
|
|
5348
5355
|
#
|
|
5356
|
+
# @!attribute [rw] included_data
|
|
5357
|
+
# Controls the scope of data returned. Set to `METADATA_ONLY` to
|
|
5358
|
+
# return only resource metadata. Set to `ALL_DATA` or omit this field
|
|
5359
|
+
# to return the full response.
|
|
5360
|
+
# @return [String]
|
|
5361
|
+
#
|
|
5349
5362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetFlowVersionRequest AWS API Documentation
|
|
5350
5363
|
#
|
|
5351
5364
|
class GetFlowVersionRequest < Struct.new(
|
|
5352
5365
|
:flow_identifier,
|
|
5353
|
-
:flow_version
|
|
5366
|
+
:flow_version,
|
|
5367
|
+
:included_data)
|
|
5354
5368
|
SENSITIVE = []
|
|
5355
5369
|
include Aws::Structure
|
|
5356
5370
|
end
|
|
@@ -5530,11 +5544,18 @@ module Aws::BedrockAgent
|
|
|
5530
5544
|
# draft of the prompt.
|
|
5531
5545
|
# @return [String]
|
|
5532
5546
|
#
|
|
5547
|
+
# @!attribute [rw] included_data
|
|
5548
|
+
# Controls the scope of data returned. Set to `METADATA_ONLY` to
|
|
5549
|
+
# return only resource metadata. Set to `ALL_DATA` or omit this field
|
|
5550
|
+
# to return the full response.
|
|
5551
|
+
# @return [String]
|
|
5552
|
+
#
|
|
5533
5553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agent-2023-06-05/GetPromptRequest AWS API Documentation
|
|
5534
5554
|
#
|
|
5535
5555
|
class GetPromptRequest < Struct.new(
|
|
5536
5556
|
:prompt_identifier,
|
|
5537
|
-
:prompt_version
|
|
5557
|
+
:prompt_version,
|
|
5558
|
+
:included_data)
|
|
5538
5559
|
SENSITIVE = []
|
|
5539
5560
|
include Aws::Structure
|
|
5540
5561
|
end
|
data/lib/aws-sdk-bedrockagent.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -626,7 +626,8 @@ module Aws
|
|
|
626
626
|
end
|
|
627
627
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#get_flow-instance_method
|
|
628
628
|
def get_flow: (
|
|
629
|
-
flow_identifier: ::String
|
|
629
|
+
flow_identifier: ::String,
|
|
630
|
+
?included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
630
631
|
) -> _GetFlowResponseSuccess
|
|
631
632
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFlowResponseSuccess
|
|
632
633
|
|
|
@@ -665,7 +666,8 @@ module Aws
|
|
|
665
666
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#get_flow_version-instance_method
|
|
666
667
|
def get_flow_version: (
|
|
667
668
|
flow_identifier: ::String,
|
|
668
|
-
flow_version: ::String
|
|
669
|
+
flow_version: ::String,
|
|
670
|
+
?included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
669
671
|
) -> _GetFlowVersionResponseSuccess
|
|
670
672
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFlowVersionResponseSuccess
|
|
671
673
|
|
|
@@ -721,7 +723,8 @@ module Aws
|
|
|
721
723
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgent/Client.html#get_prompt-instance_method
|
|
722
724
|
def get_prompt: (
|
|
723
725
|
prompt_identifier: ::String,
|
|
724
|
-
?prompt_version: ::String
|
|
726
|
+
?prompt_version: ::String,
|
|
727
|
+
?included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
725
728
|
) -> _GetPromptResponseSuccess
|
|
726
729
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPromptResponseSuccess
|
|
727
730
|
|
data/sig/types.rbs
CHANGED
|
@@ -1327,6 +1327,7 @@ module Aws::BedrockAgent
|
|
|
1327
1327
|
|
|
1328
1328
|
class GetFlowRequest
|
|
1329
1329
|
attr_accessor flow_identifier: ::String
|
|
1330
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
1330
1331
|
SENSITIVE: []
|
|
1331
1332
|
end
|
|
1332
1333
|
|
|
@@ -1349,6 +1350,7 @@ module Aws::BedrockAgent
|
|
|
1349
1350
|
class GetFlowVersionRequest
|
|
1350
1351
|
attr_accessor flow_identifier: ::String
|
|
1351
1352
|
attr_accessor flow_version: ::String
|
|
1353
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
1352
1354
|
SENSITIVE: []
|
|
1353
1355
|
end
|
|
1354
1356
|
|
|
@@ -1403,6 +1405,7 @@ module Aws::BedrockAgent
|
|
|
1403
1405
|
class GetPromptRequest
|
|
1404
1406
|
attr_accessor prompt_identifier: ::String
|
|
1405
1407
|
attr_accessor prompt_version: ::String
|
|
1408
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
|
1406
1409
|
SENSITIVE: []
|
|
1407
1410
|
end
|
|
1408
1411
|
|