aws-sdk-account 1.35.0 → 1.36.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: c6f9a9ba87d5202e25594c37843f7071d05f38e14c8a0842e7d4e887fe56fc30
4
- data.tar.gz: 8e5cc53469a83381588015586211fe6136037a03fa21ffb17b65d386caa21c8b
3
+ metadata.gz: d97b2fbd974703974dfb072ae3a4b2995a302241f016e3bd8b7fee20a30a41b2
4
+ data.tar.gz: 701eaaa0a04c9aa395a41d85022f8ed0047c1507e52496b5bedaae696a00c57a
5
5
  SHA512:
6
- metadata.gz: 956f651bb84ef6be4ff9512fb4976be38fcf199b9244ece9a44e19692fe7abfe4df97ee3cc8900309edc002afc1bec41a7cc13548c4107fe58704353c1f0df0a
7
- data.tar.gz: 8a3058c5daababdb1d4aa6c5c7ac0b97088ec7620f186e3e5a28bc67eacc48798ffaa26c4d9e52acb35424a33b7b220b2e58c7821de468721aaa18a63ddece18
6
+ metadata.gz: 7af15188d49abe387d73c3a06d060ea4ed3fcc4c37c5dd5bf488e556e37e394579e8eb43bd74deb6050b321861b72dc212d121e2065cf0468891e61fcb62bb79
7
+ data.tar.gz: 319f7decf3f9af6521e5108d2b18b00ace47d741d0b367ba3986d22db8163d9285626d3b06dc0834cc332dc0e9055b7beeae85d992bdec73d7aed723f909eebc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2024-12-17)
5
+ ------------------
6
+
7
+ * Feature - Update endpoint configuration.
8
+
4
9
  1.35.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.36.0
@@ -1318,7 +1318,7 @@ module Aws::Account
1318
1318
  tracer: tracer
1319
1319
  )
1320
1320
  context[:gem_name] = 'aws-sdk-account'
1321
- context[:gem_version] = '1.35.0'
1321
+ context[:gem_version] = '1.36.0'
1322
1322
  Seahorse::Client::Request.new(handlers, context)
1323
1323
  end
1324
1324
 
@@ -212,9 +212,11 @@ module Aws::Account
212
212
 
213
213
  api.metadata = {
214
214
  "apiVersion" => "2021-02-01",
215
+ "auth" => ["aws.auth#sigv4"],
215
216
  "endpointPrefix" => "account",
216
217
  "jsonVersion" => "1.1",
217
218
  "protocol" => "rest-json",
219
+ "protocols" => ["rest-json"],
218
220
  "serviceFullName" => "AWS Account",
219
221
  "serviceId" => "Account",
220
222
  "signatureVersion" => "v4",
@@ -10,11 +10,6 @@
10
10
  module Aws::Account
11
11
  # Endpoint parameters used to influence endpoints per request.
12
12
  #
13
- # @!attribute region
14
- # The AWS region used to dispatch the request.
15
- #
16
- # @return [String]
17
- #
18
13
  # @!attribute use_dual_stack
19
14
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
15
  #
@@ -30,39 +25,44 @@ module Aws::Account
30
25
  #
31
26
  # @return [String]
32
27
  #
28
+ # @!attribute region
29
+ # The AWS region used to dispatch the request.
30
+ #
31
+ # @return [String]
32
+ #
33
33
  EndpointParameters = Struct.new(
34
- :region,
35
34
  :use_dual_stack,
36
35
  :use_fips,
37
36
  :endpoint,
37
+ :region,
38
38
  ) do
39
39
  include Aws::Structure
40
40
 
41
41
  # @api private
42
42
  class << self
43
43
  PARAM_MAP = {
44
- 'Region' => :region,
45
44
  'UseDualStack' => :use_dual_stack,
46
45
  'UseFIPS' => :use_fips,
47
46
  'Endpoint' => :endpoint,
47
+ 'Region' => :region,
48
48
  }.freeze
49
49
  end
50
50
 
51
51
  def initialize(options = {})
52
- self[:region] = options[:region]
53
52
  self[:use_dual_stack] = options[:use_dual_stack]
54
53
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
54
  self[:use_fips] = options[:use_fips]
56
55
  self[:use_fips] = false if self[:use_fips].nil?
57
56
  self[:endpoint] = options[:endpoint]
57
+ self[:region] = options[:region]
58
58
  end
59
59
 
60
60
  def self.create(config, options={})
61
61
  new({
62
- region: config.region,
63
62
  use_dual_stack: config.use_dualstack_endpoint,
64
63
  use_fips: config.use_fips_endpoint,
65
64
  endpoint: (config.endpoint.to_s unless config.regional_endpoint),
65
+ region: config.region,
66
66
  }.merge(options))
67
67
  end
68
68
  end
@@ -10,10 +10,10 @@
10
10
  module Aws::Account
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
- region = parameters.region
14
13
  use_dual_stack = parameters.use_dual_stack
15
14
  use_fips = parameters.use_fips
16
15
  endpoint = parameters.endpoint
16
+ region = parameters.region
17
17
  if Aws::Endpoints::Matchers.set?(endpoint)
18
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
19
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
@@ -25,31 +25,25 @@ module Aws::Account
25
25
  end
26
26
  if Aws::Endpoints::Matchers.set?(region)
27
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://account.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"account", "signingRegion"=>"us-east-1"}]})
30
- end
31
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
32
- return Aws::Endpoints::Endpoint.new(url: "https://account.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"account", "signingRegion"=>"cn-northwest-1"}]})
33
- end
34
28
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
35
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"))
36
- return Aws::Endpoints::Endpoint.new(url: "https://account-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ return Aws::Endpoints::Endpoint.new(url: "https://account-fips.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
37
31
  end
38
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
39
33
  end
40
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, false)
41
35
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
42
- return Aws::Endpoints::Endpoint.new(url: "https://account-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ return Aws::Endpoints::Endpoint.new(url: "https://account-fips.#{partition_result['implicitGlobalRegion']}.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
43
37
  end
44
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
45
39
  end
46
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
47
41
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
48
- return Aws::Endpoints::Endpoint.new(url: "https://account.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ return Aws::Endpoints::Endpoint.new(url: "https://account.#{partition_result['implicitGlobalRegion']}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
49
43
  end
50
44
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
51
45
  end
52
- return Aws::Endpoints::Endpoint.new(url: "https://account.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
+ return Aws::Endpoints::Endpoint.new(url: "https://account.#{partition_result['implicitGlobalRegion']}.#{partition_result['dnsSuffix']}", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"#{partition_result['implicitGlobalRegion']}"}]})
53
47
  end
54
48
  end
55
49
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -54,7 +54,7 @@ module Aws::Account
54
54
  autoload :EndpointProvider, 'aws-sdk-account/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-account/endpoints'
56
56
 
57
- GEM_VERSION = '1.35.0'
57
+ GEM_VERSION = '1.36.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-account
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.36.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Account. This gem is part of the AWS SDK
48
48
  for Ruby.
49
49
  email: