aws-sdk-bedrockagentcorecontrol 1.3.0 → 1.5.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 +306 -121
- data/lib/aws-sdk-bedrockagentcorecontrol/client_api.rb +161 -51
- data/lib/aws-sdk-bedrockagentcorecontrol/types.rb +472 -248
- data/lib/aws-sdk-bedrockagentcorecontrol.rb +1 -1
- data/sig/client.rbs +71 -12
- data/sig/types.rbs +71 -14
- metadata +3 -3
@@ -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,10 +905,14 @@ 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
|
#
|
866
918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayRequest AWS API Documentation
|
@@ -934,7 +986,7 @@ module Aws::BedrockAgentCoreControl
|
|
934
986
|
# @return [String]
|
935
987
|
#
|
936
988
|
# @!attribute [rw] authorizer_configuration
|
937
|
-
# The authorizer configuration for the created
|
989
|
+
# The authorizer configuration for the created gateway.
|
938
990
|
# @return [Types::AuthorizerConfiguration]
|
939
991
|
#
|
940
992
|
# @!attribute [rw] kms_key_arn
|
@@ -943,14 +995,18 @@ module Aws::BedrockAgentCoreControl
|
|
943
995
|
# @return [String]
|
944
996
|
#
|
945
997
|
# @!attribute [rw] workload_identity_details
|
946
|
-
# The workload identity details for the created
|
998
|
+
# The workload identity details for the created gateway.
|
947
999
|
# @return [Types::WorkloadIdentityDetails]
|
948
1000
|
#
|
949
1001
|
# @!attribute [rw] exception_level
|
950
|
-
# The
|
951
|
-
#
|
952
|
-
#
|
953
|
-
#
|
1002
|
+
# The level of detail in error messages returned when invoking the
|
1003
|
+
# gateway.
|
1004
|
+
#
|
1005
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
1006
|
+
# to help a user debug the gateway.
|
1007
|
+
#
|
1008
|
+
# * If the value is omitted, a generic error message is returned to
|
1009
|
+
# the end user.
|
954
1010
|
# @return [String]
|
955
1011
|
#
|
956
1012
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayResponse AWS API Documentation
|
@@ -978,8 +1034,7 @@ module Aws::BedrockAgentCoreControl
|
|
978
1034
|
end
|
979
1035
|
|
980
1036
|
# @!attribute [rw] gateway_identifier
|
981
|
-
# The identifier of the gateway to create a target for.
|
982
|
-
# either the gateway ID or the gateway ARN.
|
1037
|
+
# The identifier of the gateway to create a target for.
|
983
1038
|
# @return [String]
|
984
1039
|
#
|
985
1040
|
# @!attribute [rw] name
|
@@ -992,13 +1047,17 @@ module Aws::BedrockAgentCoreControl
|
|
992
1047
|
# @return [String]
|
993
1048
|
#
|
994
1049
|
# @!attribute [rw] client_token
|
995
|
-
# A unique, case-sensitive identifier to ensure that the
|
1050
|
+
# A unique, case-sensitive identifier to ensure that the API request
|
996
1051
|
# completes no more than one time. If this token matches a previous
|
997
|
-
# request,
|
998
|
-
# error.
|
1052
|
+
# request, the service ignores the request, but does not return an
|
1053
|
+
# error. For more information, see [Ensuring idempotency][1].
|
999
1054
|
#
|
1000
1055
|
# **A suitable default value is auto-generated.** You should normally
|
1001
1056
|
# not need to pass this option.
|
1057
|
+
#
|
1058
|
+
#
|
1059
|
+
#
|
1060
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
1002
1061
|
# @return [String]
|
1003
1062
|
#
|
1004
1063
|
# @!attribute [rw] target_configuration
|
@@ -1555,12 +1614,12 @@ module Aws::BedrockAgentCoreControl
|
|
1555
1614
|
end
|
1556
1615
|
|
1557
1616
|
# @!attribute [rw] agent_runtime_id
|
1558
|
-
# The unique identifier of the
|
1617
|
+
# The unique identifier of the AgentCore Runtime associated with the
|
1559
1618
|
# endpoint.
|
1560
1619
|
# @return [String]
|
1561
1620
|
#
|
1562
1621
|
# @!attribute [rw] endpoint_name
|
1563
|
-
# The name of the
|
1622
|
+
# The name of the AgentCore Runtime endpoint to delete.
|
1564
1623
|
# @return [String]
|
1565
1624
|
#
|
1566
1625
|
# @!attribute [rw] client_token
|
@@ -1582,7 +1641,7 @@ module Aws::BedrockAgentCoreControl
|
|
1582
1641
|
end
|
1583
1642
|
|
1584
1643
|
# @!attribute [rw] status
|
1585
|
-
# The current status of the
|
1644
|
+
# The current status of the AgentCore Runtime endpoint deletion.
|
1586
1645
|
# @return [String]
|
1587
1646
|
#
|
1588
1647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -1594,7 +1653,7 @@ module Aws::BedrockAgentCoreControl
|
|
1594
1653
|
end
|
1595
1654
|
|
1596
1655
|
# @!attribute [rw] agent_runtime_id
|
1597
|
-
# The unique identifier of the
|
1656
|
+
# The unique identifier of the AgentCore Runtime to delete.
|
1598
1657
|
# @return [String]
|
1599
1658
|
#
|
1600
1659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeRequest AWS API Documentation
|
@@ -1606,7 +1665,7 @@ module Aws::BedrockAgentCoreControl
|
|
1606
1665
|
end
|
1607
1666
|
|
1608
1667
|
# @!attribute [rw] status
|
1609
|
-
# The current status of the
|
1668
|
+
# The current status of the AgentCore Runtime deletion.
|
1610
1669
|
# @return [String]
|
1611
1670
|
#
|
1612
1671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeResponse AWS API Documentation
|
@@ -1720,8 +1779,7 @@ module Aws::BedrockAgentCoreControl
|
|
1720
1779
|
end
|
1721
1780
|
|
1722
1781
|
# @!attribute [rw] gateway_identifier
|
1723
|
-
# The identifier of the gateway to delete.
|
1724
|
-
# gateway ID or the gateway ARN.
|
1782
|
+
# The identifier of the gateway to delete.
|
1725
1783
|
# @return [String]
|
1726
1784
|
#
|
1727
1785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayRequest AWS API Documentation
|
@@ -1733,15 +1791,15 @@ module Aws::BedrockAgentCoreControl
|
|
1733
1791
|
end
|
1734
1792
|
|
1735
1793
|
# @!attribute [rw] gateway_id
|
1736
|
-
# The unique identifier of the deleted
|
1794
|
+
# The unique identifier of the deleted gateway.
|
1737
1795
|
# @return [String]
|
1738
1796
|
#
|
1739
1797
|
# @!attribute [rw] status
|
1740
|
-
# The current status of the
|
1798
|
+
# The current status of the gateway deletion.
|
1741
1799
|
# @return [String]
|
1742
1800
|
#
|
1743
1801
|
# @!attribute [rw] status_reasons
|
1744
|
-
# The reasons for the current status of the
|
1802
|
+
# The reasons for the current status of the gateway deletion.
|
1745
1803
|
# @return [Array<String>]
|
1746
1804
|
#
|
1747
1805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayResponse AWS API Documentation
|
@@ -1755,11 +1813,11 @@ module Aws::BedrockAgentCoreControl
|
|
1755
1813
|
end
|
1756
1814
|
|
1757
1815
|
# @!attribute [rw] gateway_identifier
|
1758
|
-
# The unique identifier of the
|
1816
|
+
# The unique identifier of the gateway associated with the target.
|
1759
1817
|
# @return [String]
|
1760
1818
|
#
|
1761
1819
|
# @!attribute [rw] target_id
|
1762
|
-
# The unique identifier of the
|
1820
|
+
# The unique identifier of the gateway target to delete.
|
1763
1821
|
# @return [String]
|
1764
1822
|
#
|
1765
1823
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayTargetRequest AWS API Documentation
|
@@ -1772,19 +1830,19 @@ module Aws::BedrockAgentCoreControl
|
|
1772
1830
|
end
|
1773
1831
|
|
1774
1832
|
# @!attribute [rw] gateway_arn
|
1775
|
-
# The Amazon Resource Name (ARN) of the
|
1833
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
1776
1834
|
# @return [String]
|
1777
1835
|
#
|
1778
1836
|
# @!attribute [rw] target_id
|
1779
|
-
# The unique identifier of the deleted
|
1837
|
+
# The unique identifier of the deleted gateway target.
|
1780
1838
|
# @return [String]
|
1781
1839
|
#
|
1782
1840
|
# @!attribute [rw] status
|
1783
|
-
# The current status of the
|
1841
|
+
# The current status of the gateway target deletion.
|
1784
1842
|
# @return [String]
|
1785
1843
|
#
|
1786
1844
|
# @!attribute [rw] status_reasons
|
1787
|
-
# The reasons for the current status of the
|
1845
|
+
# The reasons for the current status of the gateway target deletion.
|
1788
1846
|
# @return [Array<String>]
|
1789
1847
|
#
|
1790
1848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteGatewayTargetResponse AWS API Documentation
|
@@ -1821,11 +1879,11 @@ module Aws::BedrockAgentCoreControl
|
|
1821
1879
|
end
|
1822
1880
|
|
1823
1881
|
# @!attribute [rw] memory_id
|
1824
|
-
# The unique identifier of the deleted
|
1882
|
+
# The unique identifier of the deleted AgentCore Memory resource.
|
1825
1883
|
# @return [String]
|
1826
1884
|
#
|
1827
1885
|
# @!attribute [rw] status
|
1828
|
-
# The current status of the
|
1886
|
+
# The current status of the AgentCore Memory resource deletion.
|
1829
1887
|
# @return [String]
|
1830
1888
|
#
|
1831
1889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteMemoryOutput AWS API Documentation
|
@@ -1993,12 +2051,12 @@ module Aws::BedrockAgentCoreControl
|
|
1993
2051
|
end
|
1994
2052
|
|
1995
2053
|
# @!attribute [rw] agent_runtime_id
|
1996
|
-
# The unique identifier of the
|
2054
|
+
# The unique identifier of the AgentCore Runtime associated with the
|
1997
2055
|
# endpoint.
|
1998
2056
|
# @return [String]
|
1999
2057
|
#
|
2000
2058
|
# @!attribute [rw] endpoint_name
|
2001
|
-
# The name of the
|
2059
|
+
# The name of the AgentCore Runtime endpoint to retrieve.
|
2002
2060
|
# @return [String]
|
2003
2061
|
#
|
2004
2062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeEndpointRequest AWS API Documentation
|
@@ -2011,48 +2069,49 @@ module Aws::BedrockAgentCoreControl
|
|
2011
2069
|
end
|
2012
2070
|
|
2013
2071
|
# @!attribute [rw] live_version
|
2014
|
-
# The currently deployed version of the
|
2072
|
+
# The currently deployed version of the AgentCore Runtime on the
|
2073
|
+
# endpoint.
|
2015
2074
|
# @return [String]
|
2016
2075
|
#
|
2017
2076
|
# @!attribute [rw] target_version
|
2018
|
-
# The target version of the
|
2077
|
+
# The target version of the AgentCore Runtime for the endpoint.
|
2019
2078
|
# @return [String]
|
2020
2079
|
#
|
2021
2080
|
# @!attribute [rw] agent_runtime_endpoint_arn
|
2022
|
-
# The Amazon Resource Name (ARN) of the
|
2081
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.
|
2023
2082
|
# @return [String]
|
2024
2083
|
#
|
2025
2084
|
# @!attribute [rw] agent_runtime_arn
|
2026
|
-
# The Amazon Resource Name (ARN) of the
|
2085
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
2027
2086
|
# @return [String]
|
2028
2087
|
#
|
2029
2088
|
# @!attribute [rw] description
|
2030
|
-
# The description of the
|
2089
|
+
# The description of the AgentCore Runtime endpoint.
|
2031
2090
|
# @return [String]
|
2032
2091
|
#
|
2033
2092
|
# @!attribute [rw] status
|
2034
|
-
# The current status of the
|
2093
|
+
# The current status of the AgentCore Runtime endpoint.
|
2035
2094
|
# @return [String]
|
2036
2095
|
#
|
2037
2096
|
# @!attribute [rw] created_at
|
2038
|
-
# The timestamp when the
|
2097
|
+
# The timestamp when the AgentCore Runtime endpoint was created.
|
2039
2098
|
# @return [Time]
|
2040
2099
|
#
|
2041
2100
|
# @!attribute [rw] last_updated_at
|
2042
|
-
# The timestamp when the
|
2101
|
+
# The timestamp when the AgentCore Runtime endpoint was last updated.
|
2043
2102
|
# @return [Time]
|
2044
2103
|
#
|
2045
2104
|
# @!attribute [rw] failure_reason
|
2046
|
-
# The reason for failure if the
|
2047
|
-
# state.
|
2105
|
+
# The reason for failure if the AgentCore Runtime endpoint is in a
|
2106
|
+
# failed state.
|
2048
2107
|
# @return [String]
|
2049
2108
|
#
|
2050
2109
|
# @!attribute [rw] name
|
2051
|
-
# The name of the
|
2110
|
+
# The name of the AgentCore Runtime endpoint.
|
2052
2111
|
# @return [String]
|
2053
2112
|
#
|
2054
2113
|
# @!attribute [rw] id
|
2055
|
-
# The unique identifier of the
|
2114
|
+
# The unique identifier of the AgentCore Runtime endpoint.
|
2056
2115
|
# @return [String]
|
2057
2116
|
#
|
2058
2117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -2074,11 +2133,11 @@ module Aws::BedrockAgentCoreControl
|
|
2074
2133
|
end
|
2075
2134
|
|
2076
2135
|
# @!attribute [rw] agent_runtime_id
|
2077
|
-
# The unique identifier of the
|
2136
|
+
# The unique identifier of the AgentCore Runtime to retrieve.
|
2078
2137
|
# @return [String]
|
2079
2138
|
#
|
2080
2139
|
# @!attribute [rw] agent_runtime_version
|
2081
|
-
# The version of the
|
2140
|
+
# The version of the AgentCore Runtime to retrieve.
|
2082
2141
|
# @return [String]
|
2083
2142
|
#
|
2084
2143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeRequest AWS API Documentation
|
@@ -2091,47 +2150,48 @@ module Aws::BedrockAgentCoreControl
|
|
2091
2150
|
end
|
2092
2151
|
|
2093
2152
|
# @!attribute [rw] agent_runtime_arn
|
2094
|
-
# The Amazon Resource Name (ARN) of the
|
2153
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
2095
2154
|
# @return [String]
|
2096
2155
|
#
|
2097
2156
|
# @!attribute [rw] workload_identity_details
|
2098
|
-
# The workload identity details for the
|
2157
|
+
# The workload identity details for the AgentCore Runtime.
|
2099
2158
|
# @return [Types::WorkloadIdentityDetails]
|
2100
2159
|
#
|
2101
2160
|
# @!attribute [rw] agent_runtime_name
|
2102
|
-
# The name of the
|
2161
|
+
# The name of the AgentCore Runtime.
|
2103
2162
|
# @return [String]
|
2104
2163
|
#
|
2105
2164
|
# @!attribute [rw] description
|
2106
|
-
# The description of the
|
2165
|
+
# The description of the AgentCore Runtime.
|
2107
2166
|
# @return [String]
|
2108
2167
|
#
|
2109
2168
|
# @!attribute [rw] agent_runtime_id
|
2110
|
-
# The unique identifier of the
|
2169
|
+
# The unique identifier of the AgentCore Runtime.
|
2111
2170
|
# @return [String]
|
2112
2171
|
#
|
2113
2172
|
# @!attribute [rw] agent_runtime_version
|
2114
|
-
# The version of the
|
2173
|
+
# The version of the AgentCore Runtime.
|
2115
2174
|
# @return [String]
|
2116
2175
|
#
|
2117
2176
|
# @!attribute [rw] created_at
|
2118
|
-
# The timestamp when the
|
2177
|
+
# The timestamp when the AgentCore Runtime was created.
|
2119
2178
|
# @return [Time]
|
2120
2179
|
#
|
2121
2180
|
# @!attribute [rw] last_updated_at
|
2122
|
-
# The timestamp when the
|
2181
|
+
# The timestamp when the AgentCore Runtime was last updated.
|
2123
2182
|
# @return [Time]
|
2124
2183
|
#
|
2125
2184
|
# @!attribute [rw] role_arn
|
2126
|
-
# The IAM role ARN that provides permissions for the
|
2185
|
+
# The IAM role ARN that provides permissions for the AgentCore
|
2186
|
+
# Runtime.
|
2127
2187
|
# @return [String]
|
2128
2188
|
#
|
2129
2189
|
# @!attribute [rw] agent_runtime_artifact
|
2130
|
-
# The artifact of the
|
2131
|
-
# @return [Types::
|
2190
|
+
# The artifact of the AgentCore Runtime.
|
2191
|
+
# @return [Types::AgentRuntimeArtifact]
|
2132
2192
|
#
|
2133
2193
|
# @!attribute [rw] network_configuration
|
2134
|
-
# The network configuration for the
|
2194
|
+
# The network configuration for the AgentCore Runtime.
|
2135
2195
|
# @return [Types::NetworkConfiguration]
|
2136
2196
|
#
|
2137
2197
|
# @!attribute [rw] protocol_configuration
|
@@ -2140,15 +2200,20 @@ module Aws::BedrockAgentCoreControl
|
|
2140
2200
|
# @return [Types::ProtocolConfiguration]
|
2141
2201
|
#
|
2142
2202
|
# @!attribute [rw] environment_variables
|
2143
|
-
# Environment variables set in the
|
2203
|
+
# Environment variables set in the AgentCore Runtime environment.
|
2144
2204
|
# @return [Hash<String,String>]
|
2145
2205
|
#
|
2146
2206
|
# @!attribute [rw] authorizer_configuration
|
2147
|
-
# The authorizer configuration for the
|
2207
|
+
# The authorizer configuration for the AgentCore Runtime.
|
2148
2208
|
# @return [Types::AuthorizerConfiguration]
|
2149
2209
|
#
|
2210
|
+
# @!attribute [rw] request_header_configuration
|
2211
|
+
# Configuration for HTTP request headers that will be passed through
|
2212
|
+
# to the runtime.
|
2213
|
+
# @return [Types::RequestHeaderConfiguration]
|
2214
|
+
#
|
2150
2215
|
# @!attribute [rw] status
|
2151
|
-
# The current status of the
|
2216
|
+
# The current status of the AgentCore Runtime.
|
2152
2217
|
# @return [String]
|
2153
2218
|
#
|
2154
2219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetAgentRuntimeResponse AWS API Documentation
|
@@ -2168,6 +2233,7 @@ module Aws::BedrockAgentCoreControl
|
|
2168
2233
|
:protocol_configuration,
|
2169
2234
|
:environment_variables,
|
2170
2235
|
:authorizer_configuration,
|
2236
|
+
:request_header_configuration,
|
2171
2237
|
:status)
|
2172
2238
|
SENSITIVE = [:description, :environment_variables]
|
2173
2239
|
include Aws::Structure
|
@@ -2264,6 +2330,10 @@ module Aws::BedrockAgentCoreControl
|
|
2264
2330
|
# The current status of the browser.
|
2265
2331
|
# @return [String]
|
2266
2332
|
#
|
2333
|
+
# @!attribute [rw] failure_reason
|
2334
|
+
# The reason for failure if the browser is in a failed state.
|
2335
|
+
# @return [String]
|
2336
|
+
#
|
2267
2337
|
# @!attribute [rw] created_at
|
2268
2338
|
# The timestamp when the browser was created.
|
2269
2339
|
# @return [Time]
|
@@ -2283,6 +2353,7 @@ module Aws::BedrockAgentCoreControl
|
|
2283
2353
|
:network_configuration,
|
2284
2354
|
:recording,
|
2285
2355
|
:status,
|
2356
|
+
:failure_reason,
|
2286
2357
|
:created_at,
|
2287
2358
|
:last_updated_at)
|
2288
2359
|
SENSITIVE = [:description]
|
@@ -2330,6 +2401,10 @@ module Aws::BedrockAgentCoreControl
|
|
2330
2401
|
# The current status of the code interpreter.
|
2331
2402
|
# @return [String]
|
2332
2403
|
#
|
2404
|
+
# @!attribute [rw] failure_reason
|
2405
|
+
# The reason for failure if the code interpreter is in a failed state.
|
2406
|
+
# @return [String]
|
2407
|
+
#
|
2333
2408
|
# @!attribute [rw] created_at
|
2334
2409
|
# The timestamp when the code interpreter was created.
|
2335
2410
|
# @return [Time]
|
@@ -2348,6 +2423,7 @@ module Aws::BedrockAgentCoreControl
|
|
2348
2423
|
:execution_role_arn,
|
2349
2424
|
:network_configuration,
|
2350
2425
|
:status,
|
2426
|
+
:failure_reason,
|
2351
2427
|
:created_at,
|
2352
2428
|
:last_updated_at)
|
2353
2429
|
SENSITIVE = [:description]
|
@@ -2355,8 +2431,7 @@ module Aws::BedrockAgentCoreControl
|
|
2355
2431
|
end
|
2356
2432
|
|
2357
2433
|
# @!attribute [rw] gateway_identifier
|
2358
|
-
# The identifier of the gateway to retrieve.
|
2359
|
-
# gateway ID or the gateway ARN.
|
2434
|
+
# The identifier of the gateway to retrieve.
|
2360
2435
|
# @return [String]
|
2361
2436
|
#
|
2362
2437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayRequest AWS API Documentation
|
@@ -2368,47 +2443,47 @@ module Aws::BedrockAgentCoreControl
|
|
2368
2443
|
end
|
2369
2444
|
|
2370
2445
|
# @!attribute [rw] gateway_arn
|
2371
|
-
# The Amazon Resource Name (ARN) of the
|
2446
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
2372
2447
|
# @return [String]
|
2373
2448
|
#
|
2374
2449
|
# @!attribute [rw] gateway_id
|
2375
|
-
# The unique identifier of the
|
2450
|
+
# The unique identifier of the gateway.
|
2376
2451
|
# @return [String]
|
2377
2452
|
#
|
2378
2453
|
# @!attribute [rw] gateway_url
|
2379
|
-
# An endpoint for invoking
|
2454
|
+
# An endpoint for invoking gateway.
|
2380
2455
|
# @return [String]
|
2381
2456
|
#
|
2382
2457
|
# @!attribute [rw] created_at
|
2383
|
-
# The timestamp when the
|
2458
|
+
# The timestamp when the gateway was created.
|
2384
2459
|
# @return [Time]
|
2385
2460
|
#
|
2386
2461
|
# @!attribute [rw] updated_at
|
2387
|
-
# The timestamp when the
|
2462
|
+
# The timestamp when the gateway was last updated.
|
2388
2463
|
# @return [Time]
|
2389
2464
|
#
|
2390
2465
|
# @!attribute [rw] status
|
2391
|
-
# The current status of the
|
2466
|
+
# The current status of the gateway.
|
2392
2467
|
# @return [String]
|
2393
2468
|
#
|
2394
2469
|
# @!attribute [rw] status_reasons
|
2395
|
-
# The reasons for the current status of the
|
2470
|
+
# The reasons for the current status of the gateway.
|
2396
2471
|
# @return [Array<String>]
|
2397
2472
|
#
|
2398
2473
|
# @!attribute [rw] name
|
2399
|
-
# The name of the
|
2474
|
+
# The name of the gateway.
|
2400
2475
|
# @return [String]
|
2401
2476
|
#
|
2402
2477
|
# @!attribute [rw] description
|
2403
|
-
# The description of the
|
2478
|
+
# The description of the gateway.
|
2404
2479
|
# @return [String]
|
2405
2480
|
#
|
2406
2481
|
# @!attribute [rw] role_arn
|
2407
|
-
# The IAM role ARN that provides permissions for the
|
2482
|
+
# The IAM role ARN that provides permissions for the gateway.
|
2408
2483
|
# @return [String]
|
2409
2484
|
#
|
2410
2485
|
# @!attribute [rw] protocol_type
|
2411
|
-
# Protocol applied to a
|
2486
|
+
# Protocol applied to a gateway.
|
2412
2487
|
# @return [String]
|
2413
2488
|
#
|
2414
2489
|
# @!attribute [rw] protocol_configuration
|
@@ -2421,22 +2496,27 @@ module Aws::BedrockAgentCoreControl
|
|
2421
2496
|
# @return [String]
|
2422
2497
|
#
|
2423
2498
|
# @!attribute [rw] authorizer_configuration
|
2424
|
-
# The authorizer configuration for the
|
2499
|
+
# The authorizer configuration for the gateway.
|
2425
2500
|
# @return [Types::AuthorizerConfiguration]
|
2426
2501
|
#
|
2427
2502
|
# @!attribute [rw] kms_key_arn
|
2428
|
-
# The ARN of the KMS key used to encrypt the
|
2503
|
+
# The Amazon Resource Name (ARN) of the KMS key used to encrypt the
|
2504
|
+
# gateway.
|
2429
2505
|
# @return [String]
|
2430
2506
|
#
|
2431
2507
|
# @!attribute [rw] workload_identity_details
|
2432
|
-
# The workload identity details for the
|
2508
|
+
# The workload identity details for the gateway.
|
2433
2509
|
# @return [Types::WorkloadIdentityDetails]
|
2434
2510
|
#
|
2435
2511
|
# @!attribute [rw] exception_level
|
2436
|
-
# The
|
2437
|
-
#
|
2438
|
-
#
|
2439
|
-
#
|
2512
|
+
# The level of detail in error messages returned when invoking the
|
2513
|
+
# gateway.
|
2514
|
+
#
|
2515
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
2516
|
+
# to help a user debug the gateway.
|
2517
|
+
#
|
2518
|
+
# * If the value is omitted, a generic error message is returned to
|
2519
|
+
# the end user.
|
2440
2520
|
# @return [String]
|
2441
2521
|
#
|
2442
2522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayResponse AWS API Documentation
|
@@ -2464,8 +2544,7 @@ module Aws::BedrockAgentCoreControl
|
|
2464
2544
|
end
|
2465
2545
|
|
2466
2546
|
# @!attribute [rw] gateway_identifier
|
2467
|
-
# The identifier of the gateway that contains the target.
|
2468
|
-
# either the gateway ID or the gateway ARN.
|
2547
|
+
# The identifier of the gateway that contains the target.
|
2469
2548
|
# @return [String]
|
2470
2549
|
#
|
2471
2550
|
# @!attribute [rw] target_id
|
@@ -2482,35 +2561,35 @@ module Aws::BedrockAgentCoreControl
|
|
2482
2561
|
end
|
2483
2562
|
|
2484
2563
|
# @!attribute [rw] gateway_arn
|
2485
|
-
# The Amazon Resource Name (ARN) of the
|
2564
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
2486
2565
|
# @return [String]
|
2487
2566
|
#
|
2488
2567
|
# @!attribute [rw] target_id
|
2489
|
-
# The unique identifier of the
|
2568
|
+
# The unique identifier of the gateway target.
|
2490
2569
|
# @return [String]
|
2491
2570
|
#
|
2492
2571
|
# @!attribute [rw] created_at
|
2493
|
-
# The timestamp when the
|
2572
|
+
# The timestamp when the gateway target was created.
|
2494
2573
|
# @return [Time]
|
2495
2574
|
#
|
2496
2575
|
# @!attribute [rw] updated_at
|
2497
|
-
# The timestamp when the
|
2576
|
+
# The timestamp when the gateway target was last updated.
|
2498
2577
|
# @return [Time]
|
2499
2578
|
#
|
2500
2579
|
# @!attribute [rw] status
|
2501
|
-
# The current status of the
|
2580
|
+
# The current status of the gateway target.
|
2502
2581
|
# @return [String]
|
2503
2582
|
#
|
2504
2583
|
# @!attribute [rw] status_reasons
|
2505
|
-
# The reasons for the current status of the
|
2584
|
+
# The reasons for the current status of the gateway target.
|
2506
2585
|
# @return [Array<String>]
|
2507
2586
|
#
|
2508
2587
|
# @!attribute [rw] name
|
2509
|
-
# The name of the
|
2588
|
+
# The name of the gateway target.
|
2510
2589
|
# @return [String]
|
2511
2590
|
#
|
2512
2591
|
# @!attribute [rw] description
|
2513
|
-
# The description of the
|
2592
|
+
# The description of the gateway target.
|
2514
2593
|
# @return [String]
|
2515
2594
|
#
|
2516
2595
|
# @!attribute [rw] target_configuration
|
@@ -2519,7 +2598,7 @@ module Aws::BedrockAgentCoreControl
|
|
2519
2598
|
# @return [Types::TargetConfiguration]
|
2520
2599
|
#
|
2521
2600
|
# @!attribute [rw] credential_provider_configurations
|
2522
|
-
# The credential provider configurations for the
|
2601
|
+
# The credential provider configurations for the gateway target.
|
2523
2602
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
2524
2603
|
#
|
2525
2604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
|
@@ -2552,7 +2631,7 @@ module Aws::BedrockAgentCoreControl
|
|
2552
2631
|
end
|
2553
2632
|
|
2554
2633
|
# @!attribute [rw] memory
|
2555
|
-
# The retrieved
|
2634
|
+
# The retrieved AgentCore Memory resource details.
|
2556
2635
|
# @return [Types::Memory]
|
2557
2636
|
#
|
2558
2637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetMemoryOutput AWS API Documentation
|
@@ -2797,7 +2876,8 @@ module Aws::BedrockAgentCoreControl
|
|
2797
2876
|
end
|
2798
2877
|
|
2799
2878
|
# @!attribute [rw] agent_runtime_id
|
2800
|
-
# The unique identifier of the
|
2879
|
+
# The unique identifier of the AgentCore Runtime to list endpoints
|
2880
|
+
# for.
|
2801
2881
|
# @return [String]
|
2802
2882
|
#
|
2803
2883
|
# @!attribute [rw] max_results
|
@@ -2819,8 +2899,8 @@ module Aws::BedrockAgentCoreControl
|
|
2819
2899
|
end
|
2820
2900
|
|
2821
2901
|
# @!attribute [rw] runtime_endpoints
|
2822
|
-
# The list of
|
2823
|
-
# @return [Array<Types::
|
2902
|
+
# The list of AgentCore Runtime endpoints.
|
2903
|
+
# @return [Array<Types::AgentRuntimeEndpoint>]
|
2824
2904
|
#
|
2825
2905
|
# @!attribute [rw] next_token
|
2826
2906
|
# A token to retrieve the next page of results.
|
@@ -2836,7 +2916,7 @@ module Aws::BedrockAgentCoreControl
|
|
2836
2916
|
end
|
2837
2917
|
|
2838
2918
|
# @!attribute [rw] agent_runtime_id
|
2839
|
-
# The unique identifier of the
|
2919
|
+
# The unique identifier of the AgentCore Runtime to list versions for.
|
2840
2920
|
# @return [String]
|
2841
2921
|
#
|
2842
2922
|
# @!attribute [rw] max_results
|
@@ -2858,8 +2938,8 @@ module Aws::BedrockAgentCoreControl
|
|
2858
2938
|
end
|
2859
2939
|
|
2860
2940
|
# @!attribute [rw] agent_runtimes
|
2861
|
-
# The list of
|
2862
|
-
# @return [Array<Types::
|
2941
|
+
# The list of AgentCore Runtime versions.
|
2942
|
+
# @return [Array<Types::AgentRuntime>]
|
2863
2943
|
#
|
2864
2944
|
# @!attribute [rw] next_token
|
2865
2945
|
# A token to retrieve the next page of results.
|
@@ -2892,8 +2972,8 @@ module Aws::BedrockAgentCoreControl
|
|
2892
2972
|
end
|
2893
2973
|
|
2894
2974
|
# @!attribute [rw] agent_runtimes
|
2895
|
-
# The list of
|
2896
|
-
# @return [Array<Types::
|
2975
|
+
# The list of AgentCore Runtime resources.
|
2976
|
+
# @return [Array<Types::AgentRuntime>]
|
2897
2977
|
#
|
2898
2978
|
# @!attribute [rw] next_token
|
2899
2979
|
# A token to retrieve the next page of results.
|
@@ -3025,19 +3105,21 @@ module Aws::BedrockAgentCoreControl
|
|
3025
3105
|
end
|
3026
3106
|
|
3027
3107
|
# @!attribute [rw] gateway_identifier
|
3028
|
-
# The identifier of the gateway to list targets for.
|
3029
|
-
# either the gateway ID or the gateway ARN.
|
3108
|
+
# The identifier of the gateway to list targets for.
|
3030
3109
|
# @return [String]
|
3031
3110
|
#
|
3032
3111
|
# @!attribute [rw] max_results
|
3033
|
-
# The maximum number of results to return in
|
3034
|
-
#
|
3112
|
+
# The maximum number of results to return in the response. If the
|
3113
|
+
# total number of results is greater than this value, use the token
|
3114
|
+
# returned in the response in the `nextToken` field when making
|
3115
|
+
# another request to return the next batch of results.
|
3035
3116
|
# @return [Integer]
|
3036
3117
|
#
|
3037
3118
|
# @!attribute [rw] next_token
|
3038
|
-
#
|
3039
|
-
#
|
3040
|
-
#
|
3119
|
+
# If the total number of results is greater than the `maxResults`
|
3120
|
+
# value provided in the request, enter the token returned in the
|
3121
|
+
# `nextToken` field in the response in this field to return the next
|
3122
|
+
# batch of results.
|
3041
3123
|
# @return [String]
|
3042
3124
|
#
|
3043
3125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargetsRequest AWS API Documentation
|
@@ -3051,11 +3133,14 @@ module Aws::BedrockAgentCoreControl
|
|
3051
3133
|
end
|
3052
3134
|
|
3053
3135
|
# @!attribute [rw] items
|
3054
|
-
# The list of
|
3136
|
+
# The list of gateway target summaries.
|
3055
3137
|
# @return [Array<Types::TargetSummary>]
|
3056
3138
|
#
|
3057
3139
|
# @!attribute [rw] next_token
|
3058
|
-
#
|
3140
|
+
# If the total number of results is greater than the `maxResults`
|
3141
|
+
# value provided in the request, use this token when making another
|
3142
|
+
# request in the `nextToken` field to return the next batch of
|
3143
|
+
# results.
|
3059
3144
|
# @return [String]
|
3060
3145
|
#
|
3061
3146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewayTargetsResponse AWS API Documentation
|
@@ -3068,14 +3153,17 @@ module Aws::BedrockAgentCoreControl
|
|
3068
3153
|
end
|
3069
3154
|
|
3070
3155
|
# @!attribute [rw] max_results
|
3071
|
-
# The maximum number of results to return in
|
3072
|
-
#
|
3156
|
+
# The maximum number of results to return in the response. If the
|
3157
|
+
# total number of results is greater than this value, use the token
|
3158
|
+
# returned in the response in the `nextToken` field when making
|
3159
|
+
# another request to return the next batch of results.
|
3073
3160
|
# @return [Integer]
|
3074
3161
|
#
|
3075
3162
|
# @!attribute [rw] next_token
|
3076
|
-
#
|
3077
|
-
#
|
3078
|
-
#
|
3163
|
+
# If the total number of results is greater than the `maxResults`
|
3164
|
+
# value provided in the request, enter the token returned in the
|
3165
|
+
# `nextToken` field in the response in this field to return the next
|
3166
|
+
# batch of results.
|
3079
3167
|
# @return [String]
|
3080
3168
|
#
|
3081
3169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewaysRequest AWS API Documentation
|
@@ -3088,11 +3176,14 @@ module Aws::BedrockAgentCoreControl
|
|
3088
3176
|
end
|
3089
3177
|
|
3090
3178
|
# @!attribute [rw] items
|
3091
|
-
# The list of
|
3179
|
+
# The list of gateway summaries.
|
3092
3180
|
# @return [Array<Types::GatewaySummary>]
|
3093
3181
|
#
|
3094
3182
|
# @!attribute [rw] next_token
|
3095
|
-
#
|
3183
|
+
# If the total number of results is greater than the `maxResults`
|
3184
|
+
# value provided in the request, use this token when making another
|
3185
|
+
# request in the `nextToken` field to return the next batch of
|
3186
|
+
# results.
|
3096
3187
|
# @return [String]
|
3097
3188
|
#
|
3098
3189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListGatewaysResponse AWS API Documentation
|
@@ -3125,7 +3216,7 @@ module Aws::BedrockAgentCoreControl
|
|
3125
3216
|
end
|
3126
3217
|
|
3127
3218
|
# @!attribute [rw] memories
|
3128
|
-
# The list of
|
3219
|
+
# The list of AgentCore Memory resource summaries.
|
3129
3220
|
# @return [Array<Types::MemorySummary>]
|
3130
3221
|
#
|
3131
3222
|
# @!attribute [rw] next_token
|
@@ -3175,6 +3266,31 @@ module Aws::BedrockAgentCoreControl
|
|
3175
3266
|
include Aws::Structure
|
3176
3267
|
end
|
3177
3268
|
|
3269
|
+
# @!attribute [rw] resource_arn
|
3270
|
+
# The Amazon Resource Name (ARN) of the resource for which you want to
|
3271
|
+
# list tags.
|
3272
|
+
# @return [String]
|
3273
|
+
#
|
3274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListTagsForResourceRequest AWS API Documentation
|
3275
|
+
#
|
3276
|
+
class ListTagsForResourceRequest < Struct.new(
|
3277
|
+
:resource_arn)
|
3278
|
+
SENSITIVE = []
|
3279
|
+
include Aws::Structure
|
3280
|
+
end
|
3281
|
+
|
3282
|
+
# @!attribute [rw] tags
|
3283
|
+
# The tags associated with the resource.
|
3284
|
+
# @return [Hash<String,String>]
|
3285
|
+
#
|
3286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListTagsForResourceResponse AWS API Documentation
|
3287
|
+
#
|
3288
|
+
class ListTagsForResourceResponse < Struct.new(
|
3289
|
+
:tags)
|
3290
|
+
SENSITIVE = []
|
3291
|
+
include Aws::Structure
|
3292
|
+
end
|
3293
|
+
|
3178
3294
|
# @!attribute [rw] next_token
|
3179
3295
|
# Pagination token.
|
3180
3296
|
# @return [String]
|
@@ -3648,13 +3764,18 @@ module Aws::BedrockAgentCoreControl
|
|
3648
3764
|
# SecurityConfig for the Agent.
|
3649
3765
|
#
|
3650
3766
|
# @!attribute [rw] network_mode
|
3651
|
-
# The network mode for the
|
3767
|
+
# The network mode for the AgentCore Runtime.
|
3652
3768
|
# @return [String]
|
3653
3769
|
#
|
3770
|
+
# @!attribute [rw] network_mode_config
|
3771
|
+
# The network mode configuration for the AgentCore Runtime.
|
3772
|
+
# @return [Types::VpcConfig]
|
3773
|
+
#
|
3654
3774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/NetworkConfiguration AWS API Documentation
|
3655
3775
|
#
|
3656
3776
|
class NetworkConfiguration < Struct.new(
|
3657
|
-
:network_mode
|
3777
|
+
:network_mode,
|
3778
|
+
:network_mode_config)
|
3658
3779
|
SENSITIVE = []
|
3659
3780
|
include Aws::Structure
|
3660
3781
|
end
|
@@ -3921,6 +4042,31 @@ module Aws::BedrockAgentCoreControl
|
|
3921
4042
|
include Aws::Structure
|
3922
4043
|
end
|
3923
4044
|
|
4045
|
+
# Configuration for HTTP request headers that will be passed through to
|
4046
|
+
# the runtime.
|
4047
|
+
#
|
4048
|
+
# @note RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
|
4049
|
+
#
|
4050
|
+
# @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.
|
4051
|
+
#
|
4052
|
+
# @!attribute [rw] request_header_allowlist
|
4053
|
+
# A list of HTTP request headers that are allowed to be passed through
|
4054
|
+
# to the runtime.
|
4055
|
+
# @return [Array<String>]
|
4056
|
+
#
|
4057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RequestHeaderConfiguration AWS API Documentation
|
4058
|
+
#
|
4059
|
+
class RequestHeaderConfiguration < Struct.new(
|
4060
|
+
:request_header_allowlist,
|
4061
|
+
:unknown)
|
4062
|
+
SENSITIVE = []
|
4063
|
+
include Aws::Structure
|
4064
|
+
include Aws::Structure::Union
|
4065
|
+
|
4066
|
+
class RequestHeaderAllowlist < RequestHeaderConfiguration; end
|
4067
|
+
class Unknown < RequestHeaderConfiguration; end
|
4068
|
+
end
|
4069
|
+
|
3924
4070
|
# Exception thrown when a resource limit is exceeded.
|
3925
4071
|
#
|
3926
4072
|
# @!attribute [rw] message
|
@@ -4401,6 +4547,27 @@ module Aws::BedrockAgentCoreControl
|
|
4401
4547
|
include Aws::Structure
|
4402
4548
|
end
|
4403
4549
|
|
4550
|
+
# @!attribute [rw] resource_arn
|
4551
|
+
# The Amazon Resource Name (ARN) of the resource that you want to tag.
|
4552
|
+
# @return [String]
|
4553
|
+
#
|
4554
|
+
# @!attribute [rw] tags
|
4555
|
+
# The tags to add to the resource. A tag is a key-value pair.
|
4556
|
+
# @return [Hash<String,String>]
|
4557
|
+
#
|
4558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TagResourceRequest AWS API Documentation
|
4559
|
+
#
|
4560
|
+
class TagResourceRequest < Struct.new(
|
4561
|
+
:resource_arn,
|
4562
|
+
:tags)
|
4563
|
+
SENSITIVE = []
|
4564
|
+
include Aws::Structure
|
4565
|
+
end
|
4566
|
+
|
4567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/TagResourceResponse AWS API Documentation
|
4568
|
+
#
|
4569
|
+
class TagResourceResponse < Aws::EmptyStructure; end
|
4570
|
+
|
4404
4571
|
# The configuration for a gateway target. This structure defines how the
|
4405
4572
|
# gateway connects to and interacts with the target endpoint.
|
4406
4573
|
#
|
@@ -4573,21 +4740,43 @@ module Aws::BedrockAgentCoreControl
|
|
4573
4740
|
include Aws::Structure
|
4574
4741
|
end
|
4575
4742
|
|
4743
|
+
# @!attribute [rw] resource_arn
|
4744
|
+
# The Amazon Resource Name (ARN) of the resource that you want to
|
4745
|
+
# untag.
|
4746
|
+
# @return [String]
|
4747
|
+
#
|
4748
|
+
# @!attribute [rw] tag_keys
|
4749
|
+
# The tag keys of the tags to remove from the resource.
|
4750
|
+
# @return [Array<String>]
|
4751
|
+
#
|
4752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UntagResourceRequest AWS API Documentation
|
4753
|
+
#
|
4754
|
+
class UntagResourceRequest < Struct.new(
|
4755
|
+
:resource_arn,
|
4756
|
+
:tag_keys)
|
4757
|
+
SENSITIVE = []
|
4758
|
+
include Aws::Structure
|
4759
|
+
end
|
4760
|
+
|
4761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UntagResourceResponse AWS API Documentation
|
4762
|
+
#
|
4763
|
+
class UntagResourceResponse < Aws::EmptyStructure; end
|
4764
|
+
|
4576
4765
|
# @!attribute [rw] agent_runtime_id
|
4577
|
-
# The unique identifier of the
|
4766
|
+
# The unique identifier of the AgentCore Runtime associated with the
|
4578
4767
|
# endpoint.
|
4579
4768
|
# @return [String]
|
4580
4769
|
#
|
4581
4770
|
# @!attribute [rw] endpoint_name
|
4582
|
-
# The name of the
|
4771
|
+
# The name of the AgentCore Runtime endpoint to update.
|
4583
4772
|
# @return [String]
|
4584
4773
|
#
|
4585
4774
|
# @!attribute [rw] agent_runtime_version
|
4586
|
-
# The updated version of the
|
4775
|
+
# The updated version of the AgentCore Runtime for the endpoint.
|
4587
4776
|
# @return [String]
|
4588
4777
|
#
|
4589
4778
|
# @!attribute [rw] description
|
4590
|
-
# The updated description of the
|
4779
|
+
# The updated description of the AgentCore Runtime endpoint.
|
4591
4780
|
# @return [String]
|
4592
4781
|
#
|
4593
4782
|
# @!attribute [rw] client_token
|
@@ -4611,31 +4800,32 @@ module Aws::BedrockAgentCoreControl
|
|
4611
4800
|
end
|
4612
4801
|
|
4613
4802
|
# @!attribute [rw] live_version
|
4614
|
-
# The currently deployed version of the
|
4803
|
+
# The currently deployed version of the AgentCore Runtime on the
|
4804
|
+
# endpoint.
|
4615
4805
|
# @return [String]
|
4616
4806
|
#
|
4617
4807
|
# @!attribute [rw] target_version
|
4618
|
-
# The target version of the
|
4808
|
+
# The target version of the AgentCore Runtime for the endpoint.
|
4619
4809
|
# @return [String]
|
4620
4810
|
#
|
4621
4811
|
# @!attribute [rw] agent_runtime_endpoint_arn
|
4622
|
-
# The Amazon Resource Name (ARN) of the
|
4812
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.
|
4623
4813
|
# @return [String]
|
4624
4814
|
#
|
4625
4815
|
# @!attribute [rw] agent_runtime_arn
|
4626
|
-
# The Amazon Resource Name (ARN) of the
|
4816
|
+
# The Amazon Resource Name (ARN) of the AgentCore Runtime.
|
4627
4817
|
# @return [String]
|
4628
4818
|
#
|
4629
4819
|
# @!attribute [rw] status
|
4630
|
-
# The current status of the updated
|
4820
|
+
# The current status of the updated AgentCore Runtime endpoint.
|
4631
4821
|
# @return [String]
|
4632
4822
|
#
|
4633
4823
|
# @!attribute [rw] created_at
|
4634
|
-
# The timestamp when the
|
4824
|
+
# The timestamp when the AgentCore Runtime endpoint was created.
|
4635
4825
|
# @return [Time]
|
4636
4826
|
#
|
4637
4827
|
# @!attribute [rw] last_updated_at
|
4638
|
-
# The timestamp when the
|
4828
|
+
# The timestamp when the AgentCore Runtime endpoint was last updated.
|
4639
4829
|
# @return [Time]
|
4640
4830
|
#
|
4641
4831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeEndpointResponse AWS API Documentation
|
@@ -4653,24 +4843,24 @@ module Aws::BedrockAgentCoreControl
|
|
4653
4843
|
end
|
4654
4844
|
|
4655
4845
|
# @!attribute [rw] agent_runtime_id
|
4656
|
-
# The unique identifier of the
|
4846
|
+
# The unique identifier of the AgentCore Runtime to update.
|
4657
4847
|
# @return [String]
|
4658
4848
|
#
|
4659
4849
|
# @!attribute [rw] description
|
4660
|
-
# The updated description of the
|
4850
|
+
# The updated description of the AgentCore Runtime.
|
4661
4851
|
# @return [String]
|
4662
4852
|
#
|
4663
4853
|
# @!attribute [rw] agent_runtime_artifact
|
4664
|
-
# The updated artifact of the
|
4665
|
-
# @return [Types::
|
4854
|
+
# The updated artifact of the AgentCore Runtime.
|
4855
|
+
# @return [Types::AgentRuntimeArtifact]
|
4666
4856
|
#
|
4667
4857
|
# @!attribute [rw] role_arn
|
4668
|
-
# The updated IAM role ARN that provides permissions for the
|
4669
|
-
#
|
4858
|
+
# The updated IAM role ARN that provides permissions for the AgentCore
|
4859
|
+
# Runtime.
|
4670
4860
|
# @return [String]
|
4671
4861
|
#
|
4672
4862
|
# @!attribute [rw] network_configuration
|
4673
|
-
# The updated network configuration for the
|
4863
|
+
# The updated network configuration for the AgentCore Runtime.
|
4674
4864
|
# @return [Types::NetworkConfiguration]
|
4675
4865
|
#
|
4676
4866
|
# @!attribute [rw] protocol_configuration
|
@@ -4687,14 +4877,19 @@ module Aws::BedrockAgentCoreControl
|
|
4687
4877
|
# @return [String]
|
4688
4878
|
#
|
4689
4879
|
# @!attribute [rw] environment_variables
|
4690
|
-
# Updated environment variables to set in the
|
4880
|
+
# Updated environment variables to set in the AgentCore Runtime
|
4691
4881
|
# environment.
|
4692
4882
|
# @return [Hash<String,String>]
|
4693
4883
|
#
|
4694
4884
|
# @!attribute [rw] authorizer_configuration
|
4695
|
-
# The updated authorizer configuration for the
|
4885
|
+
# The updated authorizer configuration for the AgentCore Runtime.
|
4696
4886
|
# @return [Types::AuthorizerConfiguration]
|
4697
4887
|
#
|
4888
|
+
# @!attribute [rw] request_header_configuration
|
4889
|
+
# The updated configuration for HTTP request headers that will be
|
4890
|
+
# passed through to the runtime.
|
4891
|
+
# @return [Types::RequestHeaderConfiguration]
|
4892
|
+
#
|
4698
4893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeRequest AWS API Documentation
|
4699
4894
|
#
|
4700
4895
|
class UpdateAgentRuntimeRequest < Struct.new(
|
@@ -4706,37 +4901,38 @@ module Aws::BedrockAgentCoreControl
|
|
4706
4901
|
:protocol_configuration,
|
4707
4902
|
:client_token,
|
4708
4903
|
:environment_variables,
|
4709
|
-
:authorizer_configuration
|
4904
|
+
:authorizer_configuration,
|
4905
|
+
:request_header_configuration)
|
4710
4906
|
SENSITIVE = [:description, :environment_variables]
|
4711
4907
|
include Aws::Structure
|
4712
4908
|
end
|
4713
4909
|
|
4714
4910
|
# @!attribute [rw] agent_runtime_arn
|
4715
|
-
# The Amazon Resource Name (ARN) of the updated
|
4911
|
+
# The Amazon Resource Name (ARN) of the updated AgentCore Runtime.
|
4716
4912
|
# @return [String]
|
4717
4913
|
#
|
4718
4914
|
# @!attribute [rw] agent_runtime_id
|
4719
|
-
# The unique identifier of the updated
|
4915
|
+
# The unique identifier of the updated AgentCore Runtime.
|
4720
4916
|
# @return [String]
|
4721
4917
|
#
|
4722
4918
|
# @!attribute [rw] workload_identity_details
|
4723
|
-
# The workload identity details for the updated
|
4919
|
+
# The workload identity details for the updated AgentCore Runtime.
|
4724
4920
|
# @return [Types::WorkloadIdentityDetails]
|
4725
4921
|
#
|
4726
4922
|
# @!attribute [rw] agent_runtime_version
|
4727
|
-
# The version of the updated
|
4923
|
+
# The version of the updated AgentCore Runtime.
|
4728
4924
|
# @return [String]
|
4729
4925
|
#
|
4730
4926
|
# @!attribute [rw] created_at
|
4731
|
-
# The timestamp when the
|
4927
|
+
# The timestamp when the AgentCore Runtime was created.
|
4732
4928
|
# @return [Time]
|
4733
4929
|
#
|
4734
4930
|
# @!attribute [rw] last_updated_at
|
4735
|
-
# The timestamp when the
|
4931
|
+
# The timestamp when the AgentCore Runtime was last updated.
|
4736
4932
|
# @return [Time]
|
4737
4933
|
#
|
4738
4934
|
# @!attribute [rw] status
|
4739
|
-
# The current status of the updated
|
4935
|
+
# The current status of the updated AgentCore Runtime.
|
4740
4936
|
# @return [String]
|
4741
4937
|
#
|
4742
4938
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateAgentRuntimeResponse AWS API Documentation
|
@@ -4805,24 +5001,24 @@ module Aws::BedrockAgentCoreControl
|
|
4805
5001
|
end
|
4806
5002
|
|
4807
5003
|
# @!attribute [rw] gateway_identifier
|
4808
|
-
# The identifier of the gateway to update.
|
4809
|
-
# gateway ID or the gateway ARN.
|
5004
|
+
# The identifier of the gateway to update.
|
4810
5005
|
# @return [String]
|
4811
5006
|
#
|
4812
5007
|
# @!attribute [rw] name
|
4813
|
-
# The
|
5008
|
+
# The name of the gateway. This name must be the same as the one when
|
5009
|
+
# the gateway was created.
|
4814
5010
|
# @return [String]
|
4815
5011
|
#
|
4816
5012
|
# @!attribute [rw] description
|
4817
|
-
# The updated description for the
|
5013
|
+
# The updated description for the gateway.
|
4818
5014
|
# @return [String]
|
4819
5015
|
#
|
4820
5016
|
# @!attribute [rw] role_arn
|
4821
|
-
# The updated IAM role ARN that provides permissions for the
|
5017
|
+
# The updated IAM role ARN that provides permissions for the gateway.
|
4822
5018
|
# @return [String]
|
4823
5019
|
#
|
4824
5020
|
# @!attribute [rw] protocol_type
|
4825
|
-
# The updated protocol type for the
|
5021
|
+
# The updated protocol type for the gateway.
|
4826
5022
|
# @return [String]
|
4827
5023
|
#
|
4828
5024
|
# @!attribute [rw] protocol_configuration
|
@@ -4831,22 +5027,26 @@ module Aws::BedrockAgentCoreControl
|
|
4831
5027
|
# @return [Types::GatewayProtocolConfiguration]
|
4832
5028
|
#
|
4833
5029
|
# @!attribute [rw] authorizer_type
|
4834
|
-
# The updated authorizer type for the
|
5030
|
+
# The updated authorizer type for the gateway.
|
4835
5031
|
# @return [String]
|
4836
5032
|
#
|
4837
5033
|
# @!attribute [rw] authorizer_configuration
|
4838
|
-
# The updated authorizer configuration for the
|
5034
|
+
# The updated authorizer configuration for the gateway.
|
4839
5035
|
# @return [Types::AuthorizerConfiguration]
|
4840
5036
|
#
|
4841
5037
|
# @!attribute [rw] kms_key_arn
|
4842
|
-
# The updated ARN of the KMS key used to encrypt the
|
5038
|
+
# The updated ARN of the KMS key used to encrypt the gateway.
|
4843
5039
|
# @return [String]
|
4844
5040
|
#
|
4845
5041
|
# @!attribute [rw] exception_level
|
4846
|
-
# The
|
4847
|
-
#
|
4848
|
-
#
|
4849
|
-
#
|
5042
|
+
# The level of detail in error messages returned when invoking the
|
5043
|
+
# gateway.
|
5044
|
+
#
|
5045
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
5046
|
+
# to help a user debug the gateway.
|
5047
|
+
#
|
5048
|
+
# * If the value is omitted, a generic error message is returned to
|
5049
|
+
# the end user.
|
4850
5050
|
# @return [String]
|
4851
5051
|
#
|
4852
5052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayRequest AWS API Documentation
|
@@ -4867,47 +5067,47 @@ module Aws::BedrockAgentCoreControl
|
|
4867
5067
|
end
|
4868
5068
|
|
4869
5069
|
# @!attribute [rw] gateway_arn
|
4870
|
-
# The Amazon Resource Name (ARN) of the updated
|
5070
|
+
# The Amazon Resource Name (ARN) of the updated gateway.
|
4871
5071
|
# @return [String]
|
4872
5072
|
#
|
4873
5073
|
# @!attribute [rw] gateway_id
|
4874
|
-
# The unique identifier of the updated
|
5074
|
+
# The unique identifier of the updated gateway.
|
4875
5075
|
# @return [String]
|
4876
5076
|
#
|
4877
5077
|
# @!attribute [rw] gateway_url
|
4878
|
-
# An endpoint for invoking the updated
|
5078
|
+
# An endpoint for invoking the updated gateway.
|
4879
5079
|
# @return [String]
|
4880
5080
|
#
|
4881
5081
|
# @!attribute [rw] created_at
|
4882
|
-
# The timestamp when the
|
5082
|
+
# The timestamp when the gateway was created.
|
4883
5083
|
# @return [Time]
|
4884
5084
|
#
|
4885
5085
|
# @!attribute [rw] updated_at
|
4886
|
-
# The timestamp when the
|
5086
|
+
# The timestamp when the gateway was last updated.
|
4887
5087
|
# @return [Time]
|
4888
5088
|
#
|
4889
5089
|
# @!attribute [rw] status
|
4890
|
-
# The current status of the updated
|
5090
|
+
# The current status of the updated gateway.
|
4891
5091
|
# @return [String]
|
4892
5092
|
#
|
4893
5093
|
# @!attribute [rw] status_reasons
|
4894
|
-
# The reasons for the current status of the updated
|
5094
|
+
# The reasons for the current status of the updated gateway.
|
4895
5095
|
# @return [Array<String>]
|
4896
5096
|
#
|
4897
5097
|
# @!attribute [rw] name
|
4898
|
-
# The
|
5098
|
+
# The name of the gateway.
|
4899
5099
|
# @return [String]
|
4900
5100
|
#
|
4901
5101
|
# @!attribute [rw] description
|
4902
|
-
# The updated description of the
|
5102
|
+
# The updated description of the gateway.
|
4903
5103
|
# @return [String]
|
4904
5104
|
#
|
4905
5105
|
# @!attribute [rw] role_arn
|
4906
|
-
# The updated IAM role ARN that provides permissions for the
|
5106
|
+
# The updated IAM role ARN that provides permissions for the gateway.
|
4907
5107
|
# @return [String]
|
4908
5108
|
#
|
4909
5109
|
# @!attribute [rw] protocol_type
|
4910
|
-
# The updated protocol type for the
|
5110
|
+
# The updated protocol type for the gateway.
|
4911
5111
|
# @return [String]
|
4912
5112
|
#
|
4913
5113
|
# @!attribute [rw] protocol_configuration
|
@@ -4916,26 +5116,30 @@ module Aws::BedrockAgentCoreControl
|
|
4916
5116
|
# @return [Types::GatewayProtocolConfiguration]
|
4917
5117
|
#
|
4918
5118
|
# @!attribute [rw] authorizer_type
|
4919
|
-
# The updated authorizer type for the
|
5119
|
+
# The updated authorizer type for the gateway.
|
4920
5120
|
# @return [String]
|
4921
5121
|
#
|
4922
5122
|
# @!attribute [rw] authorizer_configuration
|
4923
|
-
# The updated authorizer configuration for the
|
5123
|
+
# The updated authorizer configuration for the gateway.
|
4924
5124
|
# @return [Types::AuthorizerConfiguration]
|
4925
5125
|
#
|
4926
5126
|
# @!attribute [rw] kms_key_arn
|
4927
|
-
# The updated ARN of the KMS key used to encrypt the
|
5127
|
+
# The updated ARN of the KMS key used to encrypt the gateway.
|
4928
5128
|
# @return [String]
|
4929
5129
|
#
|
4930
5130
|
# @!attribute [rw] workload_identity_details
|
4931
|
-
# The workload identity details for the updated
|
5131
|
+
# The workload identity details for the updated gateway.
|
4932
5132
|
# @return [Types::WorkloadIdentityDetails]
|
4933
5133
|
#
|
4934
5134
|
# @!attribute [rw] exception_level
|
4935
|
-
# The
|
4936
|
-
#
|
4937
|
-
#
|
4938
|
-
#
|
5135
|
+
# The level of detail in error messages returned when invoking the
|
5136
|
+
# gateway.
|
5137
|
+
#
|
5138
|
+
# * If the value is `DEBUG`, granular exception messages are returned
|
5139
|
+
# to help a user debug the gateway.
|
5140
|
+
#
|
5141
|
+
# * If the value is omitted, a generic error message is returned to
|
5142
|
+
# the end user.
|
4939
5143
|
# @return [String]
|
4940
5144
|
#
|
4941
5145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayResponse AWS API Documentation
|
@@ -4963,19 +5167,19 @@ module Aws::BedrockAgentCoreControl
|
|
4963
5167
|
end
|
4964
5168
|
|
4965
5169
|
# @!attribute [rw] gateway_identifier
|
4966
|
-
# The unique identifier of the
|
5170
|
+
# The unique identifier of the gateway associated with the target.
|
4967
5171
|
# @return [String]
|
4968
5172
|
#
|
4969
5173
|
# @!attribute [rw] target_id
|
4970
|
-
# The unique identifier of the
|
5174
|
+
# The unique identifier of the gateway target to update.
|
4971
5175
|
# @return [String]
|
4972
5176
|
#
|
4973
5177
|
# @!attribute [rw] name
|
4974
|
-
# The updated name for the
|
5178
|
+
# The updated name for the gateway target.
|
4975
5179
|
# @return [String]
|
4976
5180
|
#
|
4977
5181
|
# @!attribute [rw] description
|
4978
|
-
# The updated description for the
|
5182
|
+
# The updated description for the gateway target.
|
4979
5183
|
# @return [String]
|
4980
5184
|
#
|
4981
5185
|
# @!attribute [rw] target_configuration
|
@@ -4984,8 +5188,8 @@ module Aws::BedrockAgentCoreControl
|
|
4984
5188
|
# @return [Types::TargetConfiguration]
|
4985
5189
|
#
|
4986
5190
|
# @!attribute [rw] credential_provider_configurations
|
4987
|
-
# The updated credential provider configurations for the
|
4988
|
-
#
|
5191
|
+
# The updated credential provider configurations for the gateway
|
5192
|
+
# target.
|
4989
5193
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
4990
5194
|
#
|
4991
5195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetRequest AWS API Documentation
|
@@ -5002,35 +5206,35 @@ module Aws::BedrockAgentCoreControl
|
|
5002
5206
|
end
|
5003
5207
|
|
5004
5208
|
# @!attribute [rw] gateway_arn
|
5005
|
-
# The Amazon Resource Name (ARN) of the
|
5209
|
+
# The Amazon Resource Name (ARN) of the gateway.
|
5006
5210
|
# @return [String]
|
5007
5211
|
#
|
5008
5212
|
# @!attribute [rw] target_id
|
5009
|
-
# The unique identifier of the updated
|
5213
|
+
# The unique identifier of the updated gateway target.
|
5010
5214
|
# @return [String]
|
5011
5215
|
#
|
5012
5216
|
# @!attribute [rw] created_at
|
5013
|
-
# The timestamp when the
|
5217
|
+
# The timestamp when the gateway target was created.
|
5014
5218
|
# @return [Time]
|
5015
5219
|
#
|
5016
5220
|
# @!attribute [rw] updated_at
|
5017
|
-
# The timestamp when the
|
5221
|
+
# The timestamp when the gateway target was last updated.
|
5018
5222
|
# @return [Time]
|
5019
5223
|
#
|
5020
5224
|
# @!attribute [rw] status
|
5021
|
-
# The current status of the updated
|
5225
|
+
# The current status of the updated gateway target.
|
5022
5226
|
# @return [String]
|
5023
5227
|
#
|
5024
5228
|
# @!attribute [rw] status_reasons
|
5025
|
-
# The reasons for the current status of the updated
|
5229
|
+
# The reasons for the current status of the updated gateway target.
|
5026
5230
|
# @return [Array<String>]
|
5027
5231
|
#
|
5028
5232
|
# @!attribute [rw] name
|
5029
|
-
# The updated name of the
|
5233
|
+
# The updated name of the gateway target.
|
5030
5234
|
# @return [String]
|
5031
5235
|
#
|
5032
5236
|
# @!attribute [rw] description
|
5033
|
-
# The updated description of the
|
5237
|
+
# The updated description of the gateway target.
|
5034
5238
|
# @return [String]
|
5035
5239
|
#
|
5036
5240
|
# @!attribute [rw] target_configuration
|
@@ -5039,8 +5243,8 @@ module Aws::BedrockAgentCoreControl
|
|
5039
5243
|
# @return [Types::TargetConfiguration]
|
5040
5244
|
#
|
5041
5245
|
# @!attribute [rw] credential_provider_configurations
|
5042
|
-
# The updated credential provider configurations for the
|
5043
|
-
#
|
5246
|
+
# The updated credential provider configurations for the gateway
|
5247
|
+
# target.
|
5044
5248
|
# @return [Array<Types::CredentialProviderConfiguration>]
|
5045
5249
|
#
|
5046
5250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
|
@@ -5074,7 +5278,7 @@ module Aws::BedrockAgentCoreControl
|
|
5074
5278
|
# @return [String]
|
5075
5279
|
#
|
5076
5280
|
# @!attribute [rw] description
|
5077
|
-
# The updated description of the
|
5281
|
+
# The updated description of the AgentCore Memory resource.
|
5078
5282
|
# @return [String]
|
5079
5283
|
#
|
5080
5284
|
# @!attribute [rw] event_expiry_duration
|
@@ -5083,7 +5287,8 @@ module Aws::BedrockAgentCoreControl
|
|
5083
5287
|
# @return [Integer]
|
5084
5288
|
#
|
5085
5289
|
# @!attribute [rw] memory_execution_role_arn
|
5086
|
-
# The ARN of the IAM role that provides permissions for the
|
5290
|
+
# The ARN of the IAM role that provides permissions for the AgentCore
|
5291
|
+
# Memory resource.
|
5087
5292
|
# @return [String]
|
5088
5293
|
#
|
5089
5294
|
# @!attribute [rw] memory_strategies
|
@@ -5104,7 +5309,7 @@ module Aws::BedrockAgentCoreControl
|
|
5104
5309
|
end
|
5105
5310
|
|
5106
5311
|
# @!attribute [rw] memory
|
5107
|
-
# The updated
|
5312
|
+
# The updated AgentCore Memory resource details.
|
5108
5313
|
# @return [Types::Memory]
|
5109
5314
|
#
|
5110
5315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateMemoryOutput AWS API Documentation
|
@@ -5393,6 +5598,25 @@ module Aws::BedrockAgentCoreControl
|
|
5393
5598
|
include Aws::Structure
|
5394
5599
|
end
|
5395
5600
|
|
5601
|
+
# VpcConfig for the Agent.
|
5602
|
+
#
|
5603
|
+
# @!attribute [rw] security_groups
|
5604
|
+
# The security groups associated with the VPC configuration.
|
5605
|
+
# @return [Array<String>]
|
5606
|
+
#
|
5607
|
+
# @!attribute [rw] subnets
|
5608
|
+
# The subnets associated with the VPC configuration.
|
5609
|
+
# @return [Array<String>]
|
5610
|
+
#
|
5611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/VpcConfig AWS API Documentation
|
5612
|
+
#
|
5613
|
+
class VpcConfig < Struct.new(
|
5614
|
+
:security_groups,
|
5615
|
+
:subnets)
|
5616
|
+
SENSITIVE = []
|
5617
|
+
include Aws::Structure
|
5618
|
+
end
|
5619
|
+
|
5396
5620
|
# The information about the workload identity.
|
5397
5621
|
#
|
5398
5622
|
# @!attribute [rw] workload_identity_arn
|