@aws-sdk/client-kendra 3.128.0 → 3.135.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.
Files changed (69) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist-cjs/Kendra.js +75 -0
  3. package/dist-cjs/commands/CreateAccessControlConfigurationCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteAccessControlConfigurationCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeAccessControlConfigurationCommand.js +36 -0
  6. package/dist-cjs/commands/ListAccessControlConfigurationsCommand.js +36 -0
  7. package/dist-cjs/commands/QueryCommand.js +3 -3
  8. package/dist-cjs/commands/UpdateAccessControlConfigurationCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +5 -0
  10. package/dist-cjs/models/index.js +1 -0
  11. package/dist-cjs/models/models_0.js +77 -18
  12. package/dist-cjs/models/models_1.js +15 -0
  13. package/dist-cjs/pagination/ListAccessControlConfigurationsPaginator.js +36 -0
  14. package/dist-cjs/pagination/index.js +1 -0
  15. package/dist-cjs/protocols/Aws_json1_1.js +452 -3
  16. package/dist-es/Kendra.js +75 -0
  17. package/dist-es/commands/CreateAccessControlConfigurationCommand.js +39 -0
  18. package/dist-es/commands/DeleteAccessControlConfigurationCommand.js +39 -0
  19. package/dist-es/commands/DescribeAccessControlConfigurationCommand.js +39 -0
  20. package/dist-es/commands/ListAccessControlConfigurationsCommand.js +39 -0
  21. package/dist-es/commands/QueryCommand.js +1 -1
  22. package/dist-es/commands/UpdateAccessControlConfigurationCommand.js +39 -0
  23. package/dist-es/commands/index.js +5 -0
  24. package/dist-es/models/index.js +1 -0
  25. package/dist-es/models/models_0.js +49 -8
  26. package/dist-es/models/models_1.js +9 -0
  27. package/dist-es/pagination/ListAccessControlConfigurationsPaginator.js +75 -0
  28. package/dist-es/pagination/index.js +1 -0
  29. package/dist-es/protocols/Aws_json1_1.js +525 -2
  30. package/dist-types/Kendra.d.ts +97 -11
  31. package/dist-types/KendraClient.d.ts +7 -2
  32. package/dist-types/commands/CreateAccessControlConfigurationCommand.d.ts +57 -0
  33. package/dist-types/commands/CreateFaqCommand.d.ts +1 -1
  34. package/dist-types/commands/CreateIndexCommand.d.ts +1 -1
  35. package/dist-types/commands/DeleteAccessControlConfigurationCommand.d.ts +38 -0
  36. package/dist-types/commands/DescribeAccessControlConfigurationCommand.d.ts +38 -0
  37. package/dist-types/commands/DescribeIndexCommand.d.ts +1 -1
  38. package/dist-types/commands/DescribeQuerySuggestionsBlockListCommand.d.ts +2 -1
  39. package/dist-types/commands/DescribeQuerySuggestionsConfigCommand.d.ts +1 -1
  40. package/dist-types/commands/DescribeThesaurusCommand.d.ts +1 -1
  41. package/dist-types/commands/ListAccessControlConfigurationsCommand.d.ts +38 -0
  42. package/dist-types/commands/ListThesauriCommand.d.ts +1 -1
  43. package/dist-types/commands/PutPrincipalMappingCommand.d.ts +3 -3
  44. package/dist-types/commands/QueryCommand.d.ts +1 -1
  45. package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +54 -0
  46. package/dist-types/commands/UpdateThesaurusCommand.d.ts +1 -1
  47. package/dist-types/commands/index.d.ts +5 -0
  48. package/dist-types/models/index.d.ts +1 -0
  49. package/dist-types/models/models_0.d.ts +427 -312
  50. package/dist-types/models/models_1.d.ts +136 -0
  51. package/dist-types/pagination/ListAccessControlConfigurationsPaginator.d.ts +4 -0
  52. package/dist-types/pagination/index.d.ts +1 -0
  53. package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
  54. package/dist-types/ts3.4/Kendra.d.ts +25 -0
  55. package/dist-types/ts3.4/KendraClient.d.ts +7 -2
  56. package/dist-types/ts3.4/commands/CreateAccessControlConfigurationCommand.d.ts +17 -0
  57. package/dist-types/ts3.4/commands/DeleteAccessControlConfigurationCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/DescribeAccessControlConfigurationCommand.d.ts +17 -0
  59. package/dist-types/ts3.4/commands/ListAccessControlConfigurationsCommand.d.ts +17 -0
  60. package/dist-types/ts3.4/commands/QueryCommand.d.ts +1 -1
  61. package/dist-types/ts3.4/commands/UpdateAccessControlConfigurationCommand.d.ts +17 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  63. package/dist-types/ts3.4/models/index.d.ts +1 -0
  64. package/dist-types/ts3.4/models/models_0.d.ts +131 -50
  65. package/dist-types/ts3.4/models/models_1.d.ts +51 -0
  66. package/dist-types/ts3.4/pagination/ListAccessControlConfigurationsPaginator.d.ts +4 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  68. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +15 -0
  69. 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
 
@@ -1397,6 +1434,10 @@ export declare namespace ServiceNowConfiguration {
1397
1434
 
1398
1435
  const filterSensitiveLog: (obj: ServiceNowConfiguration) => any;
1399
1436
  }
1437
+ export declare enum SharePointOnlineAuthenticationType {
1438
+ HTTP_BASIC = "HTTP_BASIC",
1439
+ OAUTH2 = "OAUTH2"
1440
+ }
1400
1441
  export declare enum SharePointVersion {
1401
1442
  SHAREPOINT_2013 = "SHAREPOINT_2013",
1402
1443
  SHAREPOINT_2016 = "SHAREPOINT_2016",
@@ -1428,6 +1469,8 @@ export interface SharePointConfiguration {
1428
1469
  DisableLocalGroups?: boolean;
1429
1470
 
1430
1471
  SslCertificateS3Path?: S3Path;
1472
+
1473
+ AuthenticationType?: SharePointOnlineAuthenticationType | string;
1431
1474
  }
1432
1475
  export declare namespace SharePointConfiguration {
1433
1476
 
@@ -1938,6 +1981,22 @@ export declare namespace CreateThesaurusResponse {
1938
1981
 
1939
1982
  const filterSensitiveLog: (obj: CreateThesaurusResponse) => any;
1940
1983
  }
1984
+ export interface DeleteAccessControlConfigurationRequest {
1985
+
1986
+ IndexId: string | undefined;
1987
+
1988
+ Id: string | undefined;
1989
+ }
1990
+ export declare namespace DeleteAccessControlConfigurationRequest {
1991
+
1992
+ const filterSensitiveLog: (obj: DeleteAccessControlConfigurationRequest) => any;
1993
+ }
1994
+ export interface DeleteAccessControlConfigurationResponse {
1995
+ }
1996
+ export declare namespace DeleteAccessControlConfigurationResponse {
1997
+
1998
+ const filterSensitiveLog: (obj: DeleteAccessControlConfigurationResponse) => any;
1999
+ }
1941
2000
  export interface DeleteDataSourceRequest {
1942
2001
 
1943
2002
  Id: string | undefined;
@@ -2016,6 +2075,32 @@ export declare namespace DeleteThesaurusRequest {
2016
2075
 
2017
2076
  const filterSensitiveLog: (obj: DeleteThesaurusRequest) => any;
2018
2077
  }
2078
+ export interface DescribeAccessControlConfigurationRequest {
2079
+
2080
+ IndexId: string | undefined;
2081
+
2082
+ Id: string | undefined;
2083
+ }
2084
+ export declare namespace DescribeAccessControlConfigurationRequest {
2085
+
2086
+ const filterSensitiveLog: (obj: DescribeAccessControlConfigurationRequest) => any;
2087
+ }
2088
+ export interface DescribeAccessControlConfigurationResponse {
2089
+
2090
+ Name: string | undefined;
2091
+
2092
+ Description?: string;
2093
+
2094
+ ErrorMessage?: string;
2095
+
2096
+ AccessControlList?: Principal[];
2097
+
2098
+ HierarchicalAccessControlList?: HierarchicalPrincipal[];
2099
+ }
2100
+ export declare namespace DescribeAccessControlConfigurationResponse {
2101
+
2102
+ const filterSensitiveLog: (obj: DescribeAccessControlConfigurationResponse) => any;
2103
+ }
2019
2104
  export interface DescribeDataSourceRequest {
2020
2105
 
2021
2106
  Id: string | undefined;
@@ -2682,6 +2767,28 @@ export declare class InvalidRequestException extends __BaseException {
2682
2767
 
2683
2768
  constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
2684
2769
  }
2770
+ export interface ListAccessControlConfigurationsRequest {
2771
+
2772
+ IndexId: string | undefined;
2773
+
2774
+ NextToken?: string;
2775
+
2776
+ MaxResults?: number;
2777
+ }
2778
+ export declare namespace ListAccessControlConfigurationsRequest {
2779
+
2780
+ const filterSensitiveLog: (obj: ListAccessControlConfigurationsRequest) => any;
2781
+ }
2782
+ export interface ListAccessControlConfigurationsResponse {
2783
+
2784
+ NextToken?: string;
2785
+
2786
+ AccessControlConfigurations: AccessControlConfigurationSummary[] | undefined;
2787
+ }
2788
+ export declare namespace ListAccessControlConfigurationsResponse {
2789
+
2790
+ const filterSensitiveLog: (obj: ListAccessControlConfigurationsResponse) => any;
2791
+ }
2685
2792
  export interface ListDataSourcesRequest {
2686
2793
 
2687
2794
  IndexId: string | undefined;
@@ -3463,6 +3570,30 @@ export declare namespace UntagResourceResponse {
3463
3570
 
3464
3571
  const filterSensitiveLog: (obj: UntagResourceResponse) => any;
3465
3572
  }
3573
+ export interface UpdateAccessControlConfigurationRequest {
3574
+
3575
+ IndexId: string | undefined;
3576
+
3577
+ Id: string | undefined;
3578
+
3579
+ Name?: string;
3580
+
3581
+ Description?: string;
3582
+
3583
+ AccessControlList?: Principal[];
3584
+
3585
+ HierarchicalAccessControlList?: HierarchicalPrincipal[];
3586
+ }
3587
+ export declare namespace UpdateAccessControlConfigurationRequest {
3588
+
3589
+ const filterSensitiveLog: (obj: UpdateAccessControlConfigurationRequest) => any;
3590
+ }
3591
+ export interface UpdateAccessControlConfigurationResponse {
3592
+ }
3593
+ export declare namespace UpdateAccessControlConfigurationResponse {
3594
+
3595
+ const filterSensitiveLog: (obj: UpdateAccessControlConfigurationResponse) => any;
3596
+ }
3466
3597
  export interface UpdateDataSourceRequest {
3467
3598
 
3468
3599
  Id: string | undefined;
@@ -3649,53 +3780,3 @@ export declare namespace AttributeFilter {
3649
3780
 
3650
3781
  const filterSensitiveLog: (obj: AttributeFilter) => any;
3651
3782
  }
3652
- export interface QueryResult {
3653
-
3654
- QueryId?: string;
3655
-
3656
- ResultItems?: QueryResultItem[];
3657
-
3658
- FacetResults?: FacetResult[];
3659
-
3660
- TotalNumberOfResults?: number;
3661
-
3662
- Warnings?: Warning[];
3663
-
3664
- SpellCorrectedQueries?: SpellCorrectedQuery[];
3665
- }
3666
- export declare namespace QueryResult {
3667
-
3668
- const filterSensitiveLog: (obj: QueryResult) => any;
3669
- }
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,51 @@
1
+ import { AttributeFilter, DocumentRelevanceConfiguration, Facet, FacetResult, QueryResultItem, QueryResultType, SortingConfiguration, SpellCorrectedQuery, SpellCorrectionConfiguration, UserContext, Warning } from "./models_0";
2
+ export interface QueryResult {
3
+
4
+ QueryId?: string;
5
+
6
+ ResultItems?: QueryResultItem[];
7
+
8
+ FacetResults?: FacetResult[];
9
+
10
+ TotalNumberOfResults?: number;
11
+
12
+ Warnings?: Warning[];
13
+
14
+ SpellCorrectedQueries?: SpellCorrectedQuery[];
15
+ }
16
+ export declare namespace QueryResult {
17
+
18
+ const filterSensitiveLog: (obj: QueryResult) => any;
19
+ }
20
+ export interface QueryRequest {
21
+
22
+ IndexId: string | undefined;
23
+
24
+ QueryText?: string;
25
+
26
+ AttributeFilter?: AttributeFilter;
27
+
28
+ Facets?: Facet[];
29
+
30
+ RequestedDocumentAttributes?: string[];
31
+
32
+ QueryResultTypeFilter?: QueryResultType | string;
33
+
34
+ DocumentRelevanceOverrideConfigurations?: DocumentRelevanceConfiguration[];
35
+
36
+ PageNumber?: number;
37
+
38
+ PageSize?: number;
39
+
40
+ SortingConfiguration?: SortingConfiguration;
41
+
42
+ UserContext?: UserContext;
43
+
44
+ VisitorId?: string;
45
+
46
+ SpellCorrectionConfiguration?: SpellCorrectionConfiguration;
47
+ }
48
+ export declare namespace QueryRequest {
49
+
50
+ const filterSensitiveLog: (obj: QueryRequest) => any;
51
+ }
@@ -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.128.0",
4
+ "version": "3.135.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.128.0",
22
- "@aws-sdk/config-resolver": "3.128.0",
23
- "@aws-sdk/credential-provider-node": "3.128.0",
24
- "@aws-sdk/fetch-http-handler": "3.127.0",
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.128.0",
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.128.0",
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",