@aws-sdk/client-kendra 3.127.0 → 3.131.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 +32 -0
- package/dist-cjs/Kendra.js +75 -0
- package/dist-cjs/commands/CreateAccessControlConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DeleteAccessControlConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DescribeAccessControlConfigurationCommand.js +36 -0
- package/dist-cjs/commands/ListAccessControlConfigurationsCommand.js +36 -0
- package/dist-cjs/commands/QueryCommand.js +2 -1
- package/dist-cjs/commands/UpdateAccessControlConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/index.js +1 -0
- package/dist-cjs/models/models_0.js +72 -12
- package/dist-cjs/models/models_1.js +9 -0
- package/dist-cjs/pagination/ListAccessControlConfigurationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +450 -3
- package/dist-es/Kendra.js +75 -0
- package/dist-es/commands/CreateAccessControlConfigurationCommand.js +39 -0
- package/dist-es/commands/DeleteAccessControlConfigurationCommand.js +39 -0
- package/dist-es/commands/DescribeAccessControlConfigurationCommand.js +39 -0
- package/dist-es/commands/ListAccessControlConfigurationsCommand.js +39 -0
- package/dist-es/commands/QueryCommand.js +2 -1
- package/dist-es/commands/UpdateAccessControlConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +44 -4
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/pagination/ListAccessControlConfigurationsPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +523 -1
- package/dist-types/Kendra.d.ts +99 -11
- package/dist-types/KendraClient.d.ts +7 -2
- package/dist-types/commands/CreateAccessControlConfigurationCommand.d.ts +59 -0
- package/dist-types/commands/CreateFaqCommand.d.ts +1 -1
- package/dist-types/commands/CreateIndexCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessControlConfigurationCommand.d.ts +38 -0
- package/dist-types/commands/DescribeAccessControlConfigurationCommand.d.ts +38 -0
- package/dist-types/commands/DescribeIndexCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQuerySuggestionsBlockListCommand.d.ts +2 -1
- package/dist-types/commands/DescribeQuerySuggestionsConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThesaurusCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessControlConfigurationsCommand.d.ts +38 -0
- package/dist-types/commands/ListThesauriCommand.d.ts +1 -1
- package/dist-types/commands/PutPrincipalMappingCommand.d.ts +3 -3
- package/dist-types/commands/QueryCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +54 -0
- package/dist-types/commands/UpdateThesaurusCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +411 -271
- package/dist-types/models/models_1.d.ts +95 -0
- package/dist-types/pagination/ListAccessControlConfigurationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
- package/dist-types/ts3.4/Kendra.d.ts +25 -0
- package/dist-types/ts3.4/KendraClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/CreateAccessControlConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAccessControlConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAccessControlConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAccessControlConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAccessControlConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +125 -32
- package/dist-types/ts3.4/models/models_1.d.ts +33 -0
- package/dist-types/ts3.4/pagination/ListAccessControlConfigurationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +15 -0
- package/package.json +7 -7
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { KendraServiceException as __BaseException } from "./KendraServiceException";
|
|
3
3
|
|
|
4
|
+
export interface AccessControlConfigurationSummary {
|
|
5
|
+
|
|
6
|
+
Id: string | undefined;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace AccessControlConfigurationSummary {
|
|
9
|
+
|
|
10
|
+
const filterSensitiveLog: (obj: AccessControlConfigurationSummary) => any;
|
|
11
|
+
}
|
|
12
|
+
|
|
4
13
|
export interface AccessControlListConfiguration {
|
|
5
14
|
|
|
6
15
|
KeyPath?: string;
|
|
@@ -583,6 +592,8 @@ export interface Document {
|
|
|
583
592
|
HierarchicalAccessControlList?: HierarchicalPrincipal[];
|
|
584
593
|
|
|
585
594
|
ContentType?: ContentType | string;
|
|
595
|
+
|
|
596
|
+
AccessControlConfigurationId?: string;
|
|
586
597
|
}
|
|
587
598
|
export declare namespace Document {
|
|
588
599
|
|
|
@@ -639,6 +650,32 @@ export declare namespace ClearQuerySuggestionsRequest {
|
|
|
639
650
|
|
|
640
651
|
const filterSensitiveLog: (obj: ClearQuerySuggestionsRequest) => any;
|
|
641
652
|
}
|
|
653
|
+
export interface CreateAccessControlConfigurationRequest {
|
|
654
|
+
|
|
655
|
+
IndexId: string | undefined;
|
|
656
|
+
|
|
657
|
+
Name: string | undefined;
|
|
658
|
+
|
|
659
|
+
Description?: string;
|
|
660
|
+
|
|
661
|
+
AccessControlList?: Principal[];
|
|
662
|
+
|
|
663
|
+
HierarchicalAccessControlList?: HierarchicalPrincipal[];
|
|
664
|
+
|
|
665
|
+
ClientToken?: string;
|
|
666
|
+
}
|
|
667
|
+
export declare namespace CreateAccessControlConfigurationRequest {
|
|
668
|
+
|
|
669
|
+
const filterSensitiveLog: (obj: CreateAccessControlConfigurationRequest) => any;
|
|
670
|
+
}
|
|
671
|
+
export interface CreateAccessControlConfigurationResponse {
|
|
672
|
+
|
|
673
|
+
Id: string | undefined;
|
|
674
|
+
}
|
|
675
|
+
export declare namespace CreateAccessControlConfigurationResponse {
|
|
676
|
+
|
|
677
|
+
const filterSensitiveLog: (obj: CreateAccessControlConfigurationResponse) => any;
|
|
678
|
+
}
|
|
642
679
|
|
|
643
680
|
export interface BoxConfiguration {
|
|
644
681
|
|
|
@@ -1938,6 +1975,22 @@ export declare namespace CreateThesaurusResponse {
|
|
|
1938
1975
|
|
|
1939
1976
|
const filterSensitiveLog: (obj: CreateThesaurusResponse) => any;
|
|
1940
1977
|
}
|
|
1978
|
+
export interface DeleteAccessControlConfigurationRequest {
|
|
1979
|
+
|
|
1980
|
+
IndexId: string | undefined;
|
|
1981
|
+
|
|
1982
|
+
Id: string | undefined;
|
|
1983
|
+
}
|
|
1984
|
+
export declare namespace DeleteAccessControlConfigurationRequest {
|
|
1985
|
+
|
|
1986
|
+
const filterSensitiveLog: (obj: DeleteAccessControlConfigurationRequest) => any;
|
|
1987
|
+
}
|
|
1988
|
+
export interface DeleteAccessControlConfigurationResponse {
|
|
1989
|
+
}
|
|
1990
|
+
export declare namespace DeleteAccessControlConfigurationResponse {
|
|
1991
|
+
|
|
1992
|
+
const filterSensitiveLog: (obj: DeleteAccessControlConfigurationResponse) => any;
|
|
1993
|
+
}
|
|
1941
1994
|
export interface DeleteDataSourceRequest {
|
|
1942
1995
|
|
|
1943
1996
|
Id: string | undefined;
|
|
@@ -2016,6 +2069,32 @@ export declare namespace DeleteThesaurusRequest {
|
|
|
2016
2069
|
|
|
2017
2070
|
const filterSensitiveLog: (obj: DeleteThesaurusRequest) => any;
|
|
2018
2071
|
}
|
|
2072
|
+
export interface DescribeAccessControlConfigurationRequest {
|
|
2073
|
+
|
|
2074
|
+
IndexId: string | undefined;
|
|
2075
|
+
|
|
2076
|
+
Id: string | undefined;
|
|
2077
|
+
}
|
|
2078
|
+
export declare namespace DescribeAccessControlConfigurationRequest {
|
|
2079
|
+
|
|
2080
|
+
const filterSensitiveLog: (obj: DescribeAccessControlConfigurationRequest) => any;
|
|
2081
|
+
}
|
|
2082
|
+
export interface DescribeAccessControlConfigurationResponse {
|
|
2083
|
+
|
|
2084
|
+
Name: string | undefined;
|
|
2085
|
+
|
|
2086
|
+
Description?: string;
|
|
2087
|
+
|
|
2088
|
+
ErrorMessage?: string;
|
|
2089
|
+
|
|
2090
|
+
AccessControlList?: Principal[];
|
|
2091
|
+
|
|
2092
|
+
HierarchicalAccessControlList?: HierarchicalPrincipal[];
|
|
2093
|
+
}
|
|
2094
|
+
export declare namespace DescribeAccessControlConfigurationResponse {
|
|
2095
|
+
|
|
2096
|
+
const filterSensitiveLog: (obj: DescribeAccessControlConfigurationResponse) => any;
|
|
2097
|
+
}
|
|
2019
2098
|
export interface DescribeDataSourceRequest {
|
|
2020
2099
|
|
|
2021
2100
|
Id: string | undefined;
|
|
@@ -2682,6 +2761,28 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
2682
2761
|
|
|
2683
2762
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
2684
2763
|
}
|
|
2764
|
+
export interface ListAccessControlConfigurationsRequest {
|
|
2765
|
+
|
|
2766
|
+
IndexId: string | undefined;
|
|
2767
|
+
|
|
2768
|
+
NextToken?: string;
|
|
2769
|
+
|
|
2770
|
+
MaxResults?: number;
|
|
2771
|
+
}
|
|
2772
|
+
export declare namespace ListAccessControlConfigurationsRequest {
|
|
2773
|
+
|
|
2774
|
+
const filterSensitiveLog: (obj: ListAccessControlConfigurationsRequest) => any;
|
|
2775
|
+
}
|
|
2776
|
+
export interface ListAccessControlConfigurationsResponse {
|
|
2777
|
+
|
|
2778
|
+
NextToken?: string;
|
|
2779
|
+
|
|
2780
|
+
AccessControlConfigurations: AccessControlConfigurationSummary[] | undefined;
|
|
2781
|
+
}
|
|
2782
|
+
export declare namespace ListAccessControlConfigurationsResponse {
|
|
2783
|
+
|
|
2784
|
+
const filterSensitiveLog: (obj: ListAccessControlConfigurationsResponse) => any;
|
|
2785
|
+
}
|
|
2685
2786
|
export interface ListDataSourcesRequest {
|
|
2686
2787
|
|
|
2687
2788
|
IndexId: string | undefined;
|
|
@@ -3463,6 +3564,30 @@ export declare namespace UntagResourceResponse {
|
|
|
3463
3564
|
|
|
3464
3565
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
3465
3566
|
}
|
|
3567
|
+
export interface UpdateAccessControlConfigurationRequest {
|
|
3568
|
+
|
|
3569
|
+
IndexId: string | undefined;
|
|
3570
|
+
|
|
3571
|
+
Id: string | undefined;
|
|
3572
|
+
|
|
3573
|
+
Name?: string;
|
|
3574
|
+
|
|
3575
|
+
Description?: string;
|
|
3576
|
+
|
|
3577
|
+
AccessControlList?: Principal[];
|
|
3578
|
+
|
|
3579
|
+
HierarchicalAccessControlList?: HierarchicalPrincipal[];
|
|
3580
|
+
}
|
|
3581
|
+
export declare namespace UpdateAccessControlConfigurationRequest {
|
|
3582
|
+
|
|
3583
|
+
const filterSensitiveLog: (obj: UpdateAccessControlConfigurationRequest) => any;
|
|
3584
|
+
}
|
|
3585
|
+
export interface UpdateAccessControlConfigurationResponse {
|
|
3586
|
+
}
|
|
3587
|
+
export declare namespace UpdateAccessControlConfigurationResponse {
|
|
3588
|
+
|
|
3589
|
+
const filterSensitiveLog: (obj: UpdateAccessControlConfigurationResponse) => any;
|
|
3590
|
+
}
|
|
3466
3591
|
export interface UpdateDataSourceRequest {
|
|
3467
3592
|
|
|
3468
3593
|
Id: string | undefined;
|
|
@@ -3667,35 +3792,3 @@ export declare namespace QueryResult {
|
|
|
3667
3792
|
|
|
3668
3793
|
const filterSensitiveLog: (obj: QueryResult) => any;
|
|
3669
3794
|
}
|
|
3670
|
-
export interface QueryRequest {
|
|
3671
|
-
|
|
3672
|
-
IndexId: string | undefined;
|
|
3673
|
-
|
|
3674
|
-
QueryText?: string;
|
|
3675
|
-
|
|
3676
|
-
AttributeFilter?: AttributeFilter;
|
|
3677
|
-
|
|
3678
|
-
Facets?: Facet[];
|
|
3679
|
-
|
|
3680
|
-
RequestedDocumentAttributes?: string[];
|
|
3681
|
-
|
|
3682
|
-
QueryResultTypeFilter?: QueryResultType | string;
|
|
3683
|
-
|
|
3684
|
-
DocumentRelevanceOverrideConfigurations?: DocumentRelevanceConfiguration[];
|
|
3685
|
-
|
|
3686
|
-
PageNumber?: number;
|
|
3687
|
-
|
|
3688
|
-
PageSize?: number;
|
|
3689
|
-
|
|
3690
|
-
SortingConfiguration?: SortingConfiguration;
|
|
3691
|
-
|
|
3692
|
-
UserContext?: UserContext;
|
|
3693
|
-
|
|
3694
|
-
VisitorId?: string;
|
|
3695
|
-
|
|
3696
|
-
SpellCorrectionConfiguration?: SpellCorrectionConfiguration;
|
|
3697
|
-
}
|
|
3698
|
-
export declare namespace QueryRequest {
|
|
3699
|
-
|
|
3700
|
-
const filterSensitiveLog: (obj: QueryRequest) => any;
|
|
3701
|
-
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { AttributeFilter, DocumentRelevanceConfiguration, Facet, QueryResultType, SortingConfiguration, SpellCorrectionConfiguration, UserContext } from "./models_0";
|
|
2
|
+
export interface QueryRequest {
|
|
3
|
+
|
|
4
|
+
IndexId: string | undefined;
|
|
5
|
+
|
|
6
|
+
QueryText?: string;
|
|
7
|
+
|
|
8
|
+
AttributeFilter?: AttributeFilter;
|
|
9
|
+
|
|
10
|
+
Facets?: Facet[];
|
|
11
|
+
|
|
12
|
+
RequestedDocumentAttributes?: string[];
|
|
13
|
+
|
|
14
|
+
QueryResultTypeFilter?: QueryResultType | string;
|
|
15
|
+
|
|
16
|
+
DocumentRelevanceOverrideConfigurations?: DocumentRelevanceConfiguration[];
|
|
17
|
+
|
|
18
|
+
PageNumber?: number;
|
|
19
|
+
|
|
20
|
+
PageSize?: number;
|
|
21
|
+
|
|
22
|
+
SortingConfiguration?: SortingConfiguration;
|
|
23
|
+
|
|
24
|
+
UserContext?: UserContext;
|
|
25
|
+
|
|
26
|
+
VisitorId?: string;
|
|
27
|
+
|
|
28
|
+
SpellCorrectionConfiguration?: SpellCorrectionConfiguration;
|
|
29
|
+
}
|
|
30
|
+
export declare namespace QueryRequest {
|
|
31
|
+
|
|
32
|
+
const filterSensitiveLog: (obj: QueryRequest) => any;
|
|
33
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAccessControlConfigurationsCommandInput, ListAccessControlConfigurationsCommandOutput } from "../commands/ListAccessControlConfigurationsCommand";
|
|
3
|
+
import { KendraPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAccessControlConfigurations(config: KendraPaginationConfiguration, input: ListAccessControlConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListAccessControlConfigurationsCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./GetSnapshotsPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListAccessControlConfigurationsPaginator";
|
|
3
4
|
export * from "./ListDataSourceSyncJobsPaginator";
|
|
4
5
|
export * from "./ListDataSourcesPaginator";
|
|
5
6
|
export * from "./ListEntityPersonasPaginator";
|
|
@@ -6,12 +6,14 @@ import { BatchDeleteDocumentCommandInput, BatchDeleteDocumentCommandOutput } fro
|
|
|
6
6
|
import { BatchGetDocumentStatusCommandInput, BatchGetDocumentStatusCommandOutput } from "../commands/BatchGetDocumentStatusCommand";
|
|
7
7
|
import { BatchPutDocumentCommandInput, BatchPutDocumentCommandOutput } from "../commands/BatchPutDocumentCommand";
|
|
8
8
|
import { ClearQuerySuggestionsCommandInput, ClearQuerySuggestionsCommandOutput } from "../commands/ClearQuerySuggestionsCommand";
|
|
9
|
+
import { CreateAccessControlConfigurationCommandInput, CreateAccessControlConfigurationCommandOutput } from "../commands/CreateAccessControlConfigurationCommand";
|
|
9
10
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "../commands/CreateDataSourceCommand";
|
|
10
11
|
import { CreateExperienceCommandInput, CreateExperienceCommandOutput } from "../commands/CreateExperienceCommand";
|
|
11
12
|
import { CreateFaqCommandInput, CreateFaqCommandOutput } from "../commands/CreateFaqCommand";
|
|
12
13
|
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "../commands/CreateIndexCommand";
|
|
13
14
|
import { CreateQuerySuggestionsBlockListCommandInput, CreateQuerySuggestionsBlockListCommandOutput } from "../commands/CreateQuerySuggestionsBlockListCommand";
|
|
14
15
|
import { CreateThesaurusCommandInput, CreateThesaurusCommandOutput } from "../commands/CreateThesaurusCommand";
|
|
16
|
+
import { DeleteAccessControlConfigurationCommandInput, DeleteAccessControlConfigurationCommandOutput } from "../commands/DeleteAccessControlConfigurationCommand";
|
|
15
17
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "../commands/DeleteDataSourceCommand";
|
|
16
18
|
import { DeleteExperienceCommandInput, DeleteExperienceCommandOutput } from "../commands/DeleteExperienceCommand";
|
|
17
19
|
import { DeleteFaqCommandInput, DeleteFaqCommandOutput } from "../commands/DeleteFaqCommand";
|
|
@@ -19,6 +21,7 @@ import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "../commands/D
|
|
|
19
21
|
import { DeletePrincipalMappingCommandInput, DeletePrincipalMappingCommandOutput } from "../commands/DeletePrincipalMappingCommand";
|
|
20
22
|
import { DeleteQuerySuggestionsBlockListCommandInput, DeleteQuerySuggestionsBlockListCommandOutput } from "../commands/DeleteQuerySuggestionsBlockListCommand";
|
|
21
23
|
import { DeleteThesaurusCommandInput, DeleteThesaurusCommandOutput } from "../commands/DeleteThesaurusCommand";
|
|
24
|
+
import { DescribeAccessControlConfigurationCommandInput, DescribeAccessControlConfigurationCommandOutput } from "../commands/DescribeAccessControlConfigurationCommand";
|
|
22
25
|
import { DescribeDataSourceCommandInput, DescribeDataSourceCommandOutput } from "../commands/DescribeDataSourceCommand";
|
|
23
26
|
import { DescribeExperienceCommandInput, DescribeExperienceCommandOutput } from "../commands/DescribeExperienceCommand";
|
|
24
27
|
import { DescribeFaqCommandInput, DescribeFaqCommandOutput } from "../commands/DescribeFaqCommand";
|
|
@@ -31,6 +34,7 @@ import { DisassociateEntitiesFromExperienceCommandInput, DisassociateEntitiesFro
|
|
|
31
34
|
import { DisassociatePersonasFromEntitiesCommandInput, DisassociatePersonasFromEntitiesCommandOutput } from "../commands/DisassociatePersonasFromEntitiesCommand";
|
|
32
35
|
import { GetQuerySuggestionsCommandInput, GetQuerySuggestionsCommandOutput } from "../commands/GetQuerySuggestionsCommand";
|
|
33
36
|
import { GetSnapshotsCommandInput, GetSnapshotsCommandOutput } from "../commands/GetSnapshotsCommand";
|
|
37
|
+
import { ListAccessControlConfigurationsCommandInput, ListAccessControlConfigurationsCommandOutput } from "../commands/ListAccessControlConfigurationsCommand";
|
|
34
38
|
import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "../commands/ListDataSourcesCommand";
|
|
35
39
|
import { ListDataSourceSyncJobsCommandInput, ListDataSourceSyncJobsCommandOutput } from "../commands/ListDataSourceSyncJobsCommand";
|
|
36
40
|
import { ListEntityPersonasCommandInput, ListEntityPersonasCommandOutput } from "../commands/ListEntityPersonasCommand";
|
|
@@ -49,6 +53,7 @@ import { StopDataSourceSyncJobCommandInput, StopDataSourceSyncJobCommandOutput }
|
|
|
49
53
|
import { SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput } from "../commands/SubmitFeedbackCommand";
|
|
50
54
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
51
55
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
56
|
+
import { UpdateAccessControlConfigurationCommandInput, UpdateAccessControlConfigurationCommandOutput } from "../commands/UpdateAccessControlConfigurationCommand";
|
|
52
57
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "../commands/UpdateDataSourceCommand";
|
|
53
58
|
import { UpdateExperienceCommandInput, UpdateExperienceCommandOutput } from "../commands/UpdateExperienceCommand";
|
|
54
59
|
import { UpdateIndexCommandInput, UpdateIndexCommandOutput } from "../commands/UpdateIndexCommand";
|
|
@@ -61,12 +66,14 @@ export declare const serializeAws_json1_1BatchDeleteDocumentCommand: (input: Bat
|
|
|
61
66
|
export declare const serializeAws_json1_1BatchGetDocumentStatusCommand: (input: BatchGetDocumentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
67
|
export declare const serializeAws_json1_1BatchPutDocumentCommand: (input: BatchPutDocumentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
68
|
export declare const serializeAws_json1_1ClearQuerySuggestionsCommand: (input: ClearQuerySuggestionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
export declare const serializeAws_json1_1CreateAccessControlConfigurationCommand: (input: CreateAccessControlConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
70
|
export declare const serializeAws_json1_1CreateDataSourceCommand: (input: CreateDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
71
|
export declare const serializeAws_json1_1CreateExperienceCommand: (input: CreateExperienceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
72
|
export declare const serializeAws_json1_1CreateFaqCommand: (input: CreateFaqCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
73
|
export declare const serializeAws_json1_1CreateIndexCommand: (input: CreateIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
74
|
export declare const serializeAws_json1_1CreateQuerySuggestionsBlockListCommand: (input: CreateQuerySuggestionsBlockListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
75
|
export declare const serializeAws_json1_1CreateThesaurusCommand: (input: CreateThesaurusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
export declare const serializeAws_json1_1DeleteAccessControlConfigurationCommand: (input: DeleteAccessControlConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
77
|
export declare const serializeAws_json1_1DeleteDataSourceCommand: (input: DeleteDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
78
|
export declare const serializeAws_json1_1DeleteExperienceCommand: (input: DeleteExperienceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
79
|
export declare const serializeAws_json1_1DeleteFaqCommand: (input: DeleteFaqCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -74,6 +81,7 @@ export declare const serializeAws_json1_1DeleteIndexCommand: (input: DeleteIndex
|
|
|
74
81
|
export declare const serializeAws_json1_1DeletePrincipalMappingCommand: (input: DeletePrincipalMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
82
|
export declare const serializeAws_json1_1DeleteQuerySuggestionsBlockListCommand: (input: DeleteQuerySuggestionsBlockListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
83
|
export declare const serializeAws_json1_1DeleteThesaurusCommand: (input: DeleteThesaurusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
export declare const serializeAws_json1_1DescribeAccessControlConfigurationCommand: (input: DescribeAccessControlConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
85
|
export declare const serializeAws_json1_1DescribeDataSourceCommand: (input: DescribeDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
86
|
export declare const serializeAws_json1_1DescribeExperienceCommand: (input: DescribeExperienceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
87
|
export declare const serializeAws_json1_1DescribeFaqCommand: (input: DescribeFaqCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -86,6 +94,7 @@ export declare const serializeAws_json1_1DisassociateEntitiesFromExperienceComma
|
|
|
86
94
|
export declare const serializeAws_json1_1DisassociatePersonasFromEntitiesCommand: (input: DisassociatePersonasFromEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
95
|
export declare const serializeAws_json1_1GetQuerySuggestionsCommand: (input: GetQuerySuggestionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
96
|
export declare const serializeAws_json1_1GetSnapshotsCommand: (input: GetSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
+
export declare const serializeAws_json1_1ListAccessControlConfigurationsCommand: (input: ListAccessControlConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
98
|
export declare const serializeAws_json1_1ListDataSourcesCommand: (input: ListDataSourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
99
|
export declare const serializeAws_json1_1ListDataSourceSyncJobsCommand: (input: ListDataSourceSyncJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
100
|
export declare const serializeAws_json1_1ListEntityPersonasCommand: (input: ListEntityPersonasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -104,6 +113,7 @@ export declare const serializeAws_json1_1StopDataSourceSyncJobCommand: (input: S
|
|
|
104
113
|
export declare const serializeAws_json1_1SubmitFeedbackCommand: (input: SubmitFeedbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
114
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
115
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
export declare const serializeAws_json1_1UpdateAccessControlConfigurationCommand: (input: UpdateAccessControlConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
117
|
export declare const serializeAws_json1_1UpdateDataSourceCommand: (input: UpdateDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
118
|
export declare const serializeAws_json1_1UpdateExperienceCommand: (input: UpdateExperienceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
119
|
export declare const serializeAws_json1_1UpdateIndexCommand: (input: UpdateIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -116,12 +126,14 @@ export declare const deserializeAws_json1_1BatchDeleteDocumentCommand: (output:
|
|
|
116
126
|
export declare const deserializeAws_json1_1BatchGetDocumentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetDocumentStatusCommandOutput>;
|
|
117
127
|
export declare const deserializeAws_json1_1BatchPutDocumentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchPutDocumentCommandOutput>;
|
|
118
128
|
export declare const deserializeAws_json1_1ClearQuerySuggestionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ClearQuerySuggestionsCommandOutput>;
|
|
129
|
+
export declare const deserializeAws_json1_1CreateAccessControlConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAccessControlConfigurationCommandOutput>;
|
|
119
130
|
export declare const deserializeAws_json1_1CreateDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataSourceCommandOutput>;
|
|
120
131
|
export declare const deserializeAws_json1_1CreateExperienceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExperienceCommandOutput>;
|
|
121
132
|
export declare const deserializeAws_json1_1CreateFaqCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFaqCommandOutput>;
|
|
122
133
|
export declare const deserializeAws_json1_1CreateIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateIndexCommandOutput>;
|
|
123
134
|
export declare const deserializeAws_json1_1CreateQuerySuggestionsBlockListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQuerySuggestionsBlockListCommandOutput>;
|
|
124
135
|
export declare const deserializeAws_json1_1CreateThesaurusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThesaurusCommandOutput>;
|
|
136
|
+
export declare const deserializeAws_json1_1DeleteAccessControlConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessControlConfigurationCommandOutput>;
|
|
125
137
|
export declare const deserializeAws_json1_1DeleteDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataSourceCommandOutput>;
|
|
126
138
|
export declare const deserializeAws_json1_1DeleteExperienceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExperienceCommandOutput>;
|
|
127
139
|
export declare const deserializeAws_json1_1DeleteFaqCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFaqCommandOutput>;
|
|
@@ -129,6 +141,7 @@ export declare const deserializeAws_json1_1DeleteIndexCommand: (output: __HttpRe
|
|
|
129
141
|
export declare const deserializeAws_json1_1DeletePrincipalMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePrincipalMappingCommandOutput>;
|
|
130
142
|
export declare const deserializeAws_json1_1DeleteQuerySuggestionsBlockListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQuerySuggestionsBlockListCommandOutput>;
|
|
131
143
|
export declare const deserializeAws_json1_1DeleteThesaurusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteThesaurusCommandOutput>;
|
|
144
|
+
export declare const deserializeAws_json1_1DescribeAccessControlConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccessControlConfigurationCommandOutput>;
|
|
132
145
|
export declare const deserializeAws_json1_1DescribeDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDataSourceCommandOutput>;
|
|
133
146
|
export declare const deserializeAws_json1_1DescribeExperienceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExperienceCommandOutput>;
|
|
134
147
|
export declare const deserializeAws_json1_1DescribeFaqCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFaqCommandOutput>;
|
|
@@ -141,6 +154,7 @@ export declare const deserializeAws_json1_1DisassociateEntitiesFromExperienceCom
|
|
|
141
154
|
export declare const deserializeAws_json1_1DisassociatePersonasFromEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociatePersonasFromEntitiesCommandOutput>;
|
|
142
155
|
export declare const deserializeAws_json1_1GetQuerySuggestionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQuerySuggestionsCommandOutput>;
|
|
143
156
|
export declare const deserializeAws_json1_1GetSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSnapshotsCommandOutput>;
|
|
157
|
+
export declare const deserializeAws_json1_1ListAccessControlConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessControlConfigurationsCommandOutput>;
|
|
144
158
|
export declare const deserializeAws_json1_1ListDataSourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataSourcesCommandOutput>;
|
|
145
159
|
export declare const deserializeAws_json1_1ListDataSourceSyncJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataSourceSyncJobsCommandOutput>;
|
|
146
160
|
export declare const deserializeAws_json1_1ListEntityPersonasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntityPersonasCommandOutput>;
|
|
@@ -159,6 +173,7 @@ export declare const deserializeAws_json1_1StopDataSourceSyncJobCommand: (output
|
|
|
159
173
|
export declare const deserializeAws_json1_1SubmitFeedbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubmitFeedbackCommandOutput>;
|
|
160
174
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
161
175
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
176
|
+
export declare const deserializeAws_json1_1UpdateAccessControlConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAccessControlConfigurationCommandOutput>;
|
|
162
177
|
export declare const deserializeAws_json1_1UpdateDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataSourceCommandOutput>;
|
|
163
178
|
export declare const deserializeAws_json1_1UpdateExperienceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExperienceCommandOutput>;
|
|
164
179
|
export declare const deserializeAws_json1_1UpdateIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateIndexCommandOutput>;
|
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.131.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",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.131.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.131.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
31
|
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
32
|
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.130.0",
|
|
34
34
|
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
35
|
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
46
|
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.130.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|