aws-sdk-ssm 1.182.0 → 1.184.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: 73601a72f726f74d3da1ee25d8253f9fe3e37c6552cf441bc59830121c905212
4
- data.tar.gz: 198c819d56cf7dd14f90fa0d6c50df18016e5d96a1ac0b09f17360e3e78d4906
3
+ metadata.gz: b4bdc98aab3b1aedc53585b2712a3ae982bcc2d595510af60fcaf465315ab30e
4
+ data.tar.gz: 7aa9105169832fc160f5a1659a825f7980e0072a1c1dcad21434e2620a4aa309
5
5
  SHA512:
6
- metadata.gz: e92e8f58b743f7893be488d89e6ed05bfd3288939e2fa5f2518d829e2048dad53ee2aede8433f4e519f5dc7aa0ba4505640aa9fc5b2e63af4431916448175d1f
7
- data.tar.gz: 16ad03714e4b4a09dc4730cb79e1af387c65f78516a4d431cc5c67b2f3f463e41c8664e40850ae52e30dd2f23b00ec90d8bb0e4f169fb30fd807d49c06561585
6
+ metadata.gz: 7a7b87295e768e2008cf48f0985403f0299312f0ae653f65089332f254650d20641ebc97fc0b307a56bb229cb24da6535cb6570d15a3299116d798dd09667f3e
7
+ data.tar.gz: 8410ebfa89550acbac9d925d37dd65d0b2c5f3d6db7d6af22c4a4321c822a28787788b6cda0953b38b875c58b4d90a73a55be743f97c325f170b005282fa2f9b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.184.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.183.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.182.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.182.0
1
+ 1.184.0
@@ -5104,7 +5104,7 @@ module Aws::SSM
5104
5104
  #
5105
5105
  # **If you filter the response by using the OperationalData operator,
5106
5106
  # specify a key-value pair by using the following JSON format:
5107
- # \\\{"key":"key\_name","value":"a\_value"\\}
5107
+ # \{"key":"key\_name","value":"a\_value"}
5108
5108
  #
5109
5109
  # @option params [Integer] :max_results
5110
5110
  # The maximum number of items to return for this call. The call also
@@ -9056,8 +9056,8 @@ module Aws::SSM
9056
9056
  # value limit of 8 KB.
9057
9057
  #
9058
9058
  # <note markdown="1"> Parameters can't be referenced or nested in the values of other
9059
- # parameters. You can't include `\{\{\}\}` or
9060
- # `\{\{ssm:parameter-name\}\}` in a parameter value.
9059
+ # parameters. You can't include `{{}}` or `{{ssm:parameter-name}}` in a
9060
+ # parameter value.
9061
9061
  #
9062
9062
  # </note>
9063
9063
  #
@@ -10912,7 +10912,7 @@ module Aws::SSM
10912
10912
  # The parameters you want to update for the association. If you create a
10913
10913
  # parameter using Parameter Store, a capability of Amazon Web Services
10914
10914
  # Systems Manager, you can reference the parameter using
10915
- # `\{\{ssm:parameter-name\}\}`.
10915
+ # `{{ssm:parameter-name}}`.
10916
10916
  #
10917
10917
  # @option params [String] :document_version
10918
10918
  # The document version you want update for the association.
@@ -12805,7 +12805,7 @@ module Aws::SSM
12805
12805
  tracer: tracer
12806
12806
  )
12807
12807
  context[:gem_name] = 'aws-sdk-ssm'
12808
- context[:gem_version] = '1.182.0'
12808
+ context[:gem_version] = '1.184.0'
12809
12809
  Seahorse::Client::Request.new(handlers, context)
12810
12810
  end
12811
12811
 
@@ -52,15 +52,18 @@ module Aws::SSM
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