aws-sdk-kendra 1.27.0 → 1.28.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18f9a0673af8278a3066d865646525130986d0d6fce53f4a84fc8b10efb26e21
4
- data.tar.gz: 1b782bf81e35136fc3b2fd540bcc97821f38707b6159977a0e6243bc51b33253
3
+ metadata.gz: ad23f2213feec43bb1bad01303faec4550233b265115b63025d296de5e69b523
4
+ data.tar.gz: b9f2be8170c8bec1bee41287cad764f7133bab206edf14c3e697ba6bc764f146
5
5
  SHA512:
6
- metadata.gz: e91319bbb2301cbf8c9fb6900922854688faf4fac89b62c2ce9c5e1f5f36265e33cc3e5faa5dbfb581128c06ea406acc49be1b6c168c9920707b87aa28dffd72
7
- data.tar.gz: ab38e61328b8e4b91f9354a2f23e74b98040d4477742ad86219cfc5de2c79e3ca36423574a13dbe2c6de1b5d45e1a36de594a36d8d9e29cd464a08a760986408
6
+ metadata.gz: ee6b0f2c618e497f0210d12ef9204eb4e07f50414146b7c83ff11c8891eaf5dadb896f1d0680ac3de2c66aa4b36e26714444fd2cf5070503ba06fc861c6ef4e4
7
+ data.tar.gz: 52d0ccbc0c1932fc289567b69ff8c4d6157abdde51c6f39925150005917a001f4cb4a2fe251d51bf457c15bece3de9f8c63fc79f0aeb5e06648ddf041c41db40
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.28.0 (2021-06-24)
5
+ ------------------
6
+
7
+ * Feature - Amazon Kendra now supports SharePoint 2013 and SharePoint 2016 when using a SharePoint data source.
8
+
4
9
  1.27.0 (2021-06-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.28.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-kendra/customizations'
48
48
  # @!group service
49
49
  module Aws::Kendra
50
50
 
51
- GEM_VERSION = '1.27.0'
51
+ GEM_VERSION = '1.28.0'
52
52
 
53
53
  end
@@ -694,7 +694,7 @@ module Aws::Kendra
694
694
  # },
695
695
  # },
696
696
  # share_point_configuration: {
697
- # share_point_version: "SHAREPOINT_ONLINE", # required, accepts SHAREPOINT_ONLINE
697
+ # share_point_version: "SHAREPOINT_2013", # required, accepts SHAREPOINT_2013, SHAREPOINT_2016, SHAREPOINT_ONLINE
698
698
  # urls: ["Url"], # required
699
699
  # secret_arn: "SecretArn", # required
700
700
  # crawl_attachments: false,
@@ -714,6 +714,10 @@ module Aws::Kendra
714
714
  # ],
715
715
  # document_title_field_name: "DataSourceFieldName",
716
716
  # disable_local_groups: false,
717
+ # ssl_certificate_s3_path: {
718
+ # bucket: "S3BucketName", # required
719
+ # key: "S3ObjectKey", # required
720
+ # },
717
721
  # },
718
722
  # database_configuration: {
719
723
  # database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
@@ -1566,7 +1570,7 @@ module Aws::Kendra
1566
1570
  # resp.configuration.s3_configuration.exclusion_patterns[0] #=> String
1567
1571
  # resp.configuration.s3_configuration.documents_metadata_configuration.s3_prefix #=> String
1568
1572
  # resp.configuration.s3_configuration.access_control_list_configuration.key_path #=> String
1569
- # resp.configuration.share_point_configuration.share_point_version #=> String, one of "SHAREPOINT_ONLINE"
1573
+ # resp.configuration.share_point_configuration.share_point_version #=> String, one of "SHAREPOINT_2013", "SHAREPOINT_2016", "SHAREPOINT_ONLINE"
1570
1574
  # resp.configuration.share_point_configuration.urls #=> Array
1571
1575
  # resp.configuration.share_point_configuration.urls[0] #=> String
1572
1576
  # resp.configuration.share_point_configuration.secret_arn #=> String
@@ -1586,6 +1590,8 @@ module Aws::Kendra
1586
1590
  # resp.configuration.share_point_configuration.field_mappings[0].index_field_name #=> String
1587
1591
  # resp.configuration.share_point_configuration.document_title_field_name #=> String
1588
1592
  # resp.configuration.share_point_configuration.disable_local_groups #=> Boolean
1593
+ # resp.configuration.share_point_configuration.ssl_certificate_s3_path.bucket #=> String
1594
+ # resp.configuration.share_point_configuration.ssl_certificate_s3_path.key #=> String
1589
1595
  # resp.configuration.database_configuration.database_engine_type #=> String, one of "RDS_AURORA_MYSQL", "RDS_AURORA_POSTGRESQL", "RDS_MYSQL", "RDS_POSTGRESQL"
1590
1596
  # resp.configuration.database_configuration.connection_configuration.database_host #=> String
1591
1597
  # resp.configuration.database_configuration.connection_configuration.database_port #=> Integer
@@ -2983,7 +2989,7 @@ module Aws::Kendra
2983
2989
  # },
2984
2990
  # },
2985
2991
  # share_point_configuration: {
2986
- # share_point_version: "SHAREPOINT_ONLINE", # required, accepts SHAREPOINT_ONLINE
2992
+ # share_point_version: "SHAREPOINT_2013", # required, accepts SHAREPOINT_2013, SHAREPOINT_2016, SHAREPOINT_ONLINE
2987
2993
  # urls: ["Url"], # required
2988
2994
  # secret_arn: "SecretArn", # required
2989
2995
  # crawl_attachments: false,
@@ -3003,6 +3009,10 @@ module Aws::Kendra
3003
3009
  # ],
3004
3010
  # document_title_field_name: "DataSourceFieldName",
3005
3011
  # disable_local_groups: false,
3012
+ # ssl_certificate_s3_path: {
3013
+ # bucket: "S3BucketName", # required
3014
+ # key: "S3ObjectKey", # required
3015
+ # },
3006
3016
  # },
3007
3017
  # database_configuration: {
3008
3018
  # database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
@@ -3591,7 +3601,7 @@ module Aws::Kendra
3591
3601
  params: params,
3592
3602
  config: config)
3593
3603
  context[:gem_name] = 'aws-sdk-kendra'
3594
- context[:gem_version] = '1.27.0'
3604
+ context[:gem_version] = '1.28.0'
3595
3605
  Seahorse::Client::Request.new(handlers, context)
3596
3606
  end
3597
3607
 
@@ -1233,6 +1233,7 @@ module Aws::Kendra
1233
1233
  SharePointConfiguration.add_member(:field_mappings, Shapes::ShapeRef.new(shape: DataSourceToIndexFieldMappingList, location_name: "FieldMappings"))
1234
1234
  SharePointConfiguration.add_member(:document_title_field_name, Shapes::ShapeRef.new(shape: DataSourceFieldName, location_name: "DocumentTitleFieldName"))
1235
1235
  SharePointConfiguration.add_member(:disable_local_groups, Shapes::ShapeRef.new(shape: Boolean, location_name: "DisableLocalGroups"))
1236
+ SharePointConfiguration.add_member(:ssl_certificate_s3_path, Shapes::ShapeRef.new(shape: S3Path, location_name: "SslCertificateS3Path"))
1236
1237
  SharePointConfiguration.struct_class = Types::SharePointConfiguration
1237
1238
 
1238
1239
  SharePointUrlList.member = Shapes::ShapeRef.new(shape: Url)
@@ -1610,7 +1610,7 @@ module Aws::Kendra
1610
1610
  # },
1611
1611
  # },
1612
1612
  # share_point_configuration: {
1613
- # share_point_version: "SHAREPOINT_ONLINE", # required, accepts SHAREPOINT_ONLINE
1613
+ # share_point_version: "SHAREPOINT_2013", # required, accepts SHAREPOINT_2013, SHAREPOINT_2016, SHAREPOINT_ONLINE
1614
1614
  # urls: ["Url"], # required
1615
1615
  # secret_arn: "SecretArn", # required
1616
1616
  # crawl_attachments: false,
@@ -1630,6 +1630,10 @@ module Aws::Kendra
1630
1630
  # ],
1631
1631
  # document_title_field_name: "DataSourceFieldName",
1632
1632
  # disable_local_groups: false,
1633
+ # ssl_certificate_s3_path: {
1634
+ # bucket: "S3BucketName", # required
1635
+ # key: "S3ObjectKey", # required
1636
+ # },
1633
1637
  # },
1634
1638
  # database_configuration: {
1635
1639
  # database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
@@ -2449,7 +2453,7 @@ module Aws::Kendra
2449
2453
  # },
2450
2454
  # },
2451
2455
  # share_point_configuration: {
2452
- # share_point_version: "SHAREPOINT_ONLINE", # required, accepts SHAREPOINT_ONLINE
2456
+ # share_point_version: "SHAREPOINT_2013", # required, accepts SHAREPOINT_2013, SHAREPOINT_2016, SHAREPOINT_ONLINE
2453
2457
  # urls: ["Url"], # required
2454
2458
  # secret_arn: "SecretArn", # required
2455
2459
  # crawl_attachments: false,
@@ -2469,6 +2473,10 @@ module Aws::Kendra
2469
2473
  # ],
2470
2474
  # document_title_field_name: "DataSourceFieldName",
2471
2475
  # disable_local_groups: false,
2476
+ # ssl_certificate_s3_path: {
2477
+ # bucket: "S3BucketName", # required
2478
+ # key: "S3ObjectKey", # required
2479
+ # },
2472
2480
  # },
2473
2481
  # database_configuration: {
2474
2482
  # database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
@@ -6820,7 +6828,7 @@ module Aws::Kendra
6820
6828
  # data as a hash:
6821
6829
  #
6822
6830
  # {
6823
- # share_point_version: "SHAREPOINT_ONLINE", # required, accepts SHAREPOINT_ONLINE
6831
+ # share_point_version: "SHAREPOINT_2013", # required, accepts SHAREPOINT_2013, SHAREPOINT_2016, SHAREPOINT_ONLINE
6824
6832
  # urls: ["Url"], # required
6825
6833
  # secret_arn: "SecretArn", # required
6826
6834
  # crawl_attachments: false,
@@ -6840,6 +6848,10 @@ module Aws::Kendra
6840
6848
  # ],
6841
6849
  # document_title_field_name: "DataSourceFieldName",
6842
6850
  # disable_local_groups: false,
6851
+ # ssl_certificate_s3_path: {
6852
+ # bucket: "S3BucketName", # required
6853
+ # key: "S3ObjectKey", # required
6854
+ # },
6843
6855
  # }
6844
6856
  #
6845
6857
  # @!attribute [rw] share_point_version
@@ -6854,10 +6866,12 @@ module Aws::Kendra
6854
6866
  #
6855
6867
  # @!attribute [rw] secret_arn
6856
6868
  # The Amazon Resource Name (ARN) of credentials stored in AWS Secrets
6857
- # Manager. The credentials should be a user/password pair. For more
6858
- # information, see [Using a Microsoft SharePoint Data Source][1]. For
6859
- # more information about AWS Secrets Manager, see [ What Is AWS
6860
- # Secrets Manager ][2] in the *AWS Secrets Manager* user guide.
6869
+ # Manager. The credentials should be a user/password pair. If you use
6870
+ # SharePoint Sever, you also need to provide the sever domain name as
6871
+ # part of the credentials. For more information, see [Using a
6872
+ # Microsoft SharePoint Data Source][1]. For more information about AWS
6873
+ # Secrets Manager, see [ What Is AWS Secrets Manager ][2] in the *AWS
6874
+ # Secrets Manager* user guide.
6861
6875
  #
6862
6876
  #
6863
6877
  #
@@ -6925,6 +6939,10 @@ module Aws::Kendra
6925
6939
  # (`True`) or enabled (`False`).
6926
6940
  # @return [Boolean]
6927
6941
  #
6942
+ # @!attribute [rw] ssl_certificate_s3_path
6943
+ # Information required to find a specific file in an Amazon S3 bucket.
6944
+ # @return [Types::S3Path]
6945
+ #
6928
6946
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/SharePointConfiguration AWS API Documentation
6929
6947
  #
6930
6948
  class SharePointConfiguration < Struct.new(
@@ -6938,7 +6956,8 @@ module Aws::Kendra
6938
6956
  :vpc_configuration,
6939
6957
  :field_mappings,
6940
6958
  :document_title_field_name,
6941
- :disable_local_groups)
6959
+ :disable_local_groups,
6960
+ :ssl_certificate_s3_path)
6942
6961
  SENSITIVE = []
6943
6962
  include Aws::Structure
6944
6963
  end
@@ -7528,7 +7547,7 @@ module Aws::Kendra
7528
7547
  # },
7529
7548
  # },
7530
7549
  # share_point_configuration: {
7531
- # share_point_version: "SHAREPOINT_ONLINE", # required, accepts SHAREPOINT_ONLINE
7550
+ # share_point_version: "SHAREPOINT_2013", # required, accepts SHAREPOINT_2013, SHAREPOINT_2016, SHAREPOINT_ONLINE
7532
7551
  # urls: ["Url"], # required
7533
7552
  # secret_arn: "SecretArn", # required
7534
7553
  # crawl_attachments: false,
@@ -7548,6 +7567,10 @@ module Aws::Kendra
7548
7567
  # ],
7549
7568
  # document_title_field_name: "DataSourceFieldName",
7550
7569
  # disable_local_groups: false,
7570
+ # ssl_certificate_s3_path: {
7571
+ # bucket: "S3BucketName", # required
7572
+ # key: "S3ObjectKey", # required
7573
+ # },
7551
7574
  # },
7552
7575
  # database_configuration: {
7553
7576
  # database_engine_type: "RDS_AURORA_MYSQL", # required, accepts RDS_AURORA_MYSQL, RDS_AURORA_POSTGRESQL, RDS_MYSQL, RDS_POSTGRESQL
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.27.0
4
+ version: 1.28.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: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core