@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Wisdom.d.ts +548 -161
- package/dist-types/ts3.4/WisdomClient.d.ts +296 -105
- package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetContentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +39 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +896 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
SearchSessionsRequest,
|
|
10
|
+
SearchSessionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WisdomClientResolvedConfig,
|
|
16
|
+
} from "../WisdomClient";
|
|
17
|
+
export interface SearchSessionsCommandInput extends SearchSessionsRequest {}
|
|
18
|
+
export interface SearchSessionsCommandOutput
|
|
19
|
+
extends SearchSessionsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class SearchSessionsCommand extends $Command<
|
|
22
|
+
SearchSessionsCommandInput,
|
|
23
|
+
SearchSessionsCommandOutput,
|
|
24
|
+
WisdomClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: SearchSessionsCommandInput;
|
|
27
|
+
constructor(input: SearchSessionsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WisdomClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<SearchSessionsCommandInput, SearchSessionsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
StartContentUploadRequest,
|
|
10
|
+
StartContentUploadResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WisdomClientResolvedConfig,
|
|
16
|
+
} from "../WisdomClient";
|
|
17
|
+
export interface StartContentUploadCommandInput
|
|
18
|
+
extends StartContentUploadRequest {}
|
|
19
|
+
export interface StartContentUploadCommandOutput
|
|
20
|
+
extends StartContentUploadResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartContentUploadCommand extends $Command<
|
|
23
|
+
StartContentUploadCommandInput,
|
|
24
|
+
StartContentUploadCommandOutput,
|
|
25
|
+
WisdomClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartContentUploadCommandInput;
|
|
28
|
+
constructor(input: StartContentUploadCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WisdomClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<StartContentUploadCommandInput, StartContentUploadCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WisdomClientResolvedConfig,
|
|
13
|
+
} from "../WisdomClient";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
WisdomClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: WisdomClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
UntagResourceRequest,
|
|
10
|
+
UntagResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WisdomClientResolvedConfig,
|
|
16
|
+
} from "../WisdomClient";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
WisdomClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WisdomClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
UpdateContentRequest,
|
|
10
|
+
UpdateContentResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WisdomClientResolvedConfig,
|
|
16
|
+
} from "../WisdomClient";
|
|
17
|
+
export interface UpdateContentCommandInput extends UpdateContentRequest {}
|
|
18
|
+
export interface UpdateContentCommandOutput
|
|
19
|
+
extends UpdateContentResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UpdateContentCommand extends $Command<
|
|
22
|
+
UpdateContentCommandInput,
|
|
23
|
+
UpdateContentCommandOutput,
|
|
24
|
+
WisdomClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UpdateContentCommandInput;
|
|
27
|
+
constructor(input: UpdateContentCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WisdomClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateContentCommandInput, UpdateContentCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,8 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
+
UpdateKnowledgeBaseTemplateUriRequest,
|
|
10
|
+
UpdateKnowledgeBaseTemplateUriResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WisdomClientResolvedConfig,
|
|
16
|
+
} from "../WisdomClient";
|
|
17
|
+
export interface UpdateKnowledgeBaseTemplateUriCommandInput
|
|
18
|
+
extends UpdateKnowledgeBaseTemplateUriRequest {}
|
|
19
|
+
export interface UpdateKnowledgeBaseTemplateUriCommandOutput
|
|
20
|
+
extends UpdateKnowledgeBaseTemplateUriResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateKnowledgeBaseTemplateUriCommand extends $Command<
|
|
23
|
+
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
24
|
+
UpdateKnowledgeBaseTemplateUriCommandOutput,
|
|
25
|
+
WisdomClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateKnowledgeBaseTemplateUriCommandInput;
|
|
28
|
+
constructor(input: UpdateKnowledgeBaseTemplateUriCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WisdomClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
35
|
+
UpdateKnowledgeBaseTemplateUriCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
export * from "./CreateAssistantAssociationCommand";
|
|
2
|
-
export * from "./CreateAssistantCommand";
|
|
3
|
-
export * from "./CreateContentCommand";
|
|
4
|
-
export * from "./CreateKnowledgeBaseCommand";
|
|
5
|
-
export * from "./CreateSessionCommand";
|
|
6
|
-
export * from "./DeleteAssistantAssociationCommand";
|
|
7
|
-
export * from "./DeleteAssistantCommand";
|
|
8
|
-
export * from "./DeleteContentCommand";
|
|
9
|
-
export * from "./DeleteKnowledgeBaseCommand";
|
|
10
|
-
export * from "./GetAssistantAssociationCommand";
|
|
11
|
-
export * from "./GetAssistantCommand";
|
|
12
|
-
export * from "./GetContentCommand";
|
|
13
|
-
export * from "./GetContentSummaryCommand";
|
|
14
|
-
export * from "./GetKnowledgeBaseCommand";
|
|
15
|
-
export * from "./GetRecommendationsCommand";
|
|
16
|
-
export * from "./GetSessionCommand";
|
|
17
|
-
export * from "./ListAssistantAssociationsCommand";
|
|
18
|
-
export * from "./ListAssistantsCommand";
|
|
19
|
-
export * from "./ListContentsCommand";
|
|
20
|
-
export * from "./ListKnowledgeBasesCommand";
|
|
21
|
-
export * from "./ListTagsForResourceCommand";
|
|
22
|
-
export * from "./NotifyRecommendationsReceivedCommand";
|
|
23
|
-
export * from "./PutFeedbackCommand";
|
|
24
|
-
export * from "./QueryAssistantCommand";
|
|
25
|
-
export * from "./RemoveKnowledgeBaseTemplateUriCommand";
|
|
26
|
-
export * from "./SearchContentCommand";
|
|
27
|
-
export * from "./SearchSessionsCommand";
|
|
28
|
-
export * from "./StartContentUploadCommand";
|
|
29
|
-
export * from "./TagResourceCommand";
|
|
30
|
-
export * from "./UntagResourceCommand";
|
|
31
|
-
export * from "./UpdateContentCommand";
|
|
32
|
-
export * from "./UpdateKnowledgeBaseTemplateUriCommand";
|
|
1
|
+
export * from "./CreateAssistantAssociationCommand";
|
|
2
|
+
export * from "./CreateAssistantCommand";
|
|
3
|
+
export * from "./CreateContentCommand";
|
|
4
|
+
export * from "./CreateKnowledgeBaseCommand";
|
|
5
|
+
export * from "./CreateSessionCommand";
|
|
6
|
+
export * from "./DeleteAssistantAssociationCommand";
|
|
7
|
+
export * from "./DeleteAssistantCommand";
|
|
8
|
+
export * from "./DeleteContentCommand";
|
|
9
|
+
export * from "./DeleteKnowledgeBaseCommand";
|
|
10
|
+
export * from "./GetAssistantAssociationCommand";
|
|
11
|
+
export * from "./GetAssistantCommand";
|
|
12
|
+
export * from "./GetContentCommand";
|
|
13
|
+
export * from "./GetContentSummaryCommand";
|
|
14
|
+
export * from "./GetKnowledgeBaseCommand";
|
|
15
|
+
export * from "./GetRecommendationsCommand";
|
|
16
|
+
export * from "./GetSessionCommand";
|
|
17
|
+
export * from "./ListAssistantAssociationsCommand";
|
|
18
|
+
export * from "./ListAssistantsCommand";
|
|
19
|
+
export * from "./ListContentsCommand";
|
|
20
|
+
export * from "./ListKnowledgeBasesCommand";
|
|
21
|
+
export * from "./ListTagsForResourceCommand";
|
|
22
|
+
export * from "./NotifyRecommendationsReceivedCommand";
|
|
23
|
+
export * from "./PutFeedbackCommand";
|
|
24
|
+
export * from "./QueryAssistantCommand";
|
|
25
|
+
export * from "./RemoveKnowledgeBaseTemplateUriCommand";
|
|
26
|
+
export * from "./SearchContentCommand";
|
|
27
|
+
export * from "./SearchSessionsCommand";
|
|
28
|
+
export * from "./StartContentUploadCommand";
|
|
29
|
+
export * from "./TagResourceCommand";
|
|
30
|
+
export * from "./UntagResourceCommand";
|
|
31
|
+
export * from "./UpdateContentCommand";
|
|
32
|
+
export * from "./UpdateKnowledgeBaseTemplateUriCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Wisdom";
|
|
2
|
-
export * from "./WisdomClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { WisdomServiceException } from "./models/WisdomServiceException";
|
|
1
|
+
export * from "./Wisdom";
|
|
2
|
+
export * from "./WisdomClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { WisdomServiceException } from "./models/WisdomServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class WisdomServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|