aws-sdk-elasticsearchservice 1.69.0 → 1.70.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: 30077958b312345c6d4e0b9cbed8f9e36de1f6ada3134629b77a5d4cbfdc8868
4
- data.tar.gz: fd6e76061ee55d9171e05706c5416a1e4433d670e72015710cee1c156fccfe27
3
+ metadata.gz: 833dda2f668ea042974648183265b51b31adc0a02ea8a65925a1670d223d1303
4
+ data.tar.gz: eb1ded7e1c865aec83cacfe8ae3ec317169decad3b31840dbd1edc87ec41f750
5
5
  SHA512:
6
- metadata.gz: 70e67fd02d20e38733e806c194d6cb6e9cba8a7daadc949eb3792dec68e90c2a20dd02bf4d2c7e8803f12dbe17d692d5fd4d62a949c0e5ccad7b63deb9872494
7
- data.tar.gz: ab6c4160f15177b796cd8162b8968ccaff88e3f69ba0889d73e739121c1627ea03cedb7a6921fe8d0adcb443c8fbc5832022a9251ba759d9f71b3eede6dfeded
6
+ metadata.gz: 8d38798a839f740a37a927afda14f98e42c7865f918a92e9b65fb08aea54f47df6c606581e10b4bfdfaa53732ca17817b86a1fbbbe2e28c09ed93bc4d9a802f2
7
+ data.tar.gz: 90db7395a557a7ce97d29a5c33b220e79755eaefb0b5304faa9a48a05689d95e35289a3ce24dd36447d42ab5795991d0025c814b6b5a80f925a7a36ee0df246e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2023-05-11)
5
+ ------------------
6
+
7
+ * Feature - This release fixes DescribePackages API error with null filter value parameter.
8
+
4
9
  1.69.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.69.0
1
+ 1.70.0
@@ -3297,7 +3297,7 @@ module Aws::ElasticsearchService
3297
3297
  params: params,
3298
3298
  config: config)
3299
3299
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
3300
- context[:gem_version] = '1.69.0'
3300
+ context[:gem_version] = '1.70.0'
3301
3301
  Seahorse::Client::Request.new(handlers, context)
3302
3302
  end
3303
3303
 
@@ -14,36 +14,39 @@ module Aws::ElasticsearchService
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://es-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://es-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://es.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://es-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://es-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://es.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://es.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://es.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -1490,7 +1490,7 @@ module Aws::ElasticsearchService
1490
1490
  # @return [String]
1491
1491
  #
1492
1492
  # @!attribute [rw] value
1493
- # A list of values for the specified field.
1493
+ # A non-empty list of values for the specified field.
1494
1494
  # @return [Array<String>]
1495
1495
  #
1496
1496
  class DescribePackagesFilter < Struct.new(
@@ -2196,7 +2196,7 @@ module Aws::ElasticsearchService
2196
2196
  #
2197
2197
  # @!attribute [rw] endpoints
2198
2198
  # Map containing the Elasticsearch domain endpoints used to submit
2199
- # index and search requests. Example `key, value`\:
2199
+ # index and search requests. Example `key, value`:
2200
2200
  # `'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'`.
2201
2201
  # @return [Hash<String,String>]
2202
2202
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ElasticsearchService
54
54
 
55
- GEM_VERSION = '1.69.0'
55
+ GEM_VERSION = '1.70.0'
56
56
 
57
57
  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.69.0
4
+ version: 1.70.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-01-18 00:00:00.000000000 Z
11
+ date: 2023-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core