aws-sdk-autoscalingplans 1.77.0 → 1.78.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: 374435cffa6fe2c8caf8ae868a5440d8c95f33f66ff3a013add5796f99c7c189
4
- data.tar.gz: c73cc99583f1af59fe5cb899b12f261f0abcd0cf3839ad86bd63e20d8d17139f
3
+ metadata.gz: 9855b9fc22d2c1926134b368d41f75cb718ca4836b574680e8ade0c5e31bf5ea
4
+ data.tar.gz: c8ea824bcb0717f3089e275b0fd51012eee72ebf94675d1e914960c88a4edf51
5
5
  SHA512:
6
- metadata.gz: f1f38628ad0fbf49f3c0ad239e38b2d809784cd5732fda8f1032dc7e13a5589966733f49df53c877c12880feaa951e68765c0e1a7ca87b284e6f1496c49d4ce1
7
- data.tar.gz: 96e9f3434849c4d1dd8cefa7b09f2da44d2f8829819509d73a888228ee77097194e4f8496505062a67b54bc63aba4a150e0a418eda6cb57955e9410694a64958
6
+ metadata.gz: 814aece1da4c630b09b3ac405803133ae4ff0dcf55b984d339067481075854f2458367eda600c5e298a24841a6c0296d30f08ef0969e029e58f8cd923282e6eb
7
+ data.tar.gz: 4916fbf55974ab406b0be160fe74cb0ef292af4f8349c88ff4fda47a19ed54808dcd71c4e1f95154af52feae738797d82eee2248f67f56fe11c681cf1b478923
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2025-10-16)
5
+ ------------------
6
+
7
+ * Feature - Updated FIPS endpoints for US GovCloud regions
8
+
4
9
  1.77.0 (2025-08-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -1035,7 +1035,7 @@ module Aws::AutoScalingPlans
1035
1035
  tracer: tracer
1036
1036
  )
1037
1037
  context[:gem_name] = 'aws-sdk-autoscalingplans'
1038
- context[:gem_version] = '1.77.0'
1038
+ context[:gem_version] = '1.78.0'
1039
1039
  Seahorse::Client::Request.new(handlers, context)
1040
1040
  end
1041
1041
 
@@ -13,22 +13,22 @@ module Aws::AutoScalingPlans
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -29,6 +29,12 @@ module Aws::AutoScalingPlans
29
29
  end
30
30
  if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
31
31
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
32
+ if Aws::Endpoints::Matchers.string_equals?(parameters.region, "us-gov-east-1")
33
+ return Aws::Endpoints::Endpoint.new(url: "https://autoscaling-plans.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
34
+ end
35
+ if Aws::Endpoints::Matchers.string_equals?(parameters.region, "us-gov-west-1")
36
+ return Aws::Endpoints::Endpoint.new(url: "https://autoscaling-plans.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
37
+ end
32
38
  return Aws::Endpoints::Endpoint.new(url: "https://autoscaling-plans-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
39
  end
34
40
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -54,7 +54,7 @@ module Aws::AutoScalingPlans
54
54
  autoload :EndpointProvider, 'aws-sdk-autoscalingplans/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-autoscalingplans/endpoints'
56
56
 
57
- GEM_VERSION = '1.77.0'
57
+ GEM_VERSION = '1.78.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-autoscalingplans
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services