@aws-sdk/client-wisdom 3.168.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 +16 -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,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 { CreateSessionRequest, CreateSessionResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface CreateSessionCommandInput extends CreateSessionRequest {
6
- }
7
- export interface CreateSessionCommandOutput extends CreateSessionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateSessionCommand extends $Command<CreateSessionCommandInput, CreateSessionCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: CreateSessionCommandInput;
12
- constructor(input: CreateSessionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSessionCommandInput, CreateSessionCommandOutput>;
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
+ CreateSessionRequest,
10
+ CreateSessionResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface CreateSessionCommandInput extends CreateSessionRequest {}
18
+ export interface CreateSessionCommandOutput
19
+ extends CreateSessionResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateSessionCommand extends $Command<
23
+ CreateSessionCommandInput,
24
+ CreateSessionCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: CreateSessionCommandInput;
28
+ constructor(input: CreateSessionCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateSessionCommandInput, CreateSessionCommandOutput>;
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 { DeleteAssistantAssociationRequest, DeleteAssistantAssociationResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface DeleteAssistantAssociationCommandInput extends DeleteAssistantAssociationRequest {
6
- }
7
- export interface DeleteAssistantAssociationCommandOutput extends DeleteAssistantAssociationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAssistantAssociationCommand extends $Command<DeleteAssistantAssociationCommandInput, DeleteAssistantAssociationCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: DeleteAssistantAssociationCommandInput;
12
- constructor(input: DeleteAssistantAssociationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAssistantAssociationCommandInput, DeleteAssistantAssociationCommandOutput>;
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
+ DeleteAssistantAssociationRequest,
10
+ DeleteAssistantAssociationResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface DeleteAssistantAssociationCommandInput
18
+ extends DeleteAssistantAssociationRequest {}
19
+ export interface DeleteAssistantAssociationCommandOutput
20
+ extends DeleteAssistantAssociationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteAssistantAssociationCommand extends $Command<
24
+ DeleteAssistantAssociationCommandInput,
25
+ DeleteAssistantAssociationCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteAssistantAssociationCommandInput;
29
+ constructor(input: DeleteAssistantAssociationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteAssistantAssociationCommandInput,
37
+ DeleteAssistantAssociationCommandOutput
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 { DeleteAssistantRequest, DeleteAssistantResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface DeleteAssistantCommandInput extends DeleteAssistantRequest {
6
- }
7
- export interface DeleteAssistantCommandOutput extends DeleteAssistantResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAssistantCommand extends $Command<DeleteAssistantCommandInput, DeleteAssistantCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: DeleteAssistantCommandInput;
12
- constructor(input: DeleteAssistantCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAssistantCommandInput, DeleteAssistantCommandOutput>;
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
+ DeleteAssistantRequest,
10
+ DeleteAssistantResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface DeleteAssistantCommandInput extends DeleteAssistantRequest {}
18
+ export interface DeleteAssistantCommandOutput
19
+ extends DeleteAssistantResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteAssistantCommand extends $Command<
23
+ DeleteAssistantCommandInput,
24
+ DeleteAssistantCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteAssistantCommandInput;
28
+ constructor(input: DeleteAssistantCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteAssistantCommandInput, DeleteAssistantCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { DeleteContentRequest, DeleteContentResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface DeleteContentCommandInput extends DeleteContentRequest {
6
- }
7
- export interface DeleteContentCommandOutput extends DeleteContentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteContentCommand extends $Command<DeleteContentCommandInput, DeleteContentCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: DeleteContentCommandInput;
12
- constructor(input: DeleteContentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContentCommandInput, DeleteContentCommandOutput>;
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
+ DeleteContentRequest,
10
+ DeleteContentResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface DeleteContentCommandInput extends DeleteContentRequest {}
18
+ export interface DeleteContentCommandOutput
19
+ extends DeleteContentResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteContentCommand extends $Command<
23
+ DeleteContentCommandInput,
24
+ DeleteContentCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteContentCommandInput;
28
+ constructor(input: DeleteContentCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteContentCommandInput, DeleteContentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface DeleteKnowledgeBaseCommandInput extends DeleteKnowledgeBaseRequest {
6
- }
7
- export interface DeleteKnowledgeBaseCommandOutput extends DeleteKnowledgeBaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteKnowledgeBaseCommand extends $Command<DeleteKnowledgeBaseCommandInput, DeleteKnowledgeBaseCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: DeleteKnowledgeBaseCommandInput;
12
- constructor(input: DeleteKnowledgeBaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteKnowledgeBaseCommandInput, DeleteKnowledgeBaseCommandOutput>;
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
+ DeleteKnowledgeBaseRequest,
10
+ DeleteKnowledgeBaseResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface DeleteKnowledgeBaseCommandInput
18
+ extends DeleteKnowledgeBaseRequest {}
19
+ export interface DeleteKnowledgeBaseCommandOutput
20
+ extends DeleteKnowledgeBaseResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteKnowledgeBaseCommand extends $Command<
24
+ DeleteKnowledgeBaseCommandInput,
25
+ DeleteKnowledgeBaseCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteKnowledgeBaseCommandInput;
29
+ constructor(input: DeleteKnowledgeBaseCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteKnowledgeBaseCommandInput, DeleteKnowledgeBaseCommandOutput>;
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 { GetAssistantAssociationRequest, GetAssistantAssociationResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetAssistantAssociationCommandInput extends GetAssistantAssociationRequest {
6
- }
7
- export interface GetAssistantAssociationCommandOutput extends GetAssistantAssociationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAssistantAssociationCommand extends $Command<GetAssistantAssociationCommandInput, GetAssistantAssociationCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetAssistantAssociationCommandInput;
12
- constructor(input: GetAssistantAssociationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssistantAssociationCommandInput, GetAssistantAssociationCommandOutput>;
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
+ GetAssistantAssociationRequest,
10
+ GetAssistantAssociationResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface GetAssistantAssociationCommandInput
18
+ extends GetAssistantAssociationRequest {}
19
+ export interface GetAssistantAssociationCommandOutput
20
+ extends GetAssistantAssociationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAssistantAssociationCommand extends $Command<
24
+ GetAssistantAssociationCommandInput,
25
+ GetAssistantAssociationCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: GetAssistantAssociationCommandInput;
29
+ constructor(input: GetAssistantAssociationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetAssistantAssociationCommandInput,
37
+ GetAssistantAssociationCommandOutput
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 { GetAssistantRequest, GetAssistantResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetAssistantCommandInput extends GetAssistantRequest {
6
- }
7
- export interface GetAssistantCommandOutput extends GetAssistantResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAssistantCommand extends $Command<GetAssistantCommandInput, GetAssistantCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetAssistantCommandInput;
12
- constructor(input: GetAssistantCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssistantCommandInput, GetAssistantCommandOutput>;
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 { GetAssistantRequest, GetAssistantResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ WisdomClientResolvedConfig,
13
+ } from "../WisdomClient";
14
+ export interface GetAssistantCommandInput extends GetAssistantRequest {}
15
+ export interface GetAssistantCommandOutput
16
+ extends GetAssistantResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetAssistantCommand extends $Command<
20
+ GetAssistantCommandInput,
21
+ GetAssistantCommandOutput,
22
+ WisdomClientResolvedConfig
23
+ > {
24
+ readonly input: GetAssistantCommandInput;
25
+ constructor(input: GetAssistantCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: WisdomClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetAssistantCommandInput, GetAssistantCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
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 { GetContentRequest, GetContentResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetContentCommandInput extends GetContentRequest {
6
- }
7
- export interface GetContentCommandOutput extends GetContentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetContentCommand extends $Command<GetContentCommandInput, GetContentCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetContentCommandInput;
12
- constructor(input: GetContentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContentCommandInput, GetContentCommandOutput>;
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 { GetContentRequest, GetContentResponse } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ WisdomClientResolvedConfig,
13
+ } from "../WisdomClient";
14
+ export interface GetContentCommandInput extends GetContentRequest {}
15
+ export interface GetContentCommandOutput
16
+ extends GetContentResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetContentCommand extends $Command<
20
+ GetContentCommandInput,
21
+ GetContentCommandOutput,
22
+ WisdomClientResolvedConfig
23
+ > {
24
+ readonly input: GetContentCommandInput;
25
+ constructor(input: GetContentCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: WisdomClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetContentCommandInput, GetContentCommandOutput>;
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 { GetContentSummaryRequest, GetContentSummaryResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetContentSummaryCommandInput extends GetContentSummaryRequest {
6
- }
7
- export interface GetContentSummaryCommandOutput extends GetContentSummaryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetContentSummaryCommand extends $Command<GetContentSummaryCommandInput, GetContentSummaryCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetContentSummaryCommandInput;
12
- constructor(input: GetContentSummaryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContentSummaryCommandInput, GetContentSummaryCommandOutput>;
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
+ GetContentSummaryRequest,
10
+ GetContentSummaryResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface GetContentSummaryCommandInput
18
+ extends GetContentSummaryRequest {}
19
+ export interface GetContentSummaryCommandOutput
20
+ extends GetContentSummaryResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetContentSummaryCommand extends $Command<
24
+ GetContentSummaryCommandInput,
25
+ GetContentSummaryCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: GetContentSummaryCommandInput;
29
+ constructor(input: GetContentSummaryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetContentSummaryCommandInput, GetContentSummaryCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetKnowledgeBaseCommandInput extends GetKnowledgeBaseRequest {
6
- }
7
- export interface GetKnowledgeBaseCommandOutput extends GetKnowledgeBaseResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetKnowledgeBaseCommand extends $Command<GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetKnowledgeBaseCommandInput;
12
- constructor(input: GetKnowledgeBaseCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput>;
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
+ GetKnowledgeBaseRequest,
10
+ GetKnowledgeBaseResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface GetKnowledgeBaseCommandInput extends GetKnowledgeBaseRequest {}
18
+ export interface GetKnowledgeBaseCommandOutput
19
+ extends GetKnowledgeBaseResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetKnowledgeBaseCommand extends $Command<
23
+ GetKnowledgeBaseCommandInput,
24
+ GetKnowledgeBaseCommandOutput,
25
+ WisdomClientResolvedConfig
26
+ > {
27
+ readonly input: GetKnowledgeBaseCommandInput;
28
+ constructor(input: GetKnowledgeBaseCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: WisdomClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetKnowledgeBaseCommandInput, GetKnowledgeBaseCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient";
5
- export interface GetRecommendationsCommandInput extends GetRecommendationsRequest {
6
- }
7
- export interface GetRecommendationsCommandOutput extends GetRecommendationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, WisdomClientResolvedConfig> {
11
- readonly input: GetRecommendationsCommandInput;
12
- constructor(input: GetRecommendationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WisdomClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
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
+ GetRecommendationsRequest,
10
+ GetRecommendationsResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ WisdomClientResolvedConfig,
16
+ } from "../WisdomClient";
17
+ export interface GetRecommendationsCommandInput
18
+ extends GetRecommendationsRequest {}
19
+ export interface GetRecommendationsCommandOutput
20
+ extends GetRecommendationsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetRecommendationsCommand extends $Command<
24
+ GetRecommendationsCommandInput,
25
+ GetRecommendationsCommandOutput,
26
+ WisdomClientResolvedConfig
27
+ > {
28
+ readonly input: GetRecommendationsCommandInput;
29
+ constructor(input: GetRecommendationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: WisdomClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }