@aws-sdk/client-bedrock-agent-runtime 3.751.0 → 3.758.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 (92) hide show
  1. package/README.md +119 -7
  2. package/dist-cjs/index.js +1009 -55
  3. package/dist-es/BedrockAgentRuntime.js +28 -0
  4. package/dist-es/commands/CreateInvocationCommand.js +22 -0
  5. package/dist-es/commands/CreateSessionCommand.js +22 -0
  6. package/dist-es/commands/DeleteSessionCommand.js +22 -0
  7. package/dist-es/commands/EndSessionCommand.js +22 -0
  8. package/dist-es/commands/GetInvocationStepCommand.js +23 -0
  9. package/dist-es/commands/GetSessionCommand.js +22 -0
  10. package/dist-es/commands/InvokeAgentCommand.js +2 -1
  11. package/dist-es/commands/InvokeInlineAgentCommand.js +2 -1
  12. package/dist-es/commands/ListInvocationStepsCommand.js +22 -0
  13. package/dist-es/commands/ListInvocationsCommand.js +22 -0
  14. package/dist-es/commands/ListSessionsCommand.js +22 -0
  15. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  16. package/dist-es/commands/PutInvocationStepCommand.js +23 -0
  17. package/dist-es/commands/RetrieveAndGenerateCommand.js +2 -1
  18. package/dist-es/commands/RetrieveAndGenerateStreamCommand.js +2 -1
  19. package/dist-es/commands/RetrieveCommand.js +2 -1
  20. package/dist-es/commands/TagResourceCommand.js +22 -0
  21. package/dist-es/commands/UntagResourceCommand.js +22 -0
  22. package/dist-es/commands/UpdateSessionCommand.js +22 -0
  23. package/dist-es/commands/index.js +14 -0
  24. package/dist-es/models/index.js +1 -0
  25. package/dist-es/models/models_0.js +78 -151
  26. package/dist-es/models/models_1.js +164 -0
  27. package/dist-es/pagination/ListInvocationStepsPaginator.js +4 -0
  28. package/dist-es/pagination/ListInvocationsPaginator.js +4 -0
  29. package/dist-es/pagination/ListSessionsPaginator.js +4 -0
  30. package/dist-es/pagination/index.js +3 -0
  31. package/dist-es/protocols/Aws_restJson1.js +574 -11
  32. package/dist-types/BedrockAgentRuntime.d.ts +100 -0
  33. package/dist-types/BedrockAgentRuntimeClient.d.ts +16 -2
  34. package/dist-types/commands/CreateInvocationCommand.d.ts +115 -0
  35. package/dist-types/commands/CreateSessionCommand.d.ts +133 -0
  36. package/dist-types/commands/DeleteSessionCommand.d.ts +89 -0
  37. package/dist-types/commands/EndSessionCommand.d.ts +93 -0
  38. package/dist-types/commands/GetInvocationStepCommand.d.ts +109 -0
  39. package/dist-types/commands/GetSessionCommand.d.ts +94 -0
  40. package/dist-types/commands/InvokeAgentCommand.d.ts +23 -1
  41. package/dist-types/commands/InvokeInlineAgentCommand.d.ts +23 -1
  42. package/dist-types/commands/ListInvocationStepsCommand.d.ts +97 -0
  43. package/dist-types/commands/ListInvocationsCommand.d.ts +95 -0
  44. package/dist-types/commands/ListSessionsCommand.d.ts +93 -0
  45. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  46. package/dist-types/commands/PutInvocationStepCommand.d.ts +134 -0
  47. package/dist-types/commands/RetrieveAndGenerateCommand.d.ts +2 -1
  48. package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +2 -1
  49. package/dist-types/commands/RetrieveCommand.d.ts +2 -1
  50. package/dist-types/commands/TagResourceCommand.d.ts +90 -0
  51. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  52. package/dist-types/commands/UpdateSessionCommand.d.ts +96 -0
  53. package/dist-types/commands/index.d.ts +14 -0
  54. package/dist-types/models/index.d.ts +1 -0
  55. package/dist-types/models/models_0.d.ts +582 -635
  56. package/dist-types/models/models_1.d.ts +919 -0
  57. package/dist-types/pagination/ListInvocationStepsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/ListInvocationsPaginator.d.ts +7 -0
  59. package/dist-types/pagination/ListSessionsPaginator.d.ts +7 -0
  60. package/dist-types/pagination/index.d.ts +3 -0
  61. package/dist-types/protocols/Aws_restJson1.d.ts +126 -0
  62. package/dist-types/ts3.4/BedrockAgentRuntime.d.ts +240 -0
  63. package/dist-types/ts3.4/BedrockAgentRuntimeClient.d.ts +86 -2
  64. package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +50 -0
  65. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +50 -0
  66. package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +50 -0
  67. package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +47 -0
  68. package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +47 -0
  70. package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +2 -1
  71. package/dist-types/ts3.4/commands/InvokeInlineAgentCommand.d.ts +2 -4
  72. package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +51 -0
  73. package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +50 -0
  74. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +47 -0
  75. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +51 -0
  77. package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +2 -4
  78. package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +2 -4
  79. package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +2 -1
  80. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  81. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  82. package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +50 -0
  83. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  84. package/dist-types/ts3.4/models/index.d.ts +1 -0
  85. package/dist-types/ts3.4/models/models_0.d.ts +262 -365
  86. package/dist-types/ts3.4/models/models_1.d.ts +416 -0
  87. package/dist-types/ts3.4/pagination/ListInvocationStepsPaginator.d.ts +11 -0
  88. package/dist-types/ts3.4/pagination/ListInvocationsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/ListSessionsPaginator.d.ts +11 -0
  90. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  91. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +168 -0
  92. package/package.json +12 -12
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ CreateInvocationRequest,
10
+ CreateInvocationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateInvocationCommandInput extends CreateInvocationRequest {}
15
+ export interface CreateInvocationCommandOutput
16
+ extends CreateInvocationResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateInvocationCommand_base: {
19
+ new (
20
+ input: CreateInvocationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateInvocationCommandInput,
23
+ CreateInvocationCommandOutput,
24
+ BedrockAgentRuntimeClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateInvocationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateInvocationCommandInput,
32
+ CreateInvocationCommandOutput,
33
+ BedrockAgentRuntimeClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateInvocationCommand extends CreateInvocationCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateInvocationRequest;
43
+ output: CreateInvocationResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateInvocationCommandInput;
47
+ output: CreateInvocationCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ CreateSessionRequest,
10
+ CreateSessionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateSessionCommandInput extends CreateSessionRequest {}
15
+ export interface CreateSessionCommandOutput
16
+ extends CreateSessionResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateSessionCommand_base: {
19
+ new (
20
+ input: CreateSessionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateSessionCommandInput,
23
+ CreateSessionCommandOutput,
24
+ BedrockAgentRuntimeClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [CreateSessionCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateSessionCommandInput,
32
+ CreateSessionCommandOutput,
33
+ BedrockAgentRuntimeClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateSessionCommand extends CreateSessionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateSessionRequest;
43
+ output: CreateSessionResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateSessionCommandInput;
47
+ output: CreateSessionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ DeleteSessionRequest,
10
+ DeleteSessionResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteSessionCommandInput extends DeleteSessionRequest {}
15
+ export interface DeleteSessionCommandOutput
16
+ extends DeleteSessionResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteSessionCommand_base: {
19
+ new (
20
+ input: DeleteSessionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteSessionCommandInput,
23
+ DeleteSessionCommandOutput,
24
+ BedrockAgentRuntimeClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteSessionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteSessionCommandInput,
32
+ DeleteSessionCommandOutput,
33
+ BedrockAgentRuntimeClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteSessionCommand extends DeleteSessionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteSessionRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteSessionCommandInput;
47
+ output: DeleteSessionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import { EndSessionRequest, EndSessionResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface EndSessionCommandInput extends EndSessionRequest {}
12
+ export interface EndSessionCommandOutput
13
+ extends EndSessionResponse,
14
+ __MetadataBearer {}
15
+ declare const EndSessionCommand_base: {
16
+ new (
17
+ input: EndSessionCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ EndSessionCommandInput,
20
+ EndSessionCommandOutput,
21
+ BedrockAgentRuntimeClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: EndSessionCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ EndSessionCommandInput,
29
+ EndSessionCommandOutput,
30
+ BedrockAgentRuntimeClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class EndSessionCommand extends EndSessionCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: EndSessionRequest;
40
+ output: EndSessionResponse;
41
+ };
42
+ sdk: {
43
+ input: EndSessionCommandInput;
44
+ output: EndSessionCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ GetInvocationStepRequest,
10
+ GetInvocationStepResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetInvocationStepCommandInput
15
+ extends GetInvocationStepRequest {}
16
+ export interface GetInvocationStepCommandOutput
17
+ extends GetInvocationStepResponse,
18
+ __MetadataBearer {}
19
+ declare const GetInvocationStepCommand_base: {
20
+ new (
21
+ input: GetInvocationStepCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetInvocationStepCommandInput,
24
+ GetInvocationStepCommandOutput,
25
+ BedrockAgentRuntimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetInvocationStepCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetInvocationStepCommandInput,
33
+ GetInvocationStepCommandOutput,
34
+ BedrockAgentRuntimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetInvocationStepCommand extends GetInvocationStepCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetInvocationStepRequest;
44
+ output: GetInvocationStepResponse;
45
+ };
46
+ sdk: {
47
+ input: GetInvocationStepCommandInput;
48
+ output: GetInvocationStepCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetSessionCommandInput extends GetSessionRequest {}
12
+ export interface GetSessionCommandOutput
13
+ extends GetSessionResponse,
14
+ __MetadataBearer {}
15
+ declare const GetSessionCommand_base: {
16
+ new (
17
+ input: GetSessionCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetSessionCommandInput,
20
+ GetSessionCommandOutput,
21
+ BedrockAgentRuntimeClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetSessionCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetSessionCommandInput,
29
+ GetSessionCommandOutput,
30
+ BedrockAgentRuntimeClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetSessionCommand extends GetSessionCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetSessionRequest;
40
+ output: GetSessionResponse;
41
+ };
42
+ sdk: {
43
+ input: GetSessionCommandInput;
44
+ output: GetSessionCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -5,7 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentRuntimeClient";
8
- import { InvokeAgentRequest, InvokeAgentResponse } from "../models/models_0";
8
+ import { InvokeAgentResponse } from "../models/models_0";
9
+ import { InvokeAgentRequest } from "../models/models_1";
9
10
  export { __MetadataBearer };
10
11
  export { $Command };
11
12
  export interface InvokeAgentCommandInput extends InvokeAgentRequest {}
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentRuntimeClient";
8
- import {
9
- InvokeInlineAgentRequest,
10
- InvokeInlineAgentResponse,
11
- } from "../models/models_0";
8
+ import { InvokeInlineAgentResponse } from "../models/models_0";
9
+ import { InvokeInlineAgentRequest } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface InvokeInlineAgentCommandInput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ ListInvocationStepsRequest,
10
+ ListInvocationStepsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListInvocationStepsCommandInput
15
+ extends ListInvocationStepsRequest {}
16
+ export interface ListInvocationStepsCommandOutput
17
+ extends ListInvocationStepsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListInvocationStepsCommand_base: {
20
+ new (
21
+ input: ListInvocationStepsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListInvocationStepsCommandInput,
24
+ ListInvocationStepsCommandOutput,
25
+ BedrockAgentRuntimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListInvocationStepsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListInvocationStepsCommandInput,
33
+ ListInvocationStepsCommandOutput,
34
+ BedrockAgentRuntimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListInvocationStepsCommand extends ListInvocationStepsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListInvocationStepsRequest;
44
+ output: ListInvocationStepsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListInvocationStepsCommandInput;
48
+ output: ListInvocationStepsCommandOutput;
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
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ ListInvocationsRequest,
10
+ ListInvocationsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListInvocationsCommandInput extends ListInvocationsRequest {}
15
+ export interface ListInvocationsCommandOutput
16
+ extends ListInvocationsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListInvocationsCommand_base: {
19
+ new (
20
+ input: ListInvocationsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListInvocationsCommandInput,
23
+ ListInvocationsCommandOutput,
24
+ BedrockAgentRuntimeClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListInvocationsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListInvocationsCommandInput,
32
+ ListInvocationsCommandOutput,
33
+ BedrockAgentRuntimeClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListInvocationsCommand extends ListInvocationsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListInvocationsRequest;
43
+ output: ListInvocationsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListInvocationsCommandInput;
47
+ output: ListInvocationsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListSessionsCommandInput extends ListSessionsRequest {}
12
+ export interface ListSessionsCommandOutput
13
+ extends ListSessionsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListSessionsCommand_base: {
16
+ new (
17
+ input: ListSessionsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListSessionsCommandInput,
20
+ ListSessionsCommandOutput,
21
+ BedrockAgentRuntimeClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListSessionsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListSessionsCommandInput,
29
+ ListSessionsCommandOutput,
30
+ BedrockAgentRuntimeClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListSessionsCommand extends ListSessionsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListSessionsRequest;
40
+ output: ListSessionsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListSessionsCommandInput;
44
+ output: ListSessionsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ BedrockAgentRuntimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ BedrockAgentRuntimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
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
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import {
9
+ PutInvocationStepRequest,
10
+ PutInvocationStepResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutInvocationStepCommandInput
15
+ extends PutInvocationStepRequest {}
16
+ export interface PutInvocationStepCommandOutput
17
+ extends PutInvocationStepResponse,
18
+ __MetadataBearer {}
19
+ declare const PutInvocationStepCommand_base: {
20
+ new (
21
+ input: PutInvocationStepCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutInvocationStepCommandInput,
24
+ PutInvocationStepCommandOutput,
25
+ BedrockAgentRuntimeClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: PutInvocationStepCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutInvocationStepCommandInput,
33
+ PutInvocationStepCommandOutput,
34
+ BedrockAgentRuntimeClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutInvocationStepCommand extends PutInvocationStepCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutInvocationStepRequest;
44
+ output: PutInvocationStepResponse;
45
+ };
46
+ sdk: {
47
+ input: PutInvocationStepCommandInput;
48
+ output: PutInvocationStepCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentRuntimeClient";
8
- import {
9
- RetrieveAndGenerateRequest,
10
- RetrieveAndGenerateResponse,
11
- } from "../models/models_0";
8
+ import { RetrieveAndGenerateResponse } from "../models/models_0";
9
+ import { RetrieveAndGenerateRequest } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface RetrieveAndGenerateCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentRuntimeClient";
8
- import {
9
- RetrieveAndGenerateStreamRequest,
10
- RetrieveAndGenerateStreamResponse,
11
- } from "../models/models_0";
8
+ import { RetrieveAndGenerateStreamResponse } from "../models/models_0";
9
+ import { RetrieveAndGenerateStreamRequest } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface RetrieveAndGenerateStreamCommandInput
@@ -5,7 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../BedrockAgentRuntimeClient";
8
- import { RetrieveRequest, RetrieveResponse } from "../models/models_0";
8
+ import { RetrieveResponse } from "../models/models_0";
9
+ import { RetrieveRequest } from "../models/models_1";
9
10
  export { __MetadataBearer };
10
11
  export { $Command };
11
12
  export interface RetrieveCommandInput extends RetrieveRequest {}
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BedrockAgentRuntimeClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BedrockAgentRuntimeClient";
8
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput
13
+ extends TagResourceResponse,
14
+ __MetadataBearer {}
15
+ declare const TagResourceCommand_base: {
16
+ new (
17
+ input: TagResourceCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ BedrockAgentRuntimeClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: TagResourceCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ TagResourceCommandInput,
29
+ TagResourceCommandOutput,
30
+ BedrockAgentRuntimeClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
45
+ };
46
+ };
47
+ }