aws-sdk-savingsplans 1.33.0 → 1.34.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: bc8694278a539d65e426748b2d8f9e9841e315023e9712d696d9e651da3641d7
4
- data.tar.gz: 6fbec1d7fb18b3635d37814c26b0e9fdda4d6ce05d8330eb4d75d4741e07089e
3
+ metadata.gz: c5a94e4afe1285c55317137d3b5a56f30f042e7c85f3ed7f2a475ead2353d4a2
4
+ data.tar.gz: f9614275432dcd9d5c4546c7e82359d5cc20f8c2b97a5e8efb8f629213e67ae5
5
5
  SHA512:
6
- metadata.gz: 6add8a1c57fdedac215d6787295123911bee875d9644aabe0a7da988e1303340eb8392e86edceff2570913827187271295478ba14735b717a6e3df3ea231baac
7
- data.tar.gz: 2059b24b2005c319e2a18de2c6af1f87f511b8aed697031c5652992963ba842775315d58452c8ddcac2359e067befd17321763fb187e97be66eaee238a646f22
6
+ metadata.gz: 8917dd4b1a6ec2e7b546a33f0ac171877e3fa884c5b0c984c61e2c9bd4d5c994b80910a58b3c973232f298fd932ecf53c490861518f3b324b2a984392107d517
7
+ data.tar.gz: 53977c24496fe523f7a8c9377aa89efe7e356ed338e277c34a84d71e9d14b1c8026ccd1f16e3a0e189154084377422830f7339470cffab64df0aa25a592f3a88
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2023-07-20)
5
+ ------------------
6
+
7
+ * Feature - Savings Plans endpoints update
8
+
4
9
  1.33.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -891,7 +891,7 @@ module Aws::SavingsPlans
891
891
  params: params,
892
892
  config: config)
893
893
  context[:gem_name] = 'aws-sdk-savingsplans'
894
- context[:gem_version] = '1.33.0'
894
+ context[:gem_version] = '1.34.0'
895
895
  Seahorse::Client::Request.new(handlers, context)
896
896
  end
897
897
 
@@ -14,60 +14,42 @@ module Aws::SavingsPlans
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: {})
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
26
20
  end
27
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
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.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
29
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
30
+ end
28
31
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
32
  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://savingsplans-fips.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
33
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
34
  end
32
35
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
36
  end
34
37
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
38
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
39
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
40
  end
38
41
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
42
  end
40
43
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
44
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
45
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
46
  end
44
47
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
48
  end
46
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
47
- end
48
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
49
- 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"))
50
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
51
- end
52
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
53
- end
54
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
55
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
56
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
57
- end
58
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
59
- end
60
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
61
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
62
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
63
- end
64
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
65
- end
66
- if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
67
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"savingsplans", "signingRegion"=>"us-east-1"}]})
49
+ return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
68
50
  end
69
- return Aws::Endpoints::Endpoint.new(url: "https://savingsplans.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
70
51
  end
52
+ raise ArgumentError, "Invalid Configuration: Missing Region"
71
53
  raise ArgumentError, 'No endpoint could be resolved'
72
54
 
73
55
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-savingsplans/customizations'
52
52
  # @!group service
53
53
  module Aws::SavingsPlans
54
54
 
55
- GEM_VERSION = '1.33.0'
55
+ GEM_VERSION = '1.34.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-savingsplans
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
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-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core