aws-sdk-bedrockagentcorecontrol 1.4.0 → 1.6.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockagentcorecontrol/client.rb +328 -121
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +162 -51
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +479 -249
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +73 -13
- data/sig/types.rbs +72 -14
- metadata +1 -1
@@ -55,9 +55,9 @@ module Aws::BedrockAgentCoreControl
|
|
55
55
|
# The current status of the agent runtime.
|
56
56
|
# @return [String]
|
57
57
|
#
|
58
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/
|
58
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentRuntime AWS API Documentation
|
59
59
|
#
|
60
|
-
class
|
60
|
+
class AgentRuntime < Struct.new(
|
61
61
|
:agent_runtime_arn,
|
62
62
|
:agent_runtime_id,
|
63
63
|
:agent_runtime_version,
|
@@ -71,25 +71,25 @@ module Aws::BedrockAgentCoreControl
|
|
71
71
|
|
72
72
|
# The artifact of the agent.
|
73
73
|
#
|
74
|
-
# @note
|
74
|
+
# @note AgentRuntimeArtifact is a union - when making an API calls you must set exactly one of the members.
|
75
75
|
#
|
76
|
-
# @note
|
76
|
+
# @note AgentRuntimeArtifact is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AgentRuntimeArtifact corresponding to the set member.
|
77
77
|
#
|
78
78
|
# @!attribute [rw] container_configuration
|
79
79
|
# The container configuration for the agent artifact.
|
80
80
|
# @return [Types::ContainerConfiguration]
|
81
81
|
#
|
82
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/
|
82
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentRuntimeArtifact AWS API Documentation
|
83
83
|
#
|
84
|
-
class
|
84
|
+
class AgentRuntimeArtifact < Struct.new(
|
85
85
|
:container_configuration,
|
86
86
|
:unknown)
|
87
87
|
SENSITIVE = []
|
88
88
|
include Aws::Structure
|
89
89
|
include Aws::Structure::Union
|
90
90
|
|
91
|
-
class ContainerConfiguration <
|
92
|
-
class Unknown <
|
91
|
+
class ContainerConfiguration < AgentRuntimeArtifact; end
|
92
|
+
class Unknown < AgentRuntimeArtifact; end
|
93
93
|
end
|
94
94
|
|
95
95
|
# Contains information about an agent runtime endpoint. An endpoint
|
@@ -138,9 +138,9 @@ module Aws::BedrockAgentCoreControl
|
|
138
138
|
# The timestamp when the agent runtime endpoint was last updated.
|
139
139
|
# @return [Time]
|
140
140
|
#
|
141
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/
|
141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentRuntimeEndpoint AWS API Documentation
|
142
142
|
#
|
143
|
-
class
|
143
|
+
class AgentRuntimeEndpoint < Struct.new(
|
144
144
|
:name,
|
145
145
|
:live_version,
|
146
146
|
:target_version,
|
@@ -282,10 +282,15 @@ module Aws::BedrockAgentCoreControl
|
|
282
282
|
# browser connects to the network.
|
283
283
|
# @return [String]
|
284
284
|
#
|
285
|
+
# @!attribute [rw] vpc_config
|
286
|
+
# VpcConfig for the Agent.
|
287
|
+
# @return [Types::VpcConfig]
|
288
|
+
#
|
285
289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/BrowserNetworkConfiguration AWS API Documentation
|
286
290
|
#
|
287
291
|
class BrowserNetworkConfiguration < Struct.new(
|
288
|
-
:network_mode
|
292
|
+
:network_mode,
|
293
|
+
:vpc_config)
|
289
294
|
SENSITIVE = []
|
290
295
|
include Aws::Structure
|
291
296
|
end
|
@@ -343,10 +348,15 @@ module Aws::BedrockAgentCoreControl
|
|
343
348
|
# the code interpreter connects to the network.
|
344
349
|
# @return [String]
|
345
350
|
#
|
351
|
+
# @!attribute [rw] vpc_config
|
352
|
+
# VpcConfig for the Agent.
|
353
|
+
# @return [Types::VpcConfig]
|
354
|
+
#
|
346
355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CodeInterpreterNetworkConfiguration AWS API Documentation
|
347
356
|
#
|
348
357
|
class CodeInterpreterNetworkConfiguration < Struct.new(
|
349
|
-
:network_mode
|
358
|
+
:network_mode,
|
359
|
+
:vpc_config)
|
350
360
|
SENSITIVE = []
|
351
361
|
include Aws::Structure
|
352
362
|
end
|
@@ -461,20 +471,20 @@ module Aws::BedrockAgentCoreControl
|
|
461
471
|
end
|
462
472
|
|
463
473
|
# @!attribute [rw] agent_runtime_id
|
464
|
-
# The unique identifier of the
|
474
|
+
# The unique identifier of the AgentCore Runtime to create an endpoint
|
465
475
|
# for.
|
466
476
|
# @return [String]
|
467
477
|
#
|
468
478
|
# @!attribute [rw] name
|
469
|
-
# The name of the
|
479
|
+
# The name of the AgentCore Runtime endpoint.
|
470
480
|
# @return [String]
|
471
481
|
#
|
472
482
|
# @!attribute [rw] agent_runtime_version
|
473
|
-
# The version of the
|
483
|
+
# The version of the AgentCore Runtime to use for the endpoint.
|
474
484
|
# @return [String]
|
475
485
|
#
|
476
486
|
# @!attribute [rw] description
|
477
|
-
# The description of the
|
487
|
+
# The description of the AgentCore Runtime endpoint.
|
478
488
|
# @return [String]
|
479
489
|
#
|
480
490
|
# @!attribute [rw] client_token
|
@@ -485,6 +495,12 @@ module Aws::BedrockAgentCoreControl
|
|
485
495
|
# not need to pass this option.
|
486
496
|
# @return [String]
|
487
497
|
#
|
498
|
+
# @!attribute [rw] tags
|
499
|
+
# A map of tag keys and values to assign to the agent runtime
|
500
|
+
# endpoint. Tags enable you to categorize your resources in different
|
501
|
+
# ways, for example, by purpose, owner, or environment.
|
502
|
+
# @return [Hash<String,String>]
|
503
|
+
#
|
488
504
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateAgentRuntimeEndpointRequest AWS API Documentation
|
489
505
|
#
|
490
506
|
class CreateAgentRuntimeEndpointRequest < Struct.new(
|
@@ -492,29 +508,30 @@ module Aws::BedrockAgentCoreControl
|
|
492
508
|
:name,
|
493
509
|
:agent_runtime_version,
|
494
510
|
:description,
|
495
|
-
:client_token
|
511
|
+
:client_token,
|
512
|
+
:tags)
|
496
513
|
SENSITIVE = [:name]
|
497
514
|
include Aws::Structure
|
498
515
|
end
|
499
516
|
|
500
517
|
# @!attribute [rw] target_version
|
501
|
-
# The target version of the
|
518
|
+
# The target version of the AgentCore Runtime for the endpoint.
|
502
519
|
# @return [String]
|
503
520
|
#
|
504
521
|
# @!attribute [rw] agent_runtime_endpoint_arn
|
505
|
-
# The Amazon Resource Name (ARN) of the
|
522
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.
|
506
523
|
# @return [String]
|
507
524
|
#
|
508
525
|
# @!attribute [rw] agent_runtime_arn
|
509
|
-
# The Amazon Resource Name (ARN) of the
|
526
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
510
527
|
# @return [String]
|
511
528
|
#
|
512
529
|
# @!attribute [rw] status
|
513
|
-
# The current status of the
|
530
|
+
# The current status of the AgentCore Runtime endpoint.
|
514
531
|
# @return [String]
|
515
532
|
#
|
516
533
|
# @!attribute [rw] created_at
|
517
|
-
# The timestamp when the
|
534
|
+
# The timestamp when the AgentCore Runtime endpoint was created.
|
518
535
|
# @return [Time]
|
519
536
|
#
|
520
537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -530,23 +547,24 @@ module Aws::BedrockAgentCoreControl
|
|
530
547
|
end
|
531
548
|
|
532
549
|
# @!attribute [rw] agent_runtime_name
|
533
|
-
# The name of the
|
550
|
+
# The name of the AgentCore Runtime.
|
534
551
|
# @return [String]
|
535
552
|
#
|
536
553
|
# @!attribute [rw] description
|
537
|
-
# The description of the
|
554
|
+
# The description of the AgentCore Runtime.
|
538
555
|
# @return [String]
|
539
556
|
#
|
540
557
|
# @!attribute [rw] agent_runtime_artifact
|
541
|
-
# The artifact of the
|
542
|
-
# @return [Types::
|
558
|
+
# The artifact of the AgentCore Runtime.
|
559
|
+
# @return [Types::AgentRuntimeArtifact]
|
543
560
|
#
|
544
561
|
# @!attribute [rw] role_arn
|
545
|
-
# The IAM role ARN that provides permissions for the
|
562
|
+
# The IAM role ARN that provides permissions for the AgentCore
|
563
|
+
# Runtime.
|
546
564
|
# @return [String]
|
547
565
|
#
|
548
566
|
# @!attribute [rw] network_configuration
|
549
|
-
# The network configuration for the
|
567
|
+
# The network configuration for the AgentCore Runtime.
|
550
568
|
# @return [Types::NetworkConfiguration]
|
551
569
|
#
|
552
570
|
# @!attribute [rw] protocol_configuration
|
@@ -563,13 +581,24 @@ module Aws::BedrockAgentCoreControl
|
|
563
581
|
# @return [String]
|
564
582
|
#
|
565
583
|
# @!attribute [rw] environment_variables
|
566
|
-
# Environment variables to set in the
|
584
|
+
# Environment variables to set in the AgentCore Runtime environment.
|
567
585
|
# @return [Hash<String,String>]
|
568
586
|
#
|
569
587
|
# @!attribute [rw] authorizer_configuration
|
570
|
-
# The authorizer configuration for the
|
588
|
+
# The authorizer configuration for the AgentCore Runtime.
|
571
589
|
# @return [Types::AuthorizerConfiguration]
|
572
590
|
#
|
591
|
+
# @!attribute [rw] request_header_configuration
|
592
|
+
# Configuration for HTTP request headers that will be passed through
|
593
|
+
# to the runtime.
|
594
|
+
# @return [Types::RequestHeaderConfiguration]
|
595
|
+
#
|
596
|
+
# @!attribute [rw] tags
|
597
|
+
# A map of tag keys and values to assign to the agent runtime. Tags
|
598
|
+
# enable you to categorize your resources in different ways, for
|
599
|
+
# example, by purpose, owner, or environment.
|
600
|
+
# @return [Hash<String,String>]
|
601
|
+
#
|
573
602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateAgentRuntimeRequest AWS API Documentation
|
574
603
|
#
|
575
604
|
class CreateAgentRuntimeRequest < Struct.new(
|
@@ -581,33 +610,35 @@ module Aws::BedrockAgentCoreControl
|
|
581
610
|
:protocol_configuration,
|
582
611
|
:client_token,
|
583
612
|
:environment_variables,
|
584
|
-
:authorizer_configuration
|
613
|
+
:authorizer_configuration,
|
614
|
+
:request_header_configuration,
|
615
|
+
:tags)
|
585
616
|
SENSITIVE = [:description, :environment_variables]
|
586
617
|
include Aws::Structure
|
587
618
|
end
|
588
619
|
|
589
620
|
# @!attribute [rw] agent_runtime_arn
|
590
|
-
# The Amazon Resource Name (ARN) of the
|
621
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
591
622
|
# @return [String]
|
592
623
|
#
|
593
624
|
# @!attribute [rw] workload_identity_details
|
594
|
-
# The workload identity details for the
|
625
|
+
# The workload identity details for the AgentCore Runtime.
|
595
626
|
# @return [Types::WorkloadIdentityDetails]
|
596
627
|
#
|
597
628
|
# @!attribute [rw] agent_runtime_id
|
598
|
-
# The unique identifier of the
|
629
|
+
# The unique identifier of the AgentCore Runtime.
|
599
630
|
# @return [String]
|
600
631
|
#
|
601
632
|
# @!attribute [rw] agent_runtime_version
|
602
|
-
# The version of the
|
633
|
+
# The version of the AgentCore Runtime.
|
603
634
|
# @return [String]
|
604
635
|
#
|
605
636
|
# @!attribute [rw] created_at
|
606
|
-
# The timestamp when the
|
637
|
+
# The timestamp when the AgentCore Runtime was created.
|
607
638
|
# @return [Time]
|
608
639
|
#
|
609
640
|
# @!attribute [rw] status
|
610
|
-
# The current status of the
|
641
|
+
# The current status of the AgentCore Runtime.
|
611
642
|
# @return [String]
|
612
643
|
#
|
613
644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateAgentRuntimeResponse AWS API Documentation
|
@@ -700,6 +731,12 @@ module Aws::BedrockAgentCoreControl
|
|
700
731
|
# not need to pass this option.
|
701
732
|
# @return [String]
|
702
733
|
#
|
734
|
+
# @!attribute [rw] tags
|
735
|
+
# A map of tag keys and values to assign to the browser. Tags enable
|
736
|
+
# you to categorize your resources in different ways, for example, by
|
737
|
+
# purpose, owner, or environment.
|
738
|
+
# @return [Hash<String,String>]
|
739
|
+
#
|
703
740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateBrowserRequest AWS API Documentation
|
704
741
|
#
|
705
742
|
class CreateBrowserRequest < Struct.new(
|
@@ -708,7 +745,8 @@ module Aws::BedrockAgentCoreControl
|
|
708
745
|
:execution_role_arn,
|
709
746
|
:network_configuration,
|
710
747
|
:recording,
|
711
|
-
:client_token
|
748
|
+
:client_token,
|
749
|
+
:tags)
|
712
750
|
SENSITIVE = [:description]
|
713
751
|
include Aws::Structure
|
714
752
|
end
|
@@ -770,6 +808,12 @@ module Aws::BedrockAgentCoreControl
|
|
770
808
|
# not need to pass this option.
|
771
809
|
# @return [String]
|
772
810
|
#
|
811
|
+
# @!attribute [rw] tags
|
812
|
+
# A map of tag keys and values to assign to the code interpreter. Tags
|
813
|
+
# enable you to categorize your resources in different ways, for
|
814
|
+
# example, by purpose, owner, or environment.
|
815
|
+
# @return [Hash<String,String>]
|
816
|
+
#
|
773
817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateCodeInterpreterRequest AWS API Documentation
|
774
818
|
#
|
775
819
|
class CreateCodeInterpreterRequest < Struct.new(
|
@@ -777,7 +821,8 @@ module Aws::BedrockAgentCoreControl
|
|
777
821
|
:description,
|
778
822
|
:execution_role_arn,
|
779
823
|
:network_configuration,
|
780
|
-
:client_token
|
824
|
+
:client_token,
|
825
|
+
:tags)
|
781
826
|
SENSITIVE = [:description]
|
782
827
|
include Aws::Structure
|
783
828
|
end
|
@@ -819,13 +864,17 @@ module Aws::BedrockAgentCoreControl
|
|
819
864
|
# @return [String]
|
820
865
|
#
|
821
866
|
# @!attribute [rw] client_token
|
822
|
-
# A unique, case-sensitive identifier to ensure that the
|
867
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
823
868
|
# completes no more than one time. If this token matches a previous
|
824
|
-
# request,
|
825
|
-
# error.
|
869
|
+
# request, the service ignores the request, but does not return an
|
870
|
+
# error. For more information, see [Ensuring idempotency][1].
|
826
871
|
#
|
827
872
|
# **A suitable default value is auto-generated.** You should normally
|
828
873
|
# not need to pass this option.
|
874
|
+
#
|
875
|
+
#
|
876
|
+
#
|
877
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
829
878
|
# @return [String]
|
830
879
|
#
|
831
880
|
# @!attribute [rw] role_arn
|
@@ -834,13 +883,12 @@ module Aws::BedrockAgentCoreControl
|
|
834
883
|
# @return [String]
|
835
884
|
#
|
836
885
|
# @!attribute [rw] protocol_type
|
837
|
-
# The protocol type for the gateway.
|
838
|
-
# Context Protocol).
|
886
|
+
# The protocol type for the gateway.
|
839
887
|
# @return [String]
|
840
888
|
#
|
841
889
|
# @!attribute [rw] protocol_configuration
|
842
890
|
# The configuration settings for the protocol specified in the
|
843
|
-
# protocolType parameter.
|
891
|
+
# `protocolType` parameter.
|
844
892
|
# @return [Types::GatewayProtocolConfiguration]
|
845
893
|
#
|
846
894
|
# @!attribute [rw] authorizer_type
|
@@ -848,7 +896,7 @@ module Aws::BedrockAgentCoreControl
|
|
848
896
|
# @return [String]
|
849
897
|
#
|
850
898
|
# @!attribute [rw] authorizer_configuration
|
851
|
-
# The authorizer configuration for the
|
899
|
+
# The authorizer configuration for the gateway.
|
852
900
|
# @return [Types::AuthorizerConfiguration]
|
853
901
|
#
|
854
902
|
# @!attribute [rw] kms_key_arn
|
@@ -857,12 +905,21 @@ module Aws::BedrockAgentCoreControl
|
|
857
905
|
# @return [String]
|
858
906
|
#
|
859
907
|
# @!attribute [rw] exception_level
|
860
|
-
# The
|
861
|
-
#
|
862
|
-
#
|
863
|
-
#
|
908
|
+
# The level of detail in error messages returned when invoking the
|
909
|
+
# gateway.
|
910
|
+
#
|
911
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
912
|
+
# to help a user debug the gateway.
|
913
|
+
#
|
914
|
+
# * If the value is omitted, a generic error message is returned to
|
915
|
+
# the end user.
|
864
916
|
# @return [String]
|
865
917
|
#
|
918
|
+
# @!attribute [rw] tags
|
919
|
+
# A map of key-value pairs to associate with the gateway as metadata
|
920
|
+
# tags.
|
921
|
+
# @return [Hash<String,String>]
|
922
|
+
#
|
866
923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRequest AWS API Documentation
|
867
924
|
#
|
868
925
|
class CreateGatewayRequest < Struct.new(
|
@@ -875,7 +932,8 @@ module Aws::BedrockAgentCoreControl
|
|
875
932
|
:authorizer_type,
|
876
933
|
:authorizer_configuration,
|
877
934
|
:kms_key_arn,
|
878
|
-
:exception_level
|
935
|
+
:exception_level,
|
936
|
+
:tags)
|
879
937
|
SENSITIVE = [:name, :description]
|
880
938
|
include Aws::Structure
|
881
939
|
end
|
@@ -934,7 +992,7 @@ module Aws::BedrockAgentCoreControl
|
|
934
992
|
# @return [String]
|
935
993
|
#
|
936
994
|
# @!attribute [rw] authorizer_configuration
|
937
|
-
# The authorizer configuration for the created
|
995
|
+
# The authorizer configuration for the created gateway.
|
938
996
|
# @return [Types::AuthorizerConfiguration]
|
939
997
|
#
|
940
998
|
# @!attribute [rw] kms_key_arn
|
@@ -943,14 +1001,18 @@ module Aws::BedrockAgentCoreControl
|
|
943
1001
|
# @return [String]
|
944
1002
|
#
|
945
1003
|
# @!attribute [rw] workload_identity_details
|
946
|
-
# The workload identity details for the created
|
1004
|
+
# The workload identity details for the created gateway.
|
947
1005
|
# @return [Types::WorkloadIdentityDetails]
|
948
1006
|
#
|
949
1007
|
# @!attribute [rw] exception_level
|
950
|
-
# The
|
951
|
-
#
|
952
|
-
#
|
953
|
-
#
|
1008
|
+
# The level of detail in error messages returned when invoking the
|
1009
|
+
# gateway.
|
1010
|
+
#
|
1011
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
1012
|
+
# to help a user debug the gateway.
|
1013
|
+
#
|
1014
|
+
# * If the value is omitted, a generic error message is returned to
|
1015
|
+
# the end user.
|
954
1016
|
# @return [String]
|
955
1017
|
#
|
956
1018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayResponse AWS API Documentation
|
@@ -978,8 +1040,7 @@ module Aws::BedrockAgentCoreControl
|
|
978
1040
|
end
|
979
1041
|
|
980
1042
|
# @!attribute [rw] gateway_identifier
|
981
|
-
# The identifier of the gateway to create a target for.
|
982
|
-
# either the gateway ID or the gateway ARN.
|
1043
|
+
# The identifier of the gateway to create a target for.
|
983
1044
|
# @return [String]
|
984
1045
|
#
|
985
1046
|
# @!attribute [rw] name
|
@@ -992,13 +1053,17 @@ module Aws::BedrockAgentCoreControl
|
|
992
1053
|
# @return [String]
|
993
1054
|
#
|
994
1055
|
# @!attribute [rw] client_token
|
995
|
-
# A unique, case-sensitive identifier to ensure that the
|
1056
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
996
1057
|
# completes no more than one time. If this token matches a previous
|
997
|
-
# request,
|
998
|
-
# error.
|
1058
|
+
# request, the service ignores the request, but does not return an
|
1059
|
+
# error. For more information, see [Ensuring idempotency][1].
|
999
1060
|
#
|
1000
1061
|
# **A suitable default value is auto-generated.** You should normally
|
1001
1062
|
# not need to pass this option.
|
1063
|
+
#
|
1064
|
+
#
|
1065
|
+
#
|
1066
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
1002
1067
|
# @return [String]
|
1003
1068
|
#
|
1004
1069
|
# @!attribute [rw] target_configuration
|
@@ -1555,12 +1620,12 @@ module Aws::BedrockAgentCoreControl
|
|
1555
1620
|
end
|
1556
1621
|
|
1557
1622
|
# @!attribute [rw] agent_runtime_id
|
1558
|
-
# The unique identifier of the
|
1623
|
+
# The unique identifier of the AgentCore Runtime associated with the
|
1559
1624
|
# endpoint.
|
1560
1625
|
# @return [String]
|
1561
1626
|
#
|
1562
1627
|
# @!attribute [rw] endpoint_name
|
1563
|
-
# The name of the
|
1628
|
+
# The name of the AgentCore Runtime endpoint to delete.
|
1564
1629
|
# @return [String]
|
1565
1630
|
#
|
1566
1631
|
# @!attribute [rw] client_token
|
@@ -1582,7 +1647,7 @@ module Aws::BedrockAgentCoreControl
|
|
1582
1647
|
end
|
1583
1648
|
|
1584
1649
|
# @!attribute [rw] status
|
1585
|
-
# The current status of the
|
1650
|
+
# The current status of the AgentCore Runtime endpoint deletion.
|
1586
1651
|
# @return [String]
|
1587
1652
|
#
|
1588
1653
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -1594,7 +1659,7 @@ module Aws::BedrockAgentCoreControl
|
|
1594
1659
|
end
|
1595
1660
|
|
1596
1661
|
# @!attribute [rw] agent_runtime_id
|
1597
|
-
# The unique identifier of the
|
1662
|
+
# The unique identifier of the AgentCore Runtime to delete.
|
1598
1663
|
# @return [String]
|
1599
1664
|
#
|
1600
1665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeRequest AWS API Documentation
|
@@ -1606,7 +1671,7 @@ module Aws::BedrockAgentCoreControl
|
|
1606
1671
|
end
|
1607
1672
|
|
1608
1673
|
# @!attribute [rw] status
|
1609
|
-
# The current status of the
|
1674
|
+
# The current status of the AgentCore Runtime deletion.
|
1610
1675
|
# @return [String]
|
1611
1676
|
#
|
1612
1677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeResponse AWS API Documentation
|
@@ -1720,8 +1785,7 @@ module Aws::BedrockAgentCoreControl
|
|
1720
1785
|
end
|
1721
1786
|
|
1722
1787
|
# @!attribute [rw] gateway_identifier
|
1723
|
-
# The identifier of the gateway to delete.
|
1724
|
-
# gateway ID or the gateway ARN.
|
1788
|
+
# The identifier of the gateway to delete.
|
1725
1789
|
# @return [String]
|
1726
1790
|
#
|
1727
1791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRequest AWS API Documentation
|
@@ -1733,15 +1797,15 @@ module Aws::BedrockAgentCoreControl
|
|
1733
1797
|
end
|
1734
1798
|
|
1735
1799
|
# @!attribute [rw] gateway_id
|
1736
|
-
# The unique identifier of the deleted
|
1800
|
+
# The unique identifier of the deleted gateway.
|
1737
1801
|
# @return [String]
|
1738
1802
|
#
|
1739
1803
|
# @!attribute [rw] status
|
1740
|
-
# The current status of the
|
1804
|
+
# The current status of the gateway deletion.
|
1741
1805
|
# @return [String]
|
1742
1806
|
#
|
1743
1807
|
# @!attribute [rw] status_reasons
|
1744
|
-
# The reasons for the current status of the
|
1808
|
+
# The reasons for the current status of the gateway deletion.
|
1745
1809
|
# @return [Array<String>]
|
1746
1810
|
#
|
1747
1811
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayResponse AWS API Documentation
|
@@ -1755,11 +1819,11 @@ module Aws::BedrockAgentCoreControl
|
|
1755
1819
|
end
|
1756
1820
|
|
1757
1821
|
# @!attribute [rw] gateway_identifier
|
1758
|
-
# The unique identifier of the
|
1822
|
+
# The unique identifier of the gateway associated with the target.
|
1759
1823
|
# @return [String]
|
1760
1824
|
#
|
1761
1825
|
# @!attribute [rw] target_id
|
1762
|
-
# The unique identifier of the
|
1826
|
+
# The unique identifier of the gateway target to delete.
|
1763
1827
|
# @return [String]
|
1764
1828
|
#
|
1765
1829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayTargetRequest AWS API Documentation
|
@@ -1772,19 +1836,19 @@ module Aws::BedrockAgentCoreControl
|
|
1772
1836
|
end
|
1773
1837
|
|
1774
1838
|
# @!attribute [rw] gateway_arn
|
1775
|
-
# The Amazon Resource Name (ARN) of the
|
1839
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
1776
1840
|
# @return [String]
|
1777
1841
|
#
|
1778
1842
|
# @!attribute [rw] target_id
|
1779
|
-
# The unique identifier of the deleted
|
1843
|
+
# The unique identifier of the deleted gateway target.
|
1780
1844
|
# @return [String]
|
1781
1845
|
#
|
1782
1846
|
# @!attribute [rw] status
|
1783
|
-
# The current status of the
|
1847
|
+
# The current status of the gateway target deletion.
|
1784
1848
|
# @return [String]
|
1785
1849
|
#
|
1786
1850
|
# @!attribute [rw] status_reasons
|
1787
|
-
# The reasons for the current status of the
|
1851
|
+
# The reasons for the current status of the gateway target deletion.
|
1788
1852
|
# @return [Array<String>]
|
1789
1853
|
#
|
1790
1854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayTargetResponse AWS API Documentation
|
@@ -1821,11 +1885,11 @@ module Aws::BedrockAgentCoreControl
|
|
1821
1885
|
end
|
1822
1886
|
|
1823
1887
|
# @!attribute [rw] memory_id
|
1824
|
-
# The unique identifier of the deleted
|
1888
|
+
# The unique identifier of the deleted AgentCore Memory resource.
|
1825
1889
|
# @return [String]
|
1826
1890
|
#
|
1827
1891
|
# @!attribute [rw] status
|
1828
|
-
# The current status of the
|
1892
|
+
# The current status of the AgentCore Memory resource deletion.
|
1829
1893
|
# @return [String]
|
1830
1894
|
#
|
1831
1895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteMemoryOutput AWS API Documentation
|
@@ -1993,12 +2057,12 @@ module Aws::BedrockAgentCoreControl
|
|
1993
2057
|
end
|
1994
2058
|
|
1995
2059
|
# @!attribute [rw] agent_runtime_id
|
1996
|
-
# The unique identifier of the
|
2060
|
+
# The unique identifier of the AgentCore Runtime associated with the
|
1997
2061
|
# endpoint.
|
1998
2062
|
# @return [String]
|
1999
2063
|
#
|
2000
2064
|
# @!attribute [rw] endpoint_name
|
2001
|
-
# The name of the
|
2065
|
+
# The name of the AgentCore Runtime endpoint to retrieve.
|
2002
2066
|
# @return [String]
|
2003
2067
|
#
|
2004
2068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeEndpointRequest AWS API Documentation
|
@@ -2011,48 +2075,49 @@ module Aws::BedrockAgentCoreControl
|
|
2011
2075
|
end
|
2012
2076
|
|
2013
2077
|
# @!attribute [rw] live_version
|
2014
|
-
# The currently deployed version of the
|
2078
|
+
# The currently deployed version of the AgentCore Runtime on the
|
2079
|
+
# endpoint.
|
2015
2080
|
# @return [String]
|
2016
2081
|
#
|
2017
2082
|
# @!attribute [rw] target_version
|
2018
|
-
# The target version of the
|
2083
|
+
# The target version of the AgentCore Runtime for the endpoint.
|
2019
2084
|
# @return [String]
|
2020
2085
|
#
|
2021
2086
|
# @!attribute [rw] agent_runtime_endpoint_arn
|
2022
|
-
# The Amazon Resource Name (ARN) of the
|
2087
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.
|
2023
2088
|
# @return [String]
|
2024
2089
|
#
|
2025
2090
|
# @!attribute [rw] agent_runtime_arn
|
2026
|
-
# The Amazon Resource Name (ARN) of the
|
2091
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
2027
2092
|
# @return [String]
|
2028
2093
|
#
|
2029
2094
|
# @!attribute [rw] description
|
2030
|
-
# The description of the
|
2095
|
+
# The description of the AgentCore Runtime endpoint.
|
2031
2096
|
# @return [String]
|
2032
2097
|
#
|
2033
2098
|
# @!attribute [rw] status
|
2034
|
-
# The current status of the
|
2099
|
+
# The current status of the AgentCore Runtime endpoint.
|
2035
2100
|
# @return [String]
|
2036
2101
|
#
|
2037
2102
|
# @!attribute [rw] created_at
|
2038
|
-
# The timestamp when the
|
2103
|
+
# The timestamp when the AgentCore Runtime endpoint was created.
|
2039
2104
|
# @return [Time]
|
2040
2105
|
#
|
2041
2106
|
# @!attribute [rw] last_updated_at
|
2042
|
-
# The timestamp when the
|
2107
|
+
# The timestamp when the AgentCore Runtime endpoint was last updated.
|
2043
2108
|
# @return [Time]
|
2044
2109
|
#
|
2045
2110
|
# @!attribute [rw] failure_reason
|
2046
|
-
# The reason for failure if the
|
2047
|
-
# state.
|
2111
|
+
# The reason for failure if the AgentCore Runtime endpoint is in a
|
2112
|
+
# failed state.
|
2048
2113
|
# @return [String]
|
2049
2114
|
#
|
2050
2115
|
# @!attribute [rw] name
|
2051
|
-
# The name of the
|
2116
|
+
# The name of the AgentCore Runtime endpoint.
|
2052
2117
|
# @return [String]
|
2053
2118
|
#
|
2054
2119
|
# @!attribute [rw] id
|
2055
|
-
# The unique identifier of the
|
2120
|
+
# The unique identifier of the AgentCore Runtime endpoint.
|
2056
2121
|
# @return [String]
|
2057
2122
|
#
|
2058
2123
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -2074,11 +2139,11 @@ module Aws::BedrockAgentCoreControl
|
|
2074
2139
|
end
|
2075
2140
|
|
2076
2141
|
# @!attribute [rw] agent_runtime_id
|
2077
|
-
# The unique identifier of the
|
2142
|
+
# The unique identifier of the AgentCore Runtime to retrieve.
|
2078
2143
|
# @return [String]
|
2079
2144
|
#
|
2080
2145
|
# @!attribute [rw] agent_runtime_version
|
2081
|
-
# The version of the
|
2146
|
+
# The version of the AgentCore Runtime to retrieve.
|
2082
2147
|
# @return [String]
|
2083
2148
|
#
|
2084
2149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeRequest AWS API Documentation
|
@@ -2091,47 +2156,48 @@ module Aws::BedrockAgentCoreControl
|
|
2091
2156
|
end
|
2092
2157
|
|
2093
2158
|
# @!attribute [rw] agent_runtime_arn
|
2094
|
-
# The Amazon Resource Name (ARN) of the
|
2159
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
2095
2160
|
# @return [String]
|
2096
2161
|
#
|
2097
2162
|
# @!attribute [rw] workload_identity_details
|
2098
|
-
# The workload identity details for the
|
2163
|
+
# The workload identity details for the AgentCore Runtime.
|
2099
2164
|
# @return [Types::WorkloadIdentityDetails]
|
2100
2165
|
#
|
2101
2166
|
# @!attribute [rw] agent_runtime_name
|
2102
|
-
# The name of the
|
2167
|
+
# The name of the AgentCore Runtime.
|
2103
2168
|
# @return [String]
|
2104
2169
|
#
|
2105
2170
|
# @!attribute [rw] description
|
2106
|
-
# The description of the
|
2171
|
+
# The description of the AgentCore Runtime.
|
2107
2172
|
# @return [String]
|
2108
2173
|
#
|
2109
2174
|
# @!attribute [rw] agent_runtime_id
|
2110
|
-
# The unique identifier of the
|
2175
|
+
# The unique identifier of the AgentCore Runtime.
|
2111
2176
|
# @return [String]
|
2112
2177
|
#
|
2113
2178
|
# @!attribute [rw] agent_runtime_version
|
2114
|
-
# The version of the
|
2179
|
+
# The version of the AgentCore Runtime.
|
2115
2180
|
# @return [String]
|
2116
2181
|
#
|
2117
2182
|
# @!attribute [rw] created_at
|
2118
|
-
# The timestamp when the
|
2183
|
+
# The timestamp when the AgentCore Runtime was created.
|
2119
2184
|
# @return [Time]
|
2120
2185
|
#
|
2121
2186
|
# @!attribute [rw] last_updated_at
|
2122
|
-
# The timestamp when the
|
2187
|
+
# The timestamp when the AgentCore Runtime was last updated.
|
2123
2188
|
# @return [Time]
|
2124
2189
|
#
|
2125
2190
|
# @!attribute [rw] role_arn
|
2126
|
-
# The IAM role ARN that provides permissions for the
|
2191
|
+
# The IAM role ARN that provides permissions for the AgentCore
|
2192
|
+
# Runtime.
|
2127
2193
|
# @return [String]
|
2128
2194
|
#
|
2129
2195
|
# @!attribute [rw] agent_runtime_artifact
|
2130
|
-
# The artifact of the
|
2131
|
-
# @return [Types::
|
2196
|
+
# The artifact of the AgentCore Runtime.
|
2197
|
+
# @return [Types::AgentRuntimeArtifact]
|
2132
2198
|
#
|
2133
2199
|
# @!attribute [rw] network_configuration
|
2134
|
-
# The network configuration for the
|
2200
|
+
# The network configuration for the AgentCore Runtime.
|
2135
2201
|
# @return [Types::NetworkConfiguration]
|
2136
2202
|
#
|
2137
2203
|
# @!attribute [rw] protocol_configuration
|
@@ -2140,15 +2206,20 @@ module Aws::BedrockAgentCoreControl
|
|
2140
2206
|
# @return [Types::ProtocolConfiguration]
|
2141
2207
|
#
|
2142
2208
|
# @!attribute [rw] environment_variables
|
2143
|
-
# Environment variables set in the
|
2209
|
+
# Environment variables set in the AgentCore Runtime environment.
|
2144
2210
|
# @return [Hash<String,String>]
|
2145
2211
|
#
|
2146
2212
|
# @!attribute [rw] authorizer_configuration
|
2147
|
-
# The authorizer configuration for the
|
2213
|
+
# The authorizer configuration for the AgentCore Runtime.
|
2148
2214
|
# @return [Types::AuthorizerConfiguration]
|
2149
2215
|
#
|
2216
|
+
# @!attribute [rw] request_header_configuration
|
2217
|
+
# Configuration for HTTP request headers that will be passed through
|
2218
|
+
# to the runtime.
|
2219
|
+
# @return [Types::RequestHeaderConfiguration]
|
2220
|
+
#
|
2150
2221
|
# @!attribute [rw] status
|
2151
|
-
# The current status of the
|
2222
|
+
# The current status of the AgentCore Runtime.
|
2152
2223
|
# @return [String]
|
2153
2224
|
#
|
2154
2225
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeResponse AWS API Documentation
|
@@ -2168,6 +2239,7 @@ module Aws::BedrockAgentCoreControl
|
|
2168
2239
|
:protocol_configuration,
|
2169
2240
|
:environment_variables,
|
2170
2241
|
:authorizer_configuration,
|
2242
|
+
:request_header_configuration,
|
2171
2243
|
:status)
|
2172
2244
|
SENSITIVE = [:description, :environment_variables]
|
2173
2245
|
include Aws::Structure
|
@@ -2264,6 +2336,10 @@ module Aws::BedrockAgentCoreControl
|
|
2264
2336
|
# The current status of the browser.
|
2265
2337
|
# @return [String]
|
2266
2338
|
#
|
2339
|
+
# @!attribute [rw] failure_reason
|
2340
|
+
# The reason for failure if the browser is in a failed state.
|
2341
|
+
# @return [String]
|
2342
|
+
#
|
2267
2343
|
# @!attribute [rw] created_at
|
2268
2344
|
# The timestamp when the browser was created.
|
2269
2345
|
# @return [Time]
|
@@ -2283,6 +2359,7 @@ module Aws::BedrockAgentCoreControl
|
|
2283
2359
|
:network_configuration,
|
2284
2360
|
:recording,
|
2285
2361
|
:status,
|
2362
|
+
:failure_reason,
|
2286
2363
|
:created_at,
|
2287
2364
|
:last_updated_at)
|
2288
2365
|
SENSITIVE = [:description]
|
@@ -2330,6 +2407,10 @@ module Aws::BedrockAgentCoreControl
|
|
2330
2407
|
# The current status of the code interpreter.
|
2331
2408
|
# @return [String]
|
2332
2409
|
#
|
2410
|
+
# @!attribute [rw] failure_reason
|
2411
|
+
# The reason for failure if the code interpreter is in a failed state.
|
2412
|
+
# @return [String]
|
2413
|
+
#
|
2333
2414
|
# @!attribute [rw] created_at
|
2334
2415
|
# The timestamp when the code interpreter was created.
|
2335
2416
|
# @return [Time]
|
@@ -2348,6 +2429,7 @@ module Aws::BedrockAgentCoreControl
|
|
2348
2429
|
:execution_role_arn,
|
2349
2430
|
:network_configuration,
|
2350
2431
|
:status,
|
2432
|
+
:failure_reason,
|
2351
2433
|
:created_at,
|
2352
2434
|
:last_updated_at)
|
2353
2435
|
SENSITIVE = [:description]
|
@@ -2355,8 +2437,7 @@ module Aws::BedrockAgentCoreControl
|
|
2355
2437
|
end
|
2356
2438
|
|
2357
2439
|
# @!attribute [rw] gateway_identifier
|
2358
|
-
# The identifier of the gateway to retrieve.
|
2359
|
-
# gateway ID or the gateway ARN.
|
2440
|
+
# The identifier of the gateway to retrieve.
|
2360
2441
|
# @return [String]
|
2361
2442
|
#
|
2362
2443
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRequest AWS API Documentation
|
@@ -2368,47 +2449,47 @@ module Aws::BedrockAgentCoreControl
|
|
2368
2449
|
end
|
2369
2450
|
|
2370
2451
|
# @!attribute [rw] gateway_arn
|
2371
|
-
# The Amazon Resource Name (ARN) of the
|
2452
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
2372
2453
|
# @return [String]
|
2373
2454
|
#
|
2374
2455
|
# @!attribute [rw] gateway_id
|
2375
|
-
# The unique identifier of the
|
2456
|
+
# The unique identifier of the gateway.
|
2376
2457
|
# @return [String]
|
2377
2458
|
#
|
2378
2459
|
# @!attribute [rw] gateway_url
|
2379
|
-
# An endpoint for invoking
|
2460
|
+
# An endpoint for invoking gateway.
|
2380
2461
|
# @return [String]
|
2381
2462
|
#
|
2382
2463
|
# @!attribute [rw] created_at
|
2383
|
-
# The timestamp when the
|
2464
|
+
# The timestamp when the gateway was created.
|
2384
2465
|
# @return [Time]
|
2385
2466
|
#
|
2386
2467
|
# @!attribute [rw] updated_at
|
2387
|
-
# The timestamp when the
|
2468
|
+
# The timestamp when the gateway was last updated.
|
2388
2469
|
# @return [Time]
|
2389
2470
|
#
|
2390
2471
|
# @!attribute [rw] status
|
2391
|
-
# The current status of the
|
2472
|
+
# The current status of the gateway.
|
2392
2473
|
# @return [String]
|
2393
2474
|
#
|
2394
2475
|
# @!attribute [rw] status_reasons
|
2395
|
-
# The reasons for the current status of the
|
2476
|
+
# The reasons for the current status of the gateway.
|
2396
2477
|
# @return [Array<String>]
|
2397
2478
|
#
|
2398
2479
|
# @!attribute [rw] name
|
2399
|
-
# The name of the
|
2480
|
+
# The name of the gateway.
|
2400
2481
|
# @return [String]
|
2401
2482
|
#
|
2402
2483
|
# @!attribute [rw] description
|
2403
|
-
# The description of the
|
2484
|
+
# The description of the gateway.
|
2404
2485
|
# @return [String]
|
2405
2486
|
#
|
2406
2487
|
# @!attribute [rw] role_arn
|
2407
|
-
# The IAM role ARN that provides permissions for the
|
2488
|
+
# The IAM role ARN that provides permissions for the gateway.
|
2408
2489
|
# @return [String]
|
2409
2490
|
#
|
2410
2491
|
# @!attribute [rw] protocol_type
|
2411
|
-
# Protocol applied to a
|
2492
|
+
# Protocol applied to a gateway.
|
2412
2493
|
# @return [String]
|
2413
2494
|
#
|
2414
2495
|
# @!attribute [rw] protocol_configuration
|
@@ -2421,22 +2502,27 @@ module Aws::BedrockAgentCoreControl
|
|
2421
2502
|
# @return [String]
|
2422
2503
|
#
|
2423
2504
|
# @!attribute [rw] authorizer_configuration
|
2424
|
-
# The authorizer configuration for the
|
2505
|
+
# The authorizer configuration for the gateway.
|
2425
2506
|
# @return [Types::AuthorizerConfiguration]
|
2426
2507
|
#
|
2427
2508
|
# @!attribute [rw] kms_key_arn
|
2428
|
-
# The ARN of the KMS key used to encrypt the
|
2509
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
2510
|
+
# gateway.
|
2429
2511
|
# @return [String]
|
2430
2512
|
#
|
2431
2513
|
# @!attribute [rw] workload_identity_details
|
2432
|
-
# The workload identity details for the
|
2514
|
+
# The workload identity details for the gateway.
|
2433
2515
|
# @return [Types::WorkloadIdentityDetails]
|
2434
2516
|
#
|
2435
2517
|
# @!attribute [rw] exception_level
|
2436
|
-
# The
|
2437
|
-
#
|
2438
|
-
#
|
2439
|
-
#
|
2518
|
+
# The level of detail in error messages returned when invoking the
|
2519
|
+
# gateway.
|
2520
|
+
#
|
2521
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
2522
|
+
# to help a user debug the gateway.
|
2523
|
+
#
|
2524
|
+
# * If the value is omitted, a generic error message is returned to
|
2525
|
+
# the end user.
|
2440
2526
|
# @return [String]
|
2441
2527
|
#
|
2442
2528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayResponse AWS API Documentation
|
@@ -2464,8 +2550,7 @@ module Aws::BedrockAgentCoreControl
|
|
2464
2550
|
end
|
2465
2551
|
|
2466
2552
|
# @!attribute [rw] gateway_identifier
|
2467
|
-
# The identifier of the gateway that contains the target.
|
2468
|
-
# either the gateway ID or the gateway ARN.
|
2553
|
+
# The identifier of the gateway that contains the target.
|
2469
2554
|
# @return [String]
|
2470
2555
|
#
|
2471
2556
|
# @!attribute [rw] target_id
|
@@ -2482,35 +2567,35 @@ module Aws::BedrockAgentCoreControl
|
|
2482
2567
|
end
|
2483
2568
|
|
2484
2569
|
# @!attribute [rw] gateway_arn
|
2485
|
-
# The Amazon Resource Name (ARN) of the
|
2570
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
2486
2571
|
# @return [String]
|
2487
2572
|
#
|
2488
2573
|
# @!attribute [rw] target_id
|
2489
|
-
# The unique identifier of the
|
2574
|
+
# The unique identifier of the gateway target.
|
2490
2575
|
# @return [String]
|
2491
2576
|
#
|
2492
2577
|
# @!attribute [rw] created_at
|
2493
|
-
# The timestamp when the
|
2578
|
+
# The timestamp when the gateway target was created.
|
2494
2579
|
# @return [Time]
|
2495
2580
|
#
|
2496
2581
|
# @!attribute [rw] updated_at
|
2497
|
-
# The timestamp when the
|
2582
|
+
# The timestamp when the gateway target was last updated.
|
2498
2583
|
# @return [Time]
|
2499
2584
|
#
|
2500
2585
|
# @!attribute [rw] status
|
2501
|
-
# The current status of the
|
2586
|
+
# The current status of the gateway target.
|
2502
2587
|
# @return [String]
|
2503
2588
|
#
|
2504
2589
|
# @!attribute [rw] status_reasons
|
2505
|
-
# The reasons for the current status of the
|
2590
|
+
# The reasons for the current status of the gateway target.
|
2506
2591
|
# @return [Array<String>]
|
2507
2592
|
#
|
2508
2593
|
# @!attribute [rw] name
|
2509
|
-
# The name of the
|
2594
|
+
# The name of the gateway target.
|
2510
2595
|
# @return [String]
|
2511
2596
|
#
|
2512
2597
|
# @!attribute [rw] description
|
2513
|
-
# The description of the
|
2598
|
+
# The description of the gateway target.
|
2514
2599
|
# @return [String]
|
2515
2600
|
#
|
2516
2601
|
# @!attribute [rw] target_configuration
|
@@ -2519,7 +2604,7 @@ module Aws::BedrockAgentCoreControl
|
|
2519
2604
|
# @return [Types::TargetConfiguration]
|
2520
2605
|
#
|
2521
2606
|
# @!attribute [rw] credential_provider_configurations
|
2522
|
-
# The credential provider configurations for the
|
2607
|
+
# The credential provider configurations for the gateway target.
|
2523
2608
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
2524
2609
|
#
|
2525
2610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
|
@@ -2552,7 +2637,7 @@ module Aws::BedrockAgentCoreControl
|
|
2552
2637
|
end
|
2553
2638
|
|
2554
2639
|
# @!attribute [rw] memory
|
2555
|
-
# The retrieved
|
2640
|
+
# The retrieved AgentCore Memory resource details.
|
2556
2641
|
# @return [Types::Memory]
|
2557
2642
|
#
|
2558
2643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetMemoryOutput AWS API Documentation
|
@@ -2797,7 +2882,8 @@ module Aws::BedrockAgentCoreControl
|
|
2797
2882
|
end
|
2798
2883
|
|
2799
2884
|
# @!attribute [rw] agent_runtime_id
|
2800
|
-
# The unique identifier of the
|
2885
|
+
# The unique identifier of the AgentCore Runtime to list endpoints
|
2886
|
+
# for.
|
2801
2887
|
# @return [String]
|
2802
2888
|
#
|
2803
2889
|
# @!attribute [rw] max_results
|
@@ -2819,8 +2905,8 @@ module Aws::BedrockAgentCoreControl
|
|
2819
2905
|
end
|
2820
2906
|
|
2821
2907
|
# @!attribute [rw] runtime_endpoints
|
2822
|
-
# The list of
|
2823
|
-
# @return [Array<Types::
|
2908
|
+
# The list of AgentCore Runtime endpoints.
|
2909
|
+
# @return [Array<Types::AgentRuntimeEndpoint>]
|
2824
2910
|
#
|
2825
2911
|
# @!attribute [rw] next_token
|
2826
2912
|
# A token to retrieve the next page of results.
|
@@ -2836,7 +2922,7 @@ module Aws::BedrockAgentCoreControl
|
|
2836
2922
|
end
|
2837
2923
|
|
2838
2924
|
# @!attribute [rw] agent_runtime_id
|
2839
|
-
# The unique identifier of the
|
2925
|
+
# The unique identifier of the AgentCore Runtime to list versions for.
|
2840
2926
|
# @return [String]
|
2841
2927
|
#
|
2842
2928
|
# @!attribute [rw] max_results
|
@@ -2858,8 +2944,8 @@ module Aws::BedrockAgentCoreControl
|
|
2858
2944
|
end
|
2859
2945
|
|
2860
2946
|
# @!attribute [rw] agent_runtimes
|
2861
|
-
# The list of
|
2862
|
-
# @return [Array<Types::
|
2947
|
+
# The list of AgentCore Runtime versions.
|
2948
|
+
# @return [Array<Types::AgentRuntime>]
|
2863
2949
|
#
|
2864
2950
|
# @!attribute [rw] next_token
|
2865
2951
|
# A token to retrieve the next page of results.
|
@@ -2892,8 +2978,8 @@ module Aws::BedrockAgentCoreControl
|
|
2892
2978
|
end
|
2893
2979
|
|
2894
2980
|
# @!attribute [rw] agent_runtimes
|
2895
|
-
# The list of
|
2896
|
-
# @return [Array<Types::
|
2981
|
+
# The list of AgentCore Runtime resources.
|
2982
|
+
# @return [Array<Types::AgentRuntime>]
|
2897
2983
|
#
|
2898
2984
|
# @!attribute [rw] next_token
|
2899
2985
|
# A token to retrieve the next page of results.
|
@@ -3025,19 +3111,21 @@ module Aws::BedrockAgentCoreControl
|
|
3025
3111
|
end
|
3026
3112
|
|
3027
3113
|
# @!attribute [rw] gateway_identifier
|
3028
|
-
# The identifier of the gateway to list targets for.
|
3029
|
-
# either the gateway ID or the gateway ARN.
|
3114
|
+
# The identifier of the gateway to list targets for.
|
3030
3115
|
# @return [String]
|
3031
3116
|
#
|
3032
3117
|
# @!attribute [rw] max_results
|
3033
|
-
# The maximum number of results to return in
|
3034
|
-
#
|
3118
|
+
# The maximum number of results to return in the response. If the
|
3119
|
+
# total number of results is greater than this value, use the token
|
3120
|
+
# returned in the response in the `nextToken` field when making
|
3121
|
+
# another request to return the next batch of results.
|
3035
3122
|
# @return [Integer]
|
3036
3123
|
#
|
3037
3124
|
# @!attribute [rw] next_token
|
3038
|
-
#
|
3039
|
-
#
|
3040
|
-
#
|
3125
|
+
# If the total number of results is greater than the `maxResults`
|
3126
|
+
# value provided in the request, enter the token returned in the
|
3127
|
+
# `nextToken` field in the response in this field to return the next
|
3128
|
+
# batch of results.
|
3041
3129
|
# @return [String]
|
3042
3130
|
#
|
3043
3131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargetsRequest AWS API Documentation
|
@@ -3051,11 +3139,14 @@ module Aws::BedrockAgentCoreControl
|
|
3051
3139
|
end
|
3052
3140
|
|
3053
3141
|
# @!attribute [rw] items
|
3054
|
-
# The list of
|
3142
|
+
# The list of gateway target summaries.
|
3055
3143
|
# @return [Array<Types::TargetSummary>]
|
3056
3144
|
#
|
3057
3145
|
# @!attribute [rw] next_token
|
3058
|
-
#
|
3146
|
+
# If the total number of results is greater than the `maxResults`
|
3147
|
+
# value provided in the request, use this token when making another
|
3148
|
+
# request in the `nextToken` field to return the next batch of
|
3149
|
+
# results.
|
3059
3150
|
# @return [String]
|
3060
3151
|
#
|
3061
3152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargetsResponse AWS API Documentation
|
@@ -3068,14 +3159,17 @@ module Aws::BedrockAgentCoreControl
|
|
3068
3159
|
end
|
3069
3160
|
|
3070
3161
|
# @!attribute [rw] max_results
|
3071
|
-
# The maximum number of results to return in
|
3072
|
-
#
|
3162
|
+
# The maximum number of results to return in the response. If the
|
3163
|
+
# total number of results is greater than this value, use the token
|
3164
|
+
# returned in the response in the `nextToken` field when making
|
3165
|
+
# another request to return the next batch of results.
|
3073
3166
|
# @return [Integer]
|
3074
3167
|
#
|
3075
3168
|
# @!attribute [rw] next_token
|
3076
|
-
#
|
3077
|
-
#
|
3078
|
-
#
|
3169
|
+
# If the total number of results is greater than the `maxResults`
|
3170
|
+
# value provided in the request, enter the token returned in the
|
3171
|
+
# `nextToken` field in the response in this field to return the next
|
3172
|
+
# batch of results.
|
3079
3173
|
# @return [String]
|
3080
3174
|
#
|
3081
3175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewaysRequest AWS API Documentation
|
@@ -3088,11 +3182,14 @@ module Aws::BedrockAgentCoreControl
|
|
3088
3182
|
end
|
3089
3183
|
|
3090
3184
|
# @!attribute [rw] items
|
3091
|
-
# The list of
|
3185
|
+
# The list of gateway summaries.
|
3092
3186
|
# @return [Array<Types::GatewaySummary>]
|
3093
3187
|
#
|
3094
3188
|
# @!attribute [rw] next_token
|
3095
|
-
#
|
3189
|
+
# If the total number of results is greater than the `maxResults`
|
3190
|
+
# value provided in the request, use this token when making another
|
3191
|
+
# request in the `nextToken` field to return the next batch of
|
3192
|
+
# results.
|
3096
3193
|
# @return [String]
|
3097
3194
|
#
|
3098
3195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewaysResponse AWS API Documentation
|
@@ -3125,7 +3222,7 @@ module Aws::BedrockAgentCoreControl
|
|
3125
3222
|
end
|
3126
3223
|
|
3127
3224
|
# @!attribute [rw] memories
|
3128
|
-
# The list of
|
3225
|
+
# The list of AgentCore Memory resource summaries.
|
3129
3226
|
# @return [Array<Types::MemorySummary>]
|
3130
3227
|
#
|
3131
3228
|
# @!attribute [rw] next_token
|
@@ -3175,6 +3272,31 @@ module Aws::BedrockAgentCoreControl
|
|
3175
3272
|
include Aws::Structure
|
3176
3273
|
end
|
3177
3274
|
|
3275
|
+
# @!attribute [rw] resource_arn
|
3276
|
+
# The Amazon Resource Name (ARN) of the resource for which you want to
|
3277
|
+
# list tags.
|
3278
|
+
# @return [String]
|
3279
|
+
#
|
3280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListTagsForResourceRequest AWS API Documentation
|
3281
|
+
#
|
3282
|
+
class ListTagsForResourceRequest < Struct.new(
|
3283
|
+
:resource_arn)
|
3284
|
+
SENSITIVE = []
|
3285
|
+
include Aws::Structure
|
3286
|
+
end
|
3287
|
+
|
3288
|
+
# @!attribute [rw] tags
|
3289
|
+
# The tags associated with the resource.
|
3290
|
+
# @return [Hash<String,String>]
|
3291
|
+
#
|
3292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListTagsForResourceResponse AWS API Documentation
|
3293
|
+
#
|
3294
|
+
class ListTagsForResourceResponse < Struct.new(
|
3295
|
+
:tags)
|
3296
|
+
SENSITIVE = []
|
3297
|
+
include Aws::Structure
|
3298
|
+
end
|
3299
|
+
|
3178
3300
|
# @!attribute [rw] next_token
|
3179
3301
|
# Pagination token.
|
3180
3302
|
# @return [String]
|
@@ -3648,13 +3770,18 @@ module Aws::BedrockAgentCoreControl
|
|
3648
3770
|
# SecurityConfig for the Agent.
|
3649
3771
|
#
|
3650
3772
|
# @!attribute [rw] network_mode
|
3651
|
-
# The network mode for the
|
3773
|
+
# The network mode for the AgentCore Runtime.
|
3652
3774
|
# @return [String]
|
3653
3775
|
#
|
3776
|
+
# @!attribute [rw] network_mode_config
|
3777
|
+
# The network mode configuration for the AgentCore Runtime.
|
3778
|
+
# @return [Types::VpcConfig]
|
3779
|
+
#
|
3654
3780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NetworkConfiguration AWS API Documentation
|
3655
3781
|
#
|
3656
3782
|
class NetworkConfiguration < Struct.new(
|
3657
|
-
:network_mode
|
3783
|
+
:network_mode,
|
3784
|
+
:network_mode_config)
|
3658
3785
|
SENSITIVE = []
|
3659
3786
|
include Aws::Structure
|
3660
3787
|
end
|
@@ -3921,6 +4048,31 @@ module Aws::BedrockAgentCoreControl
|
|
3921
4048
|
include Aws::Structure
|
3922
4049
|
end
|
3923
4050
|
|
4051
|
+
# Configuration for HTTP request headers that will be passed through to
|
4052
|
+
# the runtime.
|
4053
|
+
#
|
4054
|
+
# @note RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
|
4055
|
+
#
|
4056
|
+
# @note RequestHeaderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RequestHeaderConfiguration corresponding to the set member.
|
4057
|
+
#
|
4058
|
+
# @!attribute [rw] request_header_allowlist
|
4059
|
+
# A list of HTTP request headers that are allowed to be passed through
|
4060
|
+
# to the runtime.
|
4061
|
+
# @return [Array<String>]
|
4062
|
+
#
|
4063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RequestHeaderConfiguration AWS API Documentation
|
4064
|
+
#
|
4065
|
+
class RequestHeaderConfiguration < Struct.new(
|
4066
|
+
:request_header_allowlist,
|
4067
|
+
:unknown)
|
4068
|
+
SENSITIVE = []
|
4069
|
+
include Aws::Structure
|
4070
|
+
include Aws::Structure::Union
|
4071
|
+
|
4072
|
+
class RequestHeaderAllowlist < RequestHeaderConfiguration; end
|
4073
|
+
class Unknown < RequestHeaderConfiguration; end
|
4074
|
+
end
|
4075
|
+
|
3924
4076
|
# Exception thrown when a resource limit is exceeded.
|
3925
4077
|
#
|
3926
4078
|
# @!attribute [rw] message
|
@@ -4401,6 +4553,27 @@ module Aws::BedrockAgentCoreControl
|
|
4401
4553
|
include Aws::Structure
|
4402
4554
|
end
|
4403
4555
|
|
4556
|
+
# @!attribute [rw] resource_arn
|
4557
|
+
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
4558
|
+
# @return [String]
|
4559
|
+
#
|
4560
|
+
# @!attribute [rw] tags
|
4561
|
+
# The tags to add to the resource. A tag is a key-value pair.
|
4562
|
+
# @return [Hash<String,String>]
|
4563
|
+
#
|
4564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TagResourceRequest AWS API Documentation
|
4565
|
+
#
|
4566
|
+
class TagResourceRequest < Struct.new(
|
4567
|
+
:resource_arn,
|
4568
|
+
:tags)
|
4569
|
+
SENSITIVE = []
|
4570
|
+
include Aws::Structure
|
4571
|
+
end
|
4572
|
+
|
4573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TagResourceResponse AWS API Documentation
|
4574
|
+
#
|
4575
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
4576
|
+
|
4404
4577
|
# The configuration for a gateway target. This structure defines how the
|
4405
4578
|
# gateway connects to and interacts with the target endpoint.
|
4406
4579
|
#
|
@@ -4573,21 +4746,43 @@ module Aws::BedrockAgentCoreControl
|
|
4573
4746
|
include Aws::Structure
|
4574
4747
|
end
|
4575
4748
|
|
4749
|
+
# @!attribute [rw] resource_arn
|
4750
|
+
# The Amazon Resource Name (ARN) of the resource that you want to
|
4751
|
+
# untag.
|
4752
|
+
# @return [String]
|
4753
|
+
#
|
4754
|
+
# @!attribute [rw] tag_keys
|
4755
|
+
# The tag keys of the tags to remove from the resource.
|
4756
|
+
# @return [Array<String>]
|
4757
|
+
#
|
4758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UntagResourceRequest AWS API Documentation
|
4759
|
+
#
|
4760
|
+
class UntagResourceRequest < Struct.new(
|
4761
|
+
:resource_arn,
|
4762
|
+
:tag_keys)
|
4763
|
+
SENSITIVE = []
|
4764
|
+
include Aws::Structure
|
4765
|
+
end
|
4766
|
+
|
4767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UntagResourceResponse AWS API Documentation
|
4768
|
+
#
|
4769
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
4770
|
+
|
4576
4771
|
# @!attribute [rw] agent_runtime_id
|
4577
|
-
# The unique identifier of the
|
4772
|
+
# The unique identifier of the AgentCore Runtime associated with the
|
4578
4773
|
# endpoint.
|
4579
4774
|
# @return [String]
|
4580
4775
|
#
|
4581
4776
|
# @!attribute [rw] endpoint_name
|
4582
|
-
# The name of the
|
4777
|
+
# The name of the AgentCore Runtime endpoint to update.
|
4583
4778
|
# @return [String]
|
4584
4779
|
#
|
4585
4780
|
# @!attribute [rw] agent_runtime_version
|
4586
|
-
# The updated version of the
|
4781
|
+
# The updated version of the AgentCore Runtime for the endpoint.
|
4587
4782
|
# @return [String]
|
4588
4783
|
#
|
4589
4784
|
# @!attribute [rw] description
|
4590
|
-
# The updated description of the
|
4785
|
+
# The updated description of the AgentCore Runtime endpoint.
|
4591
4786
|
# @return [String]
|
4592
4787
|
#
|
4593
4788
|
# @!attribute [rw] client_token
|
@@ -4611,31 +4806,32 @@ module Aws::BedrockAgentCoreControl
|
|
4611
4806
|
end
|
4612
4807
|
|
4613
4808
|
# @!attribute [rw] live_version
|
4614
|
-
# The currently deployed version of the
|
4809
|
+
# The currently deployed version of the AgentCore Runtime on the
|
4810
|
+
# endpoint.
|
4615
4811
|
# @return [String]
|
4616
4812
|
#
|
4617
4813
|
# @!attribute [rw] target_version
|
4618
|
-
# The target version of the
|
4814
|
+
# The target version of the AgentCore Runtime for the endpoint.
|
4619
4815
|
# @return [String]
|
4620
4816
|
#
|
4621
4817
|
# @!attribute [rw] agent_runtime_endpoint_arn
|
4622
|
-
# The Amazon Resource Name (ARN) of the
|
4818
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.
|
4623
4819
|
# @return [String]
|
4624
4820
|
#
|
4625
4821
|
# @!attribute [rw] agent_runtime_arn
|
4626
|
-
# The Amazon Resource Name (ARN) of the
|
4822
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
4627
4823
|
# @return [String]
|
4628
4824
|
#
|
4629
4825
|
# @!attribute [rw] status
|
4630
|
-
# The current status of the updated
|
4826
|
+
# The current status of the updated AgentCore Runtime endpoint.
|
4631
4827
|
# @return [String]
|
4632
4828
|
#
|
4633
4829
|
# @!attribute [rw] created_at
|
4634
|
-
# The timestamp when the
|
4830
|
+
# The timestamp when the AgentCore Runtime endpoint was created.
|
4635
4831
|
# @return [Time]
|
4636
4832
|
#
|
4637
4833
|
# @!attribute [rw] last_updated_at
|
4638
|
-
# The timestamp when the
|
4834
|
+
# The timestamp when the AgentCore Runtime endpoint was last updated.
|
4639
4835
|
# @return [Time]
|
4640
4836
|
#
|
4641
4837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -4653,24 +4849,24 @@ module Aws::BedrockAgentCoreControl
|
|
4653
4849
|
end
|
4654
4850
|
|
4655
4851
|
# @!attribute [rw] agent_runtime_id
|
4656
|
-
# The unique identifier of the
|
4852
|
+
# The unique identifier of the AgentCore Runtime to update.
|
4657
4853
|
# @return [String]
|
4658
4854
|
#
|
4659
4855
|
# @!attribute [rw] description
|
4660
|
-
# The updated description of the
|
4856
|
+
# The updated description of the AgentCore Runtime.
|
4661
4857
|
# @return [String]
|
4662
4858
|
#
|
4663
4859
|
# @!attribute [rw] agent_runtime_artifact
|
4664
|
-
# The updated artifact of the
|
4665
|
-
# @return [Types::
|
4860
|
+
# The updated artifact of the AgentCore Runtime.
|
4861
|
+
# @return [Types::AgentRuntimeArtifact]
|
4666
4862
|
#
|
4667
4863
|
# @!attribute [rw] role_arn
|
4668
|
-
# The updated IAM role ARN that provides permissions for the
|
4669
|
-
#
|
4864
|
+
# The updated IAM role ARN that provides permissions for the AgentCore
|
4865
|
+
# Runtime.
|
4670
4866
|
# @return [String]
|
4671
4867
|
#
|
4672
4868
|
# @!attribute [rw] network_configuration
|
4673
|
-
# The updated network configuration for the
|
4869
|
+
# The updated network configuration for the AgentCore Runtime.
|
4674
4870
|
# @return [Types::NetworkConfiguration]
|
4675
4871
|
#
|
4676
4872
|
# @!attribute [rw] protocol_configuration
|
@@ -4687,14 +4883,19 @@ module Aws::BedrockAgentCoreControl
|
|
4687
4883
|
# @return [String]
|
4688
4884
|
#
|
4689
4885
|
# @!attribute [rw] environment_variables
|
4690
|
-
# Updated environment variables to set in the
|
4886
|
+
# Updated environment variables to set in the AgentCore Runtime
|
4691
4887
|
# environment.
|
4692
4888
|
# @return [Hash<String,String>]
|
4693
4889
|
#
|
4694
4890
|
# @!attribute [rw] authorizer_configuration
|
4695
|
-
# The updated authorizer configuration for the
|
4891
|
+
# The updated authorizer configuration for the AgentCore Runtime.
|
4696
4892
|
# @return [Types::AuthorizerConfiguration]
|
4697
4893
|
#
|
4894
|
+
# @!attribute [rw] request_header_configuration
|
4895
|
+
# The updated configuration for HTTP request headers that will be
|
4896
|
+
# passed through to the runtime.
|
4897
|
+
# @return [Types::RequestHeaderConfiguration]
|
4898
|
+
#
|
4698
4899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeRequest AWS API Documentation
|
4699
4900
|
#
|
4700
4901
|
class UpdateAgentRuntimeRequest < Struct.new(
|
@@ -4706,37 +4907,38 @@ module Aws::BedrockAgentCoreControl
|
|
4706
4907
|
:protocol_configuration,
|
4707
4908
|
:client_token,
|
4708
4909
|
:environment_variables,
|
4709
|
-
:authorizer_configuration
|
4910
|
+
:authorizer_configuration,
|
4911
|
+
:request_header_configuration)
|
4710
4912
|
SENSITIVE = [:description, :environment_variables]
|
4711
4913
|
include Aws::Structure
|
4712
4914
|
end
|
4713
4915
|
|
4714
4916
|
# @!attribute [rw] agent_runtime_arn
|
4715
|
-
# The Amazon Resource Name (ARN) of the updated
|
4917
|
+
# The Amazon Resource Name (ARN) of the updated AgentCore Runtime.
|
4716
4918
|
# @return [String]
|
4717
4919
|
#
|
4718
4920
|
# @!attribute [rw] agent_runtime_id
|
4719
|
-
# The unique identifier of the updated
|
4921
|
+
# The unique identifier of the updated AgentCore Runtime.
|
4720
4922
|
# @return [String]
|
4721
4923
|
#
|
4722
4924
|
# @!attribute [rw] workload_identity_details
|
4723
|
-
# The workload identity details for the updated
|
4925
|
+
# The workload identity details for the updated AgentCore Runtime.
|
4724
4926
|
# @return [Types::WorkloadIdentityDetails]
|
4725
4927
|
#
|
4726
4928
|
# @!attribute [rw] agent_runtime_version
|
4727
|
-
# The version of the updated
|
4929
|
+
# The version of the updated AgentCore Runtime.
|
4728
4930
|
# @return [String]
|
4729
4931
|
#
|
4730
4932
|
# @!attribute [rw] created_at
|
4731
|
-
# The timestamp when the
|
4933
|
+
# The timestamp when the AgentCore Runtime was created.
|
4732
4934
|
# @return [Time]
|
4733
4935
|
#
|
4734
4936
|
# @!attribute [rw] last_updated_at
|
4735
|
-
# The timestamp when the
|
4937
|
+
# The timestamp when the AgentCore Runtime was last updated.
|
4736
4938
|
# @return [Time]
|
4737
4939
|
#
|
4738
4940
|
# @!attribute [rw] status
|
4739
|
-
# The current status of the updated
|
4941
|
+
# The current status of the updated AgentCore Runtime.
|
4740
4942
|
# @return [String]
|
4741
4943
|
#
|
4742
4944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeResponse AWS API Documentation
|
@@ -4805,24 +5007,24 @@ module Aws::BedrockAgentCoreControl
|
|
4805
5007
|
end
|
4806
5008
|
|
4807
5009
|
# @!attribute [rw] gateway_identifier
|
4808
|
-
# The identifier of the gateway to update.
|
4809
|
-
# gateway ID or the gateway ARN.
|
5010
|
+
# The identifier of the gateway to update.
|
4810
5011
|
# @return [String]
|
4811
5012
|
#
|
4812
5013
|
# @!attribute [rw] name
|
4813
|
-
# The
|
5014
|
+
# The name of the gateway. This name must be the same as the one when
|
5015
|
+
# the gateway was created.
|
4814
5016
|
# @return [String]
|
4815
5017
|
#
|
4816
5018
|
# @!attribute [rw] description
|
4817
|
-
# The updated description for the
|
5019
|
+
# The updated description for the gateway.
|
4818
5020
|
# @return [String]
|
4819
5021
|
#
|
4820
5022
|
# @!attribute [rw] role_arn
|
4821
|
-
# The updated IAM role ARN that provides permissions for the
|
5023
|
+
# The updated IAM role ARN that provides permissions for the gateway.
|
4822
5024
|
# @return [String]
|
4823
5025
|
#
|
4824
5026
|
# @!attribute [rw] protocol_type
|
4825
|
-
# The updated protocol type for the
|
5027
|
+
# The updated protocol type for the gateway.
|
4826
5028
|
# @return [String]
|
4827
5029
|
#
|
4828
5030
|
# @!attribute [rw] protocol_configuration
|
@@ -4831,22 +5033,26 @@ module Aws::BedrockAgentCoreControl
|
|
4831
5033
|
# @return [Types::GatewayProtocolConfiguration]
|
4832
5034
|
#
|
4833
5035
|
# @!attribute [rw] authorizer_type
|
4834
|
-
# The updated authorizer type for the
|
5036
|
+
# The updated authorizer type for the gateway.
|
4835
5037
|
# @return [String]
|
4836
5038
|
#
|
4837
5039
|
# @!attribute [rw] authorizer_configuration
|
4838
|
-
# The updated authorizer configuration for the
|
5040
|
+
# The updated authorizer configuration for the gateway.
|
4839
5041
|
# @return [Types::AuthorizerConfiguration]
|
4840
5042
|
#
|
4841
5043
|
# @!attribute [rw] kms_key_arn
|
4842
|
-
# The updated ARN of the KMS key used to encrypt the
|
5044
|
+
# The updated ARN of the KMS key used to encrypt the gateway.
|
4843
5045
|
# @return [String]
|
4844
5046
|
#
|
4845
5047
|
# @!attribute [rw] exception_level
|
4846
|
-
# The
|
4847
|
-
#
|
4848
|
-
#
|
4849
|
-
#
|
5048
|
+
# The level of detail in error messages returned when invoking the
|
5049
|
+
# gateway.
|
5050
|
+
#
|
5051
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
5052
|
+
# to help a user debug the gateway.
|
5053
|
+
#
|
5054
|
+
# * If the value is omitted, a generic error message is returned to
|
5055
|
+
# the end user.
|
4850
5056
|
# @return [String]
|
4851
5057
|
#
|
4852
5058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRequest AWS API Documentation
|
@@ -4867,47 +5073,47 @@ module Aws::BedrockAgentCoreControl
|
|
4867
5073
|
end
|
4868
5074
|
|
4869
5075
|
# @!attribute [rw] gateway_arn
|
4870
|
-
# The Amazon Resource Name (ARN) of the updated
|
5076
|
+
# The Amazon Resource Name (ARN) of the updated gateway.
|
4871
5077
|
# @return [String]
|
4872
5078
|
#
|
4873
5079
|
# @!attribute [rw] gateway_id
|
4874
|
-
# The unique identifier of the updated
|
5080
|
+
# The unique identifier of the updated gateway.
|
4875
5081
|
# @return [String]
|
4876
5082
|
#
|
4877
5083
|
# @!attribute [rw] gateway_url
|
4878
|
-
# An endpoint for invoking the updated
|
5084
|
+
# An endpoint for invoking the updated gateway.
|
4879
5085
|
# @return [String]
|
4880
5086
|
#
|
4881
5087
|
# @!attribute [rw] created_at
|
4882
|
-
# The timestamp when the
|
5088
|
+
# The timestamp when the gateway was created.
|
4883
5089
|
# @return [Time]
|
4884
5090
|
#
|
4885
5091
|
# @!attribute [rw] updated_at
|
4886
|
-
# The timestamp when the
|
5092
|
+
# The timestamp when the gateway was last updated.
|
4887
5093
|
# @return [Time]
|
4888
5094
|
#
|
4889
5095
|
# @!attribute [rw] status
|
4890
|
-
# The current status of the updated
|
5096
|
+
# The current status of the updated gateway.
|
4891
5097
|
# @return [String]
|
4892
5098
|
#
|
4893
5099
|
# @!attribute [rw] status_reasons
|
4894
|
-
# The reasons for the current status of the updated
|
5100
|
+
# The reasons for the current status of the updated gateway.
|
4895
5101
|
# @return [Array<String>]
|
4896
5102
|
#
|
4897
5103
|
# @!attribute [rw] name
|
4898
|
-
# The
|
5104
|
+
# The name of the gateway.
|
4899
5105
|
# @return [String]
|
4900
5106
|
#
|
4901
5107
|
# @!attribute [rw] description
|
4902
|
-
# The updated description of the
|
5108
|
+
# The updated description of the gateway.
|
4903
5109
|
# @return [String]
|
4904
5110
|
#
|
4905
5111
|
# @!attribute [rw] role_arn
|
4906
|
-
# The updated IAM role ARN that provides permissions for the
|
5112
|
+
# The updated IAM role ARN that provides permissions for the gateway.
|
4907
5113
|
# @return [String]
|
4908
5114
|
#
|
4909
5115
|
# @!attribute [rw] protocol_type
|
4910
|
-
# The updated protocol type for the
|
5116
|
+
# The updated protocol type for the gateway.
|
4911
5117
|
# @return [String]
|
4912
5118
|
#
|
4913
5119
|
# @!attribute [rw] protocol_configuration
|
@@ -4916,26 +5122,30 @@ module Aws::BedrockAgentCoreControl
|
|
4916
5122
|
# @return [Types::GatewayProtocolConfiguration]
|
4917
5123
|
#
|
4918
5124
|
# @!attribute [rw] authorizer_type
|
4919
|
-
# The updated authorizer type for the
|
5125
|
+
# The updated authorizer type for the gateway.
|
4920
5126
|
# @return [String]
|
4921
5127
|
#
|
4922
5128
|
# @!attribute [rw] authorizer_configuration
|
4923
|
-
# The updated authorizer configuration for the
|
5129
|
+
# The updated authorizer configuration for the gateway.
|
4924
5130
|
# @return [Types::AuthorizerConfiguration]
|
4925
5131
|
#
|
4926
5132
|
# @!attribute [rw] kms_key_arn
|
4927
|
-
# The updated ARN of the KMS key used to encrypt the
|
5133
|
+
# The updated ARN of the KMS key used to encrypt the gateway.
|
4928
5134
|
# @return [String]
|
4929
5135
|
#
|
4930
5136
|
# @!attribute [rw] workload_identity_details
|
4931
|
-
# The workload identity details for the updated
|
5137
|
+
# The workload identity details for the updated gateway.
|
4932
5138
|
# @return [Types::WorkloadIdentityDetails]
|
4933
5139
|
#
|
4934
5140
|
# @!attribute [rw] exception_level
|
4935
|
-
# The
|
4936
|
-
#
|
4937
|
-
#
|
4938
|
-
#
|
5141
|
+
# The level of detail in error messages returned when invoking the
|
5142
|
+
# gateway.
|
5143
|
+
#
|
5144
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
5145
|
+
# to help a user debug the gateway.
|
5146
|
+
#
|
5147
|
+
# * If the value is omitted, a generic error message is returned to
|
5148
|
+
# the end user.
|
4939
5149
|
# @return [String]
|
4940
5150
|
#
|
4941
5151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayResponse AWS API Documentation
|
@@ -4963,19 +5173,19 @@ module Aws::BedrockAgentCoreControl
|
|
4963
5173
|
end
|
4964
5174
|
|
4965
5175
|
# @!attribute [rw] gateway_identifier
|
4966
|
-
# The unique identifier of the
|
5176
|
+
# The unique identifier of the gateway associated with the target.
|
4967
5177
|
# @return [String]
|
4968
5178
|
#
|
4969
5179
|
# @!attribute [rw] target_id
|
4970
|
-
# The unique identifier of the
|
5180
|
+
# The unique identifier of the gateway target to update.
|
4971
5181
|
# @return [String]
|
4972
5182
|
#
|
4973
5183
|
# @!attribute [rw] name
|
4974
|
-
# The updated name for the
|
5184
|
+
# The updated name for the gateway target.
|
4975
5185
|
# @return [String]
|
4976
5186
|
#
|
4977
5187
|
# @!attribute [rw] description
|
4978
|
-
# The updated description for the
|
5188
|
+
# The updated description for the gateway target.
|
4979
5189
|
# @return [String]
|
4980
5190
|
#
|
4981
5191
|
# @!attribute [rw] target_configuration
|
@@ -4984,8 +5194,8 @@ module Aws::BedrockAgentCoreControl
|
|
4984
5194
|
# @return [Types::TargetConfiguration]
|
4985
5195
|
#
|
4986
5196
|
# @!attribute [rw] credential_provider_configurations
|
4987
|
-
# The updated credential provider configurations for the
|
4988
|
-
#
|
5197
|
+
# The updated credential provider configurations for the gateway
|
5198
|
+
# target.
|
4989
5199
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
4990
5200
|
#
|
4991
5201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetRequest AWS API Documentation
|
@@ -5002,35 +5212,35 @@ module Aws::BedrockAgentCoreControl
|
|
5002
5212
|
end
|
5003
5213
|
|
5004
5214
|
# @!attribute [rw] gateway_arn
|
5005
|
-
# The Amazon Resource Name (ARN) of the
|
5215
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
5006
5216
|
# @return [String]
|
5007
5217
|
#
|
5008
5218
|
# @!attribute [rw] target_id
|
5009
|
-
# The unique identifier of the updated
|
5219
|
+
# The unique identifier of the updated gateway target.
|
5010
5220
|
# @return [String]
|
5011
5221
|
#
|
5012
5222
|
# @!attribute [rw] created_at
|
5013
|
-
# The timestamp when the
|
5223
|
+
# The timestamp when the gateway target was created.
|
5014
5224
|
# @return [Time]
|
5015
5225
|
#
|
5016
5226
|
# @!attribute [rw] updated_at
|
5017
|
-
# The timestamp when the
|
5227
|
+
# The timestamp when the gateway target was last updated.
|
5018
5228
|
# @return [Time]
|
5019
5229
|
#
|
5020
5230
|
# @!attribute [rw] status
|
5021
|
-
# The current status of the updated
|
5231
|
+
# The current status of the updated gateway target.
|
5022
5232
|
# @return [String]
|
5023
5233
|
#
|
5024
5234
|
# @!attribute [rw] status_reasons
|
5025
|
-
# The reasons for the current status of the updated
|
5235
|
+
# The reasons for the current status of the updated gateway target.
|
5026
5236
|
# @return [Array<String>]
|
5027
5237
|
#
|
5028
5238
|
# @!attribute [rw] name
|
5029
|
-
# The updated name of the
|
5239
|
+
# The updated name of the gateway target.
|
5030
5240
|
# @return [String]
|
5031
5241
|
#
|
5032
5242
|
# @!attribute [rw] description
|
5033
|
-
# The updated description of the
|
5243
|
+
# The updated description of the gateway target.
|
5034
5244
|
# @return [String]
|
5035
5245
|
#
|
5036
5246
|
# @!attribute [rw] target_configuration
|
@@ -5039,8 +5249,8 @@ module Aws::BedrockAgentCoreControl
|
|
5039
5249
|
# @return [Types::TargetConfiguration]
|
5040
5250
|
#
|
5041
5251
|
# @!attribute [rw] credential_provider_configurations
|
5042
|
-
# The updated credential provider configurations for the
|
5043
|
-
#
|
5252
|
+
# The updated credential provider configurations for the gateway
|
5253
|
+
# target.
|
5044
5254
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
5045
5255
|
#
|
5046
5256
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
|
@@ -5074,7 +5284,7 @@ module Aws::BedrockAgentCoreControl
|
|
5074
5284
|
# @return [String]
|
5075
5285
|
#
|
5076
5286
|
# @!attribute [rw] description
|
5077
|
-
# The updated description of the
|
5287
|
+
# The updated description of the AgentCore Memory resource.
|
5078
5288
|
# @return [String]
|
5079
5289
|
#
|
5080
5290
|
# @!attribute [rw] event_expiry_duration
|
@@ -5083,7 +5293,8 @@ module Aws::BedrockAgentCoreControl
|
|
5083
5293
|
# @return [Integer]
|
5084
5294
|
#
|
5085
5295
|
# @!attribute [rw] memory_execution_role_arn
|
5086
|
-
# The ARN of the IAM role that provides permissions for the
|
5296
|
+
# The ARN of the IAM role that provides permissions for the AgentCore
|
5297
|
+
# Memory resource.
|
5087
5298
|
# @return [String]
|
5088
5299
|
#
|
5089
5300
|
# @!attribute [rw] memory_strategies
|
@@ -5104,7 +5315,7 @@ module Aws::BedrockAgentCoreControl
|
|
5104
5315
|
end
|
5105
5316
|
|
5106
5317
|
# @!attribute [rw] memory
|
5107
|
-
# The updated
|
5318
|
+
# The updated AgentCore Memory resource details.
|
5108
5319
|
# @return [Types::Memory]
|
5109
5320
|
#
|
5110
5321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateMemoryOutput AWS API Documentation
|
@@ -5393,6 +5604,25 @@ module Aws::BedrockAgentCoreControl
|
|
5393
5604
|
include Aws::Structure
|
5394
5605
|
end
|
5395
5606
|
|
5607
|
+
# VpcConfig for the Agent.
|
5608
|
+
#
|
5609
|
+
# @!attribute [rw] security_groups
|
5610
|
+
# The security groups associated with the VPC configuration.
|
5611
|
+
# @return [Array<String>]
|
5612
|
+
#
|
5613
|
+
# @!attribute [rw] subnets
|
5614
|
+
# The subnets associated with the VPC configuration.
|
5615
|
+
# @return [Array<String>]
|
5616
|
+
#
|
5617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VpcConfig AWS API Documentation
|
5618
|
+
#
|
5619
|
+
class VpcConfig < Struct.new(
|
5620
|
+
:security_groups,
|
5621
|
+
:subnets)
|
5622
|
+
SENSITIVE = []
|
5623
|
+
include Aws::Structure
|
5624
|
+
end
|
5625
|
+
|
5396
5626
|
# The information about the workload identity.
|
5397
5627
|
#
|
5398
5628
|
# @!attribute [rw] workload_identity_arn
|