aws-sdk-elasticsearchservice 1.63.0 → 1.66.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43e248b0bf82d5b728e691743cb483c376d7acb9abc22b1d5feef4def5fbaf9a
|
4
|
+
data.tar.gz: 1ad05336024ecdc9ad7b1815b6bbd81d4431ec505140625c6eceea6723e65770
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d146384f72f1a75aa68674820dc7d1a110866873ce8919ef3ebd784e1962bab650e31d5174f5c3b56f2eb422c76b26dfc74168956c71f2329129c5bf34a9c409
|
7
|
+
data.tar.gz: e1b2099c4bcce81ee7b37421f541e180b7d4fb4632621be1e9cd27d746ed795a0e2cef97a68c072f743f04cd3adec2181e3f2b13d3f2e7f3a8a1004d3bfe39fb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.66.0 (2022-07-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for gp3 EBS (Elastic Block Store) storage.
|
8
|
+
|
9
|
+
1.65.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.64.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.63.0 (2022-02-02)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.66.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::ElasticsearchService
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -613,9 +617,10 @@ module Aws::ElasticsearchService
|
|
613
617
|
# },
|
614
618
|
# ebs_options: {
|
615
619
|
# ebs_enabled: false,
|
616
|
-
# volume_type: "standard", # accepts standard, gp2, io1
|
620
|
+
# volume_type: "standard", # accepts standard, gp2, io1, gp3
|
617
621
|
# volume_size: 1,
|
618
622
|
# iops: 1,
|
623
|
+
# throughput: 1,
|
619
624
|
# },
|
620
625
|
# access_policies: "PolicyDocument",
|
621
626
|
# snapshot_options: {
|
@@ -722,9 +727,10 @@ module Aws::ElasticsearchService
|
|
722
727
|
# resp.domain_status.elasticsearch_cluster_config.warm_count #=> Integer
|
723
728
|
# resp.domain_status.elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
|
724
729
|
# resp.domain_status.ebs_options.ebs_enabled #=> Boolean
|
725
|
-
# resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
|
730
|
+
# resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
|
726
731
|
# resp.domain_status.ebs_options.volume_size #=> Integer
|
727
732
|
# resp.domain_status.ebs_options.iops #=> Integer
|
733
|
+
# resp.domain_status.ebs_options.throughput #=> Integer
|
728
734
|
# resp.domain_status.access_policies #=> String
|
729
735
|
# resp.domain_status.snapshot_options.automated_snapshot_start_hour #=> Integer
|
730
736
|
# resp.domain_status.vpc_options.vpc_id #=> String
|
@@ -931,9 +937,10 @@ module Aws::ElasticsearchService
|
|
931
937
|
# resp.domain_status.elasticsearch_cluster_config.warm_count #=> Integer
|
932
938
|
# resp.domain_status.elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
|
933
939
|
# resp.domain_status.ebs_options.ebs_enabled #=> Boolean
|
934
|
-
# resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
|
940
|
+
# resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
|
935
941
|
# resp.domain_status.ebs_options.volume_size #=> Integer
|
936
942
|
# resp.domain_status.ebs_options.iops #=> Integer
|
943
|
+
# resp.domain_status.ebs_options.throughput #=> Integer
|
937
944
|
# resp.domain_status.access_policies #=> String
|
938
945
|
# resp.domain_status.snapshot_options.automated_snapshot_start_hour #=> Integer
|
939
946
|
# resp.domain_status.vpc_options.vpc_id #=> String
|
@@ -1251,9 +1258,10 @@ module Aws::ElasticsearchService
|
|
1251
1258
|
# resp.domain_status.elasticsearch_cluster_config.warm_count #=> Integer
|
1252
1259
|
# resp.domain_status.elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
|
1253
1260
|
# resp.domain_status.ebs_options.ebs_enabled #=> Boolean
|
1254
|
-
# resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
|
1261
|
+
# resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
|
1255
1262
|
# resp.domain_status.ebs_options.volume_size #=> Integer
|
1256
1263
|
# resp.domain_status.ebs_options.iops #=> Integer
|
1264
|
+
# resp.domain_status.ebs_options.throughput #=> Integer
|
1257
1265
|
# resp.domain_status.access_policies #=> String
|
1258
1266
|
# resp.domain_status.snapshot_options.automated_snapshot_start_hour #=> Integer
|
1259
1267
|
# resp.domain_status.vpc_options.vpc_id #=> String
|
@@ -1352,9 +1360,10 @@ module Aws::ElasticsearchService
|
|
1352
1360
|
# resp.domain_config.elasticsearch_cluster_config.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
1353
1361
|
# resp.domain_config.elasticsearch_cluster_config.status.pending_deletion #=> Boolean
|
1354
1362
|
# resp.domain_config.ebs_options.options.ebs_enabled #=> Boolean
|
1355
|
-
# resp.domain_config.ebs_options.options.volume_type #=> String, one of "standard", "gp2", "io1"
|
1363
|
+
# resp.domain_config.ebs_options.options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
|
1356
1364
|
# resp.domain_config.ebs_options.options.volume_size #=> Integer
|
1357
1365
|
# resp.domain_config.ebs_options.options.iops #=> Integer
|
1366
|
+
# resp.domain_config.ebs_options.options.throughput #=> Integer
|
1358
1367
|
# resp.domain_config.ebs_options.status.creation_date #=> Time
|
1359
1368
|
# resp.domain_config.ebs_options.status.update_date #=> Time
|
1360
1369
|
# resp.domain_config.ebs_options.status.update_version #=> Integer
|
@@ -1512,9 +1521,10 @@ module Aws::ElasticsearchService
|
|
1512
1521
|
# resp.domain_status_list[0].elasticsearch_cluster_config.warm_count #=> Integer
|
1513
1522
|
# resp.domain_status_list[0].elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
|
1514
1523
|
# resp.domain_status_list[0].ebs_options.ebs_enabled #=> Boolean
|
1515
|
-
# resp.domain_status_list[0].ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
|
1524
|
+
# resp.domain_status_list[0].ebs_options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
|
1516
1525
|
# resp.domain_status_list[0].ebs_options.volume_size #=> Integer
|
1517
1526
|
# resp.domain_status_list[0].ebs_options.iops #=> Integer
|
1527
|
+
# resp.domain_status_list[0].ebs_options.throughput #=> Integer
|
1518
1528
|
# resp.domain_status_list[0].access_policies #=> String
|
1519
1529
|
# resp.domain_status_list[0].snapshot_options.automated_snapshot_start_hour #=> Integer
|
1520
1530
|
# resp.domain_status_list[0].vpc_options.vpc_id #=> String
|
@@ -2603,9 +2613,10 @@ module Aws::ElasticsearchService
|
|
2603
2613
|
# },
|
2604
2614
|
# ebs_options: {
|
2605
2615
|
# ebs_enabled: false,
|
2606
|
-
# volume_type: "standard", # accepts standard, gp2, io1
|
2616
|
+
# volume_type: "standard", # accepts standard, gp2, io1, gp3
|
2607
2617
|
# volume_size: 1,
|
2608
2618
|
# iops: 1,
|
2619
|
+
# throughput: 1,
|
2609
2620
|
# },
|
2610
2621
|
# snapshot_options: {
|
2611
2622
|
# automated_snapshot_start_hour: 1,
|
@@ -2708,9 +2719,10 @@ module Aws::ElasticsearchService
|
|
2708
2719
|
# resp.domain_config.elasticsearch_cluster_config.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
|
2709
2720
|
# resp.domain_config.elasticsearch_cluster_config.status.pending_deletion #=> Boolean
|
2710
2721
|
# resp.domain_config.ebs_options.options.ebs_enabled #=> Boolean
|
2711
|
-
# resp.domain_config.ebs_options.options.volume_type #=> String, one of "standard", "gp2", "io1"
|
2722
|
+
# resp.domain_config.ebs_options.options.volume_type #=> String, one of "standard", "gp2", "io1", "gp3"
|
2712
2723
|
# resp.domain_config.ebs_options.options.volume_size #=> Integer
|
2713
2724
|
# resp.domain_config.ebs_options.options.iops #=> Integer
|
2725
|
+
# resp.domain_config.ebs_options.options.throughput #=> Integer
|
2714
2726
|
# resp.domain_config.ebs_options.status.creation_date #=> Time
|
2715
2727
|
# resp.domain_config.ebs_options.status.update_date #=> Time
|
2716
2728
|
# resp.domain_config.ebs_options.status.update_version #=> Integer
|
@@ -2939,7 +2951,7 @@ module Aws::ElasticsearchService
|
|
2939
2951
|
params: params,
|
2940
2952
|
config: config)
|
2941
2953
|
context[:gem_name] = 'aws-sdk-elasticsearchservice'
|
2942
|
-
context[:gem_version] = '1.
|
2954
|
+
context[:gem_version] = '1.66.0'
|
2943
2955
|
Seahorse::Client::Request.new(handlers, context)
|
2944
2956
|
end
|
2945
2957
|
|
@@ -675,6 +675,7 @@ module Aws::ElasticsearchService
|
|
675
675
|
EBSOptions.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "VolumeType"))
|
676
676
|
EBSOptions.add_member(:volume_size, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "VolumeSize"))
|
677
677
|
EBSOptions.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "Iops"))
|
678
|
+
EBSOptions.add_member(:throughput, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "Throughput"))
|
678
679
|
EBSOptions.struct_class = Types::EBSOptions
|
679
680
|
|
680
681
|
EBSOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: EBSOptions, required: true, location_name: "Options"))
|
@@ -849,9 +849,10 @@ module Aws::ElasticsearchService
|
|
849
849
|
# },
|
850
850
|
# ebs_options: {
|
851
851
|
# ebs_enabled: false,
|
852
|
-
# volume_type: "standard", # accepts standard, gp2, io1
|
852
|
+
# volume_type: "standard", # accepts standard, gp2, io1, gp3
|
853
853
|
# volume_size: 1,
|
854
854
|
# iops: 1,
|
855
|
+
# throughput: 1,
|
855
856
|
# },
|
856
857
|
# access_policies: "PolicyDocument",
|
857
858
|
# snapshot_options: {
|
@@ -2205,9 +2206,10 @@ module Aws::ElasticsearchService
|
|
2205
2206
|
#
|
2206
2207
|
# {
|
2207
2208
|
# ebs_enabled: false,
|
2208
|
-
# volume_type: "standard", # accepts standard, gp2, io1
|
2209
|
+
# volume_type: "standard", # accepts standard, gp2, io1, gp3
|
2209
2210
|
# volume_size: 1,
|
2210
2211
|
# iops: 1,
|
2212
|
+
# throughput: 1,
|
2211
2213
|
# }
|
2212
2214
|
#
|
2213
2215
|
# @!attribute [rw] ebs_enabled
|
@@ -2223,14 +2225,19 @@ module Aws::ElasticsearchService
|
|
2223
2225
|
# @return [Integer]
|
2224
2226
|
#
|
2225
2227
|
# @!attribute [rw] iops
|
2226
|
-
# Specifies the
|
2228
|
+
# Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
|
2229
|
+
# @return [Integer]
|
2230
|
+
#
|
2231
|
+
# @!attribute [rw] throughput
|
2232
|
+
# Specifies the Throughput for GP3 EBS volume (SSD).
|
2227
2233
|
# @return [Integer]
|
2228
2234
|
#
|
2229
2235
|
class EBSOptions < Struct.new(
|
2230
2236
|
:ebs_enabled,
|
2231
2237
|
:volume_type,
|
2232
2238
|
:volume_size,
|
2233
|
-
:iops
|
2239
|
+
:iops,
|
2240
|
+
:throughput)
|
2234
2241
|
SENSITIVE = []
|
2235
2242
|
include Aws::Structure
|
2236
2243
|
end
|
@@ -4275,7 +4282,8 @@ module Aws::ElasticsearchService
|
|
4275
4282
|
# storageSubType, in case of "ebs" storageType we will have
|
4276
4283
|
# following valid storageSubTypes 1. standard
|
4277
4284
|
# 2. gp2
|
4278
|
-
# 3.
|
4285
|
+
# 3. gp3
|
4286
|
+
# 4. io1
|
4279
4287
|
#
|
4280
4288
|
# Refer `VolumeType` for more information regarding above EBS storage
|
4281
4289
|
# options.
|
@@ -4302,6 +4310,8 @@ module Aws::ElasticsearchService
|
|
4302
4310
|
# 2. MaximumVolumeSize
|
4303
4311
|
# 3. MaximumIops
|
4304
4312
|
# 4. MinimumIops
|
4313
|
+
# 5. MaximumThroughput
|
4314
|
+
# 6. MinimumThroughput
|
4305
4315
|
# @return [String]
|
4306
4316
|
#
|
4307
4317
|
# @!attribute [rw] limit_values
|
@@ -4372,9 +4382,10 @@ module Aws::ElasticsearchService
|
|
4372
4382
|
# },
|
4373
4383
|
# ebs_options: {
|
4374
4384
|
# ebs_enabled: false,
|
4375
|
-
# volume_type: "standard", # accepts standard, gp2, io1
|
4385
|
+
# volume_type: "standard", # accepts standard, gp2, io1, gp3
|
4376
4386
|
# volume_size: 1,
|
4377
4387
|
# iops: 1,
|
4388
|
+
# throughput: 1,
|
4378
4389
|
# },
|
4379
4390
|
# snapshot_options: {
|
4380
4391
|
# automated_snapshot_start_hour: 1,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticsearchservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.66.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-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|