aws-sdk-elasticsearchservice 1.46.0 → 1.47.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: 7fa83ca0de550bdaa4626470abda0f9d5dbedfcb971db3b8817150afc1b5cfaa
4
- data.tar.gz: ec6a6fee1d8b498b912159be72625e1f59394fec372f029c3f9557c9508a9fff
3
+ metadata.gz: d28a244b7cb0d0a55048400f5cd9706f03b73e090a40fc9221ee5ec815ceba6a
4
+ data.tar.gz: 32e97eb2c9d9c19260283288317b6ca3c3c51f91895da5e40c6694e4cd48e231
5
5
  SHA512:
6
- metadata.gz: '08dbb0e11e7c6d2e9df98c1fd9183d8151f48a9199e3e520cc427a486cc338b015f8a18ed980223c5d287b5ef20e577bb0b5dd660e302fd66ee967b794f8887a'
7
- data.tar.gz: 939648b0d67ae9798665e9cb6cdce5be27665d4ee321cb6db8f5078d5bd9df8646df67931f1be4160816a34c970af091b96d270fb55b15d6e71879db40925b68
6
+ metadata.gz: f40137a5636bba1c04d1df0a376b39897d445e9b920c178f88086c4a3bea8b50cbd1a4a240e8e193484822ba6f01538c4d8dc5a9132d2fcf4c58347914dbbd15
7
+ data.tar.gz: 20f3d9366f614ddce25e0e0a51b978f763617eecd65f14156a775f74d69b45bb6bcd0f2da005ad3150713d1fd16e4739e38e15b29cf937667498afd2d8eb6e5e
@@ -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.46.0'
51
+ GEM_VERSION = '1.47.0'
52
52
 
53
53
  end
@@ -2360,6 +2360,12 @@ module Aws::ElasticsearchService
2360
2360
  # @option params [Types::AdvancedSecurityOptionsInput] :advanced_security_options
2361
2361
  # Specifies advanced security options.
2362
2362
  #
2363
+ # @option params [Types::NodeToNodeEncryptionOptions] :node_to_node_encryption_options
2364
+ # Specifies the NodeToNodeEncryptionOptions.
2365
+ #
2366
+ # @option params [Types::EncryptionAtRestOptions] :encryption_at_rest_options
2367
+ # Specifies the Encryption At Rest Options.
2368
+ #
2363
2369
  # @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2364
2370
  #
2365
2371
  # * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
@@ -2439,6 +2445,13 @@ module Aws::ElasticsearchService
2439
2445
  # session_timeout_minutes: 1,
2440
2446
  # },
2441
2447
  # },
2448
+ # node_to_node_encryption_options: {
2449
+ # enabled: false,
2450
+ # },
2451
+ # encryption_at_rest_options: {
2452
+ # enabled: false,
2453
+ # kms_key_id: "KmsKeyId",
2454
+ # },
2442
2455
  # })
2443
2456
  #
2444
2457
  # @example Response structure
@@ -2674,7 +2687,7 @@ module Aws::ElasticsearchService
2674
2687
  params: params,
2675
2688
  config: config)
2676
2689
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2677
- context[:gem_version] = '1.46.0'
2690
+ context[:gem_version] = '1.47.0'
2678
2691
  Seahorse::Client::Request.new(handlers, context)
2679
2692
  end
2680
2693
 
@@ -946,6 +946,8 @@ module Aws::ElasticsearchService
946
946
  UpdateElasticsearchDomainConfigRequest.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
947
947
  UpdateElasticsearchDomainConfigRequest.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
948
948
  UpdateElasticsearchDomainConfigRequest.add_member(:advanced_security_options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptionsInput, location_name: "AdvancedSecurityOptions"))
949
+ UpdateElasticsearchDomainConfigRequest.add_member(:node_to_node_encryption_options, Shapes::ShapeRef.new(shape: NodeToNodeEncryptionOptions, location_name: "NodeToNodeEncryptionOptions"))
950
+ UpdateElasticsearchDomainConfigRequest.add_member(:encryption_at_rest_options, Shapes::ShapeRef.new(shape: EncryptionAtRestOptions, location_name: "EncryptionAtRestOptions"))
949
951
  UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
950
952
 
951
953
  UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
@@ -3745,6 +3745,13 @@ module Aws::ElasticsearchService
3745
3745
  # session_timeout_minutes: 1,
3746
3746
  # },
3747
3747
  # },
3748
+ # node_to_node_encryption_options: {
3749
+ # enabled: false,
3750
+ # },
3751
+ # encryption_at_rest_options: {
3752
+ # enabled: false,
3753
+ # kms_key_id: "KmsKeyId",
3754
+ # },
3748
3755
  # }
3749
3756
  #
3750
3757
  # @!attribute [rw] domain_name
@@ -3814,6 +3821,14 @@ module Aws::ElasticsearchService
3814
3821
  # Specifies advanced security options.
3815
3822
  # @return [Types::AdvancedSecurityOptionsInput]
3816
3823
  #
3824
+ # @!attribute [rw] node_to_node_encryption_options
3825
+ # Specifies the NodeToNodeEncryptionOptions.
3826
+ # @return [Types::NodeToNodeEncryptionOptions]
3827
+ #
3828
+ # @!attribute [rw] encryption_at_rest_options
3829
+ # Specifies the Encryption At Rest Options.
3830
+ # @return [Types::EncryptionAtRestOptions]
3831
+ #
3817
3832
  class UpdateElasticsearchDomainConfigRequest < Struct.new(
3818
3833
  :domain_name,
3819
3834
  :elasticsearch_cluster_config,
@@ -3825,7 +3840,9 @@ module Aws::ElasticsearchService
3825
3840
  :access_policies,
3826
3841
  :log_publishing_options,
3827
3842
  :domain_endpoint_options,
3828
- :advanced_security_options)
3843
+ :advanced_security_options,
3844
+ :node_to_node_encryption_options,
3845
+ :encryption_at_rest_options)
3829
3846
  SENSITIVE = []
3830
3847
  include Aws::Structure
3831
3848
  end
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.46.0
4
+ version: 1.47.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: 2020-11-09 00:00:00.000000000 Z
11
+ date: 2021-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core