aws-sdk-ssm 1.17.0 → 1.18.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 +4 -4
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +11 -1
- data/lib/aws-sdk-ssm/client_api.rb +8 -0
- data/lib/aws-sdk-ssm/types.rb +36 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61669e1ffc44f501f8fa68d5483abd705ee33cea
|
4
|
+
data.tar.gz: 16a245e245126129b9f4472176a8592829fc3547
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62a44e2e57832a5eb49f316f2fecf25424111cbbbd1528d0c1e776a7148e750763aff4431e6da948baa5bedaa037f708c78dfae4bf8581fc956628d396878970
|
7
|
+
data.tar.gz: 3f689f1f8790ba2043e71ccfc141de253873eae3608b430174c5af5162613b764bdc36a91e658c7cb73ea491f7208a4ca42fe936938d3e81458124e0845cbefe
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -1758,6 +1758,11 @@ module Aws::SSM
|
|
1758
1758
|
# resp.step_executions[0].overridden_parameters #=> Hash
|
1759
1759
|
# resp.step_executions[0].overridden_parameters["AutomationParameterKey"] #=> Array
|
1760
1760
|
# resp.step_executions[0].overridden_parameters["AutomationParameterKey"][0] #=> String
|
1761
|
+
# resp.step_executions[0].is_end #=> Boolean
|
1762
|
+
# resp.step_executions[0].next_step #=> String
|
1763
|
+
# resp.step_executions[0].is_critical #=> Boolean
|
1764
|
+
# resp.step_executions[0].valid_next_steps #=> Array
|
1765
|
+
# resp.step_executions[0].valid_next_steps[0] #=> String
|
1761
1766
|
# resp.next_token #=> String
|
1762
1767
|
#
|
1763
1768
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationStepExecutions AWS API Documentation
|
@@ -3057,6 +3062,11 @@ module Aws::SSM
|
|
3057
3062
|
# resp.automation_execution.step_executions[0].overridden_parameters #=> Hash
|
3058
3063
|
# resp.automation_execution.step_executions[0].overridden_parameters["AutomationParameterKey"] #=> Array
|
3059
3064
|
# resp.automation_execution.step_executions[0].overridden_parameters["AutomationParameterKey"][0] #=> String
|
3065
|
+
# resp.automation_execution.step_executions[0].is_end #=> Boolean
|
3066
|
+
# resp.automation_execution.step_executions[0].next_step #=> String
|
3067
|
+
# resp.automation_execution.step_executions[0].is_critical #=> Boolean
|
3068
|
+
# resp.automation_execution.step_executions[0].valid_next_steps #=> Array
|
3069
|
+
# resp.automation_execution.step_executions[0].valid_next_steps[0] #=> String
|
3060
3070
|
# resp.automation_execution.step_executions_truncated #=> Boolean
|
3061
3071
|
# resp.automation_execution.parameters #=> Hash
|
3062
3072
|
# resp.automation_execution.parameters["AutomationParameterKey"] #=> Array
|
@@ -6795,7 +6805,7 @@ module Aws::SSM
|
|
6795
6805
|
params: params,
|
6796
6806
|
config: config)
|
6797
6807
|
context[:gem_name] = 'aws-sdk-ssm'
|
6798
|
-
context[:gem_version] = '1.
|
6808
|
+
context[:gem_version] = '1.18.0'
|
6799
6809
|
Seahorse::Client::Request.new(handlers, context)
|
6800
6810
|
end
|
6801
6811
|
|
@@ -807,6 +807,8 @@ module Aws::SSM
|
|
807
807
|
UpdatePatchBaselineRequest = Shapes::StructureShape.new(name: 'UpdatePatchBaselineRequest')
|
808
808
|
UpdatePatchBaselineResult = Shapes::StructureShape.new(name: 'UpdatePatchBaselineResult')
|
809
809
|
Url = Shapes::StringShape.new(name: 'Url')
|
810
|
+
ValidNextStep = Shapes::StringShape.new(name: 'ValidNextStep')
|
811
|
+
ValidNextStepList = Shapes::ListShape.new(name: 'ValidNextStepList')
|
810
812
|
Version = Shapes::StringShape.new(name: 'Version')
|
811
813
|
|
812
814
|
AccountIdList.member = Shapes::ShapeRef.new(shape: AccountId)
|
@@ -2702,6 +2704,10 @@ module Aws::SSM
|
|
2702
2704
|
StepExecution.add_member(:failure_details, Shapes::ShapeRef.new(shape: FailureDetails, location_name: "FailureDetails"))
|
2703
2705
|
StepExecution.add_member(:step_execution_id, Shapes::ShapeRef.new(shape: String, location_name: "StepExecutionId"))
|
2704
2706
|
StepExecution.add_member(:overridden_parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "OverriddenParameters"))
|
2707
|
+
StepExecution.add_member(:is_end, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsEnd", metadata: {"box"=>true}))
|
2708
|
+
StepExecution.add_member(:next_step, Shapes::ShapeRef.new(shape: String, location_name: "NextStep", metadata: {"box"=>true}))
|
2709
|
+
StepExecution.add_member(:is_critical, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsCritical", metadata: {"box"=>true}))
|
2710
|
+
StepExecution.add_member(:valid_next_steps, Shapes::ShapeRef.new(shape: ValidNextStepList, location_name: "ValidNextSteps"))
|
2705
2711
|
StepExecution.struct_class = Types::StepExecution
|
2706
2712
|
|
2707
2713
|
StepExecutionFilter.add_member(:key, Shapes::ShapeRef.new(shape: StepExecutionFilterKey, required: true, location_name: "Key"))
|
@@ -2880,6 +2886,8 @@ module Aws::SSM
|
|
2880
2886
|
UpdatePatchBaselineResult.add_member(:sources, Shapes::ShapeRef.new(shape: PatchSourceList, location_name: "Sources"))
|
2881
2887
|
UpdatePatchBaselineResult.struct_class = Types::UpdatePatchBaselineResult
|
2882
2888
|
|
2889
|
+
ValidNextStepList.member = Shapes::ShapeRef.new(shape: ValidNextStep)
|
2890
|
+
|
2883
2891
|
|
2884
2892
|
# @api private
|
2885
2893
|
API = Seahorse::Model::Api.new.tap do |api|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -11073,6 +11073,37 @@ module Aws::SSM
|
|
11073
11073
|
# step.
|
11074
11074
|
# @return [Hash<String,Array<String>>]
|
11075
11075
|
#
|
11076
|
+
# @!attribute [rw] is_end
|
11077
|
+
# Enable this option to stop an Automation execution at the end of a
|
11078
|
+
# specific step. The Automation execution stops if the step execution
|
11079
|
+
# failed or succeeded.
|
11080
|
+
# @return [Boolean]
|
11081
|
+
#
|
11082
|
+
# @!attribute [rw] next_step
|
11083
|
+
# Specifies which step in an Automation to process next after
|
11084
|
+
# successfully completing a step.
|
11085
|
+
# @return [String]
|
11086
|
+
#
|
11087
|
+
# @!attribute [rw] is_critical
|
11088
|
+
# Enable this option to designate a step as critical for the
|
11089
|
+
# successful completion of the Automation. If a step with this
|
11090
|
+
# designation fails, then Automation reports the final status of the
|
11091
|
+
# Automation as Failed.
|
11092
|
+
# @return [Boolean]
|
11093
|
+
#
|
11094
|
+
# @!attribute [rw] valid_next_steps
|
11095
|
+
# ValidNextSteps offer different strategies for managing an Automation
|
11096
|
+
# workflow when a step finishes. Automation dynamically processes
|
11097
|
+
# ValidNextSteps when a step is completed. For example, you can
|
11098
|
+
# specify `Abort` to stop the Automation when a step fails or
|
11099
|
+
# `Continue` to ignore the failure of the current step and allow
|
11100
|
+
# Automation to continue processing the next step. You can also
|
11101
|
+
# specify `step:step_name ` to jump to a designated step after a step
|
11102
|
+
# succeeds. The result of the current step dynamically determines the
|
11103
|
+
# ValidNextSteps. If a step finishes and no ValidNextStep is
|
11104
|
+
# designated, then the Automation stops.
|
11105
|
+
# @return [Array<String>]
|
11106
|
+
#
|
11076
11107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StepExecution AWS API Documentation
|
11077
11108
|
#
|
11078
11109
|
class StepExecution < Struct.new(
|
@@ -11091,7 +11122,11 @@ module Aws::SSM
|
|
11091
11122
|
:failure_message,
|
11092
11123
|
:failure_details,
|
11093
11124
|
:step_execution_id,
|
11094
|
-
:overridden_parameters
|
11125
|
+
:overridden_parameters,
|
11126
|
+
:is_end,
|
11127
|
+
:next_step,
|
11128
|
+
:is_critical,
|
11129
|
+
:valid_next_steps)
|
11095
11130
|
include Aws::Structure
|
11096
11131
|
end
|
11097
11132
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.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: 2018-07-
|
11
|
+
date: 2018-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|