aws-sdk-account 1.34.0 → 1.36.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: 451e958749f56ad3f3dc15b773dc2af1e572a82fa6444bc22165dca6e1567ebd
4
- data.tar.gz: da4d33de14b334b8ab2b9170ab3b3ab86e524d7c373a7f84ad6146a4f3517b4e
3
+ metadata.gz: d97b2fbd974703974dfb072ae3a4b2995a302241f016e3bd8b7fee20a30a41b2
4
+ data.tar.gz: 701eaaa0a04c9aa395a41d85022f8ed0047c1507e52496b5bedaae696a00c57a
5
5
  SHA512:
6
- metadata.gz: 6b9f1ab86184c5bb0366d8e704b9ed8c92a2b28c999353a6d2a211321eaa5c30e32368081b253cc51b59835e96a0b477259525f6afce9a39521d1373a953b7fd
7
- data.tar.gz: 7f0997de00fd9bbeee631e8524c14519aab518f576c38bef10f9dad6d8b743055da6fd6277b76f790443fd062b448941acf5be788862706c994d685f6e4dbbb5
6
+ metadata.gz: 7af15188d49abe387d73c3a06d060ea4ed3fcc4c37c5dd5bf488e556e37e394579e8eb43bd74deb6050b321861b72dc212d121e2065cf0468891e61fcb62bb79
7
+ data.tar.gz: 319f7decf3f9af6521e5108d2b18b00ace47d741d0b367ba3986d22db8163d9285626d3b06dc0834cc332dc0e9055b7beeae85d992bdec73d7aed723f909eebc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2024-12-17)
5
+ ------------------
6
+
7
+ * Feature - Update endpoint configuration.
8
+
9
+ 1.35.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.34.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.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.34.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,37 +25,45 @@ 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
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
54
  self[:use_fips] = options[:use_fips]
59
55
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
56
  self[:endpoint] = options[:endpoint]
57
+ self[:region] = options[:region]
58
+ end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ use_dual_stack: config.use_dualstack_endpoint,
63
+ use_fips: config.use_fips_endpoint,
64
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
65
+ region: config.region,
66
+ }.merge(options))
64
67
  end
65
68
  end
66
69
  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"
@@ -12,137 +12,9 @@ module Aws::Account
12
12
  # @api private
13
13
  module Endpoints
14
14
 
15
- class AcceptPrimaryEmailUpdate
16
- def self.build(context)
17
- Aws::Account::EndpointParameters.new(
18
- region: context.config.region,
19
- use_dual_stack: context.config.use_dualstack_endpoint,
20
- use_fips: context.config.use_fips_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
22
- )
23
- end
24
- end
25
-
26
- class DeleteAlternateContact
27
- def self.build(context)
28
- Aws::Account::EndpointParameters.new(
29
- region: context.config.region,
30
- use_dual_stack: context.config.use_dualstack_endpoint,
31
- use_fips: context.config.use_fips_endpoint,
32
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
33
- )
34
- end
35
- end
36
-
37
- class DisableRegion
38
- def self.build(context)
39
- Aws::Account::EndpointParameters.new(
40
- region: context.config.region,
41
- use_dual_stack: context.config.use_dualstack_endpoint,
42
- use_fips: context.config.use_fips_endpoint,
43
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
- )
45
- end
46
- end
47
-
48
- class EnableRegion
49
- def self.build(context)
50
- Aws::Account::EndpointParameters.new(
51
- region: context.config.region,
52
- use_dual_stack: context.config.use_dualstack_endpoint,
53
- use_fips: context.config.use_fips_endpoint,
54
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
55
- )
56
- end
57
- end
58
-
59
- class GetAlternateContact
60
- def self.build(context)
61
- Aws::Account::EndpointParameters.new(
62
- region: context.config.region,
63
- use_dual_stack: context.config.use_dualstack_endpoint,
64
- use_fips: context.config.use_fips_endpoint,
65
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
66
- )
67
- end
68
- end
69
-
70
- class GetContactInformation
71
- def self.build(context)
72
- Aws::Account::EndpointParameters.new(
73
- region: context.config.region,
74
- use_dual_stack: context.config.use_dualstack_endpoint,
75
- use_fips: context.config.use_fips_endpoint,
76
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
77
- )
78
- end
79
- end
80
15
 
81
- class GetPrimaryEmail
82
- def self.build(context)
83
- Aws::Account::EndpointParameters.new(
84
- region: context.config.region,
85
- use_dual_stack: context.config.use_dualstack_endpoint,
86
- use_fips: context.config.use_fips_endpoint,
87
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
88
- )
89
- end
16
+ def self.parameters_for_operation(context)
17
+ Aws::Account::EndpointParameters.create(context.config)
90
18
  end
91
-
92
- class GetRegionOptStatus
93
- def self.build(context)
94
- Aws::Account::EndpointParameters.new(
95
- region: context.config.region,
96
- use_dual_stack: context.config.use_dualstack_endpoint,
97
- use_fips: context.config.use_fips_endpoint,
98
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
99
- )
100
- end
101
- end
102
-
103
- class ListRegions
104
- def self.build(context)
105
- Aws::Account::EndpointParameters.new(
106
- region: context.config.region,
107
- use_dual_stack: context.config.use_dualstack_endpoint,
108
- use_fips: context.config.use_fips_endpoint,
109
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
110
- )
111
- end
112
- end
113
-
114
- class PutAlternateContact
115
- def self.build(context)
116
- Aws::Account::EndpointParameters.new(
117
- region: context.config.region,
118
- use_dual_stack: context.config.use_dualstack_endpoint,
119
- use_fips: context.config.use_fips_endpoint,
120
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
121
- )
122
- end
123
- end
124
-
125
- class PutContactInformation
126
- def self.build(context)
127
- Aws::Account::EndpointParameters.new(
128
- region: context.config.region,
129
- use_dual_stack: context.config.use_dualstack_endpoint,
130
- use_fips: context.config.use_fips_endpoint,
131
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
132
- )
133
- end
134
- end
135
-
136
- class StartPrimaryEmailUpdate
137
- def self.build(context)
138
- Aws::Account::EndpointParameters.new(
139
- region: context.config.region,
140
- use_dual_stack: context.config.use_dualstack_endpoint,
141
- use_fips: context.config.use_fips_endpoint,
142
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
143
- )
144
- end
145
- end
146
-
147
19
  end
148
20
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::Account::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,35 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :accept_primary_email_update
74
- Aws::Account::Endpoints::AcceptPrimaryEmailUpdate.build(context)
75
- when :delete_alternate_contact
76
- Aws::Account::Endpoints::DeleteAlternateContact.build(context)
77
- when :disable_region
78
- Aws::Account::Endpoints::DisableRegion.build(context)
79
- when :enable_region
80
- Aws::Account::Endpoints::EnableRegion.build(context)
81
- when :get_alternate_contact
82
- Aws::Account::Endpoints::GetAlternateContact.build(context)
83
- when :get_contact_information
84
- Aws::Account::Endpoints::GetContactInformation.build(context)
85
- when :get_primary_email
86
- Aws::Account::Endpoints::GetPrimaryEmail.build(context)
87
- when :get_region_opt_status
88
- Aws::Account::Endpoints::GetRegionOptStatus.build(context)
89
- when :list_regions
90
- Aws::Account::Endpoints::ListRegions.build(context)
91
- when :put_alternate_contact
92
- Aws::Account::Endpoints::PutAlternateContact.build(context)
93
- when :put_contact_information
94
- Aws::Account::Endpoints::PutContactInformation.build(context)
95
- when :start_primary_email_update
96
- Aws::Account::Endpoints::StartPrimaryEmailUpdate.build(context)
97
- end
98
- end
99
70
  end
100
71
 
101
72
  def add_handlers(handlers, _config)
@@ -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.34.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.34.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-09-24 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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.207.0
22
+ version: 3.210.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
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: