@aws-sdk/client-bedrock-agentcore-control 3.1103.0 → 3.1105.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 +84 -0
- package/dist-cjs/index.js +745 -91
- package/dist-es/BedrockAgentCoreControl.js +30 -0
- package/dist-es/commands/BatchPutGatewayRateLimitsCommand.js +4 -0
- package/dist-es/commands/CreateCapacityProviderCommand.js +4 -0
- package/dist-es/commands/CreateGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/DeleteCapacityProviderCommand.js +4 -0
- package/dist-es/commands/DeleteGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/GetCapacityProviderCommand.js +4 -0
- package/dist-es/commands/GetGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.js +4 -0
- package/dist-es/commands/ListCapacityProvidersCommand.js +4 -0
- package/dist-es/commands/ListGatewayRateLimitsCommand.js +4 -0
- package/dist-es/commands/UpdateCapacityProviderCommand.js +4 -0
- package/dist-es/commands/UpdateGatewayRateLimitCommand.js +4 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/models/enums.js +48 -0
- package/dist-es/models/errors.js +13 -0
- package/dist-es/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.js +4 -0
- package/dist-es/pagination/ListCapacityProvidersPaginator.js +4 -0
- package/dist-es/pagination/ListGatewayRateLimitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +546 -91
- package/dist-types/BedrockAgentCoreControl.d.ts +106 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +14 -2
- package/dist-types/commands/BatchPutGatewayRateLimitsCommand.d.ts +164 -0
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +189 -0
- package/dist-types/commands/CreateGatewayRateLimitCommand.d.ts +156 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +16 -0
- package/dist-types/commands/CreateHarnessCommand.d.ts +8 -0
- package/dist-types/commands/CreateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +3 -1
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +94 -0
- package/dist-types/commands/DeleteGatewayRateLimitCommand.d.ts +91 -0
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHarnessCommand.d.ts +4 -0
- package/dist-types/commands/DeleteHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/GetCapacityProviderCommand.d.ts +180 -0
- package/dist-types/commands/GetGatewayRateLimitCommand.d.ts +120 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +9 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +4 -0
- package/dist-types/commands/GetHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/commands/GetPolicyGenerationSummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicySummaryCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetTokenVaultCommand.d.ts +1 -1
- package/dist-types/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.d.ts +92 -0
- package/dist-types/commands/ListCapacityProvidersCommand.d.ts +93 -0
- package/dist-types/commands/ListGatewayRateLimitsCommand.d.ts +126 -0
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +2 -2
- package/dist-types/commands/ListHarnessEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPolicySummariesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +9 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +7 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +101 -0
- package/dist-types/commands/UpdateGatewayRateLimitCommand.d.ts +149 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHarnessCommand.d.ts +8 -0
- package/dist-types/commands/UpdateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/models/enums.d.ts +112 -0
- package/dist-types/models/errors.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +2529 -2373
- package/dist-types/models/models_1.d.ts +4418 -4735
- package/dist-types/models/models_2.d.ts +1467 -3
- package/dist-types/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCapacityProvidersPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGatewayRateLimitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +63 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +226 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +72 -0
- package/dist-types/ts3.4/commands/BatchPutGatewayRateLimitsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetPolicyGenerationSummaryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPolicySummaryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTokenVaultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAgentRuntimeVersionsByCapacityProviderCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGatewayRateLimitsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListHarnessEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationSummariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPolicySummariesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateGatewayRateLimitCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateHarnessEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/models/enums.d.ts +60 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +363 -369
- package/dist-types/ts3.4/models/models_1.d.ts +371 -410
- package/dist-types/ts3.4/models/models_2.d.ts +410 -13
- package/dist-types/ts3.4/pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCapacityProvidersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGatewayRateLimitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +63 -0
- package/package.json +1 -1
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
2
|
import { BedrockAgentCoreControlClient } from "./BedrockAgentCoreControlClient";
|
|
3
3
|
import { AddDatasetExamplesCommand, } from "./commands/AddDatasetExamplesCommand";
|
|
4
|
+
import { BatchPutGatewayRateLimitsCommand, } from "./commands/BatchPutGatewayRateLimitsCommand";
|
|
4
5
|
import { CreateAgentRuntimeCommand, } from "./commands/CreateAgentRuntimeCommand";
|
|
5
6
|
import { CreateAgentRuntimeEndpointCommand, } from "./commands/CreateAgentRuntimeEndpointCommand";
|
|
6
7
|
import { CreateApiKeyCredentialProviderCommand, } from "./commands/CreateApiKeyCredentialProviderCommand";
|
|
7
8
|
import { CreateBrowserCommand, } from "./commands/CreateBrowserCommand";
|
|
8
9
|
import { CreateBrowserProfileCommand, } from "./commands/CreateBrowserProfileCommand";
|
|
10
|
+
import { CreateCapacityProviderCommand, } from "./commands/CreateCapacityProviderCommand";
|
|
9
11
|
import { CreateCodeInterpreterCommand, } from "./commands/CreateCodeInterpreterCommand";
|
|
10
12
|
import { CreateConfigurationBundleCommand, } from "./commands/CreateConfigurationBundleCommand";
|
|
11
13
|
import { CreateDatasetCommand, } from "./commands/CreateDatasetCommand";
|
|
12
14
|
import { CreateDatasetVersionCommand, } from "./commands/CreateDatasetVersionCommand";
|
|
13
15
|
import { CreateEvaluatorCommand, } from "./commands/CreateEvaluatorCommand";
|
|
14
16
|
import { CreateGatewayCommand, } from "./commands/CreateGatewayCommand";
|
|
17
|
+
import { CreateGatewayRateLimitCommand, } from "./commands/CreateGatewayRateLimitCommand";
|
|
15
18
|
import { CreateGatewayRuleCommand, } from "./commands/CreateGatewayRuleCommand";
|
|
16
19
|
import { CreateGatewayTargetCommand, } from "./commands/CreateGatewayTargetCommand";
|
|
17
20
|
import { CreateHarnessCommand, } from "./commands/CreateHarnessCommand";
|
|
@@ -32,12 +35,14 @@ import { DeleteAgentRuntimeEndpointCommand, } from "./commands/DeleteAgentRuntim
|
|
|
32
35
|
import { DeleteApiKeyCredentialProviderCommand, } from "./commands/DeleteApiKeyCredentialProviderCommand";
|
|
33
36
|
import { DeleteBrowserCommand, } from "./commands/DeleteBrowserCommand";
|
|
34
37
|
import { DeleteBrowserProfileCommand, } from "./commands/DeleteBrowserProfileCommand";
|
|
38
|
+
import { DeleteCapacityProviderCommand, } from "./commands/DeleteCapacityProviderCommand";
|
|
35
39
|
import { DeleteCodeInterpreterCommand, } from "./commands/DeleteCodeInterpreterCommand";
|
|
36
40
|
import { DeleteConfigurationBundleCommand, } from "./commands/DeleteConfigurationBundleCommand";
|
|
37
41
|
import { DeleteDatasetCommand, } from "./commands/DeleteDatasetCommand";
|
|
38
42
|
import { DeleteDatasetExamplesCommand, } from "./commands/DeleteDatasetExamplesCommand";
|
|
39
43
|
import { DeleteEvaluatorCommand, } from "./commands/DeleteEvaluatorCommand";
|
|
40
44
|
import { DeleteGatewayCommand, } from "./commands/DeleteGatewayCommand";
|
|
45
|
+
import { DeleteGatewayRateLimitCommand, } from "./commands/DeleteGatewayRateLimitCommand";
|
|
41
46
|
import { DeleteGatewayRuleCommand, } from "./commands/DeleteGatewayRuleCommand";
|
|
42
47
|
import { DeleteGatewayTargetCommand, } from "./commands/DeleteGatewayTargetCommand";
|
|
43
48
|
import { DeleteHarnessCommand, } from "./commands/DeleteHarnessCommand";
|
|
@@ -59,12 +64,14 @@ import { GetAgentRuntimeEndpointCommand, } from "./commands/GetAgentRuntimeEndpo
|
|
|
59
64
|
import { GetApiKeyCredentialProviderCommand, } from "./commands/GetApiKeyCredentialProviderCommand";
|
|
60
65
|
import { GetBrowserCommand, } from "./commands/GetBrowserCommand";
|
|
61
66
|
import { GetBrowserProfileCommand, } from "./commands/GetBrowserProfileCommand";
|
|
67
|
+
import { GetCapacityProviderCommand, } from "./commands/GetCapacityProviderCommand";
|
|
62
68
|
import { GetCodeInterpreterCommand, } from "./commands/GetCodeInterpreterCommand";
|
|
63
69
|
import { GetConfigurationBundleCommand, } from "./commands/GetConfigurationBundleCommand";
|
|
64
70
|
import { GetConfigurationBundleVersionCommand, } from "./commands/GetConfigurationBundleVersionCommand";
|
|
65
71
|
import { GetDatasetCommand, } from "./commands/GetDatasetCommand";
|
|
66
72
|
import { GetEvaluatorCommand, } from "./commands/GetEvaluatorCommand";
|
|
67
73
|
import { GetGatewayCommand, } from "./commands/GetGatewayCommand";
|
|
74
|
+
import { GetGatewayRateLimitCommand, } from "./commands/GetGatewayRateLimitCommand";
|
|
68
75
|
import { GetGatewayRuleCommand, } from "./commands/GetGatewayRuleCommand";
|
|
69
76
|
import { GetGatewayTargetCommand, } from "./commands/GetGatewayTargetCommand";
|
|
70
77
|
import { GetHarnessCommand, } from "./commands/GetHarnessCommand";
|
|
@@ -88,10 +95,12 @@ import { GetTokenVaultCommand, } from "./commands/GetTokenVaultCommand";
|
|
|
88
95
|
import { GetWorkloadIdentityCommand, } from "./commands/GetWorkloadIdentityCommand";
|
|
89
96
|
import { ListAgentRuntimeEndpointsCommand, } from "./commands/ListAgentRuntimeEndpointsCommand";
|
|
90
97
|
import { ListAgentRuntimesCommand, } from "./commands/ListAgentRuntimesCommand";
|
|
98
|
+
import { ListAgentRuntimeVersionsByCapacityProviderCommand, } from "./commands/ListAgentRuntimeVersionsByCapacityProviderCommand";
|
|
91
99
|
import { ListAgentRuntimeVersionsCommand, } from "./commands/ListAgentRuntimeVersionsCommand";
|
|
92
100
|
import { ListApiKeyCredentialProvidersCommand, } from "./commands/ListApiKeyCredentialProvidersCommand";
|
|
93
101
|
import { ListBrowserProfilesCommand, } from "./commands/ListBrowserProfilesCommand";
|
|
94
102
|
import { ListBrowsersCommand, } from "./commands/ListBrowsersCommand";
|
|
103
|
+
import { ListCapacityProvidersCommand, } from "./commands/ListCapacityProvidersCommand";
|
|
95
104
|
import { ListCodeInterpretersCommand, } from "./commands/ListCodeInterpretersCommand";
|
|
96
105
|
import { ListConfigurationBundlesCommand, } from "./commands/ListConfigurationBundlesCommand";
|
|
97
106
|
import { ListConfigurationBundleVersionsCommand, } from "./commands/ListConfigurationBundleVersionsCommand";
|
|
@@ -99,6 +108,7 @@ import { ListDatasetExamplesCommand, } from "./commands/ListDatasetExamplesComma
|
|
|
99
108
|
import { ListDatasetsCommand, } from "./commands/ListDatasetsCommand";
|
|
100
109
|
import { ListDatasetVersionsCommand, } from "./commands/ListDatasetVersionsCommand";
|
|
101
110
|
import { ListEvaluatorsCommand, } from "./commands/ListEvaluatorsCommand";
|
|
111
|
+
import { ListGatewayRateLimitsCommand, } from "./commands/ListGatewayRateLimitsCommand";
|
|
102
112
|
import { ListGatewayRulesCommand, } from "./commands/ListGatewayRulesCommand";
|
|
103
113
|
import { ListGatewaysCommand, } from "./commands/ListGatewaysCommand";
|
|
104
114
|
import { ListGatewayTargetsCommand, } from "./commands/ListGatewayTargetsCommand";
|
|
@@ -132,11 +142,13 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
132
142
|
import { UpdateAgentRuntimeCommand, } from "./commands/UpdateAgentRuntimeCommand";
|
|
133
143
|
import { UpdateAgentRuntimeEndpointCommand, } from "./commands/UpdateAgentRuntimeEndpointCommand";
|
|
134
144
|
import { UpdateApiKeyCredentialProviderCommand, } from "./commands/UpdateApiKeyCredentialProviderCommand";
|
|
145
|
+
import { UpdateCapacityProviderCommand, } from "./commands/UpdateCapacityProviderCommand";
|
|
135
146
|
import { UpdateConfigurationBundleCommand, } from "./commands/UpdateConfigurationBundleCommand";
|
|
136
147
|
import { UpdateDatasetCommand, } from "./commands/UpdateDatasetCommand";
|
|
137
148
|
import { UpdateDatasetExamplesCommand, } from "./commands/UpdateDatasetExamplesCommand";
|
|
138
149
|
import { UpdateEvaluatorCommand, } from "./commands/UpdateEvaluatorCommand";
|
|
139
150
|
import { UpdateGatewayCommand, } from "./commands/UpdateGatewayCommand";
|
|
151
|
+
import { UpdateGatewayRateLimitCommand, } from "./commands/UpdateGatewayRateLimitCommand";
|
|
140
152
|
import { UpdateGatewayRuleCommand, } from "./commands/UpdateGatewayRuleCommand";
|
|
141
153
|
import { UpdateGatewayTargetCommand, } from "./commands/UpdateGatewayTargetCommand";
|
|
142
154
|
import { UpdateHarnessCommand, } from "./commands/UpdateHarnessCommand";
|
|
@@ -155,10 +167,12 @@ import { UpdateRegistryRecordStatusCommand, } from "./commands/UpdateRegistryRec
|
|
|
155
167
|
import { UpdateWorkloadIdentityCommand, } from "./commands/UpdateWorkloadIdentityCommand";
|
|
156
168
|
import { paginateListAgentRuntimeEndpoints } from "./pagination/ListAgentRuntimeEndpointsPaginator";
|
|
157
169
|
import { paginateListAgentRuntimes } from "./pagination/ListAgentRuntimesPaginator";
|
|
170
|
+
import { paginateListAgentRuntimeVersionsByCapacityProvider, } from "./pagination/ListAgentRuntimeVersionsByCapacityProviderPaginator";
|
|
158
171
|
import { paginateListAgentRuntimeVersions } from "./pagination/ListAgentRuntimeVersionsPaginator";
|
|
159
172
|
import { paginateListApiKeyCredentialProviders } from "./pagination/ListApiKeyCredentialProvidersPaginator";
|
|
160
173
|
import { paginateListBrowserProfiles } from "./pagination/ListBrowserProfilesPaginator";
|
|
161
174
|
import { paginateListBrowsers } from "./pagination/ListBrowsersPaginator";
|
|
175
|
+
import { paginateListCapacityProviders } from "./pagination/ListCapacityProvidersPaginator";
|
|
162
176
|
import { paginateListCodeInterpreters } from "./pagination/ListCodeInterpretersPaginator";
|
|
163
177
|
import { paginateListConfigurationBundles } from "./pagination/ListConfigurationBundlesPaginator";
|
|
164
178
|
import { paginateListConfigurationBundleVersions } from "./pagination/ListConfigurationBundleVersionsPaginator";
|
|
@@ -166,6 +180,7 @@ import { paginateListDatasetExamples } from "./pagination/ListDatasetExamplesPag
|
|
|
166
180
|
import { paginateListDatasets } from "./pagination/ListDatasetsPaginator";
|
|
167
181
|
import { paginateListDatasetVersions } from "./pagination/ListDatasetVersionsPaginator";
|
|
168
182
|
import { paginateListEvaluators } from "./pagination/ListEvaluatorsPaginator";
|
|
183
|
+
import { paginateListGatewayRateLimits } from "./pagination/ListGatewayRateLimitsPaginator";
|
|
169
184
|
import { paginateListGatewayRules } from "./pagination/ListGatewayRulesPaginator";
|
|
170
185
|
import { paginateListGateways } from "./pagination/ListGatewaysPaginator";
|
|
171
186
|
import { paginateListGatewayTargets } from "./pagination/ListGatewayTargetsPaginator";
|
|
@@ -196,17 +211,20 @@ import { waitUntilPolicyEngineDeleted } from "./waiters/waitForPolicyEngineDelet
|
|
|
196
211
|
import { waitUntilPolicyGenerationCompleted } from "./waiters/waitForPolicyGenerationCompleted";
|
|
197
212
|
const commands = {
|
|
198
213
|
AddDatasetExamplesCommand,
|
|
214
|
+
BatchPutGatewayRateLimitsCommand,
|
|
199
215
|
CreateAgentRuntimeCommand,
|
|
200
216
|
CreateAgentRuntimeEndpointCommand,
|
|
201
217
|
CreateApiKeyCredentialProviderCommand,
|
|
202
218
|
CreateBrowserCommand,
|
|
203
219
|
CreateBrowserProfileCommand,
|
|
220
|
+
CreateCapacityProviderCommand,
|
|
204
221
|
CreateCodeInterpreterCommand,
|
|
205
222
|
CreateConfigurationBundleCommand,
|
|
206
223
|
CreateDatasetCommand,
|
|
207
224
|
CreateDatasetVersionCommand,
|
|
208
225
|
CreateEvaluatorCommand,
|
|
209
226
|
CreateGatewayCommand,
|
|
227
|
+
CreateGatewayRateLimitCommand,
|
|
210
228
|
CreateGatewayRuleCommand,
|
|
211
229
|
CreateGatewayTargetCommand,
|
|
212
230
|
CreateHarnessCommand,
|
|
@@ -227,12 +245,14 @@ const commands = {
|
|
|
227
245
|
DeleteApiKeyCredentialProviderCommand,
|
|
228
246
|
DeleteBrowserCommand,
|
|
229
247
|
DeleteBrowserProfileCommand,
|
|
248
|
+
DeleteCapacityProviderCommand,
|
|
230
249
|
DeleteCodeInterpreterCommand,
|
|
231
250
|
DeleteConfigurationBundleCommand,
|
|
232
251
|
DeleteDatasetCommand,
|
|
233
252
|
DeleteDatasetExamplesCommand,
|
|
234
253
|
DeleteEvaluatorCommand,
|
|
235
254
|
DeleteGatewayCommand,
|
|
255
|
+
DeleteGatewayRateLimitCommand,
|
|
236
256
|
DeleteGatewayRuleCommand,
|
|
237
257
|
DeleteGatewayTargetCommand,
|
|
238
258
|
DeleteHarnessCommand,
|
|
@@ -254,12 +274,14 @@ const commands = {
|
|
|
254
274
|
GetApiKeyCredentialProviderCommand,
|
|
255
275
|
GetBrowserCommand,
|
|
256
276
|
GetBrowserProfileCommand,
|
|
277
|
+
GetCapacityProviderCommand,
|
|
257
278
|
GetCodeInterpreterCommand,
|
|
258
279
|
GetConfigurationBundleCommand,
|
|
259
280
|
GetConfigurationBundleVersionCommand,
|
|
260
281
|
GetDatasetCommand,
|
|
261
282
|
GetEvaluatorCommand,
|
|
262
283
|
GetGatewayCommand,
|
|
284
|
+
GetGatewayRateLimitCommand,
|
|
263
285
|
GetGatewayRuleCommand,
|
|
264
286
|
GetGatewayTargetCommand,
|
|
265
287
|
GetHarnessCommand,
|
|
@@ -284,9 +306,11 @@ const commands = {
|
|
|
284
306
|
ListAgentRuntimeEndpointsCommand,
|
|
285
307
|
ListAgentRuntimesCommand,
|
|
286
308
|
ListAgentRuntimeVersionsCommand,
|
|
309
|
+
ListAgentRuntimeVersionsByCapacityProviderCommand,
|
|
287
310
|
ListApiKeyCredentialProvidersCommand,
|
|
288
311
|
ListBrowserProfilesCommand,
|
|
289
312
|
ListBrowsersCommand,
|
|
313
|
+
ListCapacityProvidersCommand,
|
|
290
314
|
ListCodeInterpretersCommand,
|
|
291
315
|
ListConfigurationBundlesCommand,
|
|
292
316
|
ListConfigurationBundleVersionsCommand,
|
|
@@ -294,6 +318,7 @@ const commands = {
|
|
|
294
318
|
ListDatasetsCommand,
|
|
295
319
|
ListDatasetVersionsCommand,
|
|
296
320
|
ListEvaluatorsCommand,
|
|
321
|
+
ListGatewayRateLimitsCommand,
|
|
297
322
|
ListGatewayRulesCommand,
|
|
298
323
|
ListGatewaysCommand,
|
|
299
324
|
ListGatewayTargetsCommand,
|
|
@@ -327,11 +352,13 @@ const commands = {
|
|
|
327
352
|
UpdateAgentRuntimeCommand,
|
|
328
353
|
UpdateAgentRuntimeEndpointCommand,
|
|
329
354
|
UpdateApiKeyCredentialProviderCommand,
|
|
355
|
+
UpdateCapacityProviderCommand,
|
|
330
356
|
UpdateConfigurationBundleCommand,
|
|
331
357
|
UpdateDatasetCommand,
|
|
332
358
|
UpdateDatasetExamplesCommand,
|
|
333
359
|
UpdateEvaluatorCommand,
|
|
334
360
|
UpdateGatewayCommand,
|
|
361
|
+
UpdateGatewayRateLimitCommand,
|
|
335
362
|
UpdateGatewayRuleCommand,
|
|
336
363
|
UpdateGatewayTargetCommand,
|
|
337
364
|
UpdateHarnessCommand,
|
|
@@ -353,9 +380,11 @@ const paginators = {
|
|
|
353
380
|
paginateListAgentRuntimeEndpoints,
|
|
354
381
|
paginateListAgentRuntimes,
|
|
355
382
|
paginateListAgentRuntimeVersions,
|
|
383
|
+
paginateListAgentRuntimeVersionsByCapacityProvider,
|
|
356
384
|
paginateListApiKeyCredentialProviders,
|
|
357
385
|
paginateListBrowserProfiles,
|
|
358
386
|
paginateListBrowsers,
|
|
387
|
+
paginateListCapacityProviders,
|
|
359
388
|
paginateListCodeInterpreters,
|
|
360
389
|
paginateListConfigurationBundles,
|
|
361
390
|
paginateListConfigurationBundleVersions,
|
|
@@ -363,6 +392,7 @@ const paginators = {
|
|
|
363
392
|
paginateListDatasets,
|
|
364
393
|
paginateListDatasetVersions,
|
|
365
394
|
paginateListEvaluators,
|
|
395
|
+
paginateListGatewayRateLimits,
|
|
366
396
|
paginateListGatewayRules,
|
|
367
397
|
paginateListGateways,
|
|
368
398
|
paginateListGatewayTargets,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { ListAgentRuntimeVersionsByCapacityProvider$ } from "../schemas/schemas_0";
|
|
3
|
+
export class ListAgentRuntimeVersionsByCapacityProviderCommand extends command(_ep0, _mw0, "ListAgentRuntimeVersionsByCapacityProvider", ListAgentRuntimeVersionsByCapacityProvider$) {
|
|
4
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
export * from "./AddDatasetExamplesCommand";
|
|
2
|
+
export * from "./BatchPutGatewayRateLimitsCommand";
|
|
2
3
|
export * from "./CreateAgentRuntimeCommand";
|
|
3
4
|
export * from "./CreateAgentRuntimeEndpointCommand";
|
|
4
5
|
export * from "./CreateApiKeyCredentialProviderCommand";
|
|
5
6
|
export * from "./CreateBrowserCommand";
|
|
6
7
|
export * from "./CreateBrowserProfileCommand";
|
|
8
|
+
export * from "./CreateCapacityProviderCommand";
|
|
7
9
|
export * from "./CreateCodeInterpreterCommand";
|
|
8
10
|
export * from "./CreateConfigurationBundleCommand";
|
|
9
11
|
export * from "./CreateDatasetCommand";
|
|
10
12
|
export * from "./CreateDatasetVersionCommand";
|
|
11
13
|
export * from "./CreateEvaluatorCommand";
|
|
12
14
|
export * from "./CreateGatewayCommand";
|
|
15
|
+
export * from "./CreateGatewayRateLimitCommand";
|
|
13
16
|
export * from "./CreateGatewayRuleCommand";
|
|
14
17
|
export * from "./CreateGatewayTargetCommand";
|
|
15
18
|
export * from "./CreateHarnessCommand";
|
|
@@ -30,12 +33,14 @@ export * from "./DeleteAgentRuntimeEndpointCommand";
|
|
|
30
33
|
export * from "./DeleteApiKeyCredentialProviderCommand";
|
|
31
34
|
export * from "./DeleteBrowserCommand";
|
|
32
35
|
export * from "./DeleteBrowserProfileCommand";
|
|
36
|
+
export * from "./DeleteCapacityProviderCommand";
|
|
33
37
|
export * from "./DeleteCodeInterpreterCommand";
|
|
34
38
|
export * from "./DeleteConfigurationBundleCommand";
|
|
35
39
|
export * from "./DeleteDatasetCommand";
|
|
36
40
|
export * from "./DeleteDatasetExamplesCommand";
|
|
37
41
|
export * from "./DeleteEvaluatorCommand";
|
|
38
42
|
export * from "./DeleteGatewayCommand";
|
|
43
|
+
export * from "./DeleteGatewayRateLimitCommand";
|
|
39
44
|
export * from "./DeleteGatewayRuleCommand";
|
|
40
45
|
export * from "./DeleteGatewayTargetCommand";
|
|
41
46
|
export * from "./DeleteHarnessCommand";
|
|
@@ -57,12 +62,14 @@ export * from "./GetAgentRuntimeEndpointCommand";
|
|
|
57
62
|
export * from "./GetApiKeyCredentialProviderCommand";
|
|
58
63
|
export * from "./GetBrowserCommand";
|
|
59
64
|
export * from "./GetBrowserProfileCommand";
|
|
65
|
+
export * from "./GetCapacityProviderCommand";
|
|
60
66
|
export * from "./GetCodeInterpreterCommand";
|
|
61
67
|
export * from "./GetConfigurationBundleCommand";
|
|
62
68
|
export * from "./GetConfigurationBundleVersionCommand";
|
|
63
69
|
export * from "./GetDatasetCommand";
|
|
64
70
|
export * from "./GetEvaluatorCommand";
|
|
65
71
|
export * from "./GetGatewayCommand";
|
|
72
|
+
export * from "./GetGatewayRateLimitCommand";
|
|
66
73
|
export * from "./GetGatewayRuleCommand";
|
|
67
74
|
export * from "./GetGatewayTargetCommand";
|
|
68
75
|
export * from "./GetHarnessCommand";
|
|
@@ -85,11 +92,13 @@ export * from "./GetResourcePolicyCommand";
|
|
|
85
92
|
export * from "./GetTokenVaultCommand";
|
|
86
93
|
export * from "./GetWorkloadIdentityCommand";
|
|
87
94
|
export * from "./ListAgentRuntimeEndpointsCommand";
|
|
95
|
+
export * from "./ListAgentRuntimeVersionsByCapacityProviderCommand";
|
|
88
96
|
export * from "./ListAgentRuntimeVersionsCommand";
|
|
89
97
|
export * from "./ListAgentRuntimesCommand";
|
|
90
98
|
export * from "./ListApiKeyCredentialProvidersCommand";
|
|
91
99
|
export * from "./ListBrowserProfilesCommand";
|
|
92
100
|
export * from "./ListBrowsersCommand";
|
|
101
|
+
export * from "./ListCapacityProvidersCommand";
|
|
93
102
|
export * from "./ListCodeInterpretersCommand";
|
|
94
103
|
export * from "./ListConfigurationBundleVersionsCommand";
|
|
95
104
|
export * from "./ListConfigurationBundlesCommand";
|
|
@@ -97,6 +106,7 @@ export * from "./ListDatasetExamplesCommand";
|
|
|
97
106
|
export * from "./ListDatasetVersionsCommand";
|
|
98
107
|
export * from "./ListDatasetsCommand";
|
|
99
108
|
export * from "./ListEvaluatorsCommand";
|
|
109
|
+
export * from "./ListGatewayRateLimitsCommand";
|
|
100
110
|
export * from "./ListGatewayRulesCommand";
|
|
101
111
|
export * from "./ListGatewayTargetsCommand";
|
|
102
112
|
export * from "./ListGatewaysCommand";
|
|
@@ -130,11 +140,13 @@ export * from "./UntagResourceCommand";
|
|
|
130
140
|
export * from "./UpdateAgentRuntimeCommand";
|
|
131
141
|
export * from "./UpdateAgentRuntimeEndpointCommand";
|
|
132
142
|
export * from "./UpdateApiKeyCredentialProviderCommand";
|
|
143
|
+
export * from "./UpdateCapacityProviderCommand";
|
|
133
144
|
export * from "./UpdateConfigurationBundleCommand";
|
|
134
145
|
export * from "./UpdateDatasetCommand";
|
|
135
146
|
export * from "./UpdateDatasetExamplesCommand";
|
|
136
147
|
export * from "./UpdateEvaluatorCommand";
|
|
137
148
|
export * from "./UpdateGatewayCommand";
|
|
149
|
+
export * from "./UpdateGatewayRateLimitCommand";
|
|
138
150
|
export * from "./UpdateGatewayRuleCommand";
|
|
139
151
|
export * from "./UpdateGatewayTargetCommand";
|
|
140
152
|
export * from "./UpdateHarnessCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -96,6 +96,43 @@ export const ResourceType = {
|
|
|
96
96
|
CUSTOM: "CUSTOM",
|
|
97
97
|
SYSTEM: "SYSTEM",
|
|
98
98
|
};
|
|
99
|
+
export const CapacityReservationPreference = {
|
|
100
|
+
CAPACITY_RESERVATIONS_ONLY: "capacity-reservations-only",
|
|
101
|
+
NONE: "none",
|
|
102
|
+
OPEN: "open",
|
|
103
|
+
};
|
|
104
|
+
export const EbsVolumeType = {
|
|
105
|
+
GP2: "gp2",
|
|
106
|
+
GP3: "gp3",
|
|
107
|
+
IO1: "io1",
|
|
108
|
+
IO2: "io2",
|
|
109
|
+
SC1: "sc1",
|
|
110
|
+
ST1: "st1",
|
|
111
|
+
STANDARD: "standard",
|
|
112
|
+
};
|
|
113
|
+
export const Monitoring = {
|
|
114
|
+
BASIC: "BASIC",
|
|
115
|
+
DETAILED: "DETAILED",
|
|
116
|
+
};
|
|
117
|
+
export const OperatingSystem = {
|
|
118
|
+
LINUX_ARM64: "LINUX_ARM64",
|
|
119
|
+
LINUX_X86_64: "LINUX_X86_64",
|
|
120
|
+
};
|
|
121
|
+
export const CapacityProviderStatus = {
|
|
122
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
123
|
+
CREATING: "CREATING",
|
|
124
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
125
|
+
DELETING: "DELETING",
|
|
126
|
+
READY: "READY",
|
|
127
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
128
|
+
UPDATING: "UPDATING",
|
|
129
|
+
};
|
|
130
|
+
export const CapacityProviderStatusCode = {
|
|
131
|
+
INTERNAL_SERVER_EXCEPTION: "INTERNAL_SERVER_EXCEPTION",
|
|
132
|
+
QUOTA_EXCEEDED: "QUOTA_EXCEEDED",
|
|
133
|
+
THROTTLED: "THROTTLED",
|
|
134
|
+
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
135
|
+
};
|
|
99
136
|
export const CodeInterpreterNetworkMode = {
|
|
100
137
|
PUBLIC: "PUBLIC",
|
|
101
138
|
SANDBOX: "SANDBOX",
|
|
@@ -148,6 +185,16 @@ export const EvaluatorType = {
|
|
|
148
185
|
CODE: "CustomCode",
|
|
149
186
|
CUSTOM: "Custom",
|
|
150
187
|
};
|
|
188
|
+
export const Period = {
|
|
189
|
+
MINUTE: "minute",
|
|
190
|
+
SECOND: "second",
|
|
191
|
+
};
|
|
192
|
+
export const GatewayRateLimitStatus = {
|
|
193
|
+
ACTIVE: "ACTIVE",
|
|
194
|
+
CREATING: "CREATING",
|
|
195
|
+
DELETING: "DELETING",
|
|
196
|
+
UPDATING: "UPDATING",
|
|
197
|
+
};
|
|
151
198
|
export const AuthorizerType = {
|
|
152
199
|
AUTHENTICATE_ONLY: "AUTHENTICATE_ONLY",
|
|
153
200
|
AWS_IAM: "AWS_IAM",
|
|
@@ -260,6 +307,7 @@ export const TargetType = {
|
|
|
260
307
|
AGENTCORE_RUNTIME: "AGENTCORE_RUNTIME",
|
|
261
308
|
API_GATEWAY: "API_GATEWAY",
|
|
262
309
|
CONNECTOR: "CONNECTOR",
|
|
310
|
+
HTTP_CONNECTOR: "HTTP_CONNECTOR",
|
|
263
311
|
LAMBDA: "LAMBDA",
|
|
264
312
|
MCP_SERVER: "MCP_SERVER",
|
|
265
313
|
OPEN_API_SCHEMA: "OPEN_API_SCHEMA",
|
package/dist-es/models/errors.js
CHANGED
|
@@ -135,6 +135,19 @@ export class UnauthorizedException extends __BaseException {
|
|
|
135
135
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
|
+
export class RetryableConflictException extends __BaseException {
|
|
139
|
+
name = "RetryableConflictException";
|
|
140
|
+
$fault = "client";
|
|
141
|
+
$retryable = {};
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "RetryableConflictException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, RetryableConflictException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
138
151
|
export class ServiceException extends __BaseException {
|
|
139
152
|
name = "ServiceException";
|
|
140
153
|
$fault = "server";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListAgentRuntimeVersionsByCapacityProviderCommand, } from "../commands/ListAgentRuntimeVersionsByCapacityProviderCommand";
|
|
4
|
+
export const paginateListAgentRuntimeVersionsByCapacityProvider = createPaginator(BedrockAgentCoreControlClient, ListAgentRuntimeVersionsByCapacityProviderCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListCapacityProvidersCommand, } from "../commands/ListCapacityProvidersCommand";
|
|
4
|
+
export const paginateListCapacityProviders = createPaginator(BedrockAgentCoreControlClient, ListCapacityProvidersCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient";
|
|
3
|
+
import { ListGatewayRateLimitsCommand, } from "../commands/ListGatewayRateLimitsCommand";
|
|
4
|
+
export const paginateListGatewayRateLimits = createPaginator(BedrockAgentCoreControlClient, ListGatewayRateLimitsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -2,9 +2,11 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListAgentRuntimeEndpointsPaginator";
|
|
3
3
|
export * from "./ListAgentRuntimesPaginator";
|
|
4
4
|
export * from "./ListAgentRuntimeVersionsPaginator";
|
|
5
|
+
export * from "./ListAgentRuntimeVersionsByCapacityProviderPaginator";
|
|
5
6
|
export * from "./ListApiKeyCredentialProvidersPaginator";
|
|
6
7
|
export * from "./ListBrowserProfilesPaginator";
|
|
7
8
|
export * from "./ListBrowsersPaginator";
|
|
9
|
+
export * from "./ListCapacityProvidersPaginator";
|
|
8
10
|
export * from "./ListCodeInterpretersPaginator";
|
|
9
11
|
export * from "./ListConfigurationBundlesPaginator";
|
|
10
12
|
export * from "./ListConfigurationBundleVersionsPaginator";
|
|
@@ -12,6 +14,7 @@ export * from "./ListDatasetExamplesPaginator";
|
|
|
12
14
|
export * from "./ListDatasetsPaginator";
|
|
13
15
|
export * from "./ListDatasetVersionsPaginator";
|
|
14
16
|
export * from "./ListEvaluatorsPaginator";
|
|
17
|
+
export * from "./ListGatewayRateLimitsPaginator";
|
|
15
18
|
export * from "./ListGatewayRulesPaginator";
|
|
16
19
|
export * from "./ListGatewaysPaginator";
|
|
17
20
|
export * from "./ListGatewayTargetsPaginator";
|