@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Wisdom.d.ts +161 -33
- package/dist-types/ts3.4/WisdomClient.d.ts +321 -105
- package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetContentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +21 -8
- package/dist-types/ts3.4/commands/index.d.ts +32 -32
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/WisdomServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1216 -1124
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListAssistantAssociationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAssistantsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListContentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListKnowledgeBasesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/QueryAssistantPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchContentPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/SearchSessionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +389 -98
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|