@aws-sdk/client-wisdom 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/Wisdom.d.ts +548 -161
  3. package/dist-types/ts3.4/WisdomClient.d.ts +296 -105
  4. package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetContentCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +35 -17
  28. package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +39 -17
  29. package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +35 -17
  30. package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +36 -17
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  34. package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +35 -17
  35. package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +39 -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 +7 -6
  40. package/dist-types/ts3.4/models/index.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +896 -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 +65 -38
  53. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  54. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  55. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  56. package/package.json +34 -34
@@ -1,17 +1,32 @@
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
+ export declare class GetSessionCommand extends $Command<
19
+ GetSessionCommandInput,
20
+ GetSessionCommandOutput,
21
+ WisdomClientResolvedConfig
22
+ > {
23
+ readonly input: GetSessionCommandInput;
24
+ constructor(input: GetSessionCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: WisdomClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetSessionCommandInput, GetSessionCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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
+ export declare class ListAssistantAssociationsCommand extends $Command<
23
+ ListAssistantAssociationsCommandInput,
24
+ ListAssistantAssociationsCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: ListAssistantAssociationsCommandInput;
28
+ constructor(input: ListAssistantAssociationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: WisdomClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListAssistantAssociationsCommandInput,
35
+ ListAssistantAssociationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
+ export declare class ListAssistantsCommand extends $Command<
22
+ ListAssistantsCommandInput,
23
+ ListAssistantsCommandOutput,
24
+ WisdomClientResolvedConfig
25
+ > {
26
+ readonly input: ListAssistantsCommandInput;
27
+ constructor(input: ListAssistantsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: WisdomClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListAssistantsCommandInput, ListAssistantsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
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
+ export declare class ListContentsCommand extends $Command<
19
+ ListContentsCommandInput,
20
+ ListContentsCommandOutput,
21
+ WisdomClientResolvedConfig
22
+ > {
23
+ readonly input: ListContentsCommandInput;
24
+ constructor(input: ListContentsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: WisdomClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListContentsCommandInput, ListContentsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
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
+ export declare class ListKnowledgeBasesCommand extends $Command<
23
+ ListKnowledgeBasesCommandInput,
24
+ ListKnowledgeBasesCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: ListKnowledgeBasesCommandInput;
28
+ constructor(input: ListKnowledgeBasesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: WisdomClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListKnowledgeBasesCommandInput, ListKnowledgeBasesCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
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
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: WisdomClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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
+ export declare class NotifyRecommendationsReceivedCommand extends $Command<
23
+ NotifyRecommendationsReceivedCommandInput,
24
+ NotifyRecommendationsReceivedCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: NotifyRecommendationsReceivedCommandInput;
28
+ constructor(input: NotifyRecommendationsReceivedCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: WisdomClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ NotifyRecommendationsReceivedCommandInput,
35
+ NotifyRecommendationsReceivedCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
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
+ export declare class PutFeedbackCommand extends $Command<
19
+ PutFeedbackCommandInput,
20
+ PutFeedbackCommandOutput,
21
+ WisdomClientResolvedConfig
22
+ > {
23
+ readonly input: PutFeedbackCommandInput;
24
+ constructor(input: PutFeedbackCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: WisdomClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<PutFeedbackCommandInput, PutFeedbackCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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
+ export declare class QueryAssistantCommand extends $Command<
22
+ QueryAssistantCommandInput,
23
+ QueryAssistantCommandOutput,
24
+ WisdomClientResolvedConfig
25
+ > {
26
+ readonly input: QueryAssistantCommandInput;
27
+ constructor(input: QueryAssistantCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: WisdomClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<QueryAssistantCommandInput, QueryAssistantCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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
+ export declare class RemoveKnowledgeBaseTemplateUriCommand extends $Command<
23
+ RemoveKnowledgeBaseTemplateUriCommandInput,
24
+ RemoveKnowledgeBaseTemplateUriCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: RemoveKnowledgeBaseTemplateUriCommandInput;
28
+ constructor(input: RemoveKnowledgeBaseTemplateUriCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: WisdomClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ RemoveKnowledgeBaseTemplateUriCommandInput,
35
+ RemoveKnowledgeBaseTemplateUriCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
+ export declare class SearchContentCommand extends $Command<
22
+ SearchContentCommandInput,
23
+ SearchContentCommandOutput,
24
+ WisdomClientResolvedConfig
25
+ > {
26
+ readonly input: SearchContentCommandInput;
27
+ constructor(input: SearchContentCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: WisdomClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<SearchContentCommandInput, SearchContentCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }