@aws-sdk/client-kendra 3.279.0 → 3.282.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/README.md +483 -0
- package/dist-types/commands/AssociateEntitiesToExperienceCommand.d.ts +6 -0
- package/dist-types/commands/AssociatePersonasToEntitiesCommand.d.ts +6 -0
- package/dist-types/commands/BatchDeleteDocumentCommand.d.ts +6 -0
- package/dist-types/commands/BatchGetDocumentStatusCommand.d.ts +6 -0
- package/dist-types/commands/BatchPutDocumentCommand.d.ts +6 -0
- package/dist-types/commands/ClearQuerySuggestionsCommand.d.ts +6 -0
- package/dist-types/commands/CreateAccessControlConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/CreateExperienceCommand.d.ts +6 -0
- package/dist-types/commands/CreateFaqCommand.d.ts +6 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +6 -0
- package/dist-types/commands/CreateQuerySuggestionsBlockListCommand.d.ts +6 -0
- package/dist-types/commands/CreateThesaurusCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessControlConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteExperienceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFaqCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +6 -0
- package/dist-types/commands/DeletePrincipalMappingCommand.d.ts +6 -0
- package/dist-types/commands/DeleteQuerySuggestionsBlockListCommand.d.ts +6 -0
- package/dist-types/commands/DeleteThesaurusCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAccessControlConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/DescribeExperienceCommand.d.ts +6 -0
- package/dist-types/commands/DescribeFaqCommand.d.ts +6 -0
- package/dist-types/commands/DescribeIndexCommand.d.ts +6 -0
- package/dist-types/commands/DescribePrincipalMappingCommand.d.ts +6 -0
- package/dist-types/commands/DescribeQuerySuggestionsBlockListCommand.d.ts +6 -0
- package/dist-types/commands/DescribeQuerySuggestionsConfigCommand.d.ts +6 -0
- package/dist-types/commands/DescribeThesaurusCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateEntitiesFromExperienceCommand.d.ts +6 -0
- package/dist-types/commands/DisassociatePersonasFromEntitiesCommand.d.ts +6 -0
- package/dist-types/commands/GetQuerySuggestionsCommand.d.ts +6 -0
- package/dist-types/commands/GetSnapshotsCommand.d.ts +6 -0
- package/dist-types/commands/ListAccessControlConfigurationsCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourceSyncJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +6 -0
- package/dist-types/commands/ListEntityPersonasCommand.d.ts +6 -0
- package/dist-types/commands/ListExperienceEntitiesCommand.d.ts +6 -0
- package/dist-types/commands/ListExperiencesCommand.d.ts +6 -0
- package/dist-types/commands/ListFaqsCommand.d.ts +6 -0
- package/dist-types/commands/ListGroupsOlderThanOrderingIdCommand.d.ts +6 -0
- package/dist-types/commands/ListIndicesCommand.d.ts +6 -0
- package/dist-types/commands/ListQuerySuggestionsBlockListsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListThesauriCommand.d.ts +6 -0
- package/dist-types/commands/PutPrincipalMappingCommand.d.ts +6 -0
- package/dist-types/commands/QueryCommand.d.ts +6 -0
- package/dist-types/commands/StartDataSourceSyncJobCommand.d.ts +6 -0
- package/dist-types/commands/StopDataSourceSyncJobCommand.d.ts +6 -0
- package/dist-types/commands/SubmitFeedbackCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateExperienceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateIndexCommand.d.ts +6 -0
- package/dist-types/commands/UpdateQuerySuggestionsBlockListCommand.d.ts +6 -0
- package/dist-types/commands/UpdateQuerySuggestionsConfigCommand.d.ts +6 -0
- package/dist-types/commands/UpdateThesaurusCommand.d.ts +6 -0
- package/package.json +17 -17
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { StartDataSourceSyncJobRequest, StartDataSourceSyncJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartDataSourceSyncJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartDataSourceSyncJobCommandInput extends StartDataSourceSyncJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartDataSourceSyncJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartDataSourceSyncJobCommandOutput extends StartDataSourceSyncJobResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { StopDataSourceSyncJobRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StopDataSourceSyncJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StopDataSourceSyncJobCommandInput extends StopDataSourceSyncJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StopDataSourceSyncJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StopDataSourceSyncJobCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { SubmitFeedbackRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link SubmitFeedbackCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface SubmitFeedbackCommandInput extends SubmitFeedbackRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link SubmitFeedbackCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface SubmitFeedbackCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateAccessControlConfigurationRequest, UpdateAccessControlConfigurationResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateAccessControlConfigurationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateAccessControlConfigurationCommandInput extends UpdateAccessControlConfigurationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateAccessControlConfigurationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateAccessControlConfigurationCommandOutput extends UpdateAccessControlConfigurationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateDataSourceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateDataSourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateDataSourceCommandInput extends UpdateDataSourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateDataSourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateDataSourceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateExperienceRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateExperienceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateExperienceCommandInput extends UpdateExperienceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateExperienceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateExperienceCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateIndexRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateIndexCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateIndexCommandInput extends UpdateIndexRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateIndexCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateIndexCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateQuerySuggestionsBlockListRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateQuerySuggestionsBlockListCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateQuerySuggestionsBlockListCommandInput extends UpdateQuerySuggestionsBlockListRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateQuerySuggestionsBlockListCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateQuerySuggestionsBlockListCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateQuerySuggestionsConfigRequest } from "../models/models_1";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateQuerySuggestionsConfigCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateQuerySuggestionsConfigCommandInput extends UpdateQuerySuggestionsConfigRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateQuerySuggestionsConfigCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateQuerySuggestionsConfigCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient";
|
|
5
5
|
import { UpdateThesaurusRequest } from "../models/models_1";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateThesaurusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateThesaurusCommandInput extends UpdateThesaurusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateThesaurusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateThesaurusCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kendra",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kendra Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.282.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,25 +20,25 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.282.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.282.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.282.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.282.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.282.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.282.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|