aws-sdk-elasticsearchservice 1.51.0 → 1.52.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: bd807e2e181aeb033d1ab33498731ab9d173fc70fad708322bc771a4ab05534f
4
- data.tar.gz: 8555353bbe76e7b2d9ae60ccd88b799672f0dbe6fc7ad3617b479cc7ad6be1f8
3
+ metadata.gz: a0471e2b9c956dd818a3390fbad6cf66ffb4e55d469de15d28354b5b25b3107d
4
+ data.tar.gz: 32379c78b06a7885abca8597981856024baa605c58ccadf1ce0e58a9bc5cc77f
5
5
  SHA512:
6
- metadata.gz: 71be2f31dd2d19c5d99a2e2576913bb9fefb74732c9752f8c17d447d875be191f79f9a141e9f5e11758fc7636286286d162fe42564d21687982cf69f1cd77d12
7
- data.tar.gz: 7e4cbd6e62ff5abecc42a2a6f7a4fd8e4d9a88f3f4d694d590347effc3381e9776caaf53f9a1f22967c657bcbfba0544d1ce2dadf3b562e17dbe7c99e5c7ee93
6
+ metadata.gz: 99316a61d26f3467984ac877f76f1def1a5510e9dfeb73cada9bc2c4e4e755284b97ab3652671ddace267cd6060cc71c7227a472b612fde6a08d49421e36b5e1
7
+ data.tar.gz: e02ecc89b539164075e74cac035517551cd36a6071b21ff762075bff1e43f67198b2060869c3027a7d5cec383d21d452373354f438e4a16c702db86da549578d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2021-05-14)
5
+ ------------------
6
+
7
+ * Feature - Adds support for cold storage.
8
+
4
9
  1.51.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.52.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ElasticsearchService
50
50
 
51
- GEM_VERSION = '1.51.0'
51
+ GEM_VERSION = '1.52.0'
52
52
 
53
53
  end
@@ -587,6 +587,9 @@ module Aws::ElasticsearchService
587
587
  # warm_enabled: false,
588
588
  # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
589
589
  # warm_count: 1,
590
+ # cold_storage_options: {
591
+ # enabled: false, # required
592
+ # },
590
593
  # },
591
594
  # ebs_options: {
592
595
  # ebs_enabled: false,
@@ -696,6 +699,7 @@ module Aws::ElasticsearchService
696
699
  # resp.domain_status.elasticsearch_cluster_config.warm_enabled #=> Boolean
697
700
  # resp.domain_status.elasticsearch_cluster_config.warm_type #=> String, one of "ultrawarm1.medium.elasticsearch", "ultrawarm1.large.elasticsearch"
698
701
  # resp.domain_status.elasticsearch_cluster_config.warm_count #=> Integer
702
+ # resp.domain_status.elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
699
703
  # resp.domain_status.ebs_options.ebs_enabled #=> Boolean
700
704
  # resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
701
705
  # resp.domain_status.ebs_options.volume_size #=> Integer
@@ -900,6 +904,7 @@ module Aws::ElasticsearchService
900
904
  # resp.domain_status.elasticsearch_cluster_config.warm_enabled #=> Boolean
901
905
  # resp.domain_status.elasticsearch_cluster_config.warm_type #=> String, one of "ultrawarm1.medium.elasticsearch", "ultrawarm1.large.elasticsearch"
902
906
  # resp.domain_status.elasticsearch_cluster_config.warm_count #=> Integer
907
+ # resp.domain_status.elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
903
908
  # resp.domain_status.ebs_options.ebs_enabled #=> Boolean
904
909
  # resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
905
910
  # resp.domain_status.ebs_options.volume_size #=> Integer
@@ -1170,6 +1175,7 @@ module Aws::ElasticsearchService
1170
1175
  # resp.domain_status.elasticsearch_cluster_config.warm_enabled #=> Boolean
1171
1176
  # resp.domain_status.elasticsearch_cluster_config.warm_type #=> String, one of "ultrawarm1.medium.elasticsearch", "ultrawarm1.large.elasticsearch"
1172
1177
  # resp.domain_status.elasticsearch_cluster_config.warm_count #=> Integer
1178
+ # resp.domain_status.elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
1173
1179
  # resp.domain_status.ebs_options.ebs_enabled #=> Boolean
1174
1180
  # resp.domain_status.ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
1175
1181
  # resp.domain_status.ebs_options.volume_size #=> Integer
@@ -1261,6 +1267,7 @@ module Aws::ElasticsearchService
1261
1267
  # resp.domain_config.elasticsearch_cluster_config.options.warm_enabled #=> Boolean
1262
1268
  # resp.domain_config.elasticsearch_cluster_config.options.warm_type #=> String, one of "ultrawarm1.medium.elasticsearch", "ultrawarm1.large.elasticsearch"
1263
1269
  # resp.domain_config.elasticsearch_cluster_config.options.warm_count #=> Integer
1270
+ # resp.domain_config.elasticsearch_cluster_config.options.cold_storage_options.enabled #=> Boolean
1264
1271
  # resp.domain_config.elasticsearch_cluster_config.status.creation_date #=> Time
1265
1272
  # resp.domain_config.elasticsearch_cluster_config.status.update_date #=> Time
1266
1273
  # resp.domain_config.elasticsearch_cluster_config.status.update_version #=> Integer
@@ -1421,6 +1428,7 @@ module Aws::ElasticsearchService
1421
1428
  # resp.domain_status_list[0].elasticsearch_cluster_config.warm_enabled #=> Boolean
1422
1429
  # resp.domain_status_list[0].elasticsearch_cluster_config.warm_type #=> String, one of "ultrawarm1.medium.elasticsearch", "ultrawarm1.large.elasticsearch"
1423
1430
  # resp.domain_status_list[0].elasticsearch_cluster_config.warm_count #=> Integer
1431
+ # resp.domain_status_list[0].elasticsearch_cluster_config.cold_storage_options.enabled #=> Boolean
1424
1432
  # resp.domain_status_list[0].ebs_options.ebs_enabled #=> Boolean
1425
1433
  # resp.domain_status_list[0].ebs_options.volume_type #=> String, one of "standard", "gp2", "io1"
1426
1434
  # resp.domain_status_list[0].ebs_options.volume_size #=> Integer
@@ -2483,6 +2491,9 @@ module Aws::ElasticsearchService
2483
2491
  # warm_enabled: false,
2484
2492
  # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
2485
2493
  # warm_count: 1,
2494
+ # cold_storage_options: {
2495
+ # enabled: false, # required
2496
+ # },
2486
2497
  # },
2487
2498
  # ebs_options: {
2488
2499
  # ebs_enabled: false,
@@ -2582,6 +2593,7 @@ module Aws::ElasticsearchService
2582
2593
  # resp.domain_config.elasticsearch_cluster_config.options.warm_enabled #=> Boolean
2583
2594
  # resp.domain_config.elasticsearch_cluster_config.options.warm_type #=> String, one of "ultrawarm1.medium.elasticsearch", "ultrawarm1.large.elasticsearch"
2584
2595
  # resp.domain_config.elasticsearch_cluster_config.options.warm_count #=> Integer
2596
+ # resp.domain_config.elasticsearch_cluster_config.options.cold_storage_options.enabled #=> Boolean
2585
2597
  # resp.domain_config.elasticsearch_cluster_config.status.creation_date #=> Time
2586
2598
  # resp.domain_config.elasticsearch_cluster_config.status.update_date #=> Time
2587
2599
  # resp.domain_config.elasticsearch_cluster_config.status.update_version #=> Integer
@@ -2810,7 +2822,7 @@ module Aws::ElasticsearchService
2810
2822
  params: params,
2811
2823
  config: config)
2812
2824
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2813
- context[:gem_version] = '1.51.0'
2825
+ context[:gem_version] = '1.52.0'
2814
2826
  Seahorse::Client::Request.new(handlers, context)
2815
2827
  end
2816
2828
 
@@ -50,6 +50,7 @@ module Aws::ElasticsearchService
50
50
  CloudWatchLogsLogGroupArn = Shapes::StringShape.new(name: 'CloudWatchLogsLogGroupArn')
51
51
  CognitoOptions = Shapes::StructureShape.new(name: 'CognitoOptions')
52
52
  CognitoOptionsStatus = Shapes::StructureShape.new(name: 'CognitoOptionsStatus')
53
+ ColdStorageOptions = Shapes::StructureShape.new(name: 'ColdStorageOptions')
53
54
  CommitMessage = Shapes::StringShape.new(name: 'CommitMessage')
54
55
  CompatibleElasticsearchVersionsList = Shapes::ListShape.new(name: 'CompatibleElasticsearchVersionsList')
55
56
  CompatibleVersionsMap = Shapes::StructureShape.new(name: 'CompatibleVersionsMap')
@@ -402,6 +403,9 @@ module Aws::ElasticsearchService
402
403
  CognitoOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
403
404
  CognitoOptionsStatus.struct_class = Types::CognitoOptionsStatus
404
405
 
406
+ ColdStorageOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
407
+ ColdStorageOptions.struct_class = Types::ColdStorageOptions
408
+
405
409
  CompatibleElasticsearchVersionsList.member = Shapes::ShapeRef.new(shape: CompatibleVersionsMap)
406
410
 
407
411
  CompatibleVersionsMap.add_member(:source_version, Shapes::ShapeRef.new(shape: ElasticsearchVersionString, location_name: "SourceVersion"))
@@ -633,6 +637,7 @@ module Aws::ElasticsearchService
633
637
  ElasticsearchClusterConfig.add_member(:warm_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "WarmEnabled"))
634
638
  ElasticsearchClusterConfig.add_member(:warm_type, Shapes::ShapeRef.new(shape: ESWarmPartitionInstanceType, location_name: "WarmType"))
635
639
  ElasticsearchClusterConfig.add_member(:warm_count, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "WarmCount"))
640
+ ElasticsearchClusterConfig.add_member(:cold_storage_options, Shapes::ShapeRef.new(shape: ColdStorageOptions, location_name: "ColdStorageOptions"))
636
641
  ElasticsearchClusterConfig.struct_class = Types::ElasticsearchClusterConfig
637
642
 
638
643
  ElasticsearchClusterConfigStatus.add_member(:options, Shapes::ShapeRef.new(shape: ElasticsearchClusterConfig, required: true, location_name: "Options"))
@@ -2,7 +2,7 @@
2
2
  # WARNING ABOUT GENERATED CODE
3
3
  #
4
4
  # This file is generated. See the contributing for info on making contributions:
5
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
6
6
  #
7
7
  # WARNING ABOUT GENERATED CODE
8
8
 
@@ -669,6 +669,25 @@ module Aws::ElasticsearchService
669
669
  include Aws::Structure
670
670
  end
671
671
 
672
+ # Specifies settings for cold storage.
673
+ #
674
+ # @note When making an API call, you may pass ColdStorageOptions
675
+ # data as a hash:
676
+ #
677
+ # {
678
+ # enabled: false, # required
679
+ # }
680
+ #
681
+ # @!attribute [rw] enabled
682
+ # True to enable cold storage for an Elasticsearch domain.
683
+ # @return [Boolean]
684
+ #
685
+ class ColdStorageOptions < Struct.new(
686
+ :enabled)
687
+ SENSITIVE = []
688
+ include Aws::Structure
689
+ end
690
+
672
691
  # A map from an ` ElasticsearchVersion ` to a list of compatible `
673
692
  # ElasticsearchVersion ` s to which the domain can be upgraded.
674
693
  #
@@ -711,6 +730,9 @@ module Aws::ElasticsearchService
711
730
  # warm_enabled: false,
712
731
  # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
713
732
  # warm_count: 1,
733
+ # cold_storage_options: {
734
+ # enabled: false, # required
735
+ # },
714
736
  # },
715
737
  # ebs_options: {
716
738
  # ebs_enabled: false,
@@ -2066,6 +2088,9 @@ module Aws::ElasticsearchService
2066
2088
  # warm_enabled: false,
2067
2089
  # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
2068
2090
  # warm_count: 1,
2091
+ # cold_storage_options: {
2092
+ # enabled: false, # required
2093
+ # },
2069
2094
  # }
2070
2095
  #
2071
2096
  # @!attribute [rw] instance_type
@@ -2121,6 +2146,11 @@ module Aws::ElasticsearchService
2121
2146
  # The number of warm nodes in the cluster.
2122
2147
  # @return [Integer]
2123
2148
  #
2149
+ # @!attribute [rw] cold_storage_options
2150
+ # Specifies the `ColdStorageOptions` configuration for an
2151
+ # Elasticsearch domain.
2152
+ # @return [Types::ColdStorageOptions]
2153
+ #
2124
2154
  class ElasticsearchClusterConfig < Struct.new(
2125
2155
  :instance_type,
2126
2156
  :instance_count,
@@ -2131,7 +2161,8 @@ module Aws::ElasticsearchService
2131
2161
  :dedicated_master_count,
2132
2162
  :warm_enabled,
2133
2163
  :warm_type,
2134
- :warm_count)
2164
+ :warm_count,
2165
+ :cold_storage_options)
2135
2166
  SENSITIVE = []
2136
2167
  include Aws::Structure
2137
2168
  end
@@ -4122,6 +4153,9 @@ module Aws::ElasticsearchService
4122
4153
  # warm_enabled: false,
4123
4154
  # warm_type: "ultrawarm1.medium.elasticsearch", # accepts ultrawarm1.medium.elasticsearch, ultrawarm1.large.elasticsearch
4124
4155
  # warm_count: 1,
4156
+ # cold_storage_options: {
4157
+ # enabled: false, # required
4158
+ # },
4125
4159
  # },
4126
4160
  # ebs_options: {
4127
4161
  # ebs_enabled: false,
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.51.0
4
+ version: 1.52.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-elasticsearchservice
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-elasticsearchservice/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticsearchservice
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticsearchservice/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon Elasticsearch Service