@aws-sdk/client-wisdom 3.169.0 → 3.170.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 (56) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Wisdom.d.ts +161 -33
  3. package/dist-types/ts3.4/WisdomClient.d.ts +321 -105
  4. package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/GetContentCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +38 -17
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +37 -17
  35. package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +21 -8
  36. package/dist-types/ts3.4/commands/index.d.ts +32 -32
  37. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  38. package/dist-types/ts3.4/index.d.ts +6 -6
  39. package/dist-types/ts3.4/models/WisdomServiceException.d.ts +8 -6
  40. package/dist-types/ts3.4/models/index.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +1216 -1124
  42. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  43. package/dist-types/ts3.4/pagination/ListAssistantAssociationsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListAssistantsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListContentsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListKnowledgeBasesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/QueryAssistantPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/SearchContentPaginator.d.ts +11 -4
  49. package/dist-types/ts3.4/pagination/SearchSessionsPaginator.d.ts +11 -4
  50. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +389 -98
  52. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  56. package/package.json +34 -34
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetSessionCommandInput extends GetSessionRequest {
6
- }
7
- export interface GetSessionCommandOutput extends GetSessionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSessionCommand extends $Command<GetSessionCommandInput, GetSessionCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetSessionCommandInput;
12
- constructor(input: GetSessionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSessionCommandInput, GetSessionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetSessionRequest, GetSessionResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ WisdomClientResolvedConfig,
13
+ } from "../WisdomClient";
14
+ export interface GetSessionCommandInput extends GetSessionRequest {}
15
+ export interface GetSessionCommandOutput
16
+ extends GetSessionResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetSessionCommand extends $Command<
20
+ GetSessionCommandInput,
21
+ GetSessionCommandOutput,
22
+ WisdomClientResolvedConfig
23
+ > {
24
+ readonly input: GetSessionCommandInput;
25
+ constructor(input: GetSessionCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: WisdomClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetSessionCommandInput, GetSessionCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListAssistantAssociationsRequest, ListAssistantAssociationsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface ListAssistantAssociationsCommandInput extends ListAssistantAssociationsRequest {
6
- }
7
- export interface ListAssistantAssociationsCommandOutput extends ListAssistantAssociationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssistantAssociationsCommand extends $Command<ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: ListAssistantAssociationsCommandInput;
12
- constructor(input: ListAssistantAssociationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssistantAssociationsCommandInput, ListAssistantAssociationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListAssistantAssociationsRequest,
10
+ ListAssistantAssociationsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface ListAssistantAssociationsCommandInput
18
+ extends ListAssistantAssociationsRequest {}
19
+ export interface ListAssistantAssociationsCommandOutput
20
+ extends ListAssistantAssociationsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAssistantAssociationsCommand extends $Command<
24
+ ListAssistantAssociationsCommandInput,
25
+ ListAssistantAssociationsCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: ListAssistantAssociationsCommandInput;
29
+ constructor(input: ListAssistantAssociationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAssistantAssociationsCommandInput,
37
+ ListAssistantAssociationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListAssistantsRequest, ListAssistantsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface ListAssistantsCommandInput extends ListAssistantsRequest {
6
- }
7
- export interface ListAssistantsCommandOutput extends ListAssistantsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAssistantsCommand extends $Command<ListAssistantsCommandInput, ListAssistantsCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: ListAssistantsCommandInput;
12
- constructor(input: ListAssistantsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAssistantsCommandInput, ListAssistantsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListAssistantsRequest,
10
+ ListAssistantsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface ListAssistantsCommandInput extends ListAssistantsRequest {}
18
+ export interface ListAssistantsCommandOutput
19
+ extends ListAssistantsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListAssistantsCommand extends $Command<
23
+ ListAssistantsCommandInput,
24
+ ListAssistantsCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: ListAssistantsCommandInput;
28
+ constructor(input: ListAssistantsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListAssistantsCommandInput, ListAssistantsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListContentsRequest, ListContentsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface ListContentsCommandInput extends ListContentsRequest {
6
- }
7
- export interface ListContentsCommandOutput extends ListContentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListContentsCommand extends $Command<ListContentsCommandInput, ListContentsCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: ListContentsCommandInput;
12
- constructor(input: ListContentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListContentsCommandInput, ListContentsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { ListContentsRequest, ListContentsResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ WisdomClientResolvedConfig,
13
+ } from "../WisdomClient";
14
+ export interface ListContentsCommandInput extends ListContentsRequest {}
15
+ export interface ListContentsCommandOutput
16
+ extends ListContentsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListContentsCommand extends $Command<
20
+ ListContentsCommandInput,
21
+ ListContentsCommandOutput,
22
+ WisdomClientResolvedConfig
23
+ > {
24
+ readonly input: ListContentsCommandInput;
25
+ constructor(input: ListContentsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: WisdomClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListContentsCommandInput, ListContentsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface ListKnowledgeBasesCommandInput extends ListKnowledgeBasesRequest {
6
- }
7
- export interface ListKnowledgeBasesCommandOutput extends ListKnowledgeBasesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListKnowledgeBasesCommand extends $Command<ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: ListKnowledgeBasesCommandInput;
12
- constructor(input: ListKnowledgeBasesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListKnowledgeBasesRequest,
10
+ ListKnowledgeBasesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface ListKnowledgeBasesCommandInput
18
+ extends ListKnowledgeBasesRequest {}
19
+ export interface ListKnowledgeBasesCommandOutput
20
+ extends ListKnowledgeBasesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListKnowledgeBasesCommand extends $Command<
24
+ ListKnowledgeBasesCommandInput,
25
+ ListKnowledgeBasesCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: ListKnowledgeBasesCommandInput;
29
+ constructor(input: ListKnowledgeBasesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface NotifyRecommendationsReceivedCommandInput extends NotifyRecommendationsReceivedRequest {
6
- }
7
- export interface NotifyRecommendationsReceivedCommandOutput extends NotifyRecommendationsReceivedResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class NotifyRecommendationsReceivedCommand extends $Command<NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: NotifyRecommendationsReceivedCommandInput;
12
- constructor(input: NotifyRecommendationsReceivedCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ NotifyRecommendationsReceivedRequest,
10
+ NotifyRecommendationsReceivedResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface NotifyRecommendationsReceivedCommandInput
18
+ extends NotifyRecommendationsReceivedRequest {}
19
+ export interface NotifyRecommendationsReceivedCommandOutput
20
+ extends NotifyRecommendationsReceivedResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class NotifyRecommendationsReceivedCommand extends $Command<
24
+ NotifyRecommendationsReceivedCommandInput,
25
+ NotifyRecommendationsReceivedCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: NotifyRecommendationsReceivedCommandInput;
29
+ constructor(input: NotifyRecommendationsReceivedCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ NotifyRecommendationsReceivedCommandInput,
37
+ NotifyRecommendationsReceivedCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface PutFeedbackCommandInput extends PutFeedbackRequest {
6
- }
7
- export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutFeedbackCommand extends $Command<PutFeedbackCommandInput, PutFeedbackCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: PutFeedbackCommandInput;
12
- constructor(input: PutFeedbackCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutFeedbackCommandInput, PutFeedbackCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ WisdomClientResolvedConfig,
13
+ } from "../WisdomClient";
14
+ export interface PutFeedbackCommandInput extends PutFeedbackRequest {}
15
+ export interface PutFeedbackCommandOutput
16
+ extends PutFeedbackResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class PutFeedbackCommand extends $Command<
20
+ PutFeedbackCommandInput,
21
+ PutFeedbackCommandOutput,
22
+ WisdomClientResolvedConfig
23
+ > {
24
+ readonly input: PutFeedbackCommandInput;
25
+ constructor(input: PutFeedbackCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: WisdomClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<PutFeedbackCommandInput, PutFeedbackCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { QueryAssistantRequest, QueryAssistantResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface QueryAssistantCommandInput extends QueryAssistantRequest {
6
- }
7
- export interface QueryAssistantCommandOutput extends QueryAssistantResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class QueryAssistantCommand extends $Command<QueryAssistantCommandInput, QueryAssistantCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: QueryAssistantCommandInput;
12
- constructor(input: QueryAssistantCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryAssistantCommandInput, QueryAssistantCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ QueryAssistantRequest,
10
+ QueryAssistantResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface QueryAssistantCommandInput extends QueryAssistantRequest {}
18
+ export interface QueryAssistantCommandOutput
19
+ extends QueryAssistantResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class QueryAssistantCommand extends $Command<
23
+ QueryAssistantCommandInput,
24
+ QueryAssistantCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: QueryAssistantCommandInput;
28
+ constructor(input: QueryAssistantCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<QueryAssistantCommandInput, QueryAssistantCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface RemoveKnowledgeBaseTemplateUriCommandInput extends RemoveKnowledgeBaseTemplateUriRequest {
6
- }
7
- export interface RemoveKnowledgeBaseTemplateUriCommandOutput extends RemoveKnowledgeBaseTemplateUriResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RemoveKnowledgeBaseTemplateUriCommand extends $Command<RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: RemoveKnowledgeBaseTemplateUriCommandInput;
12
- constructor(input: RemoveKnowledgeBaseTemplateUriCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ RemoveKnowledgeBaseTemplateUriRequest,
10
+ RemoveKnowledgeBaseTemplateUriResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface RemoveKnowledgeBaseTemplateUriCommandInput
18
+ extends RemoveKnowledgeBaseTemplateUriRequest {}
19
+ export interface RemoveKnowledgeBaseTemplateUriCommandOutput
20
+ extends RemoveKnowledgeBaseTemplateUriResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RemoveKnowledgeBaseTemplateUriCommand extends $Command<
24
+ RemoveKnowledgeBaseTemplateUriCommandInput,
25
+ RemoveKnowledgeBaseTemplateUriCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveKnowledgeBaseTemplateUriCommandInput;
29
+ constructor(input: RemoveKnowledgeBaseTemplateUriCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RemoveKnowledgeBaseTemplateUriCommandInput,
37
+ RemoveKnowledgeBaseTemplateUriCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { SearchContentRequest, SearchContentResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface SearchContentCommandInput extends SearchContentRequest {
6
- }
7
- export interface SearchContentCommandOutput extends SearchContentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SearchContentCommand extends $Command<SearchContentCommandInput, SearchContentCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: SearchContentCommandInput;
12
- constructor(input: SearchContentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchContentCommandInput, SearchContentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ SearchContentRequest,
10
+ SearchContentResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface SearchContentCommandInput extends SearchContentRequest {}
18
+ export interface SearchContentCommandOutput
19
+ extends SearchContentResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class SearchContentCommand extends $Command<
23
+ SearchContentCommandInput,
24
+ SearchContentCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: SearchContentCommandInput;
28
+ constructor(input: SearchContentCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<SearchContentCommandInput, SearchContentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }