@aws-sdk/client-qconnect 3.665.0 → 3.666.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 (107) hide show
  1. package/README.md +166 -0
  2. package/dist-cjs/index.js +1501 -102
  3. package/dist-es/QConnect.js +38 -0
  4. package/dist-es/commands/CreateAIAgentCommand.js +22 -0
  5. package/dist-es/commands/CreateAIAgentVersionCommand.js +22 -0
  6. package/dist-es/commands/CreateAIPromptCommand.js +23 -0
  7. package/dist-es/commands/CreateAIPromptVersionCommand.js +23 -0
  8. package/dist-es/commands/CreateKnowledgeBaseCommand.js +2 -1
  9. package/dist-es/commands/DeleteAIAgentCommand.js +22 -0
  10. package/dist-es/commands/DeleteAIAgentVersionCommand.js +22 -0
  11. package/dist-es/commands/DeleteAIPromptCommand.js +22 -0
  12. package/dist-es/commands/DeleteAIPromptVersionCommand.js +22 -0
  13. package/dist-es/commands/GetAIAgentCommand.js +22 -0
  14. package/dist-es/commands/GetAIPromptCommand.js +23 -0
  15. package/dist-es/commands/GetKnowledgeBaseCommand.js +2 -1
  16. package/dist-es/commands/ListAIAgentVersionsCommand.js +22 -0
  17. package/dist-es/commands/ListAIAgentsCommand.js +22 -0
  18. package/dist-es/commands/ListAIPromptVersionsCommand.js +22 -0
  19. package/dist-es/commands/ListAIPromptsCommand.js +22 -0
  20. package/dist-es/commands/ListKnowledgeBasesCommand.js +2 -1
  21. package/dist-es/commands/RemoveAssistantAIAgentCommand.js +22 -0
  22. package/dist-es/commands/UpdateAIAgentCommand.js +22 -0
  23. package/dist-es/commands/UpdateAIPromptCommand.js +23 -0
  24. package/dist-es/commands/UpdateAssistantAIAgentCommand.js +22 -0
  25. package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +2 -1
  26. package/dist-es/commands/UpdateSessionDataCommand.js +23 -0
  27. package/dist-es/commands/index.js +19 -0
  28. package/dist-es/models/models_0.js +310 -46
  29. package/dist-es/pagination/ListAIAgentVersionsPaginator.js +4 -0
  30. package/dist-es/pagination/ListAIAgentsPaginator.js +4 -0
  31. package/dist-es/pagination/ListAIPromptVersionsPaginator.js +4 -0
  32. package/dist-es/pagination/ListAIPromptsPaginator.js +4 -0
  33. package/dist-es/pagination/index.js +4 -0
  34. package/dist-es/protocols/Aws_restJson1.js +692 -8
  35. package/dist-types/QConnect.d.ts +148 -1
  36. package/dist-types/QConnectClient.d.ts +36 -3
  37. package/dist-types/commands/CreateAIAgentCommand.d.ts +252 -0
  38. package/dist-types/commands/CreateAIAgentVersionCommand.d.ts +180 -0
  39. package/dist-types/commands/CreateAIPromptCommand.d.ts +132 -0
  40. package/dist-types/commands/CreateAIPromptVersionCommand.d.ts +120 -0
  41. package/dist-types/commands/CreateAssistantCommand.d.ts +5 -0
  42. package/dist-types/commands/CreateContentAssociationCommand.d.ts +5 -6
  43. package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +108 -0
  44. package/dist-types/commands/CreateSessionCommand.d.ts +10 -0
  45. package/dist-types/commands/DeleteAIAgentCommand.d.ts +82 -0
  46. package/dist-types/commands/DeleteAIAgentVersionCommand.d.ts +89 -0
  47. package/dist-types/commands/DeleteAIPromptCommand.d.ts +82 -0
  48. package/dist-types/commands/DeleteAIPromptVersionCommand.d.ts +89 -0
  49. package/dist-types/commands/GetAIAgentCommand.d.ts +168 -0
  50. package/dist-types/commands/GetAIPromptCommand.d.ts +108 -0
  51. package/dist-types/commands/GetAssistantCommand.d.ts +5 -0
  52. package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +56 -0
  53. package/dist-types/commands/GetRecommendationsCommand.d.ts +20 -0
  54. package/dist-types/commands/GetSessionCommand.d.ts +5 -0
  55. package/dist-types/commands/ListAIAgentVersionsCommand.d.ts +176 -0
  56. package/dist-types/commands/ListAIAgentsCommand.d.ts +172 -0
  57. package/dist-types/commands/ListAIPromptVersionsCommand.d.ts +111 -0
  58. package/dist-types/commands/ListAIPromptsCommand.d.ts +107 -0
  59. package/dist-types/commands/ListAssistantsCommand.d.ts +5 -0
  60. package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +52 -0
  61. package/dist-types/commands/QueryAssistantCommand.d.ts +30 -1
  62. package/dist-types/commands/RemoveAssistantAIAgentCommand.d.ts +83 -0
  63. package/dist-types/commands/UpdateAIAgentCommand.d.ts +244 -0
  64. package/dist-types/commands/UpdateAIPromptCommand.d.ts +121 -0
  65. package/dist-types/commands/UpdateAssistantAIAgentCommand.d.ts +112 -0
  66. package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +56 -0
  67. package/dist-types/commands/UpdateSessionCommand.d.ts +10 -0
  68. package/dist-types/commands/UpdateSessionDataCommand.d.ts +100 -0
  69. package/dist-types/commands/index.d.ts +19 -0
  70. package/dist-types/index.d.ts +15 -1
  71. package/dist-types/models/models_0.d.ts +2454 -275
  72. package/dist-types/pagination/ListAIAgentVersionsPaginator.d.ts +7 -0
  73. package/dist-types/pagination/ListAIAgentsPaginator.d.ts +7 -0
  74. package/dist-types/pagination/ListAIPromptVersionsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListAIPromptsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/index.d.ts +4 -0
  77. package/dist-types/protocols/Aws_restJson1.d.ts +171 -0
  78. package/dist-types/ts3.4/QConnect.d.ts +323 -0
  79. package/dist-types/ts3.4/QConnectClient.d.ts +116 -2
  80. package/dist-types/ts3.4/commands/CreateAIAgentCommand.d.ts +50 -0
  81. package/dist-types/ts3.4/commands/CreateAIAgentVersionCommand.d.ts +51 -0
  82. package/dist-types/ts3.4/commands/CreateAIPromptCommand.d.ts +50 -0
  83. package/dist-types/ts3.4/commands/CreateAIPromptVersionCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/DeleteAIAgentCommand.d.ts +50 -0
  85. package/dist-types/ts3.4/commands/DeleteAIAgentVersionCommand.d.ts +51 -0
  86. package/dist-types/ts3.4/commands/DeleteAIPromptCommand.d.ts +50 -0
  87. package/dist-types/ts3.4/commands/DeleteAIPromptVersionCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/GetAIAgentCommand.d.ts +47 -0
  89. package/dist-types/ts3.4/commands/GetAIPromptCommand.d.ts +47 -0
  90. package/dist-types/ts3.4/commands/ListAIAgentVersionsCommand.d.ts +51 -0
  91. package/dist-types/ts3.4/commands/ListAIAgentsCommand.d.ts +47 -0
  92. package/dist-types/ts3.4/commands/ListAIPromptVersionsCommand.d.ts +51 -0
  93. package/dist-types/ts3.4/commands/ListAIPromptsCommand.d.ts +50 -0
  94. package/dist-types/ts3.4/commands/RemoveAssistantAIAgentCommand.d.ts +51 -0
  95. package/dist-types/ts3.4/commands/UpdateAIAgentCommand.d.ts +50 -0
  96. package/dist-types/ts3.4/commands/UpdateAIPromptCommand.d.ts +50 -0
  97. package/dist-types/ts3.4/commands/UpdateAssistantAIAgentCommand.d.ts +51 -0
  98. package/dist-types/ts3.4/commands/UpdateSessionDataCommand.d.ts +51 -0
  99. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  100. package/dist-types/ts3.4/models/models_0.d.ts +794 -103
  101. package/dist-types/ts3.4/pagination/ListAIAgentVersionsPaginator.d.ts +11 -0
  102. package/dist-types/ts3.4/pagination/ListAIAgentsPaginator.d.ts +11 -0
  103. package/dist-types/ts3.4/pagination/ListAIPromptVersionsPaginator.d.ts +11 -0
  104. package/dist-types/ts3.4/pagination/ListAIPromptsPaginator.d.ts +11 -0
  105. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  106. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +228 -0
  107. package/package.json +12 -12
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateAIAgentVersionRequest,
5
+ CreateAIAgentVersionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAIAgentVersionCommandInput
15
+ extends CreateAIAgentVersionRequest {}
16
+ export interface CreateAIAgentVersionCommandOutput
17
+ extends CreateAIAgentVersionResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAIAgentVersionCommand_base: {
20
+ new (
21
+ input: CreateAIAgentVersionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateAIAgentVersionCommandInput,
24
+ CreateAIAgentVersionCommandOutput,
25
+ QConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateAIAgentVersionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateAIAgentVersionCommandInput,
33
+ CreateAIAgentVersionCommandOutput,
34
+ QConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateAIAgentVersionCommand extends CreateAIAgentVersionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateAIAgentVersionRequest;
44
+ output: CreateAIAgentVersionResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateAIAgentVersionCommandInput;
48
+ output: CreateAIAgentVersionCommandOutput;
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
+ CreateAIPromptRequest,
5
+ CreateAIPromptResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAIPromptCommandInput extends CreateAIPromptRequest {}
15
+ export interface CreateAIPromptCommandOutput
16
+ extends CreateAIPromptResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateAIPromptCommand_base: {
19
+ new (
20
+ input: CreateAIPromptCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateAIPromptCommandInput,
23
+ CreateAIPromptCommandOutput,
24
+ QConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateAIPromptCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateAIPromptCommandInput,
32
+ CreateAIPromptCommandOutput,
33
+ QConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateAIPromptCommand extends CreateAIPromptCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateAIPromptRequest;
43
+ output: CreateAIPromptResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateAIPromptCommandInput;
47
+ output: CreateAIPromptCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateAIPromptVersionRequest,
5
+ CreateAIPromptVersionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAIPromptVersionCommandInput
15
+ extends CreateAIPromptVersionRequest {}
16
+ export interface CreateAIPromptVersionCommandOutput
17
+ extends CreateAIPromptVersionResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateAIPromptVersionCommand_base: {
20
+ new (
21
+ input: CreateAIPromptVersionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateAIPromptVersionCommandInput,
24
+ CreateAIPromptVersionCommandOutput,
25
+ QConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateAIPromptVersionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateAIPromptVersionCommandInput,
33
+ CreateAIPromptVersionCommandOutput,
34
+ QConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateAIPromptVersionCommand extends CreateAIPromptVersionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateAIPromptVersionRequest;
44
+ output: CreateAIPromptVersionResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateAIPromptVersionCommandInput;
48
+ output: CreateAIPromptVersionCommandOutput;
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
+ DeleteAIAgentRequest,
5
+ DeleteAIAgentResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteAIAgentCommandInput extends DeleteAIAgentRequest {}
15
+ export interface DeleteAIAgentCommandOutput
16
+ extends DeleteAIAgentResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteAIAgentCommand_base: {
19
+ new (
20
+ input: DeleteAIAgentCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteAIAgentCommandInput,
23
+ DeleteAIAgentCommandOutput,
24
+ QConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteAIAgentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteAIAgentCommandInput,
32
+ DeleteAIAgentCommandOutput,
33
+ QConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteAIAgentCommand extends DeleteAIAgentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteAIAgentRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteAIAgentCommandInput;
47
+ output: DeleteAIAgentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteAIAgentVersionRequest,
5
+ DeleteAIAgentVersionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteAIAgentVersionCommandInput
15
+ extends DeleteAIAgentVersionRequest {}
16
+ export interface DeleteAIAgentVersionCommandOutput
17
+ extends DeleteAIAgentVersionResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteAIAgentVersionCommand_base: {
20
+ new (
21
+ input: DeleteAIAgentVersionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteAIAgentVersionCommandInput,
24
+ DeleteAIAgentVersionCommandOutput,
25
+ QConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteAIAgentVersionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteAIAgentVersionCommandInput,
33
+ DeleteAIAgentVersionCommandOutput,
34
+ QConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteAIAgentVersionCommand extends DeleteAIAgentVersionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteAIAgentVersionRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteAIAgentVersionCommandInput;
48
+ output: DeleteAIAgentVersionCommandOutput;
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
+ DeleteAIPromptRequest,
5
+ DeleteAIPromptResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteAIPromptCommandInput extends DeleteAIPromptRequest {}
15
+ export interface DeleteAIPromptCommandOutput
16
+ extends DeleteAIPromptResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteAIPromptCommand_base: {
19
+ new (
20
+ input: DeleteAIPromptCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteAIPromptCommandInput,
23
+ DeleteAIPromptCommandOutput,
24
+ QConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteAIPromptCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteAIPromptCommandInput,
32
+ DeleteAIPromptCommandOutput,
33
+ QConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteAIPromptCommand extends DeleteAIPromptCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteAIPromptRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteAIPromptCommandInput;
47
+ output: DeleteAIPromptCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteAIPromptVersionRequest,
5
+ DeleteAIPromptVersionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteAIPromptVersionCommandInput
15
+ extends DeleteAIPromptVersionRequest {}
16
+ export interface DeleteAIPromptVersionCommandOutput
17
+ extends DeleteAIPromptVersionResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteAIPromptVersionCommand_base: {
20
+ new (
21
+ input: DeleteAIPromptVersionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteAIPromptVersionCommandInput,
24
+ DeleteAIPromptVersionCommandOutput,
25
+ QConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteAIPromptVersionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteAIPromptVersionCommandInput,
33
+ DeleteAIPromptVersionCommandOutput,
34
+ QConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteAIPromptVersionCommand extends DeleteAIPromptVersionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteAIPromptVersionRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteAIPromptVersionCommandInput;
48
+ output: DeleteAIPromptVersionCommandOutput;
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 { GetAIAgentRequest, GetAIAgentResponse } from "../models/models_0";
4
+ import {
5
+ QConnectClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../QConnectClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetAIAgentCommandInput extends GetAIAgentRequest {}
12
+ export interface GetAIAgentCommandOutput
13
+ extends GetAIAgentResponse,
14
+ __MetadataBearer {}
15
+ declare const GetAIAgentCommand_base: {
16
+ new (
17
+ input: GetAIAgentCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetAIAgentCommandInput,
20
+ GetAIAgentCommandOutput,
21
+ QConnectClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetAIAgentCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetAIAgentCommandInput,
29
+ GetAIAgentCommandOutput,
30
+ QConnectClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetAIAgentCommand extends GetAIAgentCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetAIAgentRequest;
40
+ output: GetAIAgentResponse;
41
+ };
42
+ sdk: {
43
+ input: GetAIAgentCommandInput;
44
+ output: GetAIAgentCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetAIPromptRequest, GetAIPromptResponse } from "../models/models_0";
4
+ import {
5
+ QConnectClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../QConnectClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetAIPromptCommandInput extends GetAIPromptRequest {}
12
+ export interface GetAIPromptCommandOutput
13
+ extends GetAIPromptResponse,
14
+ __MetadataBearer {}
15
+ declare const GetAIPromptCommand_base: {
16
+ new (
17
+ input: GetAIPromptCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetAIPromptCommandInput,
20
+ GetAIPromptCommandOutput,
21
+ QConnectClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetAIPromptCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetAIPromptCommandInput,
29
+ GetAIPromptCommandOutput,
30
+ QConnectClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetAIPromptCommand extends GetAIPromptCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetAIPromptRequest;
40
+ output: GetAIPromptResponse;
41
+ };
42
+ sdk: {
43
+ input: GetAIPromptCommandInput;
44
+ output: GetAIPromptCommandOutput;
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
+ ListAIAgentVersionsRequest,
5
+ ListAIAgentVersionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAIAgentVersionsCommandInput
15
+ extends ListAIAgentVersionsRequest {}
16
+ export interface ListAIAgentVersionsCommandOutput
17
+ extends ListAIAgentVersionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAIAgentVersionsCommand_base: {
20
+ new (
21
+ input: ListAIAgentVersionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAIAgentVersionsCommandInput,
24
+ ListAIAgentVersionsCommandOutput,
25
+ QConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListAIAgentVersionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAIAgentVersionsCommandInput,
33
+ ListAIAgentVersionsCommandOutput,
34
+ QConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAIAgentVersionsCommand extends ListAIAgentVersionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAIAgentVersionsRequest;
44
+ output: ListAIAgentVersionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAIAgentVersionsCommandInput;
48
+ output: ListAIAgentVersionsCommandOutput;
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 { ListAIAgentsRequest, ListAIAgentsResponse } from "../models/models_0";
4
+ import {
5
+ QConnectClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../QConnectClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListAIAgentsCommandInput extends ListAIAgentsRequest {}
12
+ export interface ListAIAgentsCommandOutput
13
+ extends ListAIAgentsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListAIAgentsCommand_base: {
16
+ new (
17
+ input: ListAIAgentsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListAIAgentsCommandInput,
20
+ ListAIAgentsCommandOutput,
21
+ QConnectClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: ListAIAgentsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListAIAgentsCommandInput,
29
+ ListAIAgentsCommandOutput,
30
+ QConnectClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListAIAgentsCommand extends ListAIAgentsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListAIAgentsRequest;
40
+ output: ListAIAgentsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListAIAgentsCommandInput;
44
+ output: ListAIAgentsCommandOutput;
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
+ ListAIPromptVersionsRequest,
5
+ ListAIPromptVersionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAIPromptVersionsCommandInput
15
+ extends ListAIPromptVersionsRequest {}
16
+ export interface ListAIPromptVersionsCommandOutput
17
+ extends ListAIPromptVersionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAIPromptVersionsCommand_base: {
20
+ new (
21
+ input: ListAIPromptVersionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAIPromptVersionsCommandInput,
24
+ ListAIPromptVersionsCommandOutput,
25
+ QConnectClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListAIPromptVersionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAIPromptVersionsCommandInput,
33
+ ListAIPromptVersionsCommandOutput,
34
+ QConnectClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAIPromptVersionsCommand extends ListAIPromptVersionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAIPromptVersionsRequest;
44
+ output: ListAIPromptVersionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAIPromptVersionsCommandInput;
48
+ output: ListAIPromptVersionsCommandOutput;
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
+ ListAIPromptsRequest,
5
+ ListAIPromptsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ QConnectClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../QConnectClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAIPromptsCommandInput extends ListAIPromptsRequest {}
15
+ export interface ListAIPromptsCommandOutput
16
+ extends ListAIPromptsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListAIPromptsCommand_base: {
19
+ new (
20
+ input: ListAIPromptsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListAIPromptsCommandInput,
23
+ ListAIPromptsCommandOutput,
24
+ QConnectClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListAIPromptsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListAIPromptsCommandInput,
32
+ ListAIPromptsCommandOutput,
33
+ QConnectClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListAIPromptsCommand extends ListAIPromptsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListAIPromptsRequest;
43
+ output: ListAIPromptsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListAIPromptsCommandInput;
47
+ output: ListAIPromptsCommandOutput;
48
+ };
49
+ };
50
+ }