aws-sdk-ssm 1.118.0 → 1.119.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: 5f2c9ad0c2c8f2ccd8f0f2b0a662de7ed68180c15651bed937b8b46a53b64a1e
4
- data.tar.gz: 9cca567ef67161d21a7c543f46d78beb567c0bb58cd37d5d5bd9310c9d8851e6
3
+ metadata.gz: 05df3c1668305e9acefd6f26060a7c526c2eaec6de2764f850bb2b7313e7e733
4
+ data.tar.gz: b78da0284dffcc95e4211b5d874146cf933ee429105fbbf52b3777e146ab80d5
5
5
  SHA512:
6
- metadata.gz: e373cdbe91a4ac4665d7c9385208754324da01acf1d1d52f55451db8d9c56d6862e0863e2ba2e54ecfd0ec79c9bbe98438a0d934779eec5abab416ddb3e90643
7
- data.tar.gz: d4ad81e48b5e84ead1ecb9db6a160b5de4039aa301b38ff75f7978ae7fb2a2606046dfd703d68d626d8efa6e508cbfdc8fc98c8706454a3122ddb79e3e76efa2
6
+ metadata.gz: f9a19595ce728cc6c5512a1f71b70197d49d2564d2ec4558be59d54148c5009551261dedce9067bd2b4dcb1f34337945cd5cc43e13cd7c2d5dd87d12865465c0
7
+ data.tar.gz: d3d9211c8499b372a101da5ab0cf6eb5af47622e1da8fbca89a4205be2d78fda98a6b414c2f9ead98d10c76ab15435e8922b8e34cb3c3ee4b33d9709c5d2ae03
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.119.0 (2021-10-01)
5
+ ------------------
6
+
7
+ * Feature - When "AutoApprovable" is true for a Change Template, then specifying --auto-approve (boolean) in Start-Change-Request-Execution will create a change request that bypasses approver review. (except for change calendar restrictions)
8
+
4
9
  1.118.0 (2021-09-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.118.0
1
+ 1.119.0
@@ -733,8 +733,10 @@ module Aws::SSM
733
733
  # @option params [Array<Types::Target>] :targets
734
734
  # The targets for the association. You can target instances by using
735
735
  # tags, Amazon Web Services resource groups, all instances in an Amazon
736
- # Web Services account, or individual instance IDs. For more information
737
- # about choosing targets for an association, see [Using targets and rate
736
+ # Web Services account, or individual instance IDs. You can target all
737
+ # instances in an Amazon Web Services account by specifying the
738
+ # `InstanceIds` key with a value of `*`. For more information about
739
+ # choosing targets for an association, see [Using targets and rate
738
740
  # controls with State Manager associations][1] in the *Amazon Web
739
741
  # Services Systems Manager User Guide*.
740
742
  #
@@ -9417,6 +9419,22 @@ module Aws::SSM
9417
9419
  # The user-provided idempotency token. The token must be unique, is case
9418
9420
  # insensitive, enforces the UUID format, and can't be reused.
9419
9421
  #
9422
+ # @option params [Boolean] :auto_approve
9423
+ # Indicates whether the change request can be approved automatically
9424
+ # without the need for manual approvals.
9425
+ #
9426
+ # If `AutoApprovable` is enabled in a change template, then setting
9427
+ # `AutoApprove` to `true` in `StartChangeRequestExecution` creates a
9428
+ # change request that bypasses approver review.
9429
+ #
9430
+ # <note markdown="1"> Change Calendar restrictions are not bypassed in this scenario. If the
9431
+ # state of an associated calendar is `CLOSED`, change freeze approvers
9432
+ # must still grant permission for this change request to run. If they
9433
+ # don't, the change won't be processed until the calendar state is
9434
+ # again `OPEN`.
9435
+ #
9436
+ # </note>
9437
+ #
9420
9438
  # @option params [required, Array<Types::Runbook>] :runbooks
9421
9439
  # Information about the Automation runbooks that are run during the
9422
9440
  # runbook workflow.
@@ -9464,6 +9482,7 @@ module Aws::SSM
9464
9482
  # },
9465
9483
  # change_request_name: "ChangeRequestName",
9466
9484
  # client_token: "IdempotencyToken",
9485
+ # auto_approve: false,
9467
9486
  # runbooks: [ # required
9468
9487
  # {
9469
9488
  # document_name: "DocumentARN", # required
@@ -11354,7 +11373,7 @@ module Aws::SSM
11354
11373
  params: params,
11355
11374
  config: config)
11356
11375
  context[:gem_name] = 'aws-sdk-ssm'
11357
- context[:gem_version] = '1.118.0'
11376
+ context[:gem_version] = '1.119.0'
11358
11377
  Seahorse::Client::Request.new(handlers, context)
11359
11378
  end
11360
11379
 
@@ -4158,6 +4158,7 @@ module Aws::SSM
4158
4158
  StartChangeRequestExecutionRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Parameters"))
4159
4159
  StartChangeRequestExecutionRequest.add_member(:change_request_name, Shapes::ShapeRef.new(shape: ChangeRequestName, location_name: "ChangeRequestName"))
4160
4160
  StartChangeRequestExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "ClientToken"))
4161
+ StartChangeRequestExecutionRequest.add_member(:auto_approve, Shapes::ShapeRef.new(shape: Boolean, location_name: "AutoApprove"))
4161
4162
  StartChangeRequestExecutionRequest.add_member(:runbooks, Shapes::ShapeRef.new(shape: Runbooks, required: true, location_name: "Runbooks"))
4162
4163
  StartChangeRequestExecutionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
4163
4164
  StartChangeRequestExecutionRequest.add_member(:scheduled_end_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "ScheduledEndTime"))
@@ -280,7 +280,9 @@ module Aws::SSM
280
280
  # @return [String]
281
281
  #
282
282
  # @!attribute [rw] targets
283
- # The instances targeted by the request to create an association.
283
+ # The instances targeted by the request to create an association. You
284
+ # can target all instances in an Amazon Web Services account by
285
+ # specifying the `InstanceIds` key with a value of `*`.
284
286
  # @return [Array<Types::Target>]
285
287
  #
286
288
  # @!attribute [rw] last_execution_date
@@ -3166,10 +3168,12 @@ module Aws::SSM
3166
3168
  # @!attribute [rw] targets
3167
3169
  # The targets for the association. You can target instances by using
3168
3170
  # tags, Amazon Web Services resource groups, all instances in an
3169
- # Amazon Web Services account, or individual instance IDs. For more
3170
- # information about choosing targets for an association, see [Using
3171
- # targets and rate controls with State Manager associations][1] in the
3172
- # *Amazon Web Services Systems Manager User Guide*.
3171
+ # Amazon Web Services account, or individual instance IDs. You can
3172
+ # target all instances in an Amazon Web Services account by specifying
3173
+ # the `InstanceIds` key with a value of `*`. For more information
3174
+ # about choosing targets for an association, see [Using targets and
3175
+ # rate controls with State Manager associations][1] in the *Amazon Web
3176
+ # Services Systems Manager User Guide*.
3173
3177
  #
3174
3178
  #
3175
3179
  #
@@ -17869,9 +17873,7 @@ module Aws::SSM
17869
17873
  # }
17870
17874
  #
17871
17875
  # @!attribute [rw] output_s3_region
17872
- # (Deprecated) You can no longer specify this parameter. The system
17873
- # ignores it. Instead, Amazon Web Services Systems Manager
17874
- # automatically determines the Region of the S3 bucket.
17876
+ # The Amazon Web Services Region of the S3 bucket.
17875
17877
  # @return [String]
17876
17878
  #
17877
17879
  # @!attribute [rw] output_s3_bucket_name
@@ -18711,6 +18713,7 @@ module Aws::SSM
18711
18713
  # },
18712
18714
  # change_request_name: "ChangeRequestName",
18713
18715
  # client_token: "IdempotencyToken",
18716
+ # auto_approve: false,
18714
18717
  # runbooks: [ # required
18715
18718
  # {
18716
18719
  # document_name: "DocumentARN", # required
@@ -18784,6 +18787,23 @@ module Aws::SSM
18784
18787
  # case insensitive, enforces the UUID format, and can't be reused.
18785
18788
  # @return [String]
18786
18789
  #
18790
+ # @!attribute [rw] auto_approve
18791
+ # Indicates whether the change request can be approved automatically
18792
+ # without the need for manual approvals.
18793
+ #
18794
+ # If `AutoApprovable` is enabled in a change template, then setting
18795
+ # `AutoApprove` to `true` in `StartChangeRequestExecution` creates a
18796
+ # change request that bypasses approver review.
18797
+ #
18798
+ # <note markdown="1"> Change Calendar restrictions are not bypassed in this scenario. If
18799
+ # the state of an associated calendar is `CLOSED`, change freeze
18800
+ # approvers must still grant permission for this change request to
18801
+ # run. If they don't, the change won't be processed until the
18802
+ # calendar state is again `OPEN`.
18803
+ #
18804
+ # </note>
18805
+ # @return [Boolean]
18806
+ #
18787
18807
  # @!attribute [rw] runbooks
18788
18808
  # Information about the Automation runbooks that are run during the
18789
18809
  # runbook workflow.
@@ -18829,6 +18849,7 @@ module Aws::SSM
18829
18849
  :parameters,
18830
18850
  :change_request_name,
18831
18851
  :client_token,
18852
+ :auto_approve,
18832
18853
  :runbooks,
18833
18854
  :tags,
18834
18855
  :scheduled_end_time,
data/lib/aws-sdk-ssm.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssm/customizations'
49
49
  # @!group service
50
50
  module Aws::SSM
51
51
 
52
- GEM_VERSION = '1.118.0'
52
+ GEM_VERSION = '1.119.0'
53
53
 
54
54
  end
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.118.0
4
+ version: 1.119.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: 2021-09-23 00:00:00.000000000 Z
11
+ date: 2021-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core