@aws-sdk/client-bedrock-agentcore-control 3.939.0 → 3.943.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.
- package/README.md +216 -0
- package/dist-cjs/index.js +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/schemas/schemas_0.js +1320 -97
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +5 -5
|
@@ -10,6 +10,9 @@ export declare var ApiKeyType: StaticSimpleSchema;
|
|
|
10
10
|
export declare var ClientSecretType: StaticSimpleSchema;
|
|
11
11
|
export declare var Description: StaticSimpleSchema;
|
|
12
12
|
export declare var EndpointName: StaticSimpleSchema;
|
|
13
|
+
export declare var EvaluationConfigDescription: StaticSimpleSchema;
|
|
14
|
+
export declare var EvaluatorDescription: StaticSimpleSchema;
|
|
15
|
+
export declare var EvaluatorInstructions: StaticSimpleSchema;
|
|
13
16
|
export declare var GatewayDescription: StaticSimpleSchema;
|
|
14
17
|
export declare var GatewayName: StaticSimpleSchema;
|
|
15
18
|
export declare var InlinePayload: StaticSimpleSchema;
|
|
@@ -20,13 +23,23 @@ export declare var TargetName: StaticSimpleSchema;
|
|
|
20
23
|
export declare var AccessDeniedException: StaticErrorSchema;
|
|
21
24
|
export declare var AgentRuntime: StaticStructureSchema;
|
|
22
25
|
export declare var AgentRuntimeEndpoint: StaticStructureSchema;
|
|
26
|
+
export declare var ApiGatewayTargetConfiguration: StaticStructureSchema;
|
|
27
|
+
export declare var ApiGatewayToolConfiguration: StaticStructureSchema;
|
|
28
|
+
export declare var ApiGatewayToolFilter: StaticStructureSchema;
|
|
29
|
+
export declare var ApiGatewayToolOverride: StaticStructureSchema;
|
|
23
30
|
export declare var ApiKeyCredentialProviderItem: StaticStructureSchema;
|
|
24
31
|
export declare var AtlassianOauth2ProviderConfigInput: StaticStructureSchema;
|
|
25
32
|
export declare var AtlassianOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
33
|
+
export declare var AuthorizingClaimMatchValueType: StaticStructureSchema;
|
|
34
|
+
export declare var BedrockEvaluatorModelConfig: StaticStructureSchema;
|
|
26
35
|
export declare var BrowserNetworkConfiguration: StaticStructureSchema;
|
|
27
36
|
export declare var BrowserSigningConfigInput: StaticStructureSchema;
|
|
28
37
|
export declare var BrowserSigningConfigOutput: StaticStructureSchema;
|
|
29
38
|
export declare var BrowserSummary: StaticStructureSchema;
|
|
39
|
+
export declare var CategoricalScaleDefinition: StaticStructureSchema;
|
|
40
|
+
export declare var CedarPolicy: StaticStructureSchema;
|
|
41
|
+
export declare var CloudWatchLogsInputConfig: StaticStructureSchema;
|
|
42
|
+
export declare var CloudWatchOutputConfig: StaticStructureSchema;
|
|
30
43
|
export declare var CodeConfiguration: StaticStructureSchema;
|
|
31
44
|
export declare var CodeInterpreterNetworkConfiguration: StaticStructureSchema;
|
|
32
45
|
export declare var CodeInterpreterSummary: StaticStructureSchema;
|
|
@@ -43,6 +56,8 @@ export declare var CreateBrowserRequest: StaticStructureSchema;
|
|
|
43
56
|
export declare var CreateBrowserResponse: StaticStructureSchema;
|
|
44
57
|
export declare var CreateCodeInterpreterRequest: StaticStructureSchema;
|
|
45
58
|
export declare var CreateCodeInterpreterResponse: StaticStructureSchema;
|
|
59
|
+
export declare var CreateEvaluatorRequest: StaticStructureSchema;
|
|
60
|
+
export declare var CreateEvaluatorResponse: StaticStructureSchema;
|
|
46
61
|
export declare var CreateGatewayRequest: StaticStructureSchema;
|
|
47
62
|
export declare var CreateGatewayResponse: StaticStructureSchema;
|
|
48
63
|
export declare var CreateGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -51,9 +66,16 @@ export declare var CreateMemoryInput: StaticStructureSchema;
|
|
|
51
66
|
export declare var CreateMemoryOutput: StaticStructureSchema;
|
|
52
67
|
export declare var CreateOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
53
68
|
export declare var CreateOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
69
|
+
export declare var CreateOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
70
|
+
export declare var CreateOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
71
|
+
export declare var CreatePolicyEngineRequest: StaticStructureSchema;
|
|
72
|
+
export declare var CreatePolicyEngineResponse: StaticStructureSchema;
|
|
73
|
+
export declare var CreatePolicyRequest: StaticStructureSchema;
|
|
74
|
+
export declare var CreatePolicyResponse: StaticStructureSchema;
|
|
54
75
|
export declare var CreateWorkloadIdentityRequest: StaticStructureSchema;
|
|
55
76
|
export declare var CreateWorkloadIdentityResponse: StaticStructureSchema;
|
|
56
77
|
export declare var CredentialProviderConfiguration: StaticStructureSchema;
|
|
78
|
+
export declare var CustomClaimValidationType: StaticStructureSchema;
|
|
57
79
|
export declare var CustomJWTAuthorizerConfiguration: StaticStructureSchema;
|
|
58
80
|
export declare var CustomMemoryStrategyInput: StaticStructureSchema;
|
|
59
81
|
export declare var CustomOauth2ProviderConfigInput: StaticStructureSchema;
|
|
@@ -69,6 +91,8 @@ export declare var DeleteBrowserRequest: StaticStructureSchema;
|
|
|
69
91
|
export declare var DeleteBrowserResponse: StaticStructureSchema;
|
|
70
92
|
export declare var DeleteCodeInterpreterRequest: StaticStructureSchema;
|
|
71
93
|
export declare var DeleteCodeInterpreterResponse: StaticStructureSchema;
|
|
94
|
+
export declare var DeleteEvaluatorRequest: StaticStructureSchema;
|
|
95
|
+
export declare var DeleteEvaluatorResponse: StaticStructureSchema;
|
|
72
96
|
export declare var DeleteGatewayRequest: StaticStructureSchema;
|
|
73
97
|
export declare var DeleteGatewayResponse: StaticStructureSchema;
|
|
74
98
|
export declare var DeleteGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -78,11 +102,33 @@ export declare var DeleteMemoryOutput: StaticStructureSchema;
|
|
|
78
102
|
export declare var DeleteMemoryStrategyInput: StaticStructureSchema;
|
|
79
103
|
export declare var DeleteOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
80
104
|
export declare var DeleteOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
105
|
+
export declare var DeleteOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
106
|
+
export declare var DeleteOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
107
|
+
export declare var DeletePolicyEngineRequest: StaticStructureSchema;
|
|
108
|
+
export declare var DeletePolicyEngineResponse: StaticStructureSchema;
|
|
109
|
+
export declare var DeletePolicyRequest: StaticStructureSchema;
|
|
110
|
+
export declare var DeletePolicyResponse: StaticStructureSchema;
|
|
111
|
+
export declare var DeleteResourcePolicyRequest: StaticStructureSchema;
|
|
112
|
+
export declare var DeleteResourcePolicyResponse: StaticStructureSchema;
|
|
81
113
|
export declare var DeleteWorkloadIdentityRequest: StaticStructureSchema;
|
|
82
114
|
export declare var DeleteWorkloadIdentityResponse: StaticStructureSchema;
|
|
83
115
|
export declare var EncryptionFailure: StaticErrorSchema;
|
|
116
|
+
export declare var EpisodicConsolidationOverride: StaticStructureSchema;
|
|
117
|
+
export declare var EpisodicExtractionOverride: StaticStructureSchema;
|
|
118
|
+
export declare var EpisodicMemoryStrategyInput: StaticStructureSchema;
|
|
119
|
+
export declare var EpisodicOverrideConfigurationInput: StaticStructureSchema;
|
|
120
|
+
export declare var EpisodicOverrideConsolidationConfigurationInput: StaticStructureSchema;
|
|
121
|
+
export declare var EpisodicOverrideExtractionConfigurationInput: StaticStructureSchema;
|
|
122
|
+
export declare var EpisodicOverrideReflectionConfigurationInput: StaticStructureSchema;
|
|
123
|
+
export declare var EpisodicReflectionConfiguration: StaticStructureSchema;
|
|
124
|
+
export declare var EpisodicReflectionConfigurationInput: StaticStructureSchema;
|
|
125
|
+
export declare var EpisodicReflectionOverride: StaticStructureSchema;
|
|
126
|
+
export declare var EvaluatorSummary: StaticStructureSchema;
|
|
127
|
+
export declare var Filter: StaticStructureSchema;
|
|
128
|
+
export declare var Finding: StaticStructureSchema;
|
|
84
129
|
export declare var GatewayApiKeyCredentialProvider: StaticStructureSchema;
|
|
85
130
|
export declare var GatewayInterceptorConfiguration: StaticStructureSchema;
|
|
131
|
+
export declare var GatewayPolicyEngineConfiguration: StaticStructureSchema;
|
|
86
132
|
export declare var GatewaySummary: StaticStructureSchema;
|
|
87
133
|
export declare var GatewayTarget: StaticStructureSchema;
|
|
88
134
|
export declare var GetAgentRuntimeEndpointRequest: StaticStructureSchema;
|
|
@@ -95,6 +141,8 @@ export declare var GetBrowserRequest: StaticStructureSchema;
|
|
|
95
141
|
export declare var GetBrowserResponse: StaticStructureSchema;
|
|
96
142
|
export declare var GetCodeInterpreterRequest: StaticStructureSchema;
|
|
97
143
|
export declare var GetCodeInterpreterResponse: StaticStructureSchema;
|
|
144
|
+
export declare var GetEvaluatorRequest: StaticStructureSchema;
|
|
145
|
+
export declare var GetEvaluatorResponse: StaticStructureSchema;
|
|
98
146
|
export declare var GetGatewayRequest: StaticStructureSchema;
|
|
99
147
|
export declare var GetGatewayResponse: StaticStructureSchema;
|
|
100
148
|
export declare var GetGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -103,6 +151,16 @@ export declare var GetMemoryInput: StaticStructureSchema;
|
|
|
103
151
|
export declare var GetMemoryOutput: StaticStructureSchema;
|
|
104
152
|
export declare var GetOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
105
153
|
export declare var GetOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
154
|
+
export declare var GetOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
155
|
+
export declare var GetOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
156
|
+
export declare var GetPolicyEngineRequest: StaticStructureSchema;
|
|
157
|
+
export declare var GetPolicyEngineResponse: StaticStructureSchema;
|
|
158
|
+
export declare var GetPolicyGenerationRequest: StaticStructureSchema;
|
|
159
|
+
export declare var GetPolicyGenerationResponse: StaticStructureSchema;
|
|
160
|
+
export declare var GetPolicyRequest: StaticStructureSchema;
|
|
161
|
+
export declare var GetPolicyResponse: StaticStructureSchema;
|
|
162
|
+
export declare var GetResourcePolicyRequest: StaticStructureSchema;
|
|
163
|
+
export declare var GetResourcePolicyResponse: StaticStructureSchema;
|
|
106
164
|
export declare var GetTokenVaultRequest: StaticStructureSchema;
|
|
107
165
|
export declare var GetTokenVaultResponse: StaticStructureSchema;
|
|
108
166
|
export declare var GetWorkloadIdentityRequest: StaticStructureSchema;
|
|
@@ -113,6 +171,7 @@ export declare var GoogleOauth2ProviderConfigInput: StaticStructureSchema;
|
|
|
113
171
|
export declare var GoogleOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
114
172
|
export declare var IncludedOauth2ProviderConfigInput: StaticStructureSchema;
|
|
115
173
|
export declare var IncludedOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
174
|
+
export declare var InferenceConfiguration: StaticStructureSchema;
|
|
116
175
|
export declare var InterceptorInputConfiguration: StaticStructureSchema;
|
|
117
176
|
export declare var InternalServerException: StaticErrorSchema;
|
|
118
177
|
export declare var InvocationConfiguration: StaticStructureSchema;
|
|
@@ -134,6 +193,8 @@ export declare var ListBrowsersRequest: StaticStructureSchema;
|
|
|
134
193
|
export declare var ListBrowsersResponse: StaticStructureSchema;
|
|
135
194
|
export declare var ListCodeInterpretersRequest: StaticStructureSchema;
|
|
136
195
|
export declare var ListCodeInterpretersResponse: StaticStructureSchema;
|
|
196
|
+
export declare var ListEvaluatorsRequest: StaticStructureSchema;
|
|
197
|
+
export declare var ListEvaluatorsResponse: StaticStructureSchema;
|
|
137
198
|
export declare var ListGatewaysRequest: StaticStructureSchema;
|
|
138
199
|
export declare var ListGatewaysResponse: StaticStructureSchema;
|
|
139
200
|
export declare var ListGatewayTargetsRequest: StaticStructureSchema;
|
|
@@ -142,10 +203,21 @@ export declare var ListMemoriesInput: StaticStructureSchema;
|
|
|
142
203
|
export declare var ListMemoriesOutput: StaticStructureSchema;
|
|
143
204
|
export declare var ListOauth2CredentialProvidersRequest: StaticStructureSchema;
|
|
144
205
|
export declare var ListOauth2CredentialProvidersResponse: StaticStructureSchema;
|
|
206
|
+
export declare var ListOnlineEvaluationConfigsRequest: StaticStructureSchema;
|
|
207
|
+
export declare var ListOnlineEvaluationConfigsResponse: StaticStructureSchema;
|
|
208
|
+
export declare var ListPoliciesRequest: StaticStructureSchema;
|
|
209
|
+
export declare var ListPoliciesResponse: StaticStructureSchema;
|
|
210
|
+
export declare var ListPolicyEnginesRequest: StaticStructureSchema;
|
|
211
|
+
export declare var ListPolicyEnginesResponse: StaticStructureSchema;
|
|
212
|
+
export declare var ListPolicyGenerationAssetsRequest: StaticStructureSchema;
|
|
213
|
+
export declare var ListPolicyGenerationAssetsResponse: StaticStructureSchema;
|
|
214
|
+
export declare var ListPolicyGenerationsRequest: StaticStructureSchema;
|
|
215
|
+
export declare var ListPolicyGenerationsResponse: StaticStructureSchema;
|
|
145
216
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
146
217
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
147
218
|
export declare var ListWorkloadIdentitiesRequest: StaticStructureSchema;
|
|
148
219
|
export declare var ListWorkloadIdentitiesResponse: StaticStructureSchema;
|
|
220
|
+
export declare var LlmAsAJudgeEvaluatorConfig: StaticStructureSchema;
|
|
149
221
|
export declare var MCPGatewayConfiguration: StaticStructureSchema;
|
|
150
222
|
export declare var McpLambdaTargetConfiguration: StaticStructureSchema;
|
|
151
223
|
export declare var McpServerTargetConfiguration: StaticStructureSchema;
|
|
@@ -162,17 +234,28 @@ export declare var ModifyMemoryStrategyInput: StaticStructureSchema;
|
|
|
162
234
|
export declare var ModifySelfManagedConfiguration: StaticStructureSchema;
|
|
163
235
|
export declare var ModifyStrategyConfiguration: StaticStructureSchema;
|
|
164
236
|
export declare var NetworkConfiguration: StaticStructureSchema;
|
|
237
|
+
export declare var NumericalScaleDefinition: StaticStructureSchema;
|
|
165
238
|
export declare var Oauth2AuthorizationServerMetadata: StaticStructureSchema;
|
|
166
239
|
export declare var Oauth2CredentialProviderItem: StaticStructureSchema;
|
|
167
240
|
export declare var OAuthCredentialProvider: StaticStructureSchema;
|
|
241
|
+
export declare var OnlineEvaluationConfigSummary: StaticStructureSchema;
|
|
242
|
+
export declare var OutputConfig: StaticStructureSchema;
|
|
243
|
+
export declare var Policy: StaticStructureSchema;
|
|
244
|
+
export declare var PolicyEngine: StaticStructureSchema;
|
|
245
|
+
export declare var PolicyGeneration: StaticStructureSchema;
|
|
246
|
+
export declare var PolicyGenerationAsset: StaticStructureSchema;
|
|
168
247
|
export declare var ProtocolConfiguration: StaticStructureSchema;
|
|
248
|
+
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
249
|
+
export declare var PutResourcePolicyResponse: StaticStructureSchema;
|
|
169
250
|
export declare var RecordingConfig: StaticStructureSchema;
|
|
170
251
|
export declare var ResourceLimitExceededException: StaticErrorSchema;
|
|
171
252
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
253
|
+
export declare var Rule: StaticStructureSchema;
|
|
172
254
|
export declare var S3Configuration: StaticStructureSchema;
|
|
173
255
|
export declare var S3Location: StaticStructureSchema;
|
|
174
256
|
export declare var SalesforceOauth2ProviderConfigInput: StaticStructureSchema;
|
|
175
257
|
export declare var SalesforceOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
258
|
+
export declare var SamplingConfig: StaticStructureSchema;
|
|
176
259
|
export declare var SchemaDefinition: StaticStructureSchema;
|
|
177
260
|
export declare var Secret: StaticStructureSchema;
|
|
178
261
|
export declare var SelfManagedConfiguration: StaticStructureSchema;
|
|
@@ -185,10 +268,13 @@ export declare var SemanticOverrideConsolidationConfigurationInput: StaticStruct
|
|
|
185
268
|
export declare var SemanticOverrideExtractionConfigurationInput: StaticStructureSchema;
|
|
186
269
|
export declare var ServiceException: StaticErrorSchema;
|
|
187
270
|
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
271
|
+
export declare var SessionConfig: StaticStructureSchema;
|
|
188
272
|
export declare var SetTokenVaultCMKRequest: StaticStructureSchema;
|
|
189
273
|
export declare var SetTokenVaultCMKResponse: StaticStructureSchema;
|
|
190
274
|
export declare var SlackOauth2ProviderConfigInput: StaticStructureSchema;
|
|
191
275
|
export declare var SlackOauth2ProviderConfigOutput: StaticStructureSchema;
|
|
276
|
+
export declare var StartPolicyGenerationRequest: StaticStructureSchema;
|
|
277
|
+
export declare var StartPolicyGenerationResponse: StaticStructureSchema;
|
|
192
278
|
export declare var StrategyConfiguration: StaticStructureSchema;
|
|
193
279
|
export declare var SummaryConsolidationOverride: StaticStructureSchema;
|
|
194
280
|
export declare var SummaryMemoryStrategyInput: StaticStructureSchema;
|
|
@@ -215,6 +301,8 @@ export declare var UpdateAgentRuntimeRequest: StaticStructureSchema;
|
|
|
215
301
|
export declare var UpdateAgentRuntimeResponse: StaticStructureSchema;
|
|
216
302
|
export declare var UpdateApiKeyCredentialProviderRequest: StaticStructureSchema;
|
|
217
303
|
export declare var UpdateApiKeyCredentialProviderResponse: StaticStructureSchema;
|
|
304
|
+
export declare var UpdateEvaluatorRequest: StaticStructureSchema;
|
|
305
|
+
export declare var UpdateEvaluatorResponse: StaticStructureSchema;
|
|
218
306
|
export declare var UpdateGatewayRequest: StaticStructureSchema;
|
|
219
307
|
export declare var UpdateGatewayResponse: StaticStructureSchema;
|
|
220
308
|
export declare var UpdateGatewayTargetRequest: StaticStructureSchema;
|
|
@@ -223,6 +311,12 @@ export declare var UpdateMemoryInput: StaticStructureSchema;
|
|
|
223
311
|
export declare var UpdateMemoryOutput: StaticStructureSchema;
|
|
224
312
|
export declare var UpdateOauth2CredentialProviderRequest: StaticStructureSchema;
|
|
225
313
|
export declare var UpdateOauth2CredentialProviderResponse: StaticStructureSchema;
|
|
314
|
+
export declare var UpdateOnlineEvaluationConfigRequest: StaticStructureSchema;
|
|
315
|
+
export declare var UpdateOnlineEvaluationConfigResponse: StaticStructureSchema;
|
|
316
|
+
export declare var UpdatePolicyEngineRequest: StaticStructureSchema;
|
|
317
|
+
export declare var UpdatePolicyEngineResponse: StaticStructureSchema;
|
|
318
|
+
export declare var UpdatePolicyRequest: StaticStructureSchema;
|
|
319
|
+
export declare var UpdatePolicyResponse: StaticStructureSchema;
|
|
226
320
|
export declare var UpdateWorkloadIdentityRequest: StaticStructureSchema;
|
|
227
321
|
export declare var UpdateWorkloadIdentityResponse: StaticStructureSchema;
|
|
228
322
|
export declare var UserPreferenceConsolidationOverride: StaticStructureSchema;
|
|
@@ -242,29 +336,50 @@ export declare var AgentRuntimeEndpoints: StaticListSchema;
|
|
|
242
336
|
export declare var AgentRuntimes: StaticListSchema;
|
|
243
337
|
export declare var AllowedAudienceList: number;
|
|
244
338
|
export declare var AllowedClientsList: number;
|
|
339
|
+
export declare var AllowedScopesType: number;
|
|
340
|
+
export declare var ApiGatewayToolFilters: StaticListSchema;
|
|
341
|
+
export declare var ApiGatewayToolOverrides: StaticListSchema;
|
|
245
342
|
export declare var ApiKeyCredentialProviders: StaticListSchema;
|
|
246
343
|
export declare var BrowserSummaries: StaticListSchema;
|
|
344
|
+
export declare var CategoricalScaleDefinitions: StaticListSchema;
|
|
247
345
|
export declare var CodeInterpreterSummaries: StaticListSchema;
|
|
248
346
|
export declare var CredentialProviderConfigurations: StaticListSchema;
|
|
347
|
+
export declare var CustomClaimValidationsType: StaticListSchema;
|
|
249
348
|
export declare var DeleteMemoryStrategiesList: StaticListSchema;
|
|
250
349
|
export declare var EntryPoints: number;
|
|
350
|
+
export declare var EvaluatorList: StaticListSchema;
|
|
351
|
+
export declare var EvaluatorSummaryList: StaticListSchema;
|
|
352
|
+
export declare var FilterList: StaticListSchema;
|
|
353
|
+
export declare var Findings: StaticListSchema;
|
|
251
354
|
export declare var GatewayInterceptionPoints: number;
|
|
252
355
|
export declare var GatewayInterceptorConfigurations: StaticListSchema;
|
|
253
356
|
export declare var GatewaySummaries: StaticListSchema;
|
|
254
357
|
export declare var GatewayTargetList: StaticListSchema;
|
|
358
|
+
export declare var LogGroupNamesList: number;
|
|
359
|
+
export declare var MatchValueStringList: number;
|
|
255
360
|
export declare var McpSupportedVersions: number;
|
|
256
361
|
export declare var MemoryStrategyInputList: StaticListSchema;
|
|
257
362
|
export declare var MemoryStrategyList: StaticListSchema;
|
|
258
363
|
export declare var MemorySummaryList: StaticListSchema;
|
|
259
364
|
export declare var ModifyMemoryStrategiesList: StaticListSchema;
|
|
260
365
|
export declare var NamespacesList: number;
|
|
366
|
+
export declare var NonEmptyStringList: number;
|
|
367
|
+
export declare var NumericalScaleDefinitions: StaticListSchema;
|
|
261
368
|
export declare var Oauth2CredentialProviders: StaticListSchema;
|
|
262
369
|
export declare var OAuthScopes: number;
|
|
370
|
+
export declare var OnlineEvaluationConfigSummaryList: StaticListSchema;
|
|
371
|
+
export declare var Policies: StaticListSchema;
|
|
372
|
+
export declare var PolicyEngines: StaticListSchema;
|
|
373
|
+
export declare var PolicyGenerationAssets: StaticListSchema;
|
|
374
|
+
export declare var PolicyGenerations: StaticListSchema;
|
|
375
|
+
export declare var PolicyStatusReasons: number;
|
|
263
376
|
export declare var RequestHeaderAllowlist: number;
|
|
264
377
|
export declare var RequiredProperties: number;
|
|
265
378
|
export declare var ResourceOauth2ReturnUrlListType: number;
|
|
266
379
|
export declare var ResponseListType: number;
|
|
380
|
+
export declare var RestApiMethods: number;
|
|
267
381
|
export declare var SecurityGroups: number;
|
|
382
|
+
export declare var ServiceNamesList: number;
|
|
268
383
|
export declare var StatusReasons: number;
|
|
269
384
|
export declare var Subnets: number;
|
|
270
385
|
export declare var TagKeyList: number;
|
|
@@ -283,25 +398,39 @@ export declare var TagsMap: number;
|
|
|
283
398
|
export declare var AgentRuntimeArtifact: StaticStructureSchema;
|
|
284
399
|
export declare var ApiSchemaConfiguration: StaticStructureSchema;
|
|
285
400
|
export declare var AuthorizerConfiguration: StaticStructureSchema;
|
|
401
|
+
export declare var ClaimMatchValueType: StaticStructureSchema;
|
|
286
402
|
export declare var Code: StaticStructureSchema;
|
|
287
403
|
export declare var ConsolidationConfiguration: StaticStructureSchema;
|
|
404
|
+
export declare var Content: StaticStructureSchema;
|
|
288
405
|
export declare var CredentialProvider: StaticStructureSchema;
|
|
289
406
|
export declare var CustomConfigurationInput: StaticStructureSchema;
|
|
290
407
|
export declare var CustomConsolidationConfiguration: StaticStructureSchema;
|
|
291
408
|
export declare var CustomConsolidationConfigurationInput: StaticStructureSchema;
|
|
292
409
|
export declare var CustomExtractionConfiguration: StaticStructureSchema;
|
|
293
410
|
export declare var CustomExtractionConfigurationInput: StaticStructureSchema;
|
|
411
|
+
export declare var CustomReflectionConfiguration: StaticStructureSchema;
|
|
412
|
+
export declare var CustomReflectionConfigurationInput: StaticStructureSchema;
|
|
413
|
+
export declare var DataSourceConfig: StaticStructureSchema;
|
|
414
|
+
export declare var EvaluatorConfig: StaticStructureSchema;
|
|
415
|
+
export declare var EvaluatorModelConfig: StaticStructureSchema;
|
|
416
|
+
export declare var EvaluatorReference: StaticStructureSchema;
|
|
294
417
|
export declare var ExtractionConfiguration: StaticStructureSchema;
|
|
418
|
+
export declare var FilterValue: StaticStructureSchema;
|
|
295
419
|
export declare var GatewayProtocolConfiguration: StaticStructureSchema;
|
|
296
420
|
export declare var InterceptorConfiguration: StaticStructureSchema;
|
|
297
421
|
export declare var McpTargetConfiguration: StaticStructureSchema;
|
|
298
422
|
export declare var MemoryStrategyInput: StaticStructureSchema;
|
|
299
423
|
export declare var ModifyConsolidationConfiguration: StaticStructureSchema;
|
|
300
424
|
export declare var ModifyExtractionConfiguration: StaticStructureSchema;
|
|
425
|
+
export declare var ModifyReflectionConfiguration: StaticStructureSchema;
|
|
301
426
|
export declare var Oauth2Discovery: StaticStructureSchema;
|
|
302
427
|
export declare var Oauth2ProviderConfigInput: StaticStructureSchema;
|
|
303
428
|
export declare var Oauth2ProviderConfigOutput: StaticStructureSchema;
|
|
429
|
+
export declare var PolicyDefinition: StaticStructureSchema;
|
|
430
|
+
export declare var RatingScale: StaticStructureSchema;
|
|
431
|
+
export declare var ReflectionConfiguration: StaticStructureSchema;
|
|
304
432
|
export declare var RequestHeaderConfiguration: StaticStructureSchema;
|
|
433
|
+
export declare var Resource: StaticStructureSchema;
|
|
305
434
|
export declare var TargetConfiguration: StaticStructureSchema;
|
|
306
435
|
export declare var ToolSchema: StaticStructureSchema;
|
|
307
436
|
export declare var TriggerCondition: StaticStructureSchema;
|
|
@@ -311,30 +440,45 @@ export declare var CreateAgentRuntimeEndpoint: StaticOperationSchema;
|
|
|
311
440
|
export declare var CreateApiKeyCredentialProvider: StaticOperationSchema;
|
|
312
441
|
export declare var CreateBrowser: StaticOperationSchema;
|
|
313
442
|
export declare var CreateCodeInterpreter: StaticOperationSchema;
|
|
443
|
+
export declare var CreateEvaluator: StaticOperationSchema;
|
|
314
444
|
export declare var CreateGateway: StaticOperationSchema;
|
|
315
445
|
export declare var CreateGatewayTarget: StaticOperationSchema;
|
|
316
446
|
export declare var CreateMemory: StaticOperationSchema;
|
|
317
447
|
export declare var CreateOauth2CredentialProvider: StaticOperationSchema;
|
|
448
|
+
export declare var CreateOnlineEvaluationConfig: StaticOperationSchema;
|
|
449
|
+
export declare var CreatePolicy: StaticOperationSchema;
|
|
450
|
+
export declare var CreatePolicyEngine: StaticOperationSchema;
|
|
318
451
|
export declare var CreateWorkloadIdentity: StaticOperationSchema;
|
|
319
452
|
export declare var DeleteAgentRuntime: StaticOperationSchema;
|
|
320
453
|
export declare var DeleteAgentRuntimeEndpoint: StaticOperationSchema;
|
|
321
454
|
export declare var DeleteApiKeyCredentialProvider: StaticOperationSchema;
|
|
322
455
|
export declare var DeleteBrowser: StaticOperationSchema;
|
|
323
456
|
export declare var DeleteCodeInterpreter: StaticOperationSchema;
|
|
457
|
+
export declare var DeleteEvaluator: StaticOperationSchema;
|
|
324
458
|
export declare var DeleteGateway: StaticOperationSchema;
|
|
325
459
|
export declare var DeleteGatewayTarget: StaticOperationSchema;
|
|
326
460
|
export declare var DeleteMemory: StaticOperationSchema;
|
|
327
461
|
export declare var DeleteOauth2CredentialProvider: StaticOperationSchema;
|
|
462
|
+
export declare var DeleteOnlineEvaluationConfig: StaticOperationSchema;
|
|
463
|
+
export declare var DeletePolicy: StaticOperationSchema;
|
|
464
|
+
export declare var DeletePolicyEngine: StaticOperationSchema;
|
|
465
|
+
export declare var DeleteResourcePolicy: StaticOperationSchema;
|
|
328
466
|
export declare var DeleteWorkloadIdentity: StaticOperationSchema;
|
|
329
467
|
export declare var GetAgentRuntime: StaticOperationSchema;
|
|
330
468
|
export declare var GetAgentRuntimeEndpoint: StaticOperationSchema;
|
|
331
469
|
export declare var GetApiKeyCredentialProvider: StaticOperationSchema;
|
|
332
470
|
export declare var GetBrowser: StaticOperationSchema;
|
|
333
471
|
export declare var GetCodeInterpreter: StaticOperationSchema;
|
|
472
|
+
export declare var GetEvaluator: StaticOperationSchema;
|
|
334
473
|
export declare var GetGateway: StaticOperationSchema;
|
|
335
474
|
export declare var GetGatewayTarget: StaticOperationSchema;
|
|
336
475
|
export declare var GetMemory: StaticOperationSchema;
|
|
337
476
|
export declare var GetOauth2CredentialProvider: StaticOperationSchema;
|
|
477
|
+
export declare var GetOnlineEvaluationConfig: StaticOperationSchema;
|
|
478
|
+
export declare var GetPolicy: StaticOperationSchema;
|
|
479
|
+
export declare var GetPolicyEngine: StaticOperationSchema;
|
|
480
|
+
export declare var GetPolicyGeneration: StaticOperationSchema;
|
|
481
|
+
export declare var GetResourcePolicy: StaticOperationSchema;
|
|
338
482
|
export declare var GetTokenVault: StaticOperationSchema;
|
|
339
483
|
export declare var GetWorkloadIdentity: StaticOperationSchema;
|
|
340
484
|
export declare var ListAgentRuntimeEndpoints: StaticOperationSchema;
|
|
@@ -343,21 +487,33 @@ export declare var ListAgentRuntimeVersions: StaticOperationSchema;
|
|
|
343
487
|
export declare var ListApiKeyCredentialProviders: StaticOperationSchema;
|
|
344
488
|
export declare var ListBrowsers: StaticOperationSchema;
|
|
345
489
|
export declare var ListCodeInterpreters: StaticOperationSchema;
|
|
490
|
+
export declare var ListEvaluators: StaticOperationSchema;
|
|
346
491
|
export declare var ListGateways: StaticOperationSchema;
|
|
347
492
|
export declare var ListGatewayTargets: StaticOperationSchema;
|
|
348
493
|
export declare var ListMemories: StaticOperationSchema;
|
|
349
494
|
export declare var ListOauth2CredentialProviders: StaticOperationSchema;
|
|
495
|
+
export declare var ListOnlineEvaluationConfigs: StaticOperationSchema;
|
|
496
|
+
export declare var ListPolicies: StaticOperationSchema;
|
|
497
|
+
export declare var ListPolicyEngines: StaticOperationSchema;
|
|
498
|
+
export declare var ListPolicyGenerationAssets: StaticOperationSchema;
|
|
499
|
+
export declare var ListPolicyGenerations: StaticOperationSchema;
|
|
350
500
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
351
501
|
export declare var ListWorkloadIdentities: StaticOperationSchema;
|
|
502
|
+
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
352
503
|
export declare var SetTokenVaultCMK: StaticOperationSchema;
|
|
504
|
+
export declare var StartPolicyGeneration: StaticOperationSchema;
|
|
353
505
|
export declare var SynchronizeGatewayTargets: StaticOperationSchema;
|
|
354
506
|
export declare var TagResource: StaticOperationSchema;
|
|
355
507
|
export declare var UntagResource: StaticOperationSchema;
|
|
356
508
|
export declare var UpdateAgentRuntime: StaticOperationSchema;
|
|
357
509
|
export declare var UpdateAgentRuntimeEndpoint: StaticOperationSchema;
|
|
358
510
|
export declare var UpdateApiKeyCredentialProvider: StaticOperationSchema;
|
|
511
|
+
export declare var UpdateEvaluator: StaticOperationSchema;
|
|
359
512
|
export declare var UpdateGateway: StaticOperationSchema;
|
|
360
513
|
export declare var UpdateGatewayTarget: StaticOperationSchema;
|
|
361
514
|
export declare var UpdateMemory: StaticOperationSchema;
|
|
362
515
|
export declare var UpdateOauth2CredentialProvider: StaticOperationSchema;
|
|
516
|
+
export declare var UpdateOnlineEvaluationConfig: StaticOperationSchema;
|
|
517
|
+
export declare var UpdatePolicy: StaticOperationSchema;
|
|
518
|
+
export declare var UpdatePolicyEngine: StaticOperationSchema;
|
|
363
519
|
export declare var UpdateWorkloadIdentity: StaticOperationSchema;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
4
|
+
export declare const waitForPolicyActive: (
|
|
5
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
|
+
input: GetPolicyCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPolicyActive: (
|
|
9
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
|
+
input: GetPolicyCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
4
|
+
export declare const waitForPolicyDeleted: (
|
|
5
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
|
+
input: GetPolicyCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPolicyDeleted: (
|
|
9
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
|
+
input: GetPolicyCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
|
|
4
|
+
export declare const waitForPolicyEngineActive: (
|
|
5
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
|
+
input: GetPolicyEngineCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPolicyEngineActive: (
|
|
9
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
|
+
input: GetPolicyEngineCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
|
|
4
|
+
export declare const waitForPolicyEngineDeleted: (
|
|
5
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
|
+
input: GetPolicyEngineCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPolicyEngineDeleted: (
|
|
9
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
|
+
input: GetPolicyEngineCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyGenerationCommandInput } from "../commands/GetPolicyGenerationCommand";
|
|
4
|
+
export declare const waitForPolicyGenerationCompleted: (
|
|
5
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
6
|
+
input: GetPolicyGenerationCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilPolicyGenerationCompleted: (
|
|
9
|
+
params: WaiterConfiguration<BedrockAgentCoreControlClient>,
|
|
10
|
+
input: GetPolicyGenerationCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until a Policy is active
|
|
6
|
+
* @deprecated Use waitUntilPolicyActive instead. waitForPolicyActive does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until a Policy is active
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPolicyCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPolicyActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyCommandInput } from "../commands/GetPolicyCommand";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until a Policy is deleted
|
|
6
|
+
* @deprecated Use waitUntilPolicyDeleted instead. waitForPolicyDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until a Policy is deleted
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPolicyCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPolicyDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until a PolicyEngine is active
|
|
6
|
+
* @deprecated Use waitUntilPolicyEngineActive instead. waitForPolicyEngineActive does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until a PolicyEngine is active
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPolicyEngineCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPolicyEngineActive: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyEngineCommandInput } from "../commands/GetPolicyEngineCommand";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until a PolicyEngine is deleted
|
|
6
|
+
* @deprecated Use waitUntilPolicyEngineDeleted instead. waitForPolicyEngineDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until a PolicyEngine is deleted
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPolicyEngineCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPolicyEngineDeleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyEngineCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { GetPolicyGenerationCommandInput } from "../commands/GetPolicyGenerationCommand";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until policy generation is completed
|
|
6
|
+
* @deprecated Use waitUntilPolicyGenerationCompleted instead. waitForPolicyGenerationCompleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until policy generation is completed
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetPolicyGenerationCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilPolicyGenerationCompleted: (params: WaiterConfiguration<BedrockAgentCoreControlClient>, input: GetPolicyGenerationCommandInput) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.943.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.943.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.943.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.943.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.943.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|