aws-sdk-iam 1.111.0 → 1.113.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: cbadd50bcb611f3bbf995824d91765b1afc94f2312727caa8b283ff339ef6cc4
4
- data.tar.gz: ddbb28256d03a6f4668c8f7f779fdc30aa2fe99ff12ecbb0b802b153cbfa85aa
3
+ metadata.gz: 044a889bbe9f1f7bcff5480da70a2b1a1df0a140d615a71f5feef664ceaaf938
4
+ data.tar.gz: 3c0c6a170629d2c7a28f5cfe1b28da9447d7047cf472c74007736ae2db4eb1ab
5
5
  SHA512:
6
- metadata.gz: 0bca841fa135077da2161c67ce8e068e20c91373c79cbf3fe26a18990151ab47ffc6e1297946cda32e939c2dc76245840bc44be49e8a82ba3e50f0ba6a74e1b1
7
- data.tar.gz: 42f00c2233601ff517ffbe4ad2c3f6189e391544f229ddc88dcfc5188d949d82565b3b32547417e7ac01fce3d86172d5f8e5e9158f0c88e49595426ea0c5b924
6
+ metadata.gz: ad1d377488bfb60448110ce608082211e3c8def8d519ac07cb32a8099c0b442a475bb0d3130e752db51e3ed2bfbce2d11be6b9672e484a7d7274a26ceedbb5d5
7
+ data.tar.gz: 1951251d3d1624be86f35f65270aafa6b11f66999fc64b438b7bdd8fc57c3667bd78710ad95b990de0626c1c8add331a9ad711065e270094223a94f4d31cc628
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.113.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.112.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.111.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.111.0
1
+ 1.113.0
@@ -33,7 +33,7 @@ module Aws::IAM
33
33
  # Specifies whether IAM user passwords must contain at least one of the
34
34
  # following symbols:
35
35
  #
36
- # ! @ # $ % ^ & * ( ) \_ + - = \[ \] \\\{ \\} \| '
36
+ # ! @ # $ % ^ & * ( ) \_ + - = \[ \] \{ } \| '
37
37
  # @return [Boolean]
38
38
  def require_symbols
39
39
  data[:require_symbols]
@@ -275,7 +275,7 @@ module Aws::IAM
275
275
  # Specifies whether IAM user passwords must contain at least one of the
276
276
  # following non-alphanumeric characters:
277
277
  #
278
- # ! @ # $ % ^ & * ( ) \_ + - = \[ \] \\\{ \\} \| '
278
+ # ! @ # $ % ^ & * ( ) \_ + - = \[ \] \{ } \| '
279
279
  #
280
280
  # If you do not specify a value for this parameter, then the operation
281
281
  # uses the default value of `false`. The result is that passwords do not
@@ -12176,7 +12176,7 @@ module Aws::IAM
12176
12176
  # Specifies whether IAM user passwords must contain at least one of the
12177
12177
  # following non-alphanumeric characters:
12178
12178
  #
12179
- # ! @ # $ % ^ & * ( ) \_ + - = \[ \] \\\{ \\} \| '
12179
+ # ! @ # $ % ^ & * ( ) \_ + - = \[ \] \{ } \| '
12180
12180
  #
12181
12181
  # If you do not specify a value for this parameter, then the operation
12182
12182
  # uses the default value of `false`. The result is that passwords do not
@@ -13537,7 +13537,7 @@ module Aws::IAM
13537
13537
  tracer: tracer
13538
13538
  )
13539
13539
  context[:gem_name] = 'aws-sdk-iam'
13540
- context[:gem_version] = '1.111.0'
13540
+ context[:gem_version] = '1.113.0'
13541
13541
  Seahorse::Client::Request.new(handlers, context)
13542
13542
  end
13543
13543
 
@@ -52,15 +52,18 @@ module Aws::IAM
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  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
55
  self[:use_fips] = options[:use_fips]
59
56
  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
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end