aws-sdk-kendra 1.56.0 → 1.57.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 23a9fd618927b78862ad237401dd0a093b102e34faa2cb480c377630d3fb11f0
4
- data.tar.gz: 80f998a654a9e788186969de358149c504d704a38cb559ff1b741c8cf90d2519
3
+ metadata.gz: ab3d1034ac88535ac6814f4dbf014787fded06c0d47ecc91d71b0d40d6cda2a6
4
+ data.tar.gz: '001933a25a070cd620ce4a0586e5cb296b3f6125e481796b653a663ef035d8b3'
5
5
  SHA512:
6
- metadata.gz: 0c7f54e75e8051bb96f52e094c06106b33a3701dc2bc7d8911cc9b2788e61910d92ea18deade760bc6989ee42c9a207b1ae3201bea16f86e8b0ff105d5af96f2
7
- data.tar.gz: 95fa6525e34eaa6f3cdb0ec5f5aecb8623e0fb6950fe6ccb5f6cf5a9c90e51cb19eb9f736878aed307ffa66c69aae6d8c6772d5036ba2b9dd7fdbda9edb408fa
6
+ metadata.gz: 396670050a9fcf08caa89d0487dd21d118345811e9180fa93c05910ff588406c54f56398bf4c0bae0edf0c471b95bd102071271459aee99f1bc9302b1a18d79a
7
+ data.tar.gz: 36b9b58b95efb57f124bef8fa3a4d443de02fa203df5c649c3a546b1fa82ba194919894b1e327c49d9c0006b241d01fcae149d85ecb9c6ffec43f73726605e4d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.0 (2022-08-19)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for a new authentication type - Personal Access Token (PAT) for confluence server.
8
+
4
9
  1.56.0 (2022-08-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.56.0
1
+ 1.57.0
@@ -932,8 +932,8 @@ module Aws::Kendra
932
932
  req.send_request(options)
933
933
  end
934
934
 
935
- # Creates a data source that you want to use with an Amazon Kendra
936
- # index.
935
+ # Creates a data source connector that you want to use with an Amazon
936
+ # Kendra index.
937
937
  #
938
938
  # You specify a name, data source connector type and description for
939
939
  # your data source. You also specify configuration information for the
@@ -1000,8 +1000,8 @@ module Aws::Kendra
1000
1000
  #
1001
1001
  # @option params [String] :role_arn
1002
1002
  # The Amazon Resource Name (ARN) of a role with permission to access the
1003
- # data source connector. For more information, see [IAM Roles for Amazon
1004
- # Kendra][1].
1003
+ # data source and required resources. For more information, see [IAM
1004
+ # roles for Amazon Kendra][1].
1005
1005
  #
1006
1006
  # You can't specify the `RoleArn` parameter when the `Type` parameter
1007
1007
  # is set to `CUSTOM`. If you do, you receive a `ValidationException`
@@ -1321,6 +1321,7 @@ module Aws::Kendra
1321
1321
  # port: 1, # required
1322
1322
  # credentials: "SecretArn",
1323
1323
  # },
1324
+ # authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, PAT
1324
1325
  # },
1325
1326
  # google_drive_configuration: {
1326
1327
  # secret_arn: "SecretArn", # required
@@ -2329,9 +2330,9 @@ module Aws::Kendra
2329
2330
  req.send_request(options)
2330
2331
  end
2331
2332
 
2332
- # Deletes an Amazon Kendra data source. An exception is not thrown if
2333
- # the data source is already being deleted. While the data source is
2334
- # being deleted, the `Status` field returned by a call to the
2333
+ # Deletes an Amazon Kendra data source connector. An exception is not
2334
+ # thrown if the data source is already being deleted. While the data
2335
+ # source is being deleted, the `Status` field returned by a call to the
2335
2336
  # `DescribeDataSource` API is set to `DELETING`. For more information,
2336
2337
  # see [Deleting Data Sources][1].
2337
2338
  #
@@ -2340,10 +2341,10 @@ module Aws::Kendra
2340
2341
  # [1]: https://docs.aws.amazon.com/kendra/latest/dg/delete-data-source.html
2341
2342
  #
2342
2343
  # @option params [required, String] :id
2343
- # The identifier of the data source you want to delete.
2344
+ # The identifier of the data source connector you want to delete.
2344
2345
  #
2345
2346
  # @option params [required, String] :index_id
2346
- # The identifier of the index used with the data source.
2347
+ # The identifier of the index used with the data source connector.
2347
2348
  #
2348
2349
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2349
2350
  #
@@ -2633,13 +2634,13 @@ module Aws::Kendra
2633
2634
  req.send_request(options)
2634
2635
  end
2635
2636
 
2636
- # Gets information about an Amazon Kendra data source.
2637
+ # Gets information about an Amazon Kendra data source connector.
2637
2638
  #
2638
2639
  # @option params [required, String] :id
2639
- # The identifier of the data source.
2640
+ # The identifier of the data source connector.
2640
2641
  #
2641
2642
  # @option params [required, String] :index_id
2642
- # The identifier of the index used with the data source.
2643
+ # The identifier of the index used with the data source connector.
2643
2644
  #
2644
2645
  # @return [Types::DescribeDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2645
2646
  #
@@ -2851,6 +2852,7 @@ module Aws::Kendra
2851
2852
  # resp.configuration.confluence_configuration.proxy_configuration.host #=> String
2852
2853
  # resp.configuration.confluence_configuration.proxy_configuration.port #=> Integer
2853
2854
  # resp.configuration.confluence_configuration.proxy_configuration.credentials #=> String
2855
+ # resp.configuration.confluence_configuration.authentication_type #=> String, one of "HTTP_BASIC", "PAT"
2854
2856
  # resp.configuration.google_drive_configuration.secret_arn #=> String
2855
2857
  # resp.configuration.google_drive_configuration.inclusion_patterns #=> Array
2856
2858
  # resp.configuration.google_drive_configuration.inclusion_patterns[0] #=> String
@@ -3906,13 +3908,13 @@ module Aws::Kendra
3906
3908
  req.send_request(options)
3907
3909
  end
3908
3910
 
3909
- # Gets statistics about synchronizing Amazon Kendra with a data source.
3911
+ # Gets statistics about synchronizing a data source connector.
3910
3912
  #
3911
3913
  # @option params [required, String] :id
3912
- # The identifier of the data source.
3914
+ # The identifier of the data source connector.
3913
3915
  #
3914
3916
  # @option params [required, String] :index_id
3915
- # The identifier of the index used with the data source.
3917
+ # The identifier of the index used with the data source connector.
3916
3918
  #
3917
3919
  # @option params [String] :next_token
3918
3920
  # If the previous response was incomplete (because there is more data to
@@ -3929,8 +3931,8 @@ module Aws::Kendra
3929
3931
  # limited to jobs between the specified dates.
3930
3932
  #
3931
3933
  # @option params [String] :status_filter
3932
- # When specified, only returns synchronization jobs with the `Status`
3933
- # field equal to the specified status.
3934
+ # Only returns synchronization jobs with the `Status` field equal to the
3935
+ # specified status.
3934
3936
  #
3935
3937
  # @return [Types::ListDataSourceSyncJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3936
3938
  #
@@ -3979,19 +3981,20 @@ module Aws::Kendra
3979
3981
  req.send_request(options)
3980
3982
  end
3981
3983
 
3982
- # Lists the data sources that you have created.
3984
+ # Lists the data source connectors that you have created.
3983
3985
  #
3984
3986
  # @option params [required, String] :index_id
3985
- # The identifier of the index used with one or more data sources.
3987
+ # The identifier of the index used with one or more data source
3988
+ # connectors.
3986
3989
  #
3987
3990
  # @option params [String] :next_token
3988
3991
  # If the previous response was incomplete (because there is more data to
3989
3992
  # retrieve), Amazon Kendra returns a pagination token in the response.
3990
3993
  # You can use this pagination token to retrieve the next set of data
3991
- # sources (`DataSourceSummaryItems`).
3994
+ # source connectors (`DataSourceSummaryItems`).
3992
3995
  #
3993
3996
  # @option params [Integer] :max_results
3994
- # The maximum number of data sources to return.
3997
+ # The maximum number of data source connectors to return.
3995
3998
  #
3996
3999
  # @return [Types::ListDataSourcesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3997
4000
  #
@@ -4935,15 +4938,15 @@ module Aws::Kendra
4935
4938
  req.send_request(options)
4936
4939
  end
4937
4940
 
4938
- # Starts a synchronization job for a data source. If a synchronization
4939
- # job is already in progress, Amazon Kendra returns a
4941
+ # Starts a synchronization job for a data source connector. If a
4942
+ # synchronization job is already in progress, Amazon Kendra returns a
4940
4943
  # `ResourceInUseException` exception.
4941
4944
  #
4942
4945
  # @option params [required, String] :id
4943
- # The identifier of the data source to synchronize.
4946
+ # The identifier of the data source connector to synchronize.
4944
4947
  #
4945
4948
  # @option params [required, String] :index_id
4946
- # The identifier of the index that contains the data source.
4949
+ # The identifier of the index used with the data source connector.
4947
4950
  #
4948
4951
  # @return [Types::StartDataSourceSyncJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4949
4952
  #
@@ -4973,11 +4976,11 @@ module Aws::Kendra
4973
4976
  # a scheduled synchronization job.
4974
4977
  #
4975
4978
  # @option params [required, String] :id
4976
- # The identifier of the data source for which to stop the
4979
+ # The identifier of the data source connector for which to stop the
4977
4980
  # synchronization jobs.
4978
4981
  #
4979
4982
  # @option params [required, String] :index_id
4980
- # The identifier of the index that contains the data source.
4983
+ # The identifier of the index used with the data source connector.
4981
4984
  #
4982
4985
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4983
4986
  #
@@ -5207,10 +5210,10 @@ module Aws::Kendra
5207
5210
  req.send_request(options)
5208
5211
  end
5209
5212
 
5210
- # Updates an existing Amazon Kendra data source.
5213
+ # Updates an existing Amazon Kendra data source connector.
5211
5214
  #
5212
5215
  # @option params [required, String] :id
5213
- # The identifier of the data source you want to update.
5216
+ # The identifier of the data source connector you want to update.
5214
5217
  #
5215
5218
  # @option params [String] :name
5216
5219
  # A new name for the data source connector.
@@ -5239,8 +5242,8 @@ module Aws::Kendra
5239
5242
  #
5240
5243
  # @option params [String] :role_arn
5241
5244
  # The Amazon Resource Name (ARN) of a role with permission to access the
5242
- # data source. For more information, see [IAM Roles for Amazon
5243
- # Kendra][1].
5245
+ # data source and required resources. For more information, see [IAM
5246
+ # roles for Amazon Kendra][1].
5244
5247
  #
5245
5248
  #
5246
5249
  #
@@ -5539,6 +5542,7 @@ module Aws::Kendra
5539
5542
  # port: 1, # required
5540
5543
  # credentials: "SecretArn",
5541
5544
  # },
5545
+ # authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, PAT
5542
5546
  # },
5543
5547
  # google_drive_configuration: {
5544
5548
  # secret_arn: "SecretArn", # required
@@ -6383,7 +6387,7 @@ module Aws::Kendra
6383
6387
  params: params,
6384
6388
  config: config)
6385
6389
  context[:gem_name] = 'aws-sdk-kendra'
6386
- context[:gem_version] = '1.56.0'
6390
+ context[:gem_version] = '1.57.0'
6387
6391
  Seahorse::Client::Request.new(handlers, context)
6388
6392
  end
6389
6393
 
@@ -68,6 +68,7 @@ module Aws::Kendra
68
68
  ConfluenceAttachmentFieldMappingsList = Shapes::ListShape.new(name: 'ConfluenceAttachmentFieldMappingsList')
69
69
  ConfluenceAttachmentFieldName = Shapes::StringShape.new(name: 'ConfluenceAttachmentFieldName')
70
70
  ConfluenceAttachmentToIndexFieldMapping = Shapes::StructureShape.new(name: 'ConfluenceAttachmentToIndexFieldMapping')
71
+ ConfluenceAuthenticationType = Shapes::StringShape.new(name: 'ConfluenceAuthenticationType')
71
72
  ConfluenceBlogConfiguration = Shapes::StructureShape.new(name: 'ConfluenceBlogConfiguration')
72
73
  ConfluenceBlogFieldMappingsList = Shapes::ListShape.new(name: 'ConfluenceBlogFieldMappingsList')
73
74
  ConfluenceBlogFieldName = Shapes::StringShape.new(name: 'ConfluenceBlogFieldName')
@@ -743,6 +744,7 @@ module Aws::Kendra
743
744
  ConfluenceConfiguration.add_member(:inclusion_patterns, Shapes::ShapeRef.new(shape: DataSourceInclusionsExclusionsStrings, location_name: "InclusionPatterns"))
744
745
  ConfluenceConfiguration.add_member(:exclusion_patterns, Shapes::ShapeRef.new(shape: DataSourceInclusionsExclusionsStrings, location_name: "ExclusionPatterns"))
745
746
  ConfluenceConfiguration.add_member(:proxy_configuration, Shapes::ShapeRef.new(shape: ProxyConfiguration, location_name: "ProxyConfiguration"))
747
+ ConfluenceConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: ConfluenceAuthenticationType, location_name: "AuthenticationType"))
746
748
  ConfluenceConfiguration.struct_class = Types::ConfluenceConfiguration
747
749
 
748
750
  ConfluencePageConfiguration.add_member(:page_field_mappings, Shapes::ShapeRef.new(shape: ConfluencePageFieldMappingsList, location_name: "PageFieldMappings"))
@@ -203,7 +203,16 @@ module Aws::Kendra
203
203
  #
204
204
  # @!attribute [rw] ssl_certificate_s3_path
205
205
  # The path to the SSL certificate stored in an Amazon S3 bucket. You
206
- # use this to connect to Alfresco.
206
+ # use this to connect to Alfresco if you require a secure SSL
207
+ # connection.
208
+ #
209
+ # You can simply generate a self-signed X509 certificate on any
210
+ # computer using OpenSSL. For an example of using OpenSSL to create an
211
+ # X509 certificate, see [Create and sign an X509 certificate][1].
212
+ #
213
+ #
214
+ #
215
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https-ssl.html
207
216
  # @return [Types::S3Path]
208
217
  #
209
218
  # @!attribute [rw] crawl_system_folders
@@ -1880,6 +1889,7 @@ module Aws::Kendra
1880
1889
  # port: 1, # required
1881
1890
  # credentials: "SecretArn",
1882
1891
  # },
1892
+ # authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, PAT
1883
1893
  # }
1884
1894
  #
1885
1895
  # @!attribute [rw] server_url
@@ -1891,13 +1901,18 @@ module Aws::Kendra
1891
1901
  # @!attribute [rw] secret_arn
1892
1902
  # The Amazon Resource Name (ARN) of an Secrets Manager secret that
1893
1903
  # contains the user name and password required to connect to the
1894
- # Confluence instance. If you use Confluence cloud, you use a
1904
+ # Confluence instance. If you use Confluence Cloud, you use a
1895
1905
  # generated API token as the password. For more information, see
1896
1906
  # [Using a Confluence data source][1].
1897
1907
  #
1908
+ # You can also provide authentication credentials in the form of a
1909
+ # personal access token. For more information, see [Authentication for
1910
+ # a Confluence data source][2].
1911
+ #
1898
1912
  #
1899
1913
  #
1900
1914
  # [1]: https://docs.aws.amazon.com/kendra/latest/dg/data-source-confluence.html
1915
+ # [2]: https://docs.aws.amazon.com/kendra/latest/dg/data-source-confluence.html#confluence-authentication
1901
1916
  # @return [String]
1902
1917
  #
1903
1918
  # @!attribute [rw] version
@@ -1973,6 +1988,12 @@ module Aws::Kendra
1973
1988
  # for any security and load requirements.
1974
1989
  # @return [Types::ProxyConfiguration]
1975
1990
  #
1991
+ # @!attribute [rw] authentication_type
1992
+ # Whether you want to connect to Confluence using basic authentication
1993
+ # of user name and password, or a personal access token. You can use a
1994
+ # personal access token for Confluence Server.
1995
+ # @return [String]
1996
+ #
1976
1997
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/ConfluenceConfiguration AWS API Documentation
1977
1998
  #
1978
1999
  class ConfluenceConfiguration < Struct.new(
@@ -1986,7 +2007,8 @@ module Aws::Kendra
1986
2007
  :vpc_configuration,
1987
2008
  :inclusion_patterns,
1988
2009
  :exclusion_patterns,
1989
- :proxy_configuration)
2010
+ :proxy_configuration,
2011
+ :authentication_type)
1990
2012
  SENSITIVE = []
1991
2013
  include Aws::Structure
1992
2014
  end
@@ -2689,6 +2711,7 @@ module Aws::Kendra
2689
2711
  # port: 1, # required
2690
2712
  # credentials: "SecretArn",
2691
2713
  # },
2714
+ # authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, PAT
2692
2715
  # },
2693
2716
  # google_drive_configuration: {
2694
2717
  # secret_arn: "SecretArn", # required
@@ -3181,8 +3204,8 @@ module Aws::Kendra
3181
3204
  #
3182
3205
  # @!attribute [rw] role_arn
3183
3206
  # The Amazon Resource Name (ARN) of a role with permission to access
3184
- # the data source connector. For more information, see [IAM Roles for
3185
- # Amazon Kendra][1].
3207
+ # the data source and required resources. For more information, see
3208
+ # [IAM roles for Amazon Kendra][1].
3186
3209
  #
3187
3210
  # You can't specify the `RoleArn` parameter when the `Type` parameter
3188
3211
  # is set to `CUSTOM`. If you do, you receive a `ValidationException`
@@ -4205,6 +4228,7 @@ module Aws::Kendra
4205
4228
  # port: 1, # required
4206
4229
  # credentials: "SecretArn",
4207
4230
  # },
4231
+ # authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, PAT
4208
4232
  # },
4209
4233
  # google_drive_configuration: {
4210
4234
  # secret_arn: "SecretArn", # required
@@ -5092,11 +5116,11 @@ module Aws::Kendra
5092
5116
  # }
5093
5117
  #
5094
5118
  # @!attribute [rw] id
5095
- # The identifier of the data source you want to delete.
5119
+ # The identifier of the data source connector you want to delete.
5096
5120
  # @return [String]
5097
5121
  #
5098
5122
  # @!attribute [rw] index_id
5099
- # The identifier of the index used with the data source.
5123
+ # The identifier of the index used with the data source connector.
5100
5124
  # @return [String]
5101
5125
  #
5102
5126
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/DeleteDataSourceRequest AWS API Documentation
@@ -5369,11 +5393,11 @@ module Aws::Kendra
5369
5393
  # }
5370
5394
  #
5371
5395
  # @!attribute [rw] id
5372
- # The identifier of the data source.
5396
+ # The identifier of the data source connector.
5373
5397
  # @return [String]
5374
5398
  #
5375
5399
  # @!attribute [rw] index_id
5376
- # The identifier of the index used with the data source.
5400
+ # The identifier of the index used with the data source connector.
5377
5401
  # @return [String]
5378
5402
  #
5379
5403
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/DescribeDataSourceRequest AWS API Documentation
@@ -5386,25 +5410,25 @@ module Aws::Kendra
5386
5410
  end
5387
5411
 
5388
5412
  # @!attribute [rw] id
5389
- # The identifier of the data source.
5413
+ # The identifier of the data source connector.
5390
5414
  # @return [String]
5391
5415
  #
5392
5416
  # @!attribute [rw] index_id
5393
- # The identifier of the index that contains the data source.
5417
+ # The identifier of the index used with the data source connector.
5394
5418
  # @return [String]
5395
5419
  #
5396
5420
  # @!attribute [rw] name
5397
- # The name for the data source.
5421
+ # The name for the data source connector.
5398
5422
  # @return [String]
5399
5423
  #
5400
5424
  # @!attribute [rw] type
5401
- # The type of the data source.
5425
+ # The type of the data source. For example, `SHAREPOINT`.
5402
5426
  # @return [String]
5403
5427
  #
5404
5428
  # @!attribute [rw] configuration
5405
- # Configuration details for the data source. This shows how the data
5406
- # source is configured. The configuration options for a data source
5407
- # depend on the data source provider.
5429
+ # Configuration details for the data source connector. This shows how
5430
+ # the data source is configured. The configuration options for a data
5431
+ # source depend on the data source provider.
5408
5432
  # @return [Types::DataSourceConfiguration]
5409
5433
  #
5410
5434
  # @!attribute [rw] vpc_configuration
@@ -5418,22 +5442,23 @@ module Aws::Kendra
5418
5442
  # @return [Types::DataSourceVpcConfiguration]
5419
5443
  #
5420
5444
  # @!attribute [rw] created_at
5421
- # The Unix timestamp of when the data source was created.
5445
+ # The Unix timestamp of when the data source connector was created.
5422
5446
  # @return [Time]
5423
5447
  #
5424
5448
  # @!attribute [rw] updated_at
5425
- # The Unix timestamp of when the data source was last updated.
5449
+ # The Unix timestamp of when the data source connector was last
5450
+ # updated.
5426
5451
  # @return [Time]
5427
5452
  #
5428
5453
  # @!attribute [rw] description
5429
- # The description for the data source.
5454
+ # The description for the data source connector.
5430
5455
  # @return [String]
5431
5456
  #
5432
5457
  # @!attribute [rw] status
5433
- # The current status of the data source. When the status is `ACTIVE`
5434
- # the data source is ready to use. When the status is `FAILED`, the
5435
- # `ErrorMessage` field contains the reason that the data source
5436
- # failed.
5458
+ # The current status of the data source connector. When the status is
5459
+ # `ACTIVE` the data source is ready to use. When the status is
5460
+ # `FAILED`, the `ErrorMessage` field contains the reason that the data
5461
+ # source failed.
5437
5462
  # @return [String]
5438
5463
  #
5439
5464
  # @!attribute [rw] schedule
@@ -5441,8 +5466,8 @@ module Aws::Kendra
5441
5466
  # @return [String]
5442
5467
  #
5443
5468
  # @!attribute [rw] role_arn
5444
- # The Amazon Resource Name (ARN) of the role that enables the data
5445
- # source to access its resources.
5469
+ # The Amazon Resource Name (ARN) of the role with permission to access
5470
+ # the data source and required resources.
5446
5471
  # @return [String]
5447
5472
  #
5448
5473
  # @!attribute [rw] error_message
@@ -8892,11 +8917,11 @@ module Aws::Kendra
8892
8917
  # }
8893
8918
  #
8894
8919
  # @!attribute [rw] id
8895
- # The identifier of the data source.
8920
+ # The identifier of the data source connector.
8896
8921
  # @return [String]
8897
8922
  #
8898
8923
  # @!attribute [rw] index_id
8899
- # The identifier of the index used with the data source.
8924
+ # The identifier of the index used with the data source connector.
8900
8925
  # @return [String]
8901
8926
  #
8902
8927
  # @!attribute [rw] next_token
@@ -8918,8 +8943,8 @@ module Aws::Kendra
8918
8943
  # @return [Types::TimeRange]
8919
8944
  #
8920
8945
  # @!attribute [rw] status_filter
8921
- # When specified, only returns synchronization jobs with the `Status`
8922
- # field equal to the specified status.
8946
+ # Only returns synchronization jobs with the `Status` field equal to
8947
+ # the specified status.
8923
8948
  # @return [String]
8924
8949
  #
8925
8950
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/ListDataSourceSyncJobsRequest AWS API Documentation
@@ -8936,7 +8961,7 @@ module Aws::Kendra
8936
8961
  end
8937
8962
 
8938
8963
  # @!attribute [rw] history
8939
- # A history of synchronization jobs for the data source.
8964
+ # A history of synchronization jobs for the data source connector.
8940
8965
  # @return [Array<Types::DataSourceSyncJob>]
8941
8966
  #
8942
8967
  # @!attribute [rw] next_token
@@ -8964,18 +8989,19 @@ module Aws::Kendra
8964
8989
  # }
8965
8990
  #
8966
8991
  # @!attribute [rw] index_id
8967
- # The identifier of the index used with one or more data sources.
8992
+ # The identifier of the index used with one or more data source
8993
+ # connectors.
8968
8994
  # @return [String]
8969
8995
  #
8970
8996
  # @!attribute [rw] next_token
8971
8997
  # If the previous response was incomplete (because there is more data
8972
8998
  # to retrieve), Amazon Kendra returns a pagination token in the
8973
8999
  # response. You can use this pagination token to retrieve the next set
8974
- # of data sources (`DataSourceSummaryItems`).
9000
+ # of data source connectors (`DataSourceSummaryItems`).
8975
9001
  # @return [String]
8976
9002
  #
8977
9003
  # @!attribute [rw] max_results
8978
- # The maximum number of data sources to return.
9004
+ # The maximum number of data source connectors to return.
8979
9005
  # @return [Integer]
8980
9006
  #
8981
9007
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/ListDataSourcesRequest AWS API Documentation
@@ -8989,13 +9015,14 @@ module Aws::Kendra
8989
9015
  end
8990
9016
 
8991
9017
  # @!attribute [rw] summary_items
8992
- # An array of summary information for one or more data sources.
9018
+ # An array of summary information for one or more data source
9019
+ # connector.
8993
9020
  # @return [Array<Types::DataSourceSummary>]
8994
9021
  #
8995
9022
  # @!attribute [rw] next_token
8996
9023
  # If the response is truncated, Amazon Kendra returns this token that
8997
9024
  # you can use in the subsequent request to retrieve the next set of
8998
- # data sources.
9025
+ # data source connectors.
8999
9026
  # @return [String]
9000
9027
  #
9001
9028
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/ListDataSourcesResponse AWS API Documentation
@@ -9584,7 +9611,16 @@ module Aws::Kendra
9584
9611
  #
9585
9612
  # @!attribute [rw] ssl_certificate_s3_path
9586
9613
  # The path to the SSL certificate stored in an Amazon S3 bucket. You
9587
- # use this to connect to GitHub.
9614
+ # use this to connect to GitHub if you require a secure SSL
9615
+ # connection.
9616
+ #
9617
+ # You can simply generate a self-signed X509 certificate on any
9618
+ # computer using OpenSSL. For an example of using OpenSSL to create an
9619
+ # X509 certificate, see [Create and sign an X509 certificate][1].
9620
+ #
9621
+ #
9622
+ #
9623
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https-ssl.html
9588
9624
  # @return [Types::S3Path]
9589
9625
  #
9590
9626
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/OnPremiseConfiguration AWS API Documentation
@@ -10454,7 +10490,9 @@ module Aws::Kendra
10454
10490
  # }
10455
10491
  #
10456
10492
  # @!attribute [rw] domain
10457
- # The Quip site domain.
10493
+ # The Quip site domain. For example,
10494
+ # *https://quip-company.quipdomain.com/browse*. The domain in this
10495
+ # example is "quipdomain".
10458
10496
  # @return [String]
10459
10497
  #
10460
10498
  # @!attribute [rw] secret_arn
@@ -10487,8 +10525,10 @@ module Aws::Kendra
10487
10525
  #
10488
10526
  # @!attribute [rw] folder_ids
10489
10527
  # 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*.
10528
+ # the folder ID in your browser URL when you access your folder in
10529
+ # Quip. For example,
10530
+ # *https://quip-company.quipdomain.com/zlLuOVNSarTL/folder-name*. The
10531
+ # folder ID in this example is "zlLuOVNSarTL".
10492
10532
  # @return [Array<String>]
10493
10533
  #
10494
10534
  # @!attribute [rw] thread_field_mappings
@@ -11866,7 +11906,7 @@ module Aws::Kendra
11866
11906
  #
11867
11907
  # @!attribute [rw] urls
11868
11908
  # The Microsoft SharePoint site URLs for the documents you want to
11869
- # indext.
11909
+ # index.
11870
11910
  # @return [Array<String>]
11871
11911
  #
11872
11912
  # @!attribute [rw] secret_arn
@@ -11953,7 +11993,16 @@ module Aws::Kendra
11953
11993
  #
11954
11994
  # @!attribute [rw] ssl_certificate_s3_path
11955
11995
  # The path to the SSL certificate stored in an Amazon S3 bucket. You
11956
- # use this to connect to SharePoint.
11996
+ # use this to connect to SharePoint Server if you require a secure SSL
11997
+ # connection.
11998
+ #
11999
+ # You can simply generate a self-signed X509 certificate on any
12000
+ # computer using OpenSSL. For an example of using OpenSSL to create an
12001
+ # X509 certificate, see [Create and sign an X509 certificate][1].
12002
+ #
12003
+ #
12004
+ #
12005
+ # [1]: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https-ssl.html
11957
12006
  # @return [Types::S3Path]
11958
12007
  #
11959
12008
  # @!attribute [rw] authentication_type
@@ -12368,11 +12417,11 @@ module Aws::Kendra
12368
12417
  # }
12369
12418
  #
12370
12419
  # @!attribute [rw] id
12371
- # The identifier of the data source to synchronize.
12420
+ # The identifier of the data source connector to synchronize.
12372
12421
  # @return [String]
12373
12422
  #
12374
12423
  # @!attribute [rw] index_id
12375
- # The identifier of the index that contains the data source.
12424
+ # The identifier of the index used with the data source connector.
12376
12425
  # @return [String]
12377
12426
  #
12378
12427
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/StartDataSourceSyncJobRequest AWS API Documentation
@@ -12440,12 +12489,12 @@ module Aws::Kendra
12440
12489
  # }
12441
12490
  #
12442
12491
  # @!attribute [rw] id
12443
- # The identifier of the data source for which to stop the
12492
+ # The identifier of the data source connector for which to stop the
12444
12493
  # synchronization jobs.
12445
12494
  # @return [String]
12446
12495
  #
12447
12496
  # @!attribute [rw] index_id
12448
- # The identifier of the index that contains the data source.
12497
+ # The identifier of the index used with the data source connector.
12449
12498
  # @return [String]
12450
12499
  #
12451
12500
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/StopDataSourceSyncJobRequest AWS API Documentation
@@ -13179,6 +13228,7 @@ module Aws::Kendra
13179
13228
  # port: 1, # required
13180
13229
  # credentials: "SecretArn",
13181
13230
  # },
13231
+ # authentication_type: "HTTP_BASIC", # accepts HTTP_BASIC, PAT
13182
13232
  # },
13183
13233
  # google_drive_configuration: {
13184
13234
  # secret_arn: "SecretArn", # required
@@ -13614,7 +13664,7 @@ module Aws::Kendra
13614
13664
  # }
13615
13665
  #
13616
13666
  # @!attribute [rw] id
13617
- # The identifier of the data source you want to update.
13667
+ # The identifier of the data source connector you want to update.
13618
13668
  # @return [String]
13619
13669
  #
13620
13670
  # @!attribute [rw] name
@@ -13650,8 +13700,8 @@ module Aws::Kendra
13650
13700
  #
13651
13701
  # @!attribute [rw] role_arn
13652
13702
  # The Amazon Resource Name (ARN) of a role with permission to access
13653
- # the data source. For more information, see [IAM Roles for Amazon
13654
- # Kendra][1].
13703
+ # the data source and required resources. For more information, see
13704
+ # [IAM roles for Amazon Kendra][1].
13655
13705
  #
13656
13706
  #
13657
13707
  #
@@ -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.56.0'
51
+ GEM_VERSION = '1.57.0'
52
52
 
53
53
  end
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.56.0
4
+ version: 1.57.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-08-17 00:00:00.000000000 Z
11
+ date: 2022-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core