@aws-sdk/client-wisdom 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/Wisdom.d.ts +136 -145
- package/dist-types/ts3.4/WisdomClient.d.ts +18 -37
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetContentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +10 -20
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/models/models_0.d.ts +7 -21
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateContentRequest,
|
|
4
|
-
UpdateContentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateContentRequest, UpdateContentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateContentCommandInput extends UpdateContentRequest {}
|
|
8
|
-
export interface UpdateContentCommandOutput
|
|
9
|
-
extends UpdateContentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateContentCommandOutput extends UpdateContentResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateContentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateContentCommandInput
|
|
8
|
+
input: UpdateContentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateContentCommandInput,
|
|
16
11
|
UpdateContentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateContentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateContentCommandInput
|
|
17
|
+
input: UpdateContentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateContentCommandInput,
|
|
25
20
|
UpdateContentCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateKnowledgeBaseTemplateUriResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateKnowledgeBaseTemplateUriCommandInput
|
|
8
|
-
extends UpdateKnowledgeBaseTemplateUriRequest {}
|
|
7
|
+
export interface UpdateKnowledgeBaseTemplateUriCommandInput extends UpdateKnowledgeBaseTemplateUriRequest {}
|
|
9
8
|
export interface UpdateKnowledgeBaseTemplateUriCommandOutput
|
|
10
|
-
extends UpdateKnowledgeBaseTemplateUriResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateKnowledgeBaseTemplateUriResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateKnowledgeBaseTemplateUriCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateKnowledgeBaseTemplateUriCommandInput
|
|
12
|
+
input: UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
17
15
|
UpdateKnowledgeBaseTemplateUriCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateKnowledgeBaseTemplateUriCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateKnowledgeBaseTemplateUriCommandInput
|
|
21
|
+
input: UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateKnowledgeBaseTemplateUriCommandInput,
|
|
26
24
|
UpdateKnowledgeBaseTemplateUriCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateQuickResponseRequest,
|
|
4
|
-
UpdateQuickResponseResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateQuickResponseCommandInput
|
|
8
|
-
extends UpdateQuickResponseRequest {}
|
|
4
|
+
export interface UpdateQuickResponseCommandInput extends UpdateQuickResponseRequest {}
|
|
9
5
|
export interface UpdateQuickResponseCommandOutput
|
|
10
|
-
extends UpdateQuickResponseResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateQuickResponseResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateQuickResponseCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateQuickResponseCommandInput
|
|
9
|
+
input: UpdateQuickResponseCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateQuickResponseCommandInput,
|
|
17
12
|
UpdateQuickResponseCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateQuickResponseCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateQuickResponseCommandInput
|
|
18
|
+
input: UpdateQuickResponseCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateQuickResponseCommandInput,
|
|
26
21
|
UpdateQuickResponseCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface WisdomExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
export declare const AssociationType: {
|
|
2
2
|
readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE";
|
|
3
3
|
};
|
|
4
|
-
export type AssociationType =
|
|
5
|
-
(typeof AssociationType)[keyof typeof AssociationType];
|
|
4
|
+
export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType];
|
|
6
5
|
export declare const AssistantType: {
|
|
7
6
|
readonly AGENT: "AGENT";
|
|
8
7
|
};
|
|
@@ -15,20 +14,17 @@ export declare const AssistantStatus: {
|
|
|
15
14
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
16
15
|
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
17
16
|
};
|
|
18
|
-
export type AssistantStatus =
|
|
19
|
-
(typeof AssistantStatus)[keyof typeof AssistantStatus];
|
|
17
|
+
export type AssistantStatus = (typeof AssistantStatus)[keyof typeof AssistantStatus];
|
|
20
18
|
export declare const RelevanceLevel: {
|
|
21
19
|
readonly HIGH: "HIGH";
|
|
22
20
|
readonly LOW: "LOW";
|
|
23
21
|
readonly MEDIUM: "MEDIUM";
|
|
24
22
|
};
|
|
25
|
-
export type RelevanceLevel =
|
|
26
|
-
(typeof RelevanceLevel)[keyof typeof RelevanceLevel];
|
|
23
|
+
export type RelevanceLevel = (typeof RelevanceLevel)[keyof typeof RelevanceLevel];
|
|
27
24
|
export declare const RecommendationType: {
|
|
28
25
|
readonly KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT";
|
|
29
26
|
};
|
|
30
|
-
export type RecommendationType =
|
|
31
|
-
(typeof RecommendationType)[keyof typeof RecommendationType];
|
|
27
|
+
export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
|
|
32
28
|
export declare const RecommendationSourceType: {
|
|
33
29
|
readonly ISSUE_DETECTION: "ISSUE_DETECTION";
|
|
34
30
|
readonly OTHER: "OTHER";
|
|
@@ -48,8 +44,7 @@ export type FilterField = (typeof FilterField)[keyof typeof FilterField];
|
|
|
48
44
|
export declare const FilterOperator: {
|
|
49
45
|
readonly EQUALS: "EQUALS";
|
|
50
46
|
};
|
|
51
|
-
export type FilterOperator =
|
|
52
|
-
(typeof FilterOperator)[keyof typeof FilterOperator];
|
|
47
|
+
export type FilterOperator = (typeof FilterOperator)[keyof typeof FilterOperator];
|
|
53
48
|
export declare const ContentStatus: {
|
|
54
49
|
readonly ACTIVE: "ACTIVE";
|
|
55
50
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -65,8 +60,7 @@ export declare const KnowledgeBaseType: {
|
|
|
65
60
|
readonly EXTERNAL: "EXTERNAL";
|
|
66
61
|
readonly QUICK_RESPONSES: "QUICK_RESPONSES";
|
|
67
62
|
};
|
|
68
|
-
export type KnowledgeBaseType =
|
|
69
|
-
(typeof KnowledgeBaseType)[keyof typeof KnowledgeBaseType];
|
|
63
|
+
export type KnowledgeBaseType = (typeof KnowledgeBaseType)[keyof typeof KnowledgeBaseType];
|
|
70
64
|
export declare const KnowledgeBaseStatus: {
|
|
71
65
|
readonly ACTIVE: "ACTIVE";
|
|
72
66
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -75,8 +69,7 @@ export declare const KnowledgeBaseStatus: {
|
|
|
75
69
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
76
70
|
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
77
71
|
};
|
|
78
|
-
export type KnowledgeBaseStatus =
|
|
79
|
-
(typeof KnowledgeBaseStatus)[keyof typeof KnowledgeBaseStatus];
|
|
72
|
+
export type KnowledgeBaseStatus = (typeof KnowledgeBaseStatus)[keyof typeof KnowledgeBaseStatus];
|
|
80
73
|
export declare const QuickResponseStatus: {
|
|
81
74
|
readonly CREATED: "CREATED";
|
|
82
75
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -87,13 +80,11 @@ export declare const QuickResponseStatus: {
|
|
|
87
80
|
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
88
81
|
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
89
82
|
};
|
|
90
|
-
export type QuickResponseStatus =
|
|
91
|
-
(typeof QuickResponseStatus)[keyof typeof QuickResponseStatus];
|
|
83
|
+
export type QuickResponseStatus = (typeof QuickResponseStatus)[keyof typeof QuickResponseStatus];
|
|
92
84
|
export declare const ExternalSource: {
|
|
93
85
|
readonly AMAZON_CONNECT: "AMAZON_CONNECT";
|
|
94
86
|
};
|
|
95
|
-
export type ExternalSource =
|
|
96
|
-
(typeof ExternalSource)[keyof typeof ExternalSource];
|
|
87
|
+
export type ExternalSource = (typeof ExternalSource)[keyof typeof ExternalSource];
|
|
97
88
|
export declare const ImportJobType: {
|
|
98
89
|
readonly QUICK_RESPONSES: "QUICK_RESPONSES";
|
|
99
90
|
};
|
|
@@ -106,8 +97,7 @@ export declare const ImportJobStatus: {
|
|
|
106
97
|
readonly FAILED: "FAILED";
|
|
107
98
|
readonly START_IN_PROGRESS: "START_IN_PROGRESS";
|
|
108
99
|
};
|
|
109
|
-
export type ImportJobStatus =
|
|
110
|
-
(typeof ImportJobStatus)[keyof typeof ImportJobStatus];
|
|
100
|
+
export type ImportJobStatus = (typeof ImportJobStatus)[keyof typeof ImportJobStatus];
|
|
111
101
|
export declare const QuickResponseFilterOperator: {
|
|
112
102
|
readonly EQUALS: "EQUALS";
|
|
113
103
|
readonly PREFIX: "PREFIX";
|
|
@@ -3,9 +3,7 @@ import { WisdomServiceException as __BaseException } from "./WisdomServiceExcept
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class ConflictException extends __BaseException {
|
|
11
9
|
readonly name: "ConflictException";
|
|
@@ -16,44 +14,32 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
16
14
|
readonly name: "ResourceNotFoundException";
|
|
17
15
|
readonly $fault: "client";
|
|
18
16
|
resourceName?: string | undefined;
|
|
19
|
-
constructor(
|
|
20
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
21
|
-
);
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
22
18
|
}
|
|
23
19
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
24
20
|
readonly name: "ServiceQuotaExceededException";
|
|
25
21
|
readonly $fault: "client";
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
28
|
-
);
|
|
22
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
29
23
|
}
|
|
30
24
|
export declare class ValidationException extends __BaseException {
|
|
31
25
|
readonly name: "ValidationException";
|
|
32
26
|
readonly $fault: "client";
|
|
33
|
-
constructor(
|
|
34
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
35
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
36
28
|
}
|
|
37
29
|
export declare class RequestTimeoutException extends __BaseException {
|
|
38
30
|
readonly name: "RequestTimeoutException";
|
|
39
31
|
readonly $fault: "client";
|
|
40
32
|
$retryable: {};
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<RequestTimeoutException, __BaseException>
|
|
43
|
-
);
|
|
33
|
+
constructor(opts: __ExceptionOptionType<RequestTimeoutException, __BaseException>);
|
|
44
34
|
}
|
|
45
35
|
export declare class PreconditionFailedException extends __BaseException {
|
|
46
36
|
readonly name: "PreconditionFailedException";
|
|
47
37
|
readonly $fault: "client";
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>
|
|
50
|
-
);
|
|
38
|
+
constructor(opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>);
|
|
51
39
|
}
|
|
52
40
|
export declare class TooManyTagsException extends __BaseException {
|
|
53
41
|
readonly name: "TooManyTagsException";
|
|
54
42
|
readonly $fault: "client";
|
|
55
43
|
resourceName?: string | undefined;
|
|
56
|
-
constructor(
|
|
57
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
58
|
-
);
|
|
44
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
59
45
|
}
|
|
@@ -120,9 +120,7 @@ export interface CreateAssistantRequest {
|
|
|
120
120
|
type: AssistantType | undefined;
|
|
121
121
|
description?: string | undefined;
|
|
122
122
|
tags?: Record<string, string> | undefined;
|
|
123
|
-
serverSideEncryptionConfiguration?:
|
|
124
|
-
| ServerSideEncryptionConfiguration
|
|
125
|
-
| undefined;
|
|
123
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
126
124
|
}
|
|
127
125
|
export interface AssistantIntegrationConfiguration {
|
|
128
126
|
topicIntegrationArn?: string | undefined;
|
|
@@ -135,9 +133,7 @@ export interface AssistantData {
|
|
|
135
133
|
status: AssistantStatus | undefined;
|
|
136
134
|
description?: string | undefined;
|
|
137
135
|
tags?: Record<string, string> | undefined;
|
|
138
|
-
serverSideEncryptionConfiguration?:
|
|
139
|
-
| ServerSideEncryptionConfiguration
|
|
140
|
-
| undefined;
|
|
136
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
141
137
|
integrationConfiguration?: AssistantIntegrationConfiguration | undefined;
|
|
142
138
|
}
|
|
143
139
|
export interface CreateAssistantResponse {
|
|
@@ -228,9 +224,7 @@ export interface AssistantSummary {
|
|
|
228
224
|
status: AssistantStatus | undefined;
|
|
229
225
|
description?: string | undefined;
|
|
230
226
|
tags?: Record<string, string> | undefined;
|
|
231
|
-
serverSideEncryptionConfiguration?:
|
|
232
|
-
| ServerSideEncryptionConfiguration
|
|
233
|
-
| undefined;
|
|
227
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
234
228
|
integrationConfiguration?: AssistantIntegrationConfiguration | undefined;
|
|
235
229
|
}
|
|
236
230
|
export interface ListAssistantsResponse {
|
|
@@ -320,9 +314,7 @@ export interface GetSessionResponse {
|
|
|
320
314
|
export interface ConnectConfiguration {
|
|
321
315
|
instanceId?: string | undefined;
|
|
322
316
|
}
|
|
323
|
-
export type Configuration =
|
|
324
|
-
| Configuration.ConnectConfigurationMember
|
|
325
|
-
| Configuration.$UnknownMember;
|
|
317
|
+
export type Configuration = Configuration.ConnectConfigurationMember | Configuration.$UnknownMember;
|
|
326
318
|
export declare namespace Configuration {
|
|
327
319
|
interface ConnectConfigurationMember {
|
|
328
320
|
connectConfiguration: ConnectConfiguration;
|
|
@@ -446,9 +438,7 @@ export interface CreateKnowledgeBaseRequest {
|
|
|
446
438
|
knowledgeBaseType: KnowledgeBaseType | undefined;
|
|
447
439
|
sourceConfiguration?: SourceConfiguration | undefined;
|
|
448
440
|
renderingConfiguration?: RenderingConfiguration | undefined;
|
|
449
|
-
serverSideEncryptionConfiguration?:
|
|
450
|
-
| ServerSideEncryptionConfiguration
|
|
451
|
-
| undefined;
|
|
441
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
452
442
|
description?: string | undefined;
|
|
453
443
|
tags?: Record<string, string> | undefined;
|
|
454
444
|
}
|
|
@@ -461,9 +451,7 @@ export interface KnowledgeBaseData {
|
|
|
461
451
|
lastContentModificationTime?: Date | undefined;
|
|
462
452
|
sourceConfiguration?: SourceConfiguration | undefined;
|
|
463
453
|
renderingConfiguration?: RenderingConfiguration | undefined;
|
|
464
|
-
serverSideEncryptionConfiguration?:
|
|
465
|
-
| ServerSideEncryptionConfiguration
|
|
466
|
-
| undefined;
|
|
454
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
467
455
|
description?: string | undefined;
|
|
468
456
|
tags?: Record<string, string> | undefined;
|
|
469
457
|
}
|
|
@@ -635,9 +623,7 @@ export interface KnowledgeBaseSummary {
|
|
|
635
623
|
status: KnowledgeBaseStatus | undefined;
|
|
636
624
|
sourceConfiguration?: SourceConfiguration | undefined;
|
|
637
625
|
renderingConfiguration?: RenderingConfiguration | undefined;
|
|
638
|
-
serverSideEncryptionConfiguration?:
|
|
639
|
-
| ServerSideEncryptionConfiguration
|
|
640
|
-
| undefined;
|
|
626
|
+
serverSideEncryptionConfiguration?: ServerSideEncryptionConfiguration | undefined;
|
|
641
627
|
description?: string | undefined;
|
|
642
628
|
tags?: Record<string, string> | undefined;
|
|
643
629
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: WisdomClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WisdomHttpAuthSchemeProvider;
|