aws-sdk-kendra 1.55.0 → 1.56.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kendra/client.rb +71 -8
- data/lib/aws-sdk-kendra/client_api.rb +11 -0
- data/lib/aws-sdk-kendra/types.rb +191 -13
- data/lib/aws-sdk-kendra.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23a9fd618927b78862ad237401dd0a093b102e34faa2cb480c377630d3fb11f0
|
4
|
+
data.tar.gz: 80f998a654a9e788186969de358149c504d704a38cb559ff1b741c8cf90d2519
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c7f54e75e8051bb96f52e094c06106b33a3701dc2bc7d8911cc9b2788e61910d92ea18deade760bc6989ee42c9a207b1ae3201bea16f86e8b0ff105d5af96f2
|
7
|
+
data.tar.gz: 95fa6525e34eaa6f3cdb0ec5f5aecb8623e0fb6950fe6ccb5f6cf5a9c90e51cb19eb9f736878aed307ffa66c69aae6d8c6772d5036ba2b9dd7fdbda9edb408fa
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.56.0 (2022-08-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds Zendesk connector (which allows you to specify Zendesk SAAS platform as data source), Proxy Support for Sharepoint and Confluence Server (which allows you to specify the proxy configuration if proxy is required to connect to your Sharepoint/Confluence Server as data source).
|
8
|
+
|
4
9
|
1.55.0 (2022-07-21)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.56.0
|
@@ -958,8 +958,7 @@ module Aws::Kendra
|
|
958
958
|
# [3]: https://docs.aws.amazon.com/kendra/latest/dg/gs-java.html
|
959
959
|
#
|
960
960
|
# @option params [required, String] :name
|
961
|
-
# A
|
962
|
-
# be changed without deleting and recreating the data source connector.
|
961
|
+
# A name for the data source connector.
|
963
962
|
#
|
964
963
|
# @option params [required, String] :index_id
|
965
964
|
# The identifier of the index you want to use with the data source
|
@@ -977,6 +976,15 @@ module Aws::Kendra
|
|
977
976
|
#
|
978
977
|
# The `Configuration` parameter is required for all other data sources.
|
979
978
|
#
|
979
|
+
# @option params [Types::DataSourceVpcConfiguration] :vpc_configuration
|
980
|
+
# Configuration information for an Amazon Virtual Private Cloud to
|
981
|
+
# connect to your data source. For more information, see [Configuring a
|
982
|
+
# VPC][1].
|
983
|
+
#
|
984
|
+
#
|
985
|
+
#
|
986
|
+
# [1]: https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html
|
987
|
+
#
|
980
988
|
# @option params [String] :description
|
981
989
|
# A description for the data source connector.
|
982
990
|
#
|
@@ -1051,7 +1059,7 @@ module Aws::Kendra
|
|
1051
1059
|
# resp = client.create_data_source({
|
1052
1060
|
# name: "DataSourceName", # required
|
1053
1061
|
# index_id: "IndexId", # required
|
1054
|
-
# type: "S3", # required, accepts S3, SHAREPOINT, DATABASE, SALESFORCE, ONEDRIVE, SERVICENOW, CUSTOM, CONFLUENCE, GOOGLEDRIVE, WEBCRAWLER, WORKDOCS, FSX, SLACK, BOX, QUIP, JIRA, GITHUB, ALFRESCO
|
1062
|
+
# type: "S3", # required, accepts S3, SHAREPOINT, DATABASE, SALESFORCE, ONEDRIVE, SERVICENOW, CUSTOM, CONFLUENCE, GOOGLEDRIVE, WEBCRAWLER, WORKDOCS, FSX, SLACK, BOX, QUIP, JIRA, GITHUB, ALFRESCO, TEMPLATE
|
1055
1063
|
# configuration: {
|
1056
1064
|
# s3_configuration: {
|
1057
1065
|
# bucket_name: "S3BucketName", # required
|
@@ -1091,6 +1099,11 @@ module Aws::Kendra
|
|
1091
1099
|
# key: "S3ObjectKey", # required
|
1092
1100
|
# },
|
1093
1101
|
# authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, OAUTH2
|
1102
|
+
# proxy_configuration: {
|
1103
|
+
# host: "Host", # required
|
1104
|
+
# port: 1, # required
|
1105
|
+
# credentials: "SecretArn",
|
1106
|
+
# },
|
1094
1107
|
# },
|
1095
1108
|
# database_configuration: {
|
1096
1109
|
# database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
|
@@ -1303,6 +1316,11 @@ module Aws::Kendra
|
|
1303
1316
|
# },
|
1304
1317
|
# inclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
1305
1318
|
# exclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
1319
|
+
# proxy_configuration: {
|
1320
|
+
# host: "Host", # required
|
1321
|
+
# port: 1, # required
|
1322
|
+
# credentials: "SecretArn",
|
1323
|
+
# },
|
1306
1324
|
# },
|
1307
1325
|
# google_drive_configuration: {
|
1308
1326
|
# secret_arn: "SecretArn", # required
|
@@ -1666,6 +1684,14 @@ module Aws::Kendra
|
|
1666
1684
|
# security_group_ids: ["VpcSecurityGroupId"], # required
|
1667
1685
|
# },
|
1668
1686
|
# },
|
1687
|
+
# template_configuration: {
|
1688
|
+
# template: {
|
1689
|
+
# },
|
1690
|
+
# },
|
1691
|
+
# },
|
1692
|
+
# vpc_configuration: {
|
1693
|
+
# subnet_ids: ["SubnetId"], # required
|
1694
|
+
# security_group_ids: ["VpcSecurityGroupId"], # required
|
1669
1695
|
# },
|
1670
1696
|
# description: "Description",
|
1671
1697
|
# schedule: "ScanSchedule",
|
@@ -2622,6 +2648,7 @@ module Aws::Kendra
|
|
2622
2648
|
# * {Types::DescribeDataSourceResponse#name #name} => String
|
2623
2649
|
# * {Types::DescribeDataSourceResponse#type #type} => String
|
2624
2650
|
# * {Types::DescribeDataSourceResponse#configuration #configuration} => Types::DataSourceConfiguration
|
2651
|
+
# * {Types::DescribeDataSourceResponse#vpc_configuration #vpc_configuration} => Types::DataSourceVpcConfiguration
|
2625
2652
|
# * {Types::DescribeDataSourceResponse#created_at #created_at} => Time
|
2626
2653
|
# * {Types::DescribeDataSourceResponse#updated_at #updated_at} => Time
|
2627
2654
|
# * {Types::DescribeDataSourceResponse#description #description} => String
|
@@ -2644,7 +2671,7 @@ module Aws::Kendra
|
|
2644
2671
|
# resp.id #=> String
|
2645
2672
|
# resp.index_id #=> String
|
2646
2673
|
# resp.name #=> String
|
2647
|
-
# resp.type #=> String, one of "S3", "SHAREPOINT", "DATABASE", "SALESFORCE", "ONEDRIVE", "SERVICENOW", "CUSTOM", "CONFLUENCE", "GOOGLEDRIVE", "WEBCRAWLER", "WORKDOCS", "FSX", "SLACK", "BOX", "QUIP", "JIRA", "GITHUB", "ALFRESCO"
|
2674
|
+
# resp.type #=> String, one of "S3", "SHAREPOINT", "DATABASE", "SALESFORCE", "ONEDRIVE", "SERVICENOW", "CUSTOM", "CONFLUENCE", "GOOGLEDRIVE", "WEBCRAWLER", "WORKDOCS", "FSX", "SLACK", "BOX", "QUIP", "JIRA", "GITHUB", "ALFRESCO", "TEMPLATE"
|
2648
2675
|
# resp.configuration.s3_configuration.bucket_name #=> String
|
2649
2676
|
# resp.configuration.s3_configuration.inclusion_prefixes #=> Array
|
2650
2677
|
# resp.configuration.s3_configuration.inclusion_prefixes[0] #=> String
|
@@ -2677,6 +2704,9 @@ module Aws::Kendra
|
|
2677
2704
|
# resp.configuration.share_point_configuration.ssl_certificate_s3_path.bucket #=> String
|
2678
2705
|
# resp.configuration.share_point_configuration.ssl_certificate_s3_path.key #=> String
|
2679
2706
|
# resp.configuration.share_point_configuration.authentication_type #=> String, one of "HTTP_BASIC", "OAUTH2"
|
2707
|
+
# resp.configuration.share_point_configuration.proxy_configuration.host #=> String
|
2708
|
+
# resp.configuration.share_point_configuration.proxy_configuration.port #=> Integer
|
2709
|
+
# resp.configuration.share_point_configuration.proxy_configuration.credentials #=> String
|
2680
2710
|
# resp.configuration.database_configuration.database_engine_type #=> String, one of "RDS_AURORA_MYSQL", "RDS_AURORA_POSTGRESQL", "RDS_MYSQL", "RDS_POSTGRESQL"
|
2681
2711
|
# resp.configuration.database_configuration.connection_configuration.database_host #=> String
|
2682
2712
|
# resp.configuration.database_configuration.connection_configuration.database_port #=> Integer
|
@@ -2818,6 +2848,9 @@ module Aws::Kendra
|
|
2818
2848
|
# resp.configuration.confluence_configuration.inclusion_patterns[0] #=> String
|
2819
2849
|
# resp.configuration.confluence_configuration.exclusion_patterns #=> Array
|
2820
2850
|
# resp.configuration.confluence_configuration.exclusion_patterns[0] #=> String
|
2851
|
+
# resp.configuration.confluence_configuration.proxy_configuration.host #=> String
|
2852
|
+
# resp.configuration.confluence_configuration.proxy_configuration.port #=> Integer
|
2853
|
+
# resp.configuration.confluence_configuration.proxy_configuration.credentials #=> String
|
2821
2854
|
# resp.configuration.google_drive_configuration.secret_arn #=> String
|
2822
2855
|
# resp.configuration.google_drive_configuration.inclusion_patterns #=> Array
|
2823
2856
|
# resp.configuration.google_drive_configuration.inclusion_patterns[0] #=> String
|
@@ -3095,6 +3128,10 @@ module Aws::Kendra
|
|
3095
3128
|
# resp.configuration.alfresco_configuration.vpc_configuration.subnet_ids[0] #=> String
|
3096
3129
|
# resp.configuration.alfresco_configuration.vpc_configuration.security_group_ids #=> Array
|
3097
3130
|
# resp.configuration.alfresco_configuration.vpc_configuration.security_group_ids[0] #=> String
|
3131
|
+
# resp.vpc_configuration.subnet_ids #=> Array
|
3132
|
+
# resp.vpc_configuration.subnet_ids[0] #=> String
|
3133
|
+
# resp.vpc_configuration.security_group_ids #=> Array
|
3134
|
+
# resp.vpc_configuration.security_group_ids[0] #=> String
|
3098
3135
|
# resp.created_at #=> Time
|
3099
3136
|
# resp.updated_at #=> Time
|
3100
3137
|
# resp.description #=> String
|
@@ -3976,7 +4013,7 @@ module Aws::Kendra
|
|
3976
4013
|
# resp.summary_items #=> Array
|
3977
4014
|
# resp.summary_items[0].name #=> String
|
3978
4015
|
# resp.summary_items[0].id #=> String
|
3979
|
-
# resp.summary_items[0].type #=> String, one of "S3", "SHAREPOINT", "DATABASE", "SALESFORCE", "ONEDRIVE", "SERVICENOW", "CUSTOM", "CONFLUENCE", "GOOGLEDRIVE", "WEBCRAWLER", "WORKDOCS", "FSX", "SLACK", "BOX", "QUIP", "JIRA", "GITHUB", "ALFRESCO"
|
4016
|
+
# resp.summary_items[0].type #=> String, one of "S3", "SHAREPOINT", "DATABASE", "SALESFORCE", "ONEDRIVE", "SERVICENOW", "CUSTOM", "CONFLUENCE", "GOOGLEDRIVE", "WEBCRAWLER", "WORKDOCS", "FSX", "SLACK", "BOX", "QUIP", "JIRA", "GITHUB", "ALFRESCO", "TEMPLATE"
|
3980
4017
|
# resp.summary_items[0].created_at #=> Time
|
3981
4018
|
# resp.summary_items[0].updated_at #=> Time
|
3982
4019
|
# resp.summary_items[0].status #=> String, one of "CREATING", "DELETING", "FAILED", "UPDATING", "ACTIVE"
|
@@ -5176,8 +5213,7 @@ module Aws::Kendra
|
|
5176
5213
|
# The identifier of the data source you want to update.
|
5177
5214
|
#
|
5178
5215
|
# @option params [String] :name
|
5179
|
-
# A new name for the data source connector.
|
5180
|
-
# data source and re-create it to change the name of the data source.
|
5216
|
+
# A new name for the data source connector.
|
5181
5217
|
#
|
5182
5218
|
# @option params [required, String] :index_id
|
5183
5219
|
# The identifier of the index used with the data source connector.
|
@@ -5186,6 +5222,15 @@ module Aws::Kendra
|
|
5186
5222
|
# Configuration information you want to update for the data source
|
5187
5223
|
# connector.
|
5188
5224
|
#
|
5225
|
+
# @option params [Types::DataSourceVpcConfiguration] :vpc_configuration
|
5226
|
+
# Configuration information for an Amazon Virtual Private Cloud to
|
5227
|
+
# connect to your data source. For more information, see [Configuring a
|
5228
|
+
# VPC][1].
|
5229
|
+
#
|
5230
|
+
#
|
5231
|
+
#
|
5232
|
+
# [1]: https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html
|
5233
|
+
#
|
5189
5234
|
# @option params [String] :description
|
5190
5235
|
# A new description for the data source connector.
|
5191
5236
|
#
|
@@ -5272,6 +5317,11 @@ module Aws::Kendra
|
|
5272
5317
|
# key: "S3ObjectKey", # required
|
5273
5318
|
# },
|
5274
5319
|
# authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, OAUTH2
|
5320
|
+
# proxy_configuration: {
|
5321
|
+
# host: "Host", # required
|
5322
|
+
# port: 1, # required
|
5323
|
+
# credentials: "SecretArn",
|
5324
|
+
# },
|
5275
5325
|
# },
|
5276
5326
|
# database_configuration: {
|
5277
5327
|
# database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
|
@@ -5484,6 +5534,11 @@ module Aws::Kendra
|
|
5484
5534
|
# },
|
5485
5535
|
# inclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
5486
5536
|
# exclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
5537
|
+
# proxy_configuration: {
|
5538
|
+
# host: "Host", # required
|
5539
|
+
# port: 1, # required
|
5540
|
+
# credentials: "SecretArn",
|
5541
|
+
# },
|
5487
5542
|
# },
|
5488
5543
|
# google_drive_configuration: {
|
5489
5544
|
# secret_arn: "SecretArn", # required
|
@@ -5847,6 +5902,14 @@ module Aws::Kendra
|
|
5847
5902
|
# security_group_ids: ["VpcSecurityGroupId"], # required
|
5848
5903
|
# },
|
5849
5904
|
# },
|
5905
|
+
# template_configuration: {
|
5906
|
+
# template: {
|
5907
|
+
# },
|
5908
|
+
# },
|
5909
|
+
# },
|
5910
|
+
# vpc_configuration: {
|
5911
|
+
# subnet_ids: ["SubnetId"], # required
|
5912
|
+
# security_group_ids: ["VpcSecurityGroupId"], # required
|
5850
5913
|
# },
|
5851
5914
|
# description: "Description",
|
5852
5915
|
# schedule: "ScanSchedule",
|
@@ -6320,7 +6383,7 @@ module Aws::Kendra
|
|
6320
6383
|
params: params,
|
6321
6384
|
config: config)
|
6322
6385
|
context[:gem_name] = 'aws-sdk-kendra'
|
6323
|
-
context[:gem_version] = '1.
|
6386
|
+
context[:gem_version] = '1.56.0'
|
6324
6387
|
Seahorse::Client::Request.new(handlers, context)
|
6325
6388
|
end
|
6326
6389
|
|
@@ -490,6 +490,8 @@ module Aws::Kendra
|
|
490
490
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
491
491
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
492
492
|
TeamId = Shapes::StringShape.new(name: 'TeamId')
|
493
|
+
Template = Shapes::DocumentShape.new(name: 'Template', document: true)
|
494
|
+
TemplateConfiguration = Shapes::StructureShape.new(name: 'TemplateConfiguration')
|
493
495
|
TenantDomain = Shapes::StringShape.new(name: 'TenantDomain')
|
494
496
|
TextDocumentStatistics = Shapes::StructureShape.new(name: 'TextDocumentStatistics')
|
495
497
|
TextWithHighlights = Shapes::StructureShape.new(name: 'TextWithHighlights')
|
@@ -740,6 +742,7 @@ module Aws::Kendra
|
|
740
742
|
ConfluenceConfiguration.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: DataSourceVpcConfiguration, location_name: "VpcConfiguration"))
|
741
743
|
ConfluenceConfiguration.add_member(:inclusion_patterns, Shapes::ShapeRef.new(shape: DataSourceInclusionsExclusionsStrings, location_name: "InclusionPatterns"))
|
742
744
|
ConfluenceConfiguration.add_member(:exclusion_patterns, Shapes::ShapeRef.new(shape: DataSourceInclusionsExclusionsStrings, location_name: "ExclusionPatterns"))
|
745
|
+
ConfluenceConfiguration.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "ProxyConfiguration"))
|
743
746
|
ConfluenceConfiguration.struct_class = Types::ConfluenceConfiguration
|
744
747
|
|
745
748
|
ConfluencePageConfiguration.add_member(:page_field_mappings, Shapes::ShapeRef.new(shape: ConfluencePageFieldMappingsList, location_name: "PageFieldMappings"))
|
@@ -803,6 +806,7 @@ module Aws::Kendra
|
|
803
806
|
CreateDataSourceRequest.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, required: true, location_name: "IndexId"))
|
804
807
|
CreateDataSourceRequest.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, required: true, location_name: "Type"))
|
805
808
|
CreateDataSourceRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "Configuration"))
|
809
|
+
CreateDataSourceRequest.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: DataSourceVpcConfiguration, location_name: "VpcConfiguration"))
|
806
810
|
CreateDataSourceRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
807
811
|
CreateDataSourceRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: ScanSchedule, location_name: "Schedule"))
|
808
812
|
CreateDataSourceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
@@ -902,6 +906,7 @@ module Aws::Kendra
|
|
902
906
|
DataSourceConfiguration.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: JiraConfiguration, location_name: "JiraConfiguration"))
|
903
907
|
DataSourceConfiguration.add_member(:git_hub_configuration, Shapes::ShapeRef.new(shape: GitHubConfiguration, location_name: "GitHubConfiguration"))
|
904
908
|
DataSourceConfiguration.add_member(:alfresco_configuration, Shapes::ShapeRef.new(shape: AlfrescoConfiguration, location_name: "AlfrescoConfiguration"))
|
909
|
+
DataSourceConfiguration.add_member(:template_configuration, Shapes::ShapeRef.new(shape: TemplateConfiguration, location_name: "TemplateConfiguration"))
|
905
910
|
DataSourceConfiguration.struct_class = Types::DataSourceConfiguration
|
906
911
|
|
907
912
|
DataSourceGroup.add_member(:group_id, Shapes::ShapeRef.new(shape: PrincipalName, required: true, location_name: "GroupId"))
|
@@ -1024,6 +1029,7 @@ module Aws::Kendra
|
|
1024
1029
|
DescribeDataSourceResponse.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, location_name: "Name"))
|
1025
1030
|
DescribeDataSourceResponse.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, location_name: "Type"))
|
1026
1031
|
DescribeDataSourceResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "Configuration"))
|
1032
|
+
DescribeDataSourceResponse.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: DataSourceVpcConfiguration, location_name: "VpcConfiguration"))
|
1027
1033
|
DescribeDataSourceResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
|
1028
1034
|
DescribeDataSourceResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
|
1029
1035
|
DescribeDataSourceResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
@@ -1903,6 +1909,7 @@ module Aws::Kendra
|
|
1903
1909
|
SharePointConfiguration.add_member(:disable_local_groups, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableLocalGroups"))
|
1904
1910
|
SharePointConfiguration.add_member(:ssl_certificate_s3_path, Shapes::ShapeRef.new(shape: S3Path, location_name: "SslCertificateS3Path"))
|
1905
1911
|
SharePointConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: SharePointOnlineAuthenticationType, location_name: "AuthenticationType"))
|
1912
|
+
SharePointConfiguration.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "ProxyConfiguration"))
|
1906
1913
|
SharePointConfiguration.struct_class = Types::SharePointConfiguration
|
1907
1914
|
|
1908
1915
|
SharePointUrlList.member = Shapes::ShapeRef.new(shape: Url)
|
@@ -2012,6 +2019,9 @@ module Aws::Kendra
|
|
2012
2019
|
|
2013
2020
|
TagResourceResponse.struct_class = Types::TagResourceResponse
|
2014
2021
|
|
2022
|
+
TemplateConfiguration.add_member(:template, Shapes::ShapeRef.new(shape: Template, location_name: "Template"))
|
2023
|
+
TemplateConfiguration.struct_class = Types::TemplateConfiguration
|
2024
|
+
|
2015
2025
|
TextDocumentStatistics.add_member(:indexed_text_documents_count, Shapes::ShapeRef.new(shape: IndexedTextDocumentsCount, required: true, location_name: "IndexedTextDocumentsCount"))
|
2016
2026
|
TextDocumentStatistics.add_member(:indexed_text_bytes, Shapes::ShapeRef.new(shape: IndexedTextBytes, required: true, location_name: "IndexedTextBytes"))
|
2017
2027
|
TextDocumentStatistics.struct_class = Types::TextDocumentStatistics
|
@@ -2056,6 +2066,7 @@ module Aws::Kendra
|
|
2056
2066
|
UpdateDataSourceRequest.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, location_name: "Name"))
|
2057
2067
|
UpdateDataSourceRequest.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, required: true, location_name: "IndexId"))
|
2058
2068
|
UpdateDataSourceRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "Configuration"))
|
2069
|
+
UpdateDataSourceRequest.add_member(:vpc_configuration, Shapes::ShapeRef.new(shape: DataSourceVpcConfiguration, location_name: "VpcConfiguration"))
|
2059
2070
|
UpdateDataSourceRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2060
2071
|
UpdateDataSourceRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: ScanSchedule, location_name: "Schedule"))
|
2061
2072
|
UpdateDataSourceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
data/lib/aws-sdk-kendra/types.rb
CHANGED
@@ -40,8 +40,7 @@ module Aws::Kendra
|
|
40
40
|
# }
|
41
41
|
#
|
42
42
|
# @!attribute [rw] key_path
|
43
|
-
# Path to the Amazon
|
44
|
-
# files.
|
43
|
+
# Path to the Amazon S3 bucket that contains the ACL files.
|
45
44
|
# @return [String]
|
46
45
|
#
|
47
46
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/AccessControlListConfiguration AWS API Documentation
|
@@ -1876,6 +1875,11 @@ module Aws::Kendra
|
|
1876
1875
|
# },
|
1877
1876
|
# inclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
1878
1877
|
# exclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
1878
|
+
# proxy_configuration: {
|
1879
|
+
# host: "Host", # required
|
1880
|
+
# port: 1, # required
|
1881
|
+
# credentials: "SecretArn",
|
1882
|
+
# },
|
1879
1883
|
# }
|
1880
1884
|
#
|
1881
1885
|
# @!attribute [rw] server_url
|
@@ -1947,6 +1951,28 @@ module Aws::Kendra
|
|
1947
1951
|
# index.
|
1948
1952
|
# @return [Array<String>]
|
1949
1953
|
#
|
1954
|
+
# @!attribute [rw] proxy_configuration
|
1955
|
+
# Configuration information to connect to your Confluence URL instance
|
1956
|
+
# via a web proxy. You can use this option for Confluence Server.
|
1957
|
+
#
|
1958
|
+
# You must provide the website host name and port number. For example,
|
1959
|
+
# the host name of *https://a.example.com/page1.html* is
|
1960
|
+
# "a.example.com" and the port is 443, the standard port for HTTPS.
|
1961
|
+
#
|
1962
|
+
# Web proxy credentials are optional and you can use them to connect
|
1963
|
+
# to a web proxy server that requires basic authentication of user
|
1964
|
+
# name and password. To store web proxy credentials, you use a secret
|
1965
|
+
# in Secrets Manager.
|
1966
|
+
#
|
1967
|
+
# It is recommended that you follow best security practices when
|
1968
|
+
# configuring your web proxy. This includes setting up throttling,
|
1969
|
+
# setting up logging and monitoring, and applying security patches on
|
1970
|
+
# a regular basis. If you use your web proxy with multiple data
|
1971
|
+
# sources, sync jobs that occur at the same time could strain the load
|
1972
|
+
# on your proxy. It is recommended you prepare your proxy beforehand
|
1973
|
+
# for any security and load requirements.
|
1974
|
+
# @return [Types::ProxyConfiguration]
|
1975
|
+
#
|
1950
1976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/ConfluenceConfiguration AWS API Documentation
|
1951
1977
|
#
|
1952
1978
|
class ConfluenceConfiguration < Struct.new(
|
@@ -1959,7 +1985,8 @@ module Aws::Kendra
|
|
1959
1985
|
:attachment_configuration,
|
1960
1986
|
:vpc_configuration,
|
1961
1987
|
:inclusion_patterns,
|
1962
|
-
:exclusion_patterns
|
1988
|
+
:exclusion_patterns,
|
1989
|
+
:proxy_configuration)
|
1963
1990
|
SENSITIVE = []
|
1964
1991
|
include Aws::Structure
|
1965
1992
|
end
|
@@ -2400,7 +2427,7 @@ module Aws::Kendra
|
|
2400
2427
|
# {
|
2401
2428
|
# name: "DataSourceName", # required
|
2402
2429
|
# index_id: "IndexId", # required
|
2403
|
-
# type: "S3", # required, accepts S3, SHAREPOINT, DATABASE, SALESFORCE, ONEDRIVE, SERVICENOW, CUSTOM, CONFLUENCE, GOOGLEDRIVE, WEBCRAWLER, WORKDOCS, FSX, SLACK, BOX, QUIP, JIRA, GITHUB, ALFRESCO
|
2430
|
+
# type: "S3", # required, accepts S3, SHAREPOINT, DATABASE, SALESFORCE, ONEDRIVE, SERVICENOW, CUSTOM, CONFLUENCE, GOOGLEDRIVE, WEBCRAWLER, WORKDOCS, FSX, SLACK, BOX, QUIP, JIRA, GITHUB, ALFRESCO, TEMPLATE
|
2404
2431
|
# configuration: {
|
2405
2432
|
# s3_configuration: {
|
2406
2433
|
# bucket_name: "S3BucketName", # required
|
@@ -2440,6 +2467,11 @@ module Aws::Kendra
|
|
2440
2467
|
# key: "S3ObjectKey", # required
|
2441
2468
|
# },
|
2442
2469
|
# authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, OAUTH2
|
2470
|
+
# proxy_configuration: {
|
2471
|
+
# host: "Host", # required
|
2472
|
+
# port: 1, # required
|
2473
|
+
# credentials: "SecretArn",
|
2474
|
+
# },
|
2443
2475
|
# },
|
2444
2476
|
# database_configuration: {
|
2445
2477
|
# database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
|
@@ -2652,6 +2684,11 @@ module Aws::Kendra
|
|
2652
2684
|
# },
|
2653
2685
|
# inclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
2654
2686
|
# exclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
2687
|
+
# proxy_configuration: {
|
2688
|
+
# host: "Host", # required
|
2689
|
+
# port: 1, # required
|
2690
|
+
# credentials: "SecretArn",
|
2691
|
+
# },
|
2655
2692
|
# },
|
2656
2693
|
# google_drive_configuration: {
|
2657
2694
|
# secret_arn: "SecretArn", # required
|
@@ -3015,6 +3052,14 @@ module Aws::Kendra
|
|
3015
3052
|
# security_group_ids: ["VpcSecurityGroupId"], # required
|
3016
3053
|
# },
|
3017
3054
|
# },
|
3055
|
+
# template_configuration: {
|
3056
|
+
# template: {
|
3057
|
+
# },
|
3058
|
+
# },
|
3059
|
+
# },
|
3060
|
+
# vpc_configuration: {
|
3061
|
+
# subnet_ids: ["SubnetId"], # required
|
3062
|
+
# security_group_ids: ["VpcSecurityGroupId"], # required
|
3018
3063
|
# },
|
3019
3064
|
# description: "Description",
|
3020
3065
|
# schedule: "ScanSchedule",
|
@@ -3086,9 +3131,7 @@ module Aws::Kendra
|
|
3086
3131
|
# }
|
3087
3132
|
#
|
3088
3133
|
# @!attribute [rw] name
|
3089
|
-
# A
|
3090
|
-
# can't be changed without deleting and recreating the data source
|
3091
|
-
# connector.
|
3134
|
+
# A name for the data source connector.
|
3092
3135
|
# @return [String]
|
3093
3136
|
#
|
3094
3137
|
# @!attribute [rw] index_id
|
@@ -3111,6 +3154,16 @@ module Aws::Kendra
|
|
3111
3154
|
# sources.
|
3112
3155
|
# @return [Types::DataSourceConfiguration]
|
3113
3156
|
#
|
3157
|
+
# @!attribute [rw] vpc_configuration
|
3158
|
+
# Configuration information for an Amazon Virtual Private Cloud to
|
3159
|
+
# connect to your data source. For more information, see [Configuring
|
3160
|
+
# a VPC][1].
|
3161
|
+
#
|
3162
|
+
#
|
3163
|
+
#
|
3164
|
+
# [1]: https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html
|
3165
|
+
# @return [Types::DataSourceVpcConfiguration]
|
3166
|
+
#
|
3114
3167
|
# @!attribute [rw] description
|
3115
3168
|
# A description for the data source connector.
|
3116
3169
|
# @return [String]
|
@@ -3190,6 +3243,7 @@ module Aws::Kendra
|
|
3190
3243
|
:index_id,
|
3191
3244
|
:type,
|
3192
3245
|
:configuration,
|
3246
|
+
:vpc_configuration,
|
3193
3247
|
:description,
|
3194
3248
|
:schedule,
|
3195
3249
|
:role_arn,
|
@@ -3929,6 +3983,11 @@ module Aws::Kendra
|
|
3929
3983
|
# key: "S3ObjectKey", # required
|
3930
3984
|
# },
|
3931
3985
|
# authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, OAUTH2
|
3986
|
+
# proxy_configuration: {
|
3987
|
+
# host: "Host", # required
|
3988
|
+
# port: 1, # required
|
3989
|
+
# credentials: "SecretArn",
|
3990
|
+
# },
|
3932
3991
|
# },
|
3933
3992
|
# database_configuration: {
|
3934
3993
|
# database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
|
@@ -4141,6 +4200,11 @@ module Aws::Kendra
|
|
4141
4200
|
# },
|
4142
4201
|
# inclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
4143
4202
|
# exclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
4203
|
+
# proxy_configuration: {
|
4204
|
+
# host: "Host", # required
|
4205
|
+
# port: 1, # required
|
4206
|
+
# credentials: "SecretArn",
|
4207
|
+
# },
|
4144
4208
|
# },
|
4145
4209
|
# google_drive_configuration: {
|
4146
4210
|
# secret_arn: "SecretArn", # required
|
@@ -4504,6 +4568,10 @@ module Aws::Kendra
|
|
4504
4568
|
# security_group_ids: ["VpcSecurityGroupId"], # required
|
4505
4569
|
# },
|
4506
4570
|
# },
|
4571
|
+
# template_configuration: {
|
4572
|
+
# template: {
|
4573
|
+
# },
|
4574
|
+
# },
|
4507
4575
|
# }
|
4508
4576
|
#
|
4509
4577
|
# @!attribute [rw] s3_configuration
|
@@ -4591,6 +4659,11 @@ module Aws::Kendra
|
|
4591
4659
|
# your data source.
|
4592
4660
|
# @return [Types::AlfrescoConfiguration]
|
4593
4661
|
#
|
4662
|
+
# @!attribute [rw] template_configuration
|
4663
|
+
# Provides a template for the configuration information to connect to
|
4664
|
+
# your data source.
|
4665
|
+
# @return [Types::TemplateConfiguration]
|
4666
|
+
#
|
4594
4667
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/DataSourceConfiguration AWS API Documentation
|
4595
4668
|
#
|
4596
4669
|
class DataSourceConfiguration < Struct.new(
|
@@ -4610,7 +4683,8 @@ module Aws::Kendra
|
|
4610
4683
|
:quip_configuration,
|
4611
4684
|
:jira_configuration,
|
4612
4685
|
:git_hub_configuration,
|
4613
|
-
:alfresco_configuration
|
4686
|
+
:alfresco_configuration,
|
4687
|
+
:template_configuration)
|
4614
4688
|
SENSITIVE = []
|
4615
4689
|
include Aws::Structure
|
4616
4690
|
end
|
@@ -5320,7 +5394,7 @@ module Aws::Kendra
|
|
5320
5394
|
# @return [String]
|
5321
5395
|
#
|
5322
5396
|
# @!attribute [rw] name
|
5323
|
-
# The name
|
5397
|
+
# The name for the data source.
|
5324
5398
|
# @return [String]
|
5325
5399
|
#
|
5326
5400
|
# @!attribute [rw] type
|
@@ -5333,6 +5407,16 @@ module Aws::Kendra
|
|
5333
5407
|
# depend on the data source provider.
|
5334
5408
|
# @return [Types::DataSourceConfiguration]
|
5335
5409
|
#
|
5410
|
+
# @!attribute [rw] vpc_configuration
|
5411
|
+
# Configuration information for an Amazon Virtual Private Cloud to
|
5412
|
+
# connect to your data source. For more information, see [Configuring
|
5413
|
+
# a VPC][1].
|
5414
|
+
#
|
5415
|
+
#
|
5416
|
+
#
|
5417
|
+
# [1]: https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html
|
5418
|
+
# @return [Types::DataSourceVpcConfiguration]
|
5419
|
+
#
|
5336
5420
|
# @!attribute [rw] created_at
|
5337
5421
|
# The Unix timestamp of when the data source was created.
|
5338
5422
|
# @return [Time]
|
@@ -5401,6 +5485,7 @@ module Aws::Kendra
|
|
5401
5485
|
:name,
|
5402
5486
|
:type,
|
5403
5487
|
:configuration,
|
5488
|
+
:vpc_configuration,
|
5404
5489
|
:created_at,
|
5405
5490
|
:updated_at,
|
5406
5491
|
:description,
|
@@ -10401,7 +10486,9 @@ module Aws::Kendra
|
|
10401
10486
|
# @return [Boolean]
|
10402
10487
|
#
|
10403
10488
|
# @!attribute [rw] folder_ids
|
10404
|
-
# The identifiers of the Quip folders you want to index.
|
10489
|
+
# The identifiers of the Quip folders you want to index. You can find
|
10490
|
+
# in your browser URL when you access your folder in Quip. For
|
10491
|
+
# example, *https://quip-company.com/zlLuOVNSarTL/folder-name*.
|
10405
10492
|
# @return [Array<String>]
|
10406
10493
|
#
|
10407
10494
|
# @!attribute [rw] thread_field_mappings
|
@@ -11766,6 +11853,11 @@ module Aws::Kendra
|
|
11766
11853
|
# key: "S3ObjectKey", # required
|
11767
11854
|
# },
|
11768
11855
|
# authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, OAUTH2
|
11856
|
+
# proxy_configuration: {
|
11857
|
+
# host: "Host", # required
|
11858
|
+
# port: 1, # required
|
11859
|
+
# credentials: "SecretArn",
|
11860
|
+
# },
|
11769
11861
|
# }
|
11770
11862
|
#
|
11771
11863
|
# @!attribute [rw] share_point_version
|
@@ -11871,6 +11963,29 @@ module Aws::Kendra
|
|
11871
11963
|
# authentication for SharePoint Online.
|
11872
11964
|
# @return [String]
|
11873
11965
|
#
|
11966
|
+
# @!attribute [rw] proxy_configuration
|
11967
|
+
# Configuration information to connect to your Microsoft SharePoint
|
11968
|
+
# site URLs via instance via a web proxy. You can use this option for
|
11969
|
+
# SharePoint Server.
|
11970
|
+
#
|
11971
|
+
# You must provide the website host name and port number. For example,
|
11972
|
+
# the host name of *https://a.example.com/page1.html* is
|
11973
|
+
# "a.example.com" and the port is 443, the standard port for HTTPS.
|
11974
|
+
#
|
11975
|
+
# Web proxy credentials are optional and you can use them to connect
|
11976
|
+
# to a web proxy server that requires basic authentication of user
|
11977
|
+
# name and password. To store web proxy credentials, you use a secret
|
11978
|
+
# in Secrets Manager.
|
11979
|
+
#
|
11980
|
+
# It is recommended that you follow best security practices when
|
11981
|
+
# configuring your web proxy. This includes setting up throttling,
|
11982
|
+
# setting up logging and monitoring, and applying security patches on
|
11983
|
+
# a regular basis. If you use your web proxy with multiple data
|
11984
|
+
# sources, sync jobs that occur at the same time could strain the load
|
11985
|
+
# on your proxy. It is recommended you prepare your proxy beforehand
|
11986
|
+
# for any security and load requirements.
|
11987
|
+
# @return [Types::ProxyConfiguration]
|
11988
|
+
#
|
11874
11989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/SharePointConfiguration AWS API Documentation
|
11875
11990
|
#
|
11876
11991
|
class SharePointConfiguration < Struct.new(
|
@@ -11886,7 +12001,8 @@ module Aws::Kendra
|
|
11886
12001
|
:document_title_field_name,
|
11887
12002
|
:disable_local_groups,
|
11888
12003
|
:ssl_certificate_s3_path,
|
11889
|
-
:authentication_type
|
12004
|
+
:authentication_type,
|
12005
|
+
:proxy_configuration)
|
11890
12006
|
SENSITIVE = []
|
11891
12007
|
include Aws::Structure
|
11892
12008
|
end
|
@@ -12540,6 +12656,40 @@ module Aws::Kendra
|
|
12540
12656
|
#
|
12541
12657
|
class TagResourceResponse < Aws::EmptyStructure; end
|
12542
12658
|
|
12659
|
+
# Provides a template for the configuration information to connect to
|
12660
|
+
# your data source.
|
12661
|
+
#
|
12662
|
+
# @note When making an API call, you may pass TemplateConfiguration
|
12663
|
+
# data as a hash:
|
12664
|
+
#
|
12665
|
+
# {
|
12666
|
+
# template: {
|
12667
|
+
# },
|
12668
|
+
# }
|
12669
|
+
#
|
12670
|
+
# @!attribute [rw] template
|
12671
|
+
# The template schema used for the data source.
|
12672
|
+
#
|
12673
|
+
# The following links to the template schema for data sources where
|
12674
|
+
# templates are supported:
|
12675
|
+
#
|
12676
|
+
# * [Zendesk template schema][1]
|
12677
|
+
#
|
12678
|
+
# ^
|
12679
|
+
#
|
12680
|
+
#
|
12681
|
+
#
|
12682
|
+
# [1]: https://docs.aws.amazon.com/kendra/latest/dg/data-source-zendesk.html#zendesk-template-schema
|
12683
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
12684
|
+
#
|
12685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/TemplateConfiguration AWS API Documentation
|
12686
|
+
#
|
12687
|
+
class TemplateConfiguration < Struct.new(
|
12688
|
+
:template)
|
12689
|
+
SENSITIVE = []
|
12690
|
+
include Aws::Structure
|
12691
|
+
end
|
12692
|
+
|
12543
12693
|
# Provides information about text documents indexed in an index.
|
12544
12694
|
#
|
12545
12695
|
# @!attribute [rw] indexed_text_documents_count
|
@@ -12807,6 +12957,11 @@ module Aws::Kendra
|
|
12807
12957
|
# key: "S3ObjectKey", # required
|
12808
12958
|
# },
|
12809
12959
|
# authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, OAUTH2
|
12960
|
+
# proxy_configuration: {
|
12961
|
+
# host: "Host", # required
|
12962
|
+
# port: 1, # required
|
12963
|
+
# credentials: "SecretArn",
|
12964
|
+
# },
|
12810
12965
|
# },
|
12811
12966
|
# database_configuration: {
|
12812
12967
|
# database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
|
@@ -13019,6 +13174,11 @@ module Aws::Kendra
|
|
13019
13174
|
# },
|
13020
13175
|
# inclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
13021
13176
|
# exclusion_patterns: ["DataSourceInclusionsExclusionsStringsMember"],
|
13177
|
+
# proxy_configuration: {
|
13178
|
+
# host: "Host", # required
|
13179
|
+
# port: 1, # required
|
13180
|
+
# credentials: "SecretArn",
|
13181
|
+
# },
|
13022
13182
|
# },
|
13023
13183
|
# google_drive_configuration: {
|
13024
13184
|
# secret_arn: "SecretArn", # required
|
@@ -13382,6 +13542,14 @@ module Aws::Kendra
|
|
13382
13542
|
# security_group_ids: ["VpcSecurityGroupId"], # required
|
13383
13543
|
# },
|
13384
13544
|
# },
|
13545
|
+
# template_configuration: {
|
13546
|
+
# template: {
|
13547
|
+
# },
|
13548
|
+
# },
|
13549
|
+
# },
|
13550
|
+
# vpc_configuration: {
|
13551
|
+
# subnet_ids: ["SubnetId"], # required
|
13552
|
+
# security_group_ids: ["VpcSecurityGroupId"], # required
|
13385
13553
|
# },
|
13386
13554
|
# description: "Description",
|
13387
13555
|
# schedule: "ScanSchedule",
|
@@ -13450,8 +13618,7 @@ module Aws::Kendra
|
|
13450
13618
|
# @return [String]
|
13451
13619
|
#
|
13452
13620
|
# @!attribute [rw] name
|
13453
|
-
# A new name for the data source connector.
|
13454
|
-
# data source and re-create it to change the name of the data source.
|
13621
|
+
# A new name for the data source connector.
|
13455
13622
|
# @return [String]
|
13456
13623
|
#
|
13457
13624
|
# @!attribute [rw] index_id
|
@@ -13463,6 +13630,16 @@ module Aws::Kendra
|
|
13463
13630
|
# connector.
|
13464
13631
|
# @return [Types::DataSourceConfiguration]
|
13465
13632
|
#
|
13633
|
+
# @!attribute [rw] vpc_configuration
|
13634
|
+
# Configuration information for an Amazon Virtual Private Cloud to
|
13635
|
+
# connect to your data source. For more information, see [Configuring
|
13636
|
+
# a VPC][1].
|
13637
|
+
#
|
13638
|
+
#
|
13639
|
+
#
|
13640
|
+
# [1]: https://docs.aws.amazon.com/kendra/latest/dg/vpc-configuration.html
|
13641
|
+
# @return [Types::DataSourceVpcConfiguration]
|
13642
|
+
#
|
13466
13643
|
# @!attribute [rw] description
|
13467
13644
|
# A new description for the data source connector.
|
13468
13645
|
# @return [String]
|
@@ -13514,6 +13691,7 @@ module Aws::Kendra
|
|
13514
13691
|
:name,
|
13515
13692
|
:index_id,
|
13516
13693
|
:configuration,
|
13694
|
+
:vpc_configuration,
|
13517
13695
|
:description,
|
13518
13696
|
:schedule,
|
13519
13697
|
:role_arn,
|
data/lib/aws-sdk-kendra.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kendra
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.56.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|