@aws-sdk/client-bedrock-agentcore 3.1043.0 → 3.1045.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.
Files changed (71) hide show
  1. package/README.md +77 -0
  2. package/dist-cjs/index.js +217 -0
  3. package/dist-cjs/schemas/schemas_0.js +458 -33
  4. package/dist-es/BedrockAgentCore.js +26 -0
  5. package/dist-es/commands/CreatePaymentInstrumentCommand.js +16 -0
  6. package/dist-es/commands/CreatePaymentSessionCommand.js +16 -0
  7. package/dist-es/commands/DeletePaymentInstrumentCommand.js +16 -0
  8. package/dist-es/commands/DeletePaymentSessionCommand.js +16 -0
  9. package/dist-es/commands/GetPaymentInstrumentBalanceCommand.js +16 -0
  10. package/dist-es/commands/GetPaymentInstrumentCommand.js +16 -0
  11. package/dist-es/commands/GetPaymentSessionCommand.js +16 -0
  12. package/dist-es/commands/GetResourcePaymentTokenCommand.js +16 -0
  13. package/dist-es/commands/ListPaymentInstrumentsCommand.js +16 -0
  14. package/dist-es/commands/ListPaymentSessionsCommand.js +16 -0
  15. package/dist-es/commands/ProcessPaymentCommand.js +16 -0
  16. package/dist-es/commands/index.js +11 -0
  17. package/dist-es/models/enums.js +45 -0
  18. package/dist-es/pagination/ListPaymentInstrumentsPaginator.js +4 -0
  19. package/dist-es/pagination/ListPaymentSessionsPaginator.js +4 -0
  20. package/dist-es/pagination/index.js +2 -0
  21. package/dist-es/schemas/schemas_0.js +449 -25
  22. package/dist-types/BedrockAgentCore.d.ts +91 -0
  23. package/dist-types/BedrockAgentCoreClient.d.ts +13 -2
  24. package/dist-types/commands/CreatePaymentInstrumentCommand.d.ts +212 -0
  25. package/dist-types/commands/CreatePaymentSessionCommand.d.ts +122 -0
  26. package/dist-types/commands/DeletePaymentInstrumentCommand.d.ts +110 -0
  27. package/dist-types/commands/DeletePaymentSessionCommand.d.ts +105 -0
  28. package/dist-types/commands/GetPaymentInstrumentBalanceCommand.d.ts +102 -0
  29. package/dist-types/commands/GetPaymentInstrumentCommand.d.ts +155 -0
  30. package/dist-types/commands/GetPaymentSessionCommand.d.ts +112 -0
  31. package/dist-types/commands/GetResourcePaymentTokenCommand.d.ts +119 -0
  32. package/dist-types/commands/InvokeHarnessCommand.d.ts +1 -1
  33. package/dist-types/commands/ListPaymentInstrumentsCommand.d.ts +103 -0
  34. package/dist-types/commands/ListPaymentSessionsCommand.d.ts +100 -0
  35. package/dist-types/commands/ProcessPaymentCommand.d.ts +117 -0
  36. package/dist-types/commands/RetrieveMemoryRecordsCommand.d.ts +1 -1
  37. package/dist-types/commands/SearchRegistryRecordsCommand.d.ts +1 -2
  38. package/dist-types/commands/StartMemoryExtractionJobCommand.d.ts +1 -1
  39. package/dist-types/commands/index.d.ts +11 -0
  40. package/dist-types/models/enums.d.ts +140 -0
  41. package/dist-types/models/models_0.d.ts +222 -154
  42. package/dist-types/models/models_1.d.ts +1321 -2
  43. package/dist-types/pagination/ListPaymentInstrumentsPaginator.d.ts +7 -0
  44. package/dist-types/pagination/ListPaymentSessionsPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +2 -0
  46. package/dist-types/schemas/schemas_0.d.ts +59 -0
  47. package/dist-types/ts3.4/BedrockAgentCore.d.ts +201 -0
  48. package/dist-types/ts3.4/BedrockAgentCoreClient.d.ts +66 -0
  49. package/dist-types/ts3.4/commands/CreatePaymentInstrumentCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/CreatePaymentSessionCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/DeletePaymentInstrumentCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/DeletePaymentSessionCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/GetPaymentInstrumentBalanceCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/GetPaymentInstrumentCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetPaymentSessionCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/GetResourcePaymentTokenCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/ListPaymentInstrumentsCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/ListPaymentSessionsCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/ProcessPaymentCommand.d.ts +50 -0
  60. package/dist-types/ts3.4/commands/RetrieveMemoryRecordsCommand.d.ts +1 -1
  61. package/dist-types/ts3.4/commands/SearchRegistryRecordsCommand.d.ts +4 -2
  62. package/dist-types/ts3.4/commands/StartMemoryExtractionJobCommand.d.ts +1 -1
  63. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  64. package/dist-types/ts3.4/models/enums.d.ts +62 -0
  65. package/dist-types/ts3.4/models/models_0.d.ts +84 -38
  66. package/dist-types/ts3.4/models/models_1.d.ts +423 -2
  67. package/dist-types/ts3.4/pagination/ListPaymentInstrumentsPaginator.d.ts +11 -0
  68. package/dist-types/ts3.4/pagination/ListPaymentSessionsPaginator.d.ts +11 -0
  69. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  70. package/dist-types/ts3.4/schemas/schemas_0.d.ts +59 -0
  71. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListPaymentInstrumentsCommandInput, ListPaymentInstrumentsCommandOutput } from "../commands/ListPaymentInstrumentsCommand";
3
+ import type { BedrockAgentCorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListPaymentInstruments: (config: BedrockAgentCorePaginationConfiguration, input: ListPaymentInstrumentsCommandInput, ...rest: any[]) => Paginator<ListPaymentInstrumentsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListPaymentSessionsCommandInput, ListPaymentSessionsCommandOutput } from "../commands/ListPaymentSessionsCommand";
3
+ import type { BedrockAgentCorePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListPaymentSessions: (config: BedrockAgentCorePaginationConfiguration, input: ListPaymentSessionsCommandInput, ...rest: any[]) => Paginator<ListPaymentSessionsCommandOutput>;
@@ -5,6 +5,8 @@ export * from "./ListBatchEvaluationsPaginator";
5
5
  export * from "./ListEventsPaginator";
6
6
  export * from "./ListMemoryExtractionJobsPaginator";
7
7
  export * from "./ListMemoryRecordsPaginator";
8
+ export * from "./ListPaymentInstrumentsPaginator";
9
+ export * from "./ListPaymentSessionsPaginator";
8
10
  export * from "./ListRecommendationsPaginator";
9
11
  export * from "./ListSessionsPaginator";
10
12
  export * from "./RetrieveMemoryRecordsPaginator";
@@ -27,8 +27,10 @@ export declare var ABTestSummary$: StaticStructureSchema;
27
27
  export declare var ActorSummary$: StaticStructureSchema;
28
28
  export declare var AgentCardDefinition$: StaticStructureSchema;
29
29
  export declare var AgentSkillsDescriptor$: StaticStructureSchema;
30
+ export declare var Amount$: StaticStructureSchema;
30
31
  export declare var AutomationStream$: StaticStructureSchema;
31
32
  export declare var AutomationStreamUpdate$: StaticStructureSchema;
33
+ export declare var AvailableLimits$: StaticStructureSchema;
32
34
  export declare var BasicAuth$: StaticStructureSchema;
33
35
  export declare var BatchCreateMemoryRecordsInput$: StaticStructureSchema;
34
36
  export declare var BatchCreateMemoryRecordsOutput$: StaticStructureSchema;
@@ -53,6 +55,8 @@ export declare var CloudWatchLogsTraceConfig$: StaticStructureSchema;
53
55
  export declare var CloudWatchOutputConfig$: StaticStructureSchema;
54
56
  export declare var CodeInterpreterResult$: StaticStructureSchema;
55
57
  export declare var CodeInterpreterSessionSummary$: StaticStructureSchema;
58
+ export declare var CoinbaseCdpTokenRequestInput$: StaticStructureSchema;
59
+ export declare var CoinbaseCdpTokenResponseOutput$: StaticStructureSchema;
56
60
  export declare var CompleteResourceTokenAuthRequest$: StaticStructureSchema;
57
61
  export declare var CompleteResourceTokenAuthResponse$: StaticStructureSchema;
58
62
  export declare var ConfidenceInterval$: StaticStructureSchema;
@@ -68,6 +72,12 @@ export declare var CreateABTestRequest$: StaticStructureSchema;
68
72
  export declare var CreateABTestResponse$: StaticStructureSchema;
69
73
  export declare var CreateEventInput$: StaticStructureSchema;
70
74
  export declare var CreateEventOutput$: StaticStructureSchema;
75
+ export declare var CreatePaymentInstrumentRequest$: StaticStructureSchema;
76
+ export declare var CreatePaymentInstrumentResponse$: StaticStructureSchema;
77
+ export declare var CreatePaymentSessionRequest$: StaticStructureSchema;
78
+ export declare var CreatePaymentSessionResponse$: StaticStructureSchema;
79
+ export declare var CryptoX402PaymentInput$: StaticStructureSchema;
80
+ export declare var CryptoX402PaymentOutput$: StaticStructureSchema;
71
81
  export declare var CustomDescriptor$: StaticStructureSchema;
72
82
  export declare var DeleteABTestRequest$: StaticStructureSchema;
73
83
  export declare var DeleteABTestResponse$: StaticStructureSchema;
@@ -77,9 +87,14 @@ export declare var DeleteEventInput$: StaticStructureSchema;
77
87
  export declare var DeleteEventOutput$: StaticStructureSchema;
78
88
  export declare var DeleteMemoryRecordInput$: StaticStructureSchema;
79
89
  export declare var DeleteMemoryRecordOutput$: StaticStructureSchema;
90
+ export declare var DeletePaymentInstrumentRequest$: StaticStructureSchema;
91
+ export declare var DeletePaymentInstrumentResponse$: StaticStructureSchema;
92
+ export declare var DeletePaymentSessionRequest$: StaticStructureSchema;
93
+ export declare var DeletePaymentSessionResponse$: StaticStructureSchema;
80
94
  export declare var DeleteRecommendationRequest$: StaticStructureSchema;
81
95
  export declare var DeleteRecommendationResponse$: StaticStructureSchema;
82
96
  export declare var Descriptors$: StaticStructureSchema;
97
+ export declare var EmbeddedCryptoWallet$: StaticStructureSchema;
83
98
  export declare var EvaluateRequest$: StaticStructureSchema;
84
99
  export declare var EvaluateResponse$: StaticStructureSchema;
85
100
  export declare var EvaluationExpectedTrajectory$: StaticStructureSchema;
@@ -112,12 +127,20 @@ export declare var GetEventInput$: StaticStructureSchema;
112
127
  export declare var GetEventOutput$: StaticStructureSchema;
113
128
  export declare var GetMemoryRecordInput$: StaticStructureSchema;
114
129
  export declare var GetMemoryRecordOutput$: StaticStructureSchema;
130
+ export declare var GetPaymentInstrumentBalanceRequest$: StaticStructureSchema;
131
+ export declare var GetPaymentInstrumentBalanceResponse$: StaticStructureSchema;
132
+ export declare var GetPaymentInstrumentRequest$: StaticStructureSchema;
133
+ export declare var GetPaymentInstrumentResponse$: StaticStructureSchema;
134
+ export declare var GetPaymentSessionRequest$: StaticStructureSchema;
135
+ export declare var GetPaymentSessionResponse$: StaticStructureSchema;
115
136
  export declare var GetRecommendationRequest$: StaticStructureSchema;
116
137
  export declare var GetRecommendationResponse$: StaticStructureSchema;
117
138
  export declare var GetResourceApiKeyRequest$: StaticStructureSchema;
118
139
  export declare var GetResourceApiKeyResponse$: StaticStructureSchema;
119
140
  export declare var GetResourceOauth2TokenRequest$: StaticStructureSchema;
120
141
  export declare var GetResourceOauth2TokenResponse$: StaticStructureSchema;
142
+ export declare var GetResourcePaymentTokenRequest$: StaticStructureSchema;
143
+ export declare var GetResourcePaymentTokenResponse$: StaticStructureSchema;
121
144
  export declare var GetWorkloadAccessTokenForJWTRequest$: StaticStructureSchema;
122
145
  export declare var GetWorkloadAccessTokenForJWTResponse$: StaticStructureSchema;
123
146
  export declare var GetWorkloadAccessTokenForUserIdRequest$: StaticStructureSchema;
@@ -168,6 +191,9 @@ export declare var KeyShortcutArguments$: StaticStructureSchema;
168
191
  export declare var KeyShortcutResult$: StaticStructureSchema;
169
192
  export declare var KeyTypeArguments$: StaticStructureSchema;
170
193
  export declare var KeyTypeResult$: StaticStructureSchema;
194
+ export declare var LinkedAccountDeveloperJwt$: StaticStructureSchema;
195
+ export declare var LinkedAccountEmail$: StaticStructureSchema;
196
+ export declare var LinkedAccountSms$: StaticStructureSchema;
171
197
  export declare var ListABTestsRequest$: StaticStructureSchema;
172
198
  export declare var ListABTestsResponse$: StaticStructureSchema;
173
199
  export declare var ListActorsInput$: StaticStructureSchema;
@@ -184,6 +210,10 @@ export declare var ListMemoryExtractionJobsInput$: StaticStructureSchema;
184
210
  export declare var ListMemoryExtractionJobsOutput$: StaticStructureSchema;
185
211
  export declare var ListMemoryRecordsInput$: StaticStructureSchema;
186
212
  export declare var ListMemoryRecordsOutput$: StaticStructureSchema;
213
+ export declare var ListPaymentInstrumentsRequest$: StaticStructureSchema;
214
+ export declare var ListPaymentInstrumentsResponse$: StaticStructureSchema;
215
+ export declare var ListPaymentSessionsRequest$: StaticStructureSchema;
216
+ export declare var ListPaymentSessionsResponse$: StaticStructureSchema;
187
217
  export declare var ListRecommendationsRequest$: StaticStructureSchema;
188
218
  export declare var ListRecommendationsResponse$: StaticStructureSchema;
189
219
  export declare var ListSessionsInput$: StaticStructureSchema;
@@ -206,8 +236,15 @@ export declare var MouseMoveArguments$: StaticStructureSchema;
206
236
  export declare var MouseMoveResult$: StaticStructureSchema;
207
237
  export declare var MouseScrollArguments$: StaticStructureSchema;
208
238
  export declare var MouseScrollResult$: StaticStructureSchema;
239
+ export declare var OAuth2Authentication$: StaticStructureSchema;
209
240
  export declare var OAuthCredentialProvider$: StaticStructureSchema;
241
+ export declare var PaymentInstrument$: StaticStructureSchema;
242
+ export declare var PaymentInstrumentSummary$: StaticStructureSchema;
243
+ export declare var PaymentSession$: StaticStructureSchema;
244
+ export declare var PaymentSessionSummary$: StaticStructureSchema;
210
245
  export declare var PerVariantOnlineEvaluationConfig$: StaticStructureSchema;
246
+ export declare var ProcessPaymentRequest$: StaticStructureSchema;
247
+ export declare var ProcessPaymentResponse$: StaticStructureSchema;
211
248
  export declare var ProxyBypass$: StaticStructureSchema;
212
249
  export declare var ProxyConfiguration$: StaticStructureSchema;
213
250
  export declare var RecommendationEvaluationConfig$: StaticStructureSchema;
@@ -231,6 +268,7 @@ export declare var SecretsManagerLocation$: StaticStructureSchema;
231
268
  export declare var ServerDefinition$: StaticStructureSchema;
232
269
  export declare var SessionFilter$: StaticStructureSchema;
233
270
  export declare var SessionFilterConfig$: StaticStructureSchema;
271
+ export declare var SessionLimits$: StaticStructureSchema;
234
272
  export declare var SessionMetadataShape$: StaticStructureSchema;
235
273
  export declare var SessionSummary$: StaticStructureSchema;
236
274
  export declare var SkillDefinition$: StaticStructureSchema;
@@ -254,10 +292,13 @@ export declare var StopCodeInterpreterSessionRequest$: StaticStructureSchema;
254
292
  export declare var StopCodeInterpreterSessionResponse$: StaticStructureSchema;
255
293
  export declare var StopRuntimeSessionRequest$: StaticStructureSchema;
256
294
  export declare var StopRuntimeSessionResponse$: StaticStructureSchema;
295
+ export declare var StripePrivyTokenRequestInput$: StaticStructureSchema;
296
+ export declare var StripePrivyTokenResponseOutput$: StaticStructureSchema;
257
297
  export declare var SystemPromptConfigurationBundle$: StaticStructureSchema;
258
298
  export declare var SystemPromptRecommendationConfig$: StaticStructureSchema;
259
299
  export declare var SystemPromptRecommendationResult$: StaticStructureSchema;
260
300
  export declare var TargetRef$: StaticStructureSchema;
301
+ export declare var TokenBalance$: StaticStructureSchema;
261
302
  export declare var TokenUsage$: StaticStructureSchema;
262
303
  export declare var ToolArguments$: StaticStructureSchema;
263
304
  export declare var ToolDescriptionConfigurationBundle$: StaticStructureSchema;
@@ -309,6 +350,8 @@ export declare var HarnessToolResultContentBlock$: StaticUnionSchema;
309
350
  export declare var InvokeAgentRuntimeCommandStreamOutput$: StaticUnionSchema;
310
351
  export declare var InvokeHarnessStreamOutput$: StaticUnionSchema;
311
352
  export declare var LeftExpression$: StaticUnionSchema;
353
+ export declare var LinkedAccount$: StaticUnionSchema;
354
+ export declare var LinkedAccountOAuth2$: StaticUnionSchema;
312
355
  export declare var MemoryContent$: StaticUnionSchema;
313
356
  export declare var MemoryRecordLeftExpression$: StaticUnionSchema;
314
357
  export declare var MemoryRecordMetadataValue$: StaticUnionSchema;
@@ -316,6 +359,11 @@ export declare var MemoryRecordRightExpression$: StaticUnionSchema;
316
359
  export declare var MetadataValue$: StaticUnionSchema;
317
360
  export declare var OutputConfig$: StaticUnionSchema;
318
361
  export declare var PayloadType$: StaticUnionSchema;
362
+ export declare var PaymentInput$: StaticUnionSchema;
363
+ export declare var PaymentInstrumentDetails$: StaticUnionSchema;
364
+ export declare var PaymentOutput$: StaticUnionSchema;
365
+ export declare var PaymentTokenRequestInput$: StaticUnionSchema;
366
+ export declare var PaymentTokenResponseOutput$: StaticUnionSchema;
319
367
  export declare var Proxy$: StaticUnionSchema;
320
368
  export declare var ProxyCredentials$: StaticUnionSchema;
321
369
  export declare var RecommendationConfig$: StaticUnionSchema;
@@ -333,10 +381,14 @@ export declare var BatchUpdateMemoryRecords$: StaticOperationSchema;
333
381
  export declare var CompleteResourceTokenAuth$: StaticOperationSchema;
334
382
  export declare var CreateABTest$: StaticOperationSchema;
335
383
  export declare var CreateEvent$: StaticOperationSchema;
384
+ export declare var CreatePaymentInstrument$: StaticOperationSchema;
385
+ export declare var CreatePaymentSession$: StaticOperationSchema;
336
386
  export declare var DeleteABTest$: StaticOperationSchema;
337
387
  export declare var DeleteBatchEvaluation$: StaticOperationSchema;
338
388
  export declare var DeleteEvent$: StaticOperationSchema;
339
389
  export declare var DeleteMemoryRecord$: StaticOperationSchema;
390
+ export declare var DeletePaymentInstrument$: StaticOperationSchema;
391
+ export declare var DeletePaymentSession$: StaticOperationSchema;
340
392
  export declare var DeleteRecommendation$: StaticOperationSchema;
341
393
  export declare var Evaluate$: StaticOperationSchema;
342
394
  export declare var GetABTest$: StaticOperationSchema;
@@ -346,9 +398,13 @@ export declare var GetBrowserSession$: StaticOperationSchema;
346
398
  export declare var GetCodeInterpreterSession$: StaticOperationSchema;
347
399
  export declare var GetEvent$: StaticOperationSchema;
348
400
  export declare var GetMemoryRecord$: StaticOperationSchema;
401
+ export declare var GetPaymentInstrument$: StaticOperationSchema;
402
+ export declare var GetPaymentInstrumentBalance$: StaticOperationSchema;
403
+ export declare var GetPaymentSession$: StaticOperationSchema;
349
404
  export declare var GetRecommendation$: StaticOperationSchema;
350
405
  export declare var GetResourceApiKey$: StaticOperationSchema;
351
406
  export declare var GetResourceOauth2Token$: StaticOperationSchema;
407
+ export declare var GetResourcePaymentToken$: StaticOperationSchema;
352
408
  export declare var GetWorkloadAccessToken$: StaticOperationSchema;
353
409
  export declare var GetWorkloadAccessTokenForJWT$: StaticOperationSchema;
354
410
  export declare var GetWorkloadAccessTokenForUserId$: StaticOperationSchema;
@@ -365,8 +421,11 @@ export declare var ListCodeInterpreterSessions$: StaticOperationSchema;
365
421
  export declare var ListEvents$: StaticOperationSchema;
366
422
  export declare var ListMemoryExtractionJobs$: StaticOperationSchema;
367
423
  export declare var ListMemoryRecords$: StaticOperationSchema;
424
+ export declare var ListPaymentInstruments$: StaticOperationSchema;
425
+ export declare var ListPaymentSessions$: StaticOperationSchema;
368
426
  export declare var ListRecommendations$: StaticOperationSchema;
369
427
  export declare var ListSessions$: StaticOperationSchema;
428
+ export declare var ProcessPayment$: StaticOperationSchema;
370
429
  export declare var RetrieveMemoryRecords$: StaticOperationSchema;
371
430
  export declare var SaveBrowserSessionProfile$: StaticOperationSchema;
372
431
  export declare var SearchRegistryRecords$: StaticOperationSchema;
@@ -28,6 +28,14 @@ import {
28
28
  CreateEventCommandInput,
29
29
  CreateEventCommandOutput,
30
30
  } from "./commands/CreateEventCommand";
31
+ import {
32
+ CreatePaymentInstrumentCommandInput,
33
+ CreatePaymentInstrumentCommandOutput,
34
+ } from "./commands/CreatePaymentInstrumentCommand";
35
+ import {
36
+ CreatePaymentSessionCommandInput,
37
+ CreatePaymentSessionCommandOutput,
38
+ } from "./commands/CreatePaymentSessionCommand";
31
39
  import {
32
40
  DeleteABTestCommandInput,
33
41
  DeleteABTestCommandOutput,
@@ -44,6 +52,14 @@ import {
44
52
  DeleteMemoryRecordCommandInput,
45
53
  DeleteMemoryRecordCommandOutput,
46
54
  } from "./commands/DeleteMemoryRecordCommand";
55
+ import {
56
+ DeletePaymentInstrumentCommandInput,
57
+ DeletePaymentInstrumentCommandOutput,
58
+ } from "./commands/DeletePaymentInstrumentCommand";
59
+ import {
60
+ DeletePaymentSessionCommandInput,
61
+ DeletePaymentSessionCommandOutput,
62
+ } from "./commands/DeletePaymentSessionCommand";
47
63
  import {
48
64
  DeleteRecommendationCommandInput,
49
65
  DeleteRecommendationCommandOutput,
@@ -80,6 +96,18 @@ import {
80
96
  GetMemoryRecordCommandInput,
81
97
  GetMemoryRecordCommandOutput,
82
98
  } from "./commands/GetMemoryRecordCommand";
99
+ import {
100
+ GetPaymentInstrumentBalanceCommandInput,
101
+ GetPaymentInstrumentBalanceCommandOutput,
102
+ } from "./commands/GetPaymentInstrumentBalanceCommand";
103
+ import {
104
+ GetPaymentInstrumentCommandInput,
105
+ GetPaymentInstrumentCommandOutput,
106
+ } from "./commands/GetPaymentInstrumentCommand";
107
+ import {
108
+ GetPaymentSessionCommandInput,
109
+ GetPaymentSessionCommandOutput,
110
+ } from "./commands/GetPaymentSessionCommand";
83
111
  import {
84
112
  GetRecommendationCommandInput,
85
113
  GetRecommendationCommandOutput,
@@ -92,6 +120,10 @@ import {
92
120
  GetResourceOauth2TokenCommandInput,
93
121
  GetResourceOauth2TokenCommandOutput,
94
122
  } from "./commands/GetResourceOauth2TokenCommand";
123
+ import {
124
+ GetResourcePaymentTokenCommandInput,
125
+ GetResourcePaymentTokenCommandOutput,
126
+ } from "./commands/GetResourcePaymentTokenCommand";
95
127
  import {
96
128
  GetWorkloadAccessTokenCommandInput,
97
129
  GetWorkloadAccessTokenCommandOutput,
@@ -156,6 +188,14 @@ import {
156
188
  ListMemoryRecordsCommandInput,
157
189
  ListMemoryRecordsCommandOutput,
158
190
  } from "./commands/ListMemoryRecordsCommand";
191
+ import {
192
+ ListPaymentInstrumentsCommandInput,
193
+ ListPaymentInstrumentsCommandOutput,
194
+ } from "./commands/ListPaymentInstrumentsCommand";
195
+ import {
196
+ ListPaymentSessionsCommandInput,
197
+ ListPaymentSessionsCommandOutput,
198
+ } from "./commands/ListPaymentSessionsCommand";
159
199
  import {
160
200
  ListRecommendationsCommandInput,
161
201
  ListRecommendationsCommandOutput,
@@ -164,6 +204,10 @@ import {
164
204
  ListSessionsCommandInput,
165
205
  ListSessionsCommandOutput,
166
206
  } from "./commands/ListSessionsCommand";
207
+ import {
208
+ ProcessPaymentCommandInput,
209
+ ProcessPaymentCommandOutput,
210
+ } from "./commands/ProcessPaymentCommand";
167
211
  import {
168
212
  RetrieveMemoryRecordsCommandInput,
169
213
  RetrieveMemoryRecordsCommandOutput,
@@ -299,6 +343,32 @@ export interface BedrockAgentCore {
299
343
  options: __HttpHandlerOptions,
300
344
  cb: (err: any, data?: CreateEventCommandOutput) => void
301
345
  ): void;
346
+ createPaymentInstrument(
347
+ args: CreatePaymentInstrumentCommandInput,
348
+ options?: __HttpHandlerOptions
349
+ ): Promise<CreatePaymentInstrumentCommandOutput>;
350
+ createPaymentInstrument(
351
+ args: CreatePaymentInstrumentCommandInput,
352
+ cb: (err: any, data?: CreatePaymentInstrumentCommandOutput) => void
353
+ ): void;
354
+ createPaymentInstrument(
355
+ args: CreatePaymentInstrumentCommandInput,
356
+ options: __HttpHandlerOptions,
357
+ cb: (err: any, data?: CreatePaymentInstrumentCommandOutput) => void
358
+ ): void;
359
+ createPaymentSession(
360
+ args: CreatePaymentSessionCommandInput,
361
+ options?: __HttpHandlerOptions
362
+ ): Promise<CreatePaymentSessionCommandOutput>;
363
+ createPaymentSession(
364
+ args: CreatePaymentSessionCommandInput,
365
+ cb: (err: any, data?: CreatePaymentSessionCommandOutput) => void
366
+ ): void;
367
+ createPaymentSession(
368
+ args: CreatePaymentSessionCommandInput,
369
+ options: __HttpHandlerOptions,
370
+ cb: (err: any, data?: CreatePaymentSessionCommandOutput) => void
371
+ ): void;
302
372
  deleteABTest(
303
373
  args: DeleteABTestCommandInput,
304
374
  options?: __HttpHandlerOptions
@@ -351,6 +421,32 @@ export interface BedrockAgentCore {
351
421
  options: __HttpHandlerOptions,
352
422
  cb: (err: any, data?: DeleteMemoryRecordCommandOutput) => void
353
423
  ): void;
424
+ deletePaymentInstrument(
425
+ args: DeletePaymentInstrumentCommandInput,
426
+ options?: __HttpHandlerOptions
427
+ ): Promise<DeletePaymentInstrumentCommandOutput>;
428
+ deletePaymentInstrument(
429
+ args: DeletePaymentInstrumentCommandInput,
430
+ cb: (err: any, data?: DeletePaymentInstrumentCommandOutput) => void
431
+ ): void;
432
+ deletePaymentInstrument(
433
+ args: DeletePaymentInstrumentCommandInput,
434
+ options: __HttpHandlerOptions,
435
+ cb: (err: any, data?: DeletePaymentInstrumentCommandOutput) => void
436
+ ): void;
437
+ deletePaymentSession(
438
+ args: DeletePaymentSessionCommandInput,
439
+ options?: __HttpHandlerOptions
440
+ ): Promise<DeletePaymentSessionCommandOutput>;
441
+ deletePaymentSession(
442
+ args: DeletePaymentSessionCommandInput,
443
+ cb: (err: any, data?: DeletePaymentSessionCommandOutput) => void
444
+ ): void;
445
+ deletePaymentSession(
446
+ args: DeletePaymentSessionCommandInput,
447
+ options: __HttpHandlerOptions,
448
+ cb: (err: any, data?: DeletePaymentSessionCommandOutput) => void
449
+ ): void;
354
450
  deleteRecommendation(
355
451
  args: DeleteRecommendationCommandInput,
356
452
  options?: __HttpHandlerOptions
@@ -468,6 +564,45 @@ export interface BedrockAgentCore {
468
564
  options: __HttpHandlerOptions,
469
565
  cb: (err: any, data?: GetMemoryRecordCommandOutput) => void
470
566
  ): void;
567
+ getPaymentInstrument(
568
+ args: GetPaymentInstrumentCommandInput,
569
+ options?: __HttpHandlerOptions
570
+ ): Promise<GetPaymentInstrumentCommandOutput>;
571
+ getPaymentInstrument(
572
+ args: GetPaymentInstrumentCommandInput,
573
+ cb: (err: any, data?: GetPaymentInstrumentCommandOutput) => void
574
+ ): void;
575
+ getPaymentInstrument(
576
+ args: GetPaymentInstrumentCommandInput,
577
+ options: __HttpHandlerOptions,
578
+ cb: (err: any, data?: GetPaymentInstrumentCommandOutput) => void
579
+ ): void;
580
+ getPaymentInstrumentBalance(
581
+ args: GetPaymentInstrumentBalanceCommandInput,
582
+ options?: __HttpHandlerOptions
583
+ ): Promise<GetPaymentInstrumentBalanceCommandOutput>;
584
+ getPaymentInstrumentBalance(
585
+ args: GetPaymentInstrumentBalanceCommandInput,
586
+ cb: (err: any, data?: GetPaymentInstrumentBalanceCommandOutput) => void
587
+ ): void;
588
+ getPaymentInstrumentBalance(
589
+ args: GetPaymentInstrumentBalanceCommandInput,
590
+ options: __HttpHandlerOptions,
591
+ cb: (err: any, data?: GetPaymentInstrumentBalanceCommandOutput) => void
592
+ ): void;
593
+ getPaymentSession(
594
+ args: GetPaymentSessionCommandInput,
595
+ options?: __HttpHandlerOptions
596
+ ): Promise<GetPaymentSessionCommandOutput>;
597
+ getPaymentSession(
598
+ args: GetPaymentSessionCommandInput,
599
+ cb: (err: any, data?: GetPaymentSessionCommandOutput) => void
600
+ ): void;
601
+ getPaymentSession(
602
+ args: GetPaymentSessionCommandInput,
603
+ options: __HttpHandlerOptions,
604
+ cb: (err: any, data?: GetPaymentSessionCommandOutput) => void
605
+ ): void;
471
606
  getRecommendation(
472
607
  args: GetRecommendationCommandInput,
473
608
  options?: __HttpHandlerOptions
@@ -507,6 +642,19 @@ export interface BedrockAgentCore {
507
642
  options: __HttpHandlerOptions,
508
643
  cb: (err: any, data?: GetResourceOauth2TokenCommandOutput) => void
509
644
  ): void;
645
+ getResourcePaymentToken(
646
+ args: GetResourcePaymentTokenCommandInput,
647
+ options?: __HttpHandlerOptions
648
+ ): Promise<GetResourcePaymentTokenCommandOutput>;
649
+ getResourcePaymentToken(
650
+ args: GetResourcePaymentTokenCommandInput,
651
+ cb: (err: any, data?: GetResourcePaymentTokenCommandOutput) => void
652
+ ): void;
653
+ getResourcePaymentToken(
654
+ args: GetResourcePaymentTokenCommandInput,
655
+ options: __HttpHandlerOptions,
656
+ cb: (err: any, data?: GetResourcePaymentTokenCommandOutput) => void
657
+ ): void;
510
658
  getWorkloadAccessToken(
511
659
  args: GetWorkloadAccessTokenCommandInput,
512
660
  options?: __HttpHandlerOptions
@@ -717,6 +865,32 @@ export interface BedrockAgentCore {
717
865
  options: __HttpHandlerOptions,
718
866
  cb: (err: any, data?: ListMemoryRecordsCommandOutput) => void
719
867
  ): void;
868
+ listPaymentInstruments(
869
+ args: ListPaymentInstrumentsCommandInput,
870
+ options?: __HttpHandlerOptions
871
+ ): Promise<ListPaymentInstrumentsCommandOutput>;
872
+ listPaymentInstruments(
873
+ args: ListPaymentInstrumentsCommandInput,
874
+ cb: (err: any, data?: ListPaymentInstrumentsCommandOutput) => void
875
+ ): void;
876
+ listPaymentInstruments(
877
+ args: ListPaymentInstrumentsCommandInput,
878
+ options: __HttpHandlerOptions,
879
+ cb: (err: any, data?: ListPaymentInstrumentsCommandOutput) => void
880
+ ): void;
881
+ listPaymentSessions(
882
+ args: ListPaymentSessionsCommandInput,
883
+ options?: __HttpHandlerOptions
884
+ ): Promise<ListPaymentSessionsCommandOutput>;
885
+ listPaymentSessions(
886
+ args: ListPaymentSessionsCommandInput,
887
+ cb: (err: any, data?: ListPaymentSessionsCommandOutput) => void
888
+ ): void;
889
+ listPaymentSessions(
890
+ args: ListPaymentSessionsCommandInput,
891
+ options: __HttpHandlerOptions,
892
+ cb: (err: any, data?: ListPaymentSessionsCommandOutput) => void
893
+ ): void;
720
894
  listRecommendations(): Promise<ListRecommendationsCommandOutput>;
721
895
  listRecommendations(
722
896
  args: ListRecommendationsCommandInput,
@@ -744,6 +918,19 @@ export interface BedrockAgentCore {
744
918
  options: __HttpHandlerOptions,
745
919
  cb: (err: any, data?: ListSessionsCommandOutput) => void
746
920
  ): void;
921
+ processPayment(
922
+ args: ProcessPaymentCommandInput,
923
+ options?: __HttpHandlerOptions
924
+ ): Promise<ProcessPaymentCommandOutput>;
925
+ processPayment(
926
+ args: ProcessPaymentCommandInput,
927
+ cb: (err: any, data?: ProcessPaymentCommandOutput) => void
928
+ ): void;
929
+ processPayment(
930
+ args: ProcessPaymentCommandInput,
931
+ options: __HttpHandlerOptions,
932
+ cb: (err: any, data?: ProcessPaymentCommandOutput) => void
933
+ ): void;
747
934
  retrieveMemoryRecords(
748
935
  args: RetrieveMemoryRecordsCommandInput,
749
936
  options?: __HttpHandlerOptions
@@ -968,6 +1155,20 @@ export interface BedrockAgentCore {
968
1155
  Exclude<keyof PaginationConfiguration, "client">
969
1156
  >
970
1157
  ): Paginator<ListMemoryRecordsCommandOutput>;
1158
+ paginateListPaymentInstruments(
1159
+ args: ListPaymentInstrumentsCommandInput,
1160
+ paginationConfig?: Pick<
1161
+ PaginationConfiguration,
1162
+ Exclude<keyof PaginationConfiguration, "client">
1163
+ >
1164
+ ): Paginator<ListPaymentInstrumentsCommandOutput>;
1165
+ paginateListPaymentSessions(
1166
+ args: ListPaymentSessionsCommandInput,
1167
+ paginationConfig?: Pick<
1168
+ PaginationConfiguration,
1169
+ Exclude<keyof PaginationConfiguration, "client">
1170
+ >
1171
+ ): Paginator<ListPaymentSessionsCommandOutput>;
971
1172
  paginateListRecommendations(
972
1173
  args?: ListRecommendationsCommandInput,
973
1174
  paginationConfig?: Pick<
@@ -74,6 +74,14 @@ import {
74
74
  CreateEventCommandInput,
75
75
  CreateEventCommandOutput,
76
76
  } from "./commands/CreateEventCommand";
77
+ import {
78
+ CreatePaymentInstrumentCommandInput,
79
+ CreatePaymentInstrumentCommandOutput,
80
+ } from "./commands/CreatePaymentInstrumentCommand";
81
+ import {
82
+ CreatePaymentSessionCommandInput,
83
+ CreatePaymentSessionCommandOutput,
84
+ } from "./commands/CreatePaymentSessionCommand";
77
85
  import {
78
86
  DeleteABTestCommandInput,
79
87
  DeleteABTestCommandOutput,
@@ -90,6 +98,14 @@ import {
90
98
  DeleteMemoryRecordCommandInput,
91
99
  DeleteMemoryRecordCommandOutput,
92
100
  } from "./commands/DeleteMemoryRecordCommand";
101
+ import {
102
+ DeletePaymentInstrumentCommandInput,
103
+ DeletePaymentInstrumentCommandOutput,
104
+ } from "./commands/DeletePaymentInstrumentCommand";
105
+ import {
106
+ DeletePaymentSessionCommandInput,
107
+ DeletePaymentSessionCommandOutput,
108
+ } from "./commands/DeletePaymentSessionCommand";
93
109
  import {
94
110
  DeleteRecommendationCommandInput,
95
111
  DeleteRecommendationCommandOutput,
@@ -126,6 +142,18 @@ import {
126
142
  GetMemoryRecordCommandInput,
127
143
  GetMemoryRecordCommandOutput,
128
144
  } from "./commands/GetMemoryRecordCommand";
145
+ import {
146
+ GetPaymentInstrumentBalanceCommandInput,
147
+ GetPaymentInstrumentBalanceCommandOutput,
148
+ } from "./commands/GetPaymentInstrumentBalanceCommand";
149
+ import {
150
+ GetPaymentInstrumentCommandInput,
151
+ GetPaymentInstrumentCommandOutput,
152
+ } from "./commands/GetPaymentInstrumentCommand";
153
+ import {
154
+ GetPaymentSessionCommandInput,
155
+ GetPaymentSessionCommandOutput,
156
+ } from "./commands/GetPaymentSessionCommand";
129
157
  import {
130
158
  GetRecommendationCommandInput,
131
159
  GetRecommendationCommandOutput,
@@ -138,6 +166,10 @@ import {
138
166
  GetResourceOauth2TokenCommandInput,
139
167
  GetResourceOauth2TokenCommandOutput,
140
168
  } from "./commands/GetResourceOauth2TokenCommand";
169
+ import {
170
+ GetResourcePaymentTokenCommandInput,
171
+ GetResourcePaymentTokenCommandOutput,
172
+ } from "./commands/GetResourcePaymentTokenCommand";
141
173
  import {
142
174
  GetWorkloadAccessTokenCommandInput,
143
175
  GetWorkloadAccessTokenCommandOutput,
@@ -202,6 +234,14 @@ import {
202
234
  ListMemoryRecordsCommandInput,
203
235
  ListMemoryRecordsCommandOutput,
204
236
  } from "./commands/ListMemoryRecordsCommand";
237
+ import {
238
+ ListPaymentInstrumentsCommandInput,
239
+ ListPaymentInstrumentsCommandOutput,
240
+ } from "./commands/ListPaymentInstrumentsCommand";
241
+ import {
242
+ ListPaymentSessionsCommandInput,
243
+ ListPaymentSessionsCommandOutput,
244
+ } from "./commands/ListPaymentSessionsCommand";
205
245
  import {
206
246
  ListRecommendationsCommandInput,
207
247
  ListRecommendationsCommandOutput,
@@ -210,6 +250,10 @@ import {
210
250
  ListSessionsCommandInput,
211
251
  ListSessionsCommandOutput,
212
252
  } from "./commands/ListSessionsCommand";
253
+ import {
254
+ ProcessPaymentCommandInput,
255
+ ProcessPaymentCommandOutput,
256
+ } from "./commands/ProcessPaymentCommand";
213
257
  import {
214
258
  RetrieveMemoryRecordsCommandInput,
215
259
  RetrieveMemoryRecordsCommandOutput,
@@ -280,10 +324,14 @@ export type ServiceInputTypes =
280
324
  | CompleteResourceTokenAuthCommandInput
281
325
  | CreateABTestCommandInput
282
326
  | CreateEventCommandInput
327
+ | CreatePaymentInstrumentCommandInput
328
+ | CreatePaymentSessionCommandInput
283
329
  | DeleteABTestCommandInput
284
330
  | DeleteBatchEvaluationCommandInput
285
331
  | DeleteEventCommandInput
286
332
  | DeleteMemoryRecordCommandInput
333
+ | DeletePaymentInstrumentCommandInput
334
+ | DeletePaymentSessionCommandInput
287
335
  | DeleteRecommendationCommandInput
288
336
  | EvaluateCommandInput
289
337
  | GetABTestCommandInput
@@ -293,9 +341,13 @@ export type ServiceInputTypes =
293
341
  | GetCodeInterpreterSessionCommandInput
294
342
  | GetEventCommandInput
295
343
  | GetMemoryRecordCommandInput
344
+ | GetPaymentInstrumentBalanceCommandInput
345
+ | GetPaymentInstrumentCommandInput
346
+ | GetPaymentSessionCommandInput
296
347
  | GetRecommendationCommandInput
297
348
  | GetResourceApiKeyCommandInput
298
349
  | GetResourceOauth2TokenCommandInput
350
+ | GetResourcePaymentTokenCommandInput
299
351
  | GetWorkloadAccessTokenCommandInput
300
352
  | GetWorkloadAccessTokenForJWTCommandInput
301
353
  | GetWorkloadAccessTokenForUserIdCommandInput
@@ -312,8 +364,11 @@ export type ServiceInputTypes =
312
364
  | ListEventsCommandInput
313
365
  | ListMemoryExtractionJobsCommandInput
314
366
  | ListMemoryRecordsCommandInput
367
+ | ListPaymentInstrumentsCommandInput
368
+ | ListPaymentSessionsCommandInput
315
369
  | ListRecommendationsCommandInput
316
370
  | ListSessionsCommandInput
371
+ | ProcessPaymentCommandInput
317
372
  | RetrieveMemoryRecordsCommandInput
318
373
  | SaveBrowserSessionProfileCommandInput
319
374
  | SearchRegistryRecordsCommandInput
@@ -335,10 +390,14 @@ export type ServiceOutputTypes =
335
390
  | CompleteResourceTokenAuthCommandOutput
336
391
  | CreateABTestCommandOutput
337
392
  | CreateEventCommandOutput
393
+ | CreatePaymentInstrumentCommandOutput
394
+ | CreatePaymentSessionCommandOutput
338
395
  | DeleteABTestCommandOutput
339
396
  | DeleteBatchEvaluationCommandOutput
340
397
  | DeleteEventCommandOutput
341
398
  | DeleteMemoryRecordCommandOutput
399
+ | DeletePaymentInstrumentCommandOutput
400
+ | DeletePaymentSessionCommandOutput
342
401
  | DeleteRecommendationCommandOutput
343
402
  | EvaluateCommandOutput
344
403
  | GetABTestCommandOutput
@@ -348,9 +407,13 @@ export type ServiceOutputTypes =
348
407
  | GetCodeInterpreterSessionCommandOutput
349
408
  | GetEventCommandOutput
350
409
  | GetMemoryRecordCommandOutput
410
+ | GetPaymentInstrumentBalanceCommandOutput
411
+ | GetPaymentInstrumentCommandOutput
412
+ | GetPaymentSessionCommandOutput
351
413
  | GetRecommendationCommandOutput
352
414
  | GetResourceApiKeyCommandOutput
353
415
  | GetResourceOauth2TokenCommandOutput
416
+ | GetResourcePaymentTokenCommandOutput
354
417
  | GetWorkloadAccessTokenCommandOutput
355
418
  | GetWorkloadAccessTokenForJWTCommandOutput
356
419
  | GetWorkloadAccessTokenForUserIdCommandOutput
@@ -367,8 +430,11 @@ export type ServiceOutputTypes =
367
430
  | ListEventsCommandOutput
368
431
  | ListMemoryExtractionJobsCommandOutput
369
432
  | ListMemoryRecordsCommandOutput
433
+ | ListPaymentInstrumentsCommandOutput
434
+ | ListPaymentSessionsCommandOutput
370
435
  | ListRecommendationsCommandOutput
371
436
  | ListSessionsCommandOutput
437
+ | ProcessPaymentCommandOutput
372
438
  | RetrieveMemoryRecordsCommandOutput
373
439
  | SaveBrowserSessionProfileCommandOutput
374
440
  | SearchRegistryRecordsCommandOutput