aws-sdk-ssm 1.219.0 → 1.220.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: faa5da8939812b311ea6f397d915d3f5ee0b5aa63c793a15da7d4aa9f7de88d9
4
- data.tar.gz: c010a515a3757c7c2986a8d7372af7bb60629d2390774e18c79ed8a5b7357b73
3
+ metadata.gz: 8ed4df49b0e175220e9b8934405fbed911435d766de7c2d454d1a8cc4550be2d
4
+ data.tar.gz: 7b7f718a7bf228991fc2550bea45dc776a218c74c7bc1f27081eb629fbd62c6d
5
5
  SHA512:
6
- metadata.gz: 4e5e271cf5b9c9c79b5f9819ab10f054d0b18c5f9de53fbdd832b5828aa667b16f5736151022fd74037b5541ee7627ffe420b43a01da62244aca9880fd302102
7
- data.tar.gz: c5552288b4b9f6527e40a1d16d75d7ab389ae6405aaa25188d50cb2e498af64f2c3a4da4ab6be7a995eea5f419e4589c3911543f8f213201dcb3f7dc24922100
6
+ metadata.gz: 5dcef0bba88b931548299074e79a18b9e70636a47ee724b26d837dc2e8ae70650ac3c2f187d9364c08a798b2eb493b4b72f139f42ce5c850c86203b22e4f80c4
7
+ data.tar.gz: 7f49694aee98a7e894b4b5dfcb726eb3faf77e041da51d3bd462ee02dd98816c3b0567c393fa4bf3432b88cc5c75d0e440f08a8d100d85cc0908decdcdc03551
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.220.0 (2026-07-21)
5
+ ------------------
6
+
7
+ * Feature - Added a WarningMessage field to Automation along with corresponding public documentation.
8
+
4
9
  1.219.0 (2026-07-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.219.0
1
+ 1.220.0
@@ -3549,6 +3549,7 @@ module Aws::SSM
3549
3549
  # resp.automation_execution_metadata_list[0].current_step_name #=> String
3550
3550
  # resp.automation_execution_metadata_list[0].current_action #=> String
3551
3551
  # resp.automation_execution_metadata_list[0].failure_message #=> String
3552
+ # resp.automation_execution_metadata_list[0].warning_message #=> String
3552
3553
  # resp.automation_execution_metadata_list[0].target_parameter_name #=> String
3553
3554
  # resp.automation_execution_metadata_list[0].targets #=> Array
3554
3555
  # resp.automation_execution_metadata_list[0].targets[0].key #=> String
@@ -3690,6 +3691,7 @@ module Aws::SSM
3690
3691
  # resp.step_executions[0].outputs["AutomationParameterKey"][0] #=> String
3691
3692
  # resp.step_executions[0].response #=> String
3692
3693
  # resp.step_executions[0].failure_message #=> String
3694
+ # resp.step_executions[0].warning_message #=> String
3693
3695
  # resp.step_executions[0].failure_details.failure_stage #=> String
3694
3696
  # resp.step_executions[0].failure_details.failure_type #=> String
3695
3697
  # resp.step_executions[0].failure_details.details #=> Hash
@@ -6002,6 +6004,7 @@ module Aws::SSM
6002
6004
  # resp.automation_execution.step_executions[0].outputs["AutomationParameterKey"][0] #=> String
6003
6005
  # resp.automation_execution.step_executions[0].response #=> String
6004
6006
  # resp.automation_execution.step_executions[0].failure_message #=> String
6007
+ # resp.automation_execution.step_executions[0].warning_message #=> String
6005
6008
  # resp.automation_execution.step_executions[0].failure_details.failure_stage #=> String
6006
6009
  # resp.automation_execution.step_executions[0].failure_details.failure_type #=> String
6007
6010
  # resp.automation_execution.step_executions[0].failure_details.details #=> Hash
@@ -6055,6 +6058,7 @@ module Aws::SSM
6055
6058
  # resp.automation_execution.outputs["AutomationParameterKey"] #=> Array
6056
6059
  # resp.automation_execution.outputs["AutomationParameterKey"][0] #=> String
6057
6060
  # resp.automation_execution.failure_message #=> String
6061
+ # resp.automation_execution.warning_message #=> String
6058
6062
  # resp.automation_execution.mode #=> String, one of "Auto", "Interactive"
6059
6063
  # resp.automation_execution.parent_automation_execution_id #=> String
6060
6064
  # resp.automation_execution.executed_by #=> String
@@ -14036,7 +14040,7 @@ module Aws::SSM
14036
14040
  tracer: tracer
14037
14041
  )
14038
14042
  context[:gem_name] = 'aws-sdk-ssm'
14039
- context[:gem_version] = '1.219.0'
14043
+ context[:gem_version] = '1.220.0'
14040
14044
  Seahorse::Client::Request.new(handlers, context)
14041
14045
  end
14042
14046
 
@@ -1612,6 +1612,7 @@ module Aws::SSM
1612
1612
  AutomationExecution.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
1613
1613
  AutomationExecution.add_member(:outputs, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Outputs"))
1614
1614
  AutomationExecution.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
1615
+ AutomationExecution.add_member(:warning_message, Shapes::ShapeRef.new(shape: String, location_name: "WarningMessage"))
1615
1616
  AutomationExecution.add_member(:mode, Shapes::ShapeRef.new(shape: ExecutionMode, location_name: "Mode"))
1616
1617
  AutomationExecution.add_member(:parent_automation_execution_id, Shapes::ShapeRef.new(shape: AutomationExecutionId, location_name: "ParentAutomationExecutionId"))
1617
1618
  AutomationExecution.add_member(:executed_by, Shapes::ShapeRef.new(shape: String, location_name: "ExecutedBy"))
@@ -1671,6 +1672,7 @@ module Aws::SSM
1671
1672
  AutomationExecutionMetadata.add_member(:current_step_name, Shapes::ShapeRef.new(shape: String, location_name: "CurrentStepName"))
1672
1673
  AutomationExecutionMetadata.add_member(:current_action, Shapes::ShapeRef.new(shape: String, location_name: "CurrentAction"))
1673
1674
  AutomationExecutionMetadata.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
1675
+ AutomationExecutionMetadata.add_member(:warning_message, Shapes::ShapeRef.new(shape: String, location_name: "WarningMessage"))
1674
1676
  AutomationExecutionMetadata.add_member(:target_parameter_name, Shapes::ShapeRef.new(shape: AutomationParameterKey, location_name: "TargetParameterName"))
1675
1677
  AutomationExecutionMetadata.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
1676
1678
  AutomationExecutionMetadata.add_member(:target_maps, Shapes::ShapeRef.new(shape: TargetMaps, location_name: "TargetMaps"))
@@ -4874,6 +4876,7 @@ module Aws::SSM
4874
4876
  StepExecution.add_member(:outputs, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Outputs"))
4875
4877
  StepExecution.add_member(:response, Shapes::ShapeRef.new(shape: String, location_name: "Response"))
4876
4878
  StepExecution.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
4879
+ StepExecution.add_member(:warning_message, Shapes::ShapeRef.new(shape: String, location_name: "WarningMessage"))
4877
4880
  StepExecution.add_member(:failure_details, Shapes::ShapeRef.new(shape: FailureDetails, location_name: "FailureDetails"))
4878
4881
  StepExecution.add_member(:step_execution_id, Shapes::ShapeRef.new(shape: String, location_name: "StepExecutionId"))
4879
4882
  StepExecution.add_member(:overridden_parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "OverriddenParameters"))
@@ -1296,6 +1296,11 @@ module Aws::SSM
1296
1296
  # set to Failed.
1297
1297
  # @return [String]
1298
1298
  #
1299
+ # @!attribute [rw] warning_message
1300
+ # A message that describes a non-critical issue that occurred during
1301
+ # the automation execution.
1302
+ # @return [String]
1303
+ #
1299
1304
  # @!attribute [rw] mode
1300
1305
  # The automation execution mode.
1301
1306
  # @return [String]
@@ -1424,6 +1429,7 @@ module Aws::SSM
1424
1429
  :parameters,
1425
1430
  :outputs,
1426
1431
  :failure_message,
1432
+ :warning_message,
1427
1433
  :mode,
1428
1434
  :parent_automation_execution_id,
1429
1435
  :executed_by,
@@ -1592,7 +1598,13 @@ module Aws::SSM
1592
1598
  # @return [String]
1593
1599
  #
1594
1600
  # @!attribute [rw] failure_message
1595
- # The list of execution outputs as defined in the Automation runbook.
1601
+ # A message that describes a failure that occurred during the
1602
+ # automation execution.
1603
+ # @return [String]
1604
+ #
1605
+ # @!attribute [rw] warning_message
1606
+ # A message that describes a non-critical issue that occurred during
1607
+ # the automation execution.
1596
1608
  # @return [String]
1597
1609
  #
1598
1610
  # @!attribute [rw] target_parameter_name
@@ -1704,6 +1716,7 @@ module Aws::SSM
1704
1716
  :current_step_name,
1705
1717
  :current_action,
1706
1718
  :failure_message,
1719
+ :warning_message,
1707
1720
  :target_parameter_name,
1708
1721
  :targets,
1709
1722
  :target_maps,
@@ -19332,6 +19345,12 @@ module Aws::SSM
19332
19345
  # If a step failed, this message explains why the execution failed.
19333
19346
  # @return [String]
19334
19347
  #
19348
+ # @!attribute [rw] warning_message
19349
+ # A message that describes a non-critical issue that occurred during
19350
+ # the step execution. Present only if the step status includes a
19351
+ # warning.
19352
+ # @return [String]
19353
+ #
19335
19354
  # @!attribute [rw] failure_details
19336
19355
  # Information about the Automation failure.
19337
19356
  # @return [Types::FailureDetails]
@@ -19399,6 +19418,7 @@ module Aws::SSM
19399
19418
  :outputs,
19400
19419
  :response,
19401
19420
  :failure_message,
19421
+ :warning_message,
19402
19422
  :failure_details,
19403
19423
  :step_execution_id,
19404
19424
  :overridden_parameters,
data/lib/aws-sdk-ssm.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::SSM
55
55
  autoload :EndpointProvider, 'aws-sdk-ssm/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ssm/endpoints'
57
57
 
58
- GEM_VERSION = '1.219.0'
58
+ GEM_VERSION = '1.220.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -287,6 +287,7 @@ module Aws::SSM
287
287
  attr_accessor parameters: ::Hash[::String, ::Array[::String]]
288
288
  attr_accessor outputs: ::Hash[::String, ::Array[::String]]
289
289
  attr_accessor failure_message: ::String
290
+ attr_accessor warning_message: ::String
290
291
  attr_accessor mode: ("Auto" | "Interactive")
291
292
  attr_accessor parent_automation_execution_id: ::String
292
293
  attr_accessor executed_by: ::String
@@ -350,6 +351,7 @@ module Aws::SSM
350
351
  attr_accessor current_step_name: ::String
351
352
  attr_accessor current_action: ::String
352
353
  attr_accessor failure_message: ::String
354
+ attr_accessor warning_message: ::String
353
355
  attr_accessor target_parameter_name: ::String
354
356
  attr_accessor targets: ::Array[Types::Target]
355
357
  attr_accessor target_maps: ::Array[::Hash[::String, ::Array[::String]]]
@@ -4238,6 +4240,7 @@ module Aws::SSM
4238
4240
  attr_accessor outputs: ::Hash[::String, ::Array[::String]]
4239
4241
  attr_accessor response: ::String
4240
4242
  attr_accessor failure_message: ::String
4243
+ attr_accessor warning_message: ::String
4241
4244
  attr_accessor failure_details: Types::FailureDetails
4242
4245
  attr_accessor step_execution_id: ::String
4243
4246
  attr_accessor overridden_parameters: ::Hash[::String, ::Array[::String]]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.219.0
4
+ version: 1.220.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services