aws-sdk-opensearchservice 1.33.0 → 1.34.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-opensearchservice/client.rb +35 -12
- data/lib/aws-sdk-opensearchservice/types.rb +17 -24
- data/lib/aws-sdk-opensearchservice.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: 2ee5fe5d627377e3df2e82a942319bac94a46c5a60f8b23dc9a4724185f63f71
|
4
|
+
data.tar.gz: b7ea9c4fa3c3a732f3e4cddf61bafd8bd1d3de583ed461feb14bea3815fe31b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca02c293816fdfef60a2a182cf4b48ddaf0f95fffb80108bc7b38a27c577ad9bfe88aa691c2191827c5f279aba96f2db868862b16d1742e45e5fd71a22d39705
|
7
|
+
data.tar.gz: ed0635ba4d33ba8b78fb2a8f39e74e17cd3665c8f03c13e2d441ce9c95fc36c6e3e78ce08f2692b99534b7f6bb4a8c837902a659571c5d5d7fec559225963818
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -432,13 +432,19 @@ module Aws::OpenSearchService
|
|
432
432
|
req.send_request(options)
|
433
433
|
end
|
434
434
|
|
435
|
-
#
|
435
|
+
# Creates a new direct-query data source to the specified domain. For
|
436
|
+
# more information, see [Creating Amazon OpenSearch Service data source
|
437
|
+
# integrations with Amazon S3][1].
|
438
|
+
#
|
439
|
+
#
|
440
|
+
#
|
441
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/direct-query-s3-creating.html
|
436
442
|
#
|
437
443
|
# @option params [required, String] :domain_name
|
438
|
-
# The name of the domain.
|
444
|
+
# The name of the domain to add the data source to.
|
439
445
|
#
|
440
446
|
# @option params [required, String] :name
|
441
|
-
#
|
447
|
+
# A name for the data source.
|
442
448
|
#
|
443
449
|
# @option params [required, Types::DataSourceType] :data_source_type
|
444
450
|
# The type of data source.
|
@@ -1191,13 +1197,18 @@ module Aws::OpenSearchService
|
|
1191
1197
|
req.send_request(options)
|
1192
1198
|
end
|
1193
1199
|
|
1194
|
-
# Deletes
|
1200
|
+
# Deletes a direct-query data source. For more information, see
|
1201
|
+
# [Deleting an Amazon OpenSearch Service data source with Amazon S3][1].
|
1202
|
+
#
|
1203
|
+
#
|
1204
|
+
#
|
1205
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/direct-query-s3-delete.html
|
1195
1206
|
#
|
1196
1207
|
# @option params [required, String] :domain_name
|
1197
1208
|
# The name of the domain.
|
1198
1209
|
#
|
1199
1210
|
# @option params [required, String] :name
|
1200
|
-
# The name of the data source.
|
1211
|
+
# The name of the data source to delete.
|
1201
1212
|
#
|
1202
1213
|
# @return [Types::DeleteDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1203
1214
|
#
|
@@ -2774,13 +2785,13 @@ module Aws::OpenSearchService
|
|
2774
2785
|
req.send_request(options)
|
2775
2786
|
end
|
2776
2787
|
|
2777
|
-
#
|
2788
|
+
# Retrieves information about a direct query data source.
|
2778
2789
|
#
|
2779
2790
|
# @option params [required, String] :domain_name
|
2780
2791
|
# The name of the domain.
|
2781
2792
|
#
|
2782
2793
|
# @option params [required, String] :name
|
2783
|
-
# The name of the data source.
|
2794
|
+
# The name of the data source to get information about.
|
2784
2795
|
#
|
2785
2796
|
# @return [Types::GetDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2786
2797
|
#
|
@@ -3000,7 +3011,13 @@ module Aws::OpenSearchService
|
|
3000
3011
|
req.send_request(options)
|
3001
3012
|
end
|
3002
3013
|
|
3003
|
-
#
|
3014
|
+
# Lists direct-query data sources for a specific domain. For more
|
3015
|
+
# information, see For more information, see [Working with Amazon
|
3016
|
+
# OpenSearch Service direct queries with Amazon S3][1].
|
3017
|
+
#
|
3018
|
+
#
|
3019
|
+
#
|
3020
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/direct-query-s3.html
|
3004
3021
|
#
|
3005
3022
|
# @option params [required, String] :domain_name
|
3006
3023
|
# The name of the domain.
|
@@ -3812,19 +3829,25 @@ module Aws::OpenSearchService
|
|
3812
3829
|
req.send_request(options)
|
3813
3830
|
end
|
3814
3831
|
|
3815
|
-
# Updates
|
3832
|
+
# Updates a direct-query data source. For more information, see [Working
|
3833
|
+
# with Amazon OpenSearch Service data source integrations with Amazon
|
3834
|
+
# S3][1].
|
3835
|
+
#
|
3836
|
+
#
|
3837
|
+
#
|
3838
|
+
# [1]: https://docs.aws.amazon.com/opensearch-service/latest/developerguide/direct-query-s3-creating.html
|
3816
3839
|
#
|
3817
3840
|
# @option params [required, String] :domain_name
|
3818
3841
|
# The name of the domain.
|
3819
3842
|
#
|
3820
3843
|
# @option params [required, String] :name
|
3821
|
-
# The name of the data source.
|
3844
|
+
# The name of the data source to modify.
|
3822
3845
|
#
|
3823
3846
|
# @option params [required, Types::DataSourceType] :data_source_type
|
3824
3847
|
# The type of data source.
|
3825
3848
|
#
|
3826
3849
|
# @option params [String] :description
|
3827
|
-
# A description of the data source.
|
3850
|
+
# A new description of the data source.
|
3828
3851
|
#
|
3829
3852
|
# @return [Types::UpdateDataSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3830
3853
|
#
|
@@ -4537,7 +4560,7 @@ module Aws::OpenSearchService
|
|
4537
4560
|
params: params,
|
4538
4561
|
config: config)
|
4539
4562
|
context[:gem_name] = 'aws-sdk-opensearchservice'
|
4540
|
-
context[:gem_version] = '1.
|
4563
|
+
context[:gem_version] = '1.34.0'
|
4541
4564
|
Seahorse::Client::Request.new(handlers, context)
|
4542
4565
|
end
|
4543
4566
|
|
@@ -99,11 +99,11 @@ module Aws::OpenSearchService
|
|
99
99
|
# Container for the parameters to the `AddDataSource` operation.
|
100
100
|
#
|
101
101
|
# @!attribute [rw] domain_name
|
102
|
-
# The name of the domain.
|
102
|
+
# The name of the domain to add the data source to.
|
103
103
|
# @return [String]
|
104
104
|
#
|
105
105
|
# @!attribute [rw] name
|
106
|
-
#
|
106
|
+
# A name for the data source.
|
107
107
|
# @return [String]
|
108
108
|
#
|
109
109
|
# @!attribute [rw] data_source_type
|
@@ -128,7 +128,7 @@ module Aws::OpenSearchService
|
|
128
128
|
# The result of an `AddDataSource` operation.
|
129
129
|
#
|
130
130
|
# @!attribute [rw] message
|
131
|
-
# A message associated with the data source.
|
131
|
+
# A message associated with creation of the data source.
|
132
132
|
# @return [String]
|
133
133
|
#
|
134
134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/AddDataSourceResponse AWS API Documentation
|
@@ -1488,7 +1488,7 @@ module Aws::OpenSearchService
|
|
1488
1488
|
include Aws::Structure
|
1489
1489
|
end
|
1490
1490
|
|
1491
|
-
# Details about
|
1491
|
+
# Details about a direct-query data source.
|
1492
1492
|
#
|
1493
1493
|
# @!attribute [rw] data_source_type
|
1494
1494
|
# The type of data source.
|
@@ -1512,14 +1512,14 @@ module Aws::OpenSearchService
|
|
1512
1512
|
include Aws::Structure
|
1513
1513
|
end
|
1514
1514
|
|
1515
|
-
#
|
1515
|
+
# The type of data source.
|
1516
1516
|
#
|
1517
1517
|
# @note DataSourceType is a union - when making an API calls you must set exactly one of the members.
|
1518
1518
|
#
|
1519
1519
|
# @note DataSourceType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataSourceType corresponding to the set member.
|
1520
1520
|
#
|
1521
1521
|
# @!attribute [rw] s3_glue_data_catalog
|
1522
|
-
#
|
1522
|
+
# An Amazon S3 data source.
|
1523
1523
|
# @return [Types::S3GlueDataCatalog]
|
1524
1524
|
#
|
1525
1525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DataSourceType AWS API Documentation
|
@@ -1542,7 +1542,7 @@ module Aws::OpenSearchService
|
|
1542
1542
|
# @return [String]
|
1543
1543
|
#
|
1544
1544
|
# @!attribute [rw] name
|
1545
|
-
# The name of the data source.
|
1545
|
+
# The name of the data source to delete.
|
1546
1546
|
# @return [String]
|
1547
1547
|
#
|
1548
1548
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDataSourceRequest AWS API Documentation
|
@@ -1557,7 +1557,7 @@ module Aws::OpenSearchService
|
|
1557
1557
|
# The result of a `GetDataSource` operation.
|
1558
1558
|
#
|
1559
1559
|
# @!attribute [rw] message
|
1560
|
-
# A message associated with the
|
1560
|
+
# A message associated with deletion of the data source.
|
1561
1561
|
# @return [String]
|
1562
1562
|
#
|
1563
1563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/DeleteDataSourceResponse AWS API Documentation
|
@@ -2614,18 +2614,11 @@ module Aws::OpenSearchService
|
|
2614
2614
|
# Specify the TLS security policy to apply to the HTTPS endpoint of
|
2615
2615
|
# the domain. The policy can be one of the following values:
|
2616
2616
|
#
|
2617
|
-
# * **Policy-Min-TLS-1-0-2019-07:** TLS security policy
|
2617
|
+
# * **Policy-Min-TLS-1-0-2019-07:** TLS security policy that supports
|
2618
2618
|
# TLS version 1.0 to TLS version 1.2
|
2619
2619
|
#
|
2620
|
-
# * **Policy-Min-TLS-1-2-2019-07:** TLS security policy
|
2620
|
+
# * **Policy-Min-TLS-1-2-2019-07:** TLS security policy that supports
|
2621
2621
|
# only TLS version 1.2
|
2622
|
-
#
|
2623
|
-
# * **Policy-Min-TLS-1-0-2023-10:** TLS security policy which supports
|
2624
|
-
# TLS version 1.0 to TLS version 1.3
|
2625
|
-
#
|
2626
|
-
# * **Policy-Min-TLS-1-2-2023-10:** TLS security policy which supports
|
2627
|
-
# TLS version 1.2 to TLS version 1.3 with perfect forward secrecy
|
2628
|
-
# cipher suites
|
2629
2622
|
# @return [String]
|
2630
2623
|
#
|
2631
2624
|
# @!attribute [rw] custom_endpoint_enabled
|
@@ -3334,7 +3327,7 @@ module Aws::OpenSearchService
|
|
3334
3327
|
# @return [String]
|
3335
3328
|
#
|
3336
3329
|
# @!attribute [rw] name
|
3337
|
-
# The name of the data source.
|
3330
|
+
# The name of the data source to get information about.
|
3338
3331
|
# @return [String]
|
3339
3332
|
#
|
3340
3333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/GetDataSourceRequest AWS API Documentation
|
@@ -3840,7 +3833,7 @@ module Aws::OpenSearchService
|
|
3840
3833
|
# The result of a `ListDataSources` operation.
|
3841
3834
|
#
|
3842
3835
|
# @!attribute [rw] data_sources
|
3843
|
-
# A list of
|
3836
|
+
# A list of data sources associated with specified domain.
|
3844
3837
|
# @return [Array<Types::DataSourceDetails>]
|
3845
3838
|
#
|
3846
3839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/ListDataSourcesResponse AWS API Documentation
|
@@ -5122,10 +5115,10 @@ module Aws::OpenSearchService
|
|
5122
5115
|
#
|
5123
5116
|
class RevokeVpcEndpointAccessResponse < Aws::EmptyStructure; end
|
5124
5117
|
|
5125
|
-
# Information about the
|
5118
|
+
# Information about the Amazon S3 Glue Data Catalog.
|
5126
5119
|
#
|
5127
5120
|
# @!attribute [rw] role_arn
|
5128
|
-
# The
|
5121
|
+
# >The Amazon Resource Name (ARN) for the S3 Glue Data Catalog.
|
5129
5122
|
# @return [String]
|
5130
5123
|
#
|
5131
5124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/S3GlueDataCatalog AWS API Documentation
|
@@ -5682,7 +5675,7 @@ module Aws::OpenSearchService
|
|
5682
5675
|
# @return [String]
|
5683
5676
|
#
|
5684
5677
|
# @!attribute [rw] name
|
5685
|
-
# The name of the data source.
|
5678
|
+
# The name of the data source to modify.
|
5686
5679
|
# @return [String]
|
5687
5680
|
#
|
5688
5681
|
# @!attribute [rw] data_source_type
|
@@ -5690,7 +5683,7 @@ module Aws::OpenSearchService
|
|
5690
5683
|
# @return [Types::DataSourceType]
|
5691
5684
|
#
|
5692
5685
|
# @!attribute [rw] description
|
5693
|
-
# A description of the data source.
|
5686
|
+
# A new description of the data source.
|
5694
5687
|
# @return [String]
|
5695
5688
|
#
|
5696
5689
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDataSourceRequest AWS API Documentation
|
@@ -5707,7 +5700,7 @@ module Aws::OpenSearchService
|
|
5707
5700
|
# The result of an `UpdateDataSource` operation.
|
5708
5701
|
#
|
5709
5702
|
# @!attribute [rw] message
|
5710
|
-
# A message associated with the data source.
|
5703
|
+
# A message associated with the updated data source.
|
5711
5704
|
# @return [String]
|
5712
5705
|
#
|
5713
5706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/opensearch-2021-01-01/UpdateDataSourceResponse AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-opensearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.34.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: 2023-
|
11
|
+
date: 2023-12-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|