@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,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ CreatePaymentInstrumentRequest,
10
+ CreatePaymentInstrumentResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreatePaymentInstrumentCommandInput
15
+ extends CreatePaymentInstrumentRequest {}
16
+ export interface CreatePaymentInstrumentCommandOutput
17
+ extends CreatePaymentInstrumentResponse,
18
+ __MetadataBearer {}
19
+ declare const CreatePaymentInstrumentCommand_base: {
20
+ new (
21
+ input: CreatePaymentInstrumentCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreatePaymentInstrumentCommandInput,
24
+ CreatePaymentInstrumentCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreatePaymentInstrumentCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreatePaymentInstrumentCommandInput,
33
+ CreatePaymentInstrumentCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreatePaymentInstrumentCommand extends CreatePaymentInstrumentCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreatePaymentInstrumentRequest;
44
+ output: CreatePaymentInstrumentResponse;
45
+ };
46
+ sdk: {
47
+ input: CreatePaymentInstrumentCommandInput;
48
+ output: CreatePaymentInstrumentCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ CreatePaymentSessionRequest,
10
+ CreatePaymentSessionResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreatePaymentSessionCommandInput
15
+ extends CreatePaymentSessionRequest {}
16
+ export interface CreatePaymentSessionCommandOutput
17
+ extends CreatePaymentSessionResponse,
18
+ __MetadataBearer {}
19
+ declare const CreatePaymentSessionCommand_base: {
20
+ new (
21
+ input: CreatePaymentSessionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreatePaymentSessionCommandInput,
24
+ CreatePaymentSessionCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreatePaymentSessionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreatePaymentSessionCommandInput,
33
+ CreatePaymentSessionCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreatePaymentSessionCommand extends CreatePaymentSessionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreatePaymentSessionRequest;
44
+ output: CreatePaymentSessionResponse;
45
+ };
46
+ sdk: {
47
+ input: CreatePaymentSessionCommandInput;
48
+ output: CreatePaymentSessionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ DeletePaymentInstrumentRequest,
10
+ DeletePaymentInstrumentResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeletePaymentInstrumentCommandInput
15
+ extends DeletePaymentInstrumentRequest {}
16
+ export interface DeletePaymentInstrumentCommandOutput
17
+ extends DeletePaymentInstrumentResponse,
18
+ __MetadataBearer {}
19
+ declare const DeletePaymentInstrumentCommand_base: {
20
+ new (
21
+ input: DeletePaymentInstrumentCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeletePaymentInstrumentCommandInput,
24
+ DeletePaymentInstrumentCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeletePaymentInstrumentCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeletePaymentInstrumentCommandInput,
33
+ DeletePaymentInstrumentCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeletePaymentInstrumentCommand extends DeletePaymentInstrumentCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeletePaymentInstrumentRequest;
44
+ output: DeletePaymentInstrumentResponse;
45
+ };
46
+ sdk: {
47
+ input: DeletePaymentInstrumentCommandInput;
48
+ output: DeletePaymentInstrumentCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ DeletePaymentSessionRequest,
10
+ DeletePaymentSessionResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeletePaymentSessionCommandInput
15
+ extends DeletePaymentSessionRequest {}
16
+ export interface DeletePaymentSessionCommandOutput
17
+ extends DeletePaymentSessionResponse,
18
+ __MetadataBearer {}
19
+ declare const DeletePaymentSessionCommand_base: {
20
+ new (
21
+ input: DeletePaymentSessionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeletePaymentSessionCommandInput,
24
+ DeletePaymentSessionCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeletePaymentSessionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeletePaymentSessionCommandInput,
33
+ DeletePaymentSessionCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeletePaymentSessionCommand extends DeletePaymentSessionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeletePaymentSessionRequest;
44
+ output: DeletePaymentSessionResponse;
45
+ };
46
+ sdk: {
47
+ input: DeletePaymentSessionCommandInput;
48
+ output: DeletePaymentSessionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetPaymentInstrumentBalanceRequest,
10
+ GetPaymentInstrumentBalanceResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetPaymentInstrumentBalanceCommandInput
15
+ extends GetPaymentInstrumentBalanceRequest {}
16
+ export interface GetPaymentInstrumentBalanceCommandOutput
17
+ extends GetPaymentInstrumentBalanceResponse,
18
+ __MetadataBearer {}
19
+ declare const GetPaymentInstrumentBalanceCommand_base: {
20
+ new (
21
+ input: GetPaymentInstrumentBalanceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetPaymentInstrumentBalanceCommandInput,
24
+ GetPaymentInstrumentBalanceCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetPaymentInstrumentBalanceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetPaymentInstrumentBalanceCommandInput,
33
+ GetPaymentInstrumentBalanceCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetPaymentInstrumentBalanceCommand extends GetPaymentInstrumentBalanceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetPaymentInstrumentBalanceRequest;
44
+ output: GetPaymentInstrumentBalanceResponse;
45
+ };
46
+ sdk: {
47
+ input: GetPaymentInstrumentBalanceCommandInput;
48
+ output: GetPaymentInstrumentBalanceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetPaymentInstrumentRequest,
10
+ GetPaymentInstrumentResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetPaymentInstrumentCommandInput
15
+ extends GetPaymentInstrumentRequest {}
16
+ export interface GetPaymentInstrumentCommandOutput
17
+ extends GetPaymentInstrumentResponse,
18
+ __MetadataBearer {}
19
+ declare const GetPaymentInstrumentCommand_base: {
20
+ new (
21
+ input: GetPaymentInstrumentCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetPaymentInstrumentCommandInput,
24
+ GetPaymentInstrumentCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetPaymentInstrumentCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetPaymentInstrumentCommandInput,
33
+ GetPaymentInstrumentCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetPaymentInstrumentCommand extends GetPaymentInstrumentCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetPaymentInstrumentRequest;
44
+ output: GetPaymentInstrumentResponse;
45
+ };
46
+ sdk: {
47
+ input: GetPaymentInstrumentCommandInput;
48
+ output: GetPaymentInstrumentCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetPaymentSessionRequest,
10
+ GetPaymentSessionResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetPaymentSessionCommandInput
15
+ extends GetPaymentSessionRequest {}
16
+ export interface GetPaymentSessionCommandOutput
17
+ extends GetPaymentSessionResponse,
18
+ __MetadataBearer {}
19
+ declare const GetPaymentSessionCommand_base: {
20
+ new (
21
+ input: GetPaymentSessionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetPaymentSessionCommandInput,
24
+ GetPaymentSessionCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetPaymentSessionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetPaymentSessionCommandInput,
33
+ GetPaymentSessionCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetPaymentSessionCommand extends GetPaymentSessionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetPaymentSessionRequest;
44
+ output: GetPaymentSessionResponse;
45
+ };
46
+ sdk: {
47
+ input: GetPaymentSessionCommandInput;
48
+ output: GetPaymentSessionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ GetResourcePaymentTokenRequest,
10
+ GetResourcePaymentTokenResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetResourcePaymentTokenCommandInput
15
+ extends GetResourcePaymentTokenRequest {}
16
+ export interface GetResourcePaymentTokenCommandOutput
17
+ extends GetResourcePaymentTokenResponse,
18
+ __MetadataBearer {}
19
+ declare const GetResourcePaymentTokenCommand_base: {
20
+ new (
21
+ input: GetResourcePaymentTokenCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetResourcePaymentTokenCommandInput,
24
+ GetResourcePaymentTokenCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetResourcePaymentTokenCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetResourcePaymentTokenCommandInput,
33
+ GetResourcePaymentTokenCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetResourcePaymentTokenCommand extends GetResourcePaymentTokenCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetResourcePaymentTokenRequest;
44
+ output: GetResourcePaymentTokenResponse;
45
+ };
46
+ sdk: {
47
+ input: GetResourcePaymentTokenCommandInput;
48
+ output: GetResourcePaymentTokenCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ ListPaymentInstrumentsRequest,
10
+ ListPaymentInstrumentsResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListPaymentInstrumentsCommandInput
15
+ extends ListPaymentInstrumentsRequest {}
16
+ export interface ListPaymentInstrumentsCommandOutput
17
+ extends ListPaymentInstrumentsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListPaymentInstrumentsCommand_base: {
20
+ new (
21
+ input: ListPaymentInstrumentsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListPaymentInstrumentsCommandInput,
24
+ ListPaymentInstrumentsCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListPaymentInstrumentsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListPaymentInstrumentsCommandInput,
33
+ ListPaymentInstrumentsCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListPaymentInstrumentsCommand extends ListPaymentInstrumentsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListPaymentInstrumentsRequest;
44
+ output: ListPaymentInstrumentsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListPaymentInstrumentsCommandInput;
48
+ output: ListPaymentInstrumentsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ ListPaymentSessionsRequest,
10
+ ListPaymentSessionsResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListPaymentSessionsCommandInput
15
+ extends ListPaymentSessionsRequest {}
16
+ export interface ListPaymentSessionsCommandOutput
17
+ extends ListPaymentSessionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListPaymentSessionsCommand_base: {
20
+ new (
21
+ input: ListPaymentSessionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListPaymentSessionsCommandInput,
24
+ ListPaymentSessionsCommandOutput,
25
+ BedrockAgentCoreClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListPaymentSessionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListPaymentSessionsCommandInput,
33
+ ListPaymentSessionsCommandOutput,
34
+ BedrockAgentCoreClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListPaymentSessionsCommand extends ListPaymentSessionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListPaymentSessionsRequest;
44
+ output: ListPaymentSessionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListPaymentSessionsCommandInput;
48
+ output: ListPaymentSessionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentCoreClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentCoreClient";
8
+ import {
9
+ ProcessPaymentRequest,
10
+ ProcessPaymentResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ProcessPaymentCommandInput extends ProcessPaymentRequest {}
15
+ export interface ProcessPaymentCommandOutput
16
+ extends ProcessPaymentResponse,
17
+ __MetadataBearer {}
18
+ declare const ProcessPaymentCommand_base: {
19
+ new (
20
+ input: ProcessPaymentCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ProcessPaymentCommandInput,
23
+ ProcessPaymentCommandOutput,
24
+ BedrockAgentCoreClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ProcessPaymentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ProcessPaymentCommandInput,
32
+ ProcessPaymentCommandOutput,
33
+ BedrockAgentCoreClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ProcessPaymentCommand extends ProcessPaymentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ProcessPaymentRequest;
43
+ output: ProcessPaymentResponse;
44
+ };
45
+ sdk: {
46
+ input: ProcessPaymentCommandInput;
47
+ output: ProcessPaymentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  RetrieveMemoryRecordsInput,
10
10
  RetrieveMemoryRecordsOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface RetrieveMemoryRecordsCommandInput
@@ -5,8 +5,10 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentCoreClient";
8
- import { SearchRegistryRecordsRequest } from "../models/models_0";
9
- import { SearchRegistryRecordsResponse } from "../models/models_1";
8
+ import {
9
+ SearchRegistryRecordsRequest,
10
+ SearchRegistryRecordsResponse,
11
+ } from "../models/models_1";
10
12
  export { __MetadataBearer };
11
13
  export { $Command };
12
14
  export interface SearchRegistryRecordsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  StartMemoryExtractionJobInput,
10
10
  StartMemoryExtractionJobOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface StartMemoryExtractionJobCommandInput
@@ -4,10 +4,14 @@ export * from "./BatchUpdateMemoryRecordsCommand";
4
4
  export * from "./CompleteResourceTokenAuthCommand";
5
5
  export * from "./CreateABTestCommand";
6
6
  export * from "./CreateEventCommand";
7
+ export * from "./CreatePaymentInstrumentCommand";
8
+ export * from "./CreatePaymentSessionCommand";
7
9
  export * from "./DeleteABTestCommand";
8
10
  export * from "./DeleteBatchEvaluationCommand";
9
11
  export * from "./DeleteEventCommand";
10
12
  export * from "./DeleteMemoryRecordCommand";
13
+ export * from "./DeletePaymentInstrumentCommand";
14
+ export * from "./DeletePaymentSessionCommand";
11
15
  export * from "./DeleteRecommendationCommand";
12
16
  export * from "./EvaluateCommand";
13
17
  export * from "./GetABTestCommand";
@@ -17,9 +21,13 @@ export * from "./GetBrowserSessionCommand";
17
21
  export * from "./GetCodeInterpreterSessionCommand";
18
22
  export * from "./GetEventCommand";
19
23
  export * from "./GetMemoryRecordCommand";
24
+ export * from "./GetPaymentInstrumentBalanceCommand";
25
+ export * from "./GetPaymentInstrumentCommand";
26
+ export * from "./GetPaymentSessionCommand";
20
27
  export * from "./GetRecommendationCommand";
21
28
  export * from "./GetResourceApiKeyCommand";
22
29
  export * from "./GetResourceOauth2TokenCommand";
30
+ export * from "./GetResourcePaymentTokenCommand";
23
31
  export * from "./GetWorkloadAccessTokenCommand";
24
32
  export * from "./GetWorkloadAccessTokenForJWTCommand";
25
33
  export * from "./GetWorkloadAccessTokenForUserIdCommand";
@@ -36,8 +44,11 @@ export * from "./ListCodeInterpreterSessionsCommand";
36
44
  export * from "./ListEventsCommand";
37
45
  export * from "./ListMemoryExtractionJobsCommand";
38
46
  export * from "./ListMemoryRecordsCommand";
47
+ export * from "./ListPaymentInstrumentsCommand";
48
+ export * from "./ListPaymentSessionsCommand";
39
49
  export * from "./ListRecommendationsCommand";
40
50
  export * from "./ListSessionsCommand";
51
+ export * from "./ProcessPaymentCommand";
41
52
  export * from "./RetrieveMemoryRecordsCommand";
42
53
  export * from "./SaveBrowserSessionProfileCommand";
43
54
  export * from "./SearchRegistryRecordsCommand";