aws-sdk-ssm 1.191.0 → 1.193.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +149 -22
- data/lib/aws-sdk-ssm/client_api.rb +86 -0
- data/lib/aws-sdk-ssm/errors.rb +78 -0
- data/lib/aws-sdk-ssm/types.rb +277 -11
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +45 -6
- data/sig/errors.rbs +15 -0
- data/sig/types.rbs +71 -12
- metadata +2 -2
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -10,6 +10,20 @@
|
|
10
10
|
module Aws::SSM
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# The requester doesn't have permissions to perform the requested
|
14
|
+
# operation.
|
15
|
+
#
|
16
|
+
# @!attribute [rw] message
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AccessDeniedException AWS API Documentation
|
20
|
+
#
|
21
|
+
class AccessDeniedException < Struct.new(
|
22
|
+
:message)
|
23
|
+
SENSITIVE = []
|
24
|
+
include Aws::Structure
|
25
|
+
end
|
26
|
+
|
13
27
|
# Information includes the Amazon Web Services account ID where the
|
14
28
|
# current document is shared and the version shared with that account.
|
15
29
|
#
|
@@ -1829,6 +1843,16 @@ module Aws::SSM
|
|
1829
1843
|
# to Linux managed nodes only.
|
1830
1844
|
# @return [Array<Types::PatchSource>]
|
1831
1845
|
#
|
1846
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
1847
|
+
# Indicates whether managed nodes for which there are available
|
1848
|
+
# security-related patches that have not been approved by the baseline
|
1849
|
+
# are being defined as `COMPLIANT` or `NON_COMPLIANT`. This option is
|
1850
|
+
# specified when the `CreatePatchBaseline` or `UpdatePatchBaseline`
|
1851
|
+
# commands are run.
|
1852
|
+
#
|
1853
|
+
# Applies to Windows Server managed nodes only.
|
1854
|
+
# @return [String]
|
1855
|
+
#
|
1832
1856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/BaselineOverride AWS API Documentation
|
1833
1857
|
#
|
1834
1858
|
class BaselineOverride < Struct.new(
|
@@ -1840,7 +1864,8 @@ module Aws::SSM
|
|
1840
1864
|
:rejected_patches,
|
1841
1865
|
:rejected_patches_action,
|
1842
1866
|
:approved_patches_enable_non_security,
|
1843
|
-
:sources
|
1867
|
+
:sources,
|
1868
|
+
:available_security_updates_compliance_status)
|
1844
1869
|
SENSITIVE = []
|
1845
1870
|
include Aws::Structure
|
1846
1871
|
end
|
@@ -4060,6 +4085,22 @@ module Aws::SSM
|
|
4060
4085
|
# to Linux managed nodes only.
|
4061
4086
|
# @return [Array<Types::PatchSource>]
|
4062
4087
|
#
|
4088
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
4089
|
+
# Indicates the status you want to assign to security patches that are
|
4090
|
+
# available but not approved because they don't meet the installation
|
4091
|
+
# criteria specified in the patch baseline.
|
4092
|
+
#
|
4093
|
+
# Example scenario: Security patches that you might want installed can
|
4094
|
+
# be skipped if you have specified a long period to wait after a patch
|
4095
|
+
# is released before installation. If an update to the patch is
|
4096
|
+
# released during your specified waiting period, the waiting period
|
4097
|
+
# for installing the patch starts over. If the waiting period is too
|
4098
|
+
# long, multiple versions of the patch could be released but never
|
4099
|
+
# installed.
|
4100
|
+
#
|
4101
|
+
# Supported for Windows Server managed nodes only.
|
4102
|
+
# @return [String]
|
4103
|
+
#
|
4063
4104
|
# @!attribute [rw] client_token
|
4064
4105
|
# User-provided idempotency token.
|
4065
4106
|
#
|
@@ -4099,6 +4140,7 @@ module Aws::SSM
|
|
4099
4140
|
:rejected_patches_action,
|
4100
4141
|
:description,
|
4101
4142
|
:sources,
|
4143
|
+
:available_security_updates_compliance_status,
|
4102
4144
|
:client_token,
|
4103
4145
|
:tags)
|
4104
4146
|
SENSITIVE = []
|
@@ -4157,6 +4199,38 @@ module Aws::SSM
|
|
4157
4199
|
#
|
4158
4200
|
class CreateResourceDataSyncResult < Aws::EmptyStructure; end
|
4159
4201
|
|
4202
|
+
# The temporary security credentials, which include an access key ID, a
|
4203
|
+
# secret access key, and a security (or session) token.
|
4204
|
+
#
|
4205
|
+
# @!attribute [rw] access_key_id
|
4206
|
+
# The access key ID that identifies the temporary security
|
4207
|
+
# credentials.
|
4208
|
+
# @return [String]
|
4209
|
+
#
|
4210
|
+
# @!attribute [rw] secret_access_key
|
4211
|
+
# The secret access key that can be used to sign requests.
|
4212
|
+
# @return [String]
|
4213
|
+
#
|
4214
|
+
# @!attribute [rw] session_token
|
4215
|
+
# The token that users must pass to the service API to use the
|
4216
|
+
# temporary credentials.
|
4217
|
+
# @return [String]
|
4218
|
+
#
|
4219
|
+
# @!attribute [rw] expiration_time
|
4220
|
+
# The datetime on which the current credentials expire.
|
4221
|
+
# @return [Time]
|
4222
|
+
#
|
4223
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Credentials AWS API Documentation
|
4224
|
+
#
|
4225
|
+
class Credentials < Struct.new(
|
4226
|
+
:access_key_id,
|
4227
|
+
:secret_access_key,
|
4228
|
+
:session_token,
|
4229
|
+
:expiration_time)
|
4230
|
+
SENSITIVE = [:secret_access_key, :session_token]
|
4231
|
+
include Aws::Structure
|
4232
|
+
end
|
4233
|
+
|
4160
4234
|
# You have exceeded the limit for custom schemas. Delete one or more
|
4161
4235
|
# custom schemas and try again.
|
4162
4236
|
#
|
@@ -6411,6 +6485,16 @@ module Aws::SSM
|
|
6411
6485
|
# is `NON_COMPLIANT`.
|
6412
6486
|
# @return [Integer]
|
6413
6487
|
#
|
6488
|
+
# @!attribute [rw] instances_with_available_security_updates
|
6489
|
+
# The number of managed nodes for which security-related patches are
|
6490
|
+
# available but not approved because because they didn't meet the
|
6491
|
+
# patch baseline requirements. For example, an updated version of a
|
6492
|
+
# patch might have been released before the specified auto-approval
|
6493
|
+
# period was over.
|
6494
|
+
#
|
6495
|
+
# Applies to Windows Server managed nodes only.
|
6496
|
+
# @return [Integer]
|
6497
|
+
#
|
6414
6498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupStateResult AWS API Documentation
|
6415
6499
|
#
|
6416
6500
|
class DescribePatchGroupStateResult < Struct.new(
|
@@ -6425,7 +6509,8 @@ module Aws::SSM
|
|
6425
6509
|
:instances_with_unreported_not_applicable_patches,
|
6426
6510
|
:instances_with_critical_non_compliant_patches,
|
6427
6511
|
:instances_with_security_non_compliant_patches,
|
6428
|
-
:instances_with_other_non_compliant_patches
|
6512
|
+
:instances_with_other_non_compliant_patches,
|
6513
|
+
:instances_with_available_security_updates)
|
6429
6514
|
SENSITIVE = []
|
6430
6515
|
include Aws::Structure
|
6431
6516
|
end
|
@@ -7529,6 +7614,36 @@ module Aws::SSM
|
|
7529
7614
|
include Aws::Structure
|
7530
7615
|
end
|
7531
7616
|
|
7617
|
+
# @!attribute [rw] access_request_id
|
7618
|
+
# The ID of a just-in-time node access request.
|
7619
|
+
# @return [String]
|
7620
|
+
#
|
7621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAccessTokenRequest AWS API Documentation
|
7622
|
+
#
|
7623
|
+
class GetAccessTokenRequest < Struct.new(
|
7624
|
+
:access_request_id)
|
7625
|
+
SENSITIVE = []
|
7626
|
+
include Aws::Structure
|
7627
|
+
end
|
7628
|
+
|
7629
|
+
# @!attribute [rw] credentials
|
7630
|
+
# The temporary security credentials which can be used to start
|
7631
|
+
# just-in-time node access sessions.
|
7632
|
+
# @return [Types::Credentials]
|
7633
|
+
#
|
7634
|
+
# @!attribute [rw] access_request_status
|
7635
|
+
# The status of the access request.
|
7636
|
+
# @return [String]
|
7637
|
+
#
|
7638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAccessTokenResponse AWS API Documentation
|
7639
|
+
#
|
7640
|
+
class GetAccessTokenResponse < Struct.new(
|
7641
|
+
:credentials,
|
7642
|
+
:access_request_status)
|
7643
|
+
SENSITIVE = []
|
7644
|
+
include Aws::Structure
|
7645
|
+
end
|
7646
|
+
|
7532
7647
|
# @!attribute [rw] automation_execution_id
|
7533
7648
|
# The unique identifier for an existing automation execution to
|
7534
7649
|
# examine. The execution ID is returned by StartAutomationExecution
|
@@ -9278,6 +9393,15 @@ module Aws::SSM
|
|
9278
9393
|
# to Linux managed nodes only.
|
9279
9394
|
# @return [Array<Types::PatchSource>]
|
9280
9395
|
#
|
9396
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
9397
|
+
# Indicates the compliance status of managed nodes for which
|
9398
|
+
# security-related patches are available but were not approved. This
|
9399
|
+
# preference is specified when the `CreatePatchBaseline` or
|
9400
|
+
# `UpdatePatchBaseline` commands are run.
|
9401
|
+
#
|
9402
|
+
# Applies to Windows Server managed nodes only.
|
9403
|
+
# @return [String]
|
9404
|
+
#
|
9281
9405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineResult AWS API Documentation
|
9282
9406
|
#
|
9283
9407
|
class GetPatchBaselineResult < Struct.new(
|
@@ -9295,7 +9419,8 @@ module Aws::SSM
|
|
9295
9419
|
:created_date,
|
9296
9420
|
:modified_date,
|
9297
9421
|
:description,
|
9298
|
-
:sources
|
9422
|
+
:sources,
|
9423
|
+
:available_security_updates_compliance_status)
|
9299
9424
|
SENSITIVE = []
|
9300
9425
|
include Aws::Structure
|
9301
9426
|
end
|
@@ -10049,6 +10174,15 @@ module Aws::SSM
|
|
10049
10174
|
# `UnreportedNotApplicableCount`.
|
10050
10175
|
# @return [Integer]
|
10051
10176
|
#
|
10177
|
+
# @!attribute [rw] available_security_update_count
|
10178
|
+
# The number of security-related patches that are available but not
|
10179
|
+
# approved because they didn't meet the patch baseline requirements.
|
10180
|
+
# For example, an updated version of a patch might have been released
|
10181
|
+
# before the specified auto-approval period was over.
|
10182
|
+
#
|
10183
|
+
# Applies to Windows Server managed nodes only.
|
10184
|
+
# @return [Integer]
|
10185
|
+
#
|
10052
10186
|
# @!attribute [rw] operation_start_time
|
10053
10187
|
# The time the most recent patching operation was started on the
|
10054
10188
|
# managed node.
|
@@ -10129,6 +10263,7 @@ module Aws::SSM
|
|
10129
10263
|
:failed_count,
|
10130
10264
|
:unreported_not_applicable_count,
|
10131
10265
|
:not_applicable_count,
|
10266
|
+
:available_security_update_count,
|
10132
10267
|
:operation_start_time,
|
10133
10268
|
:operation_end_time,
|
10134
10269
|
:operation,
|
@@ -13382,7 +13517,8 @@ module Aws::SSM
|
|
13382
13517
|
# @!attribute [rw] account_ids_to_add
|
13383
13518
|
# The Amazon Web Services users that should have access to the
|
13384
13519
|
# document. The account IDs can either be a group of account IDs or
|
13385
|
-
# *All*.
|
13520
|
+
# *All*. You must specify a value for this parameter or the
|
13521
|
+
# `AccountIdsToRemove` parameter.
|
13386
13522
|
# @return [Array<String>]
|
13387
13523
|
#
|
13388
13524
|
# @!attribute [rw] account_ids_to_remove
|
@@ -13390,7 +13526,8 @@ module Aws::SSM
|
|
13390
13526
|
# the document. The Amazon Web Services user can either be a group of
|
13391
13527
|
# account IDs or *All*. This action has a higher priority than
|
13392
13528
|
# `AccountIdsToAdd`. If you specify an ID to add and the same ID to
|
13393
|
-
# remove, the system removes access to the document.
|
13529
|
+
# remove, the system removes access to the document. You must specify
|
13530
|
+
# a value for this parameter or the `AccountIdsToAdd` parameter.
|
13394
13531
|
# @return [Array<String>]
|
13395
13532
|
#
|
13396
13533
|
# @!attribute [rw] shared_document_version
|
@@ -15808,11 +15945,16 @@ module Aws::SSM
|
|
15808
15945
|
# see [Creating Systems Manager parameters][1] in the *Amazon Web
|
15809
15946
|
# Services Systems Manager User Guide*.
|
15810
15947
|
#
|
15811
|
-
# <note markdown="1"> The maximum length
|
15812
|
-
# includes 1037 characters reserved for internal use by
|
15813
|
-
# Manager. The maximum length for a parameter name that you
|
15814
|
-
# 1011 characters.
|
15815
|
-
#
|
15948
|
+
# <note markdown="1"> The reported maximum length of 2048 characters for a parameter name
|
15949
|
+
# includes 1037 characters that are reserved for internal use by
|
15950
|
+
# Systems Manager. The maximum length for a parameter name that you
|
15951
|
+
# specify is 1011 characters.
|
15952
|
+
#
|
15953
|
+
# This count of 1011 characters includes the characters in the ARN
|
15954
|
+
# that precede the name you specify. This ARN length will vary
|
15955
|
+
# depending on your partition and Region. For example, the following
|
15956
|
+
# 45 characters count toward the 1011 character maximum for a
|
15957
|
+
# parameter created in the US East (Ohio) Region:
|
15816
15958
|
# `arn:aws:ssm:us-east-2:111122223333:parameter/`.
|
15817
15959
|
#
|
15818
15960
|
# </note>
|
@@ -17717,6 +17859,42 @@ module Aws::SSM
|
|
17717
17859
|
include Aws::Structure
|
17718
17860
|
end
|
17719
17861
|
|
17862
|
+
# The request exceeds the service quota. Service quotas, also referred
|
17863
|
+
# to as limits, are the maximum number of service resources or
|
17864
|
+
# operations for your Amazon Web Services account.
|
17865
|
+
#
|
17866
|
+
# @!attribute [rw] message
|
17867
|
+
# @return [String]
|
17868
|
+
#
|
17869
|
+
# @!attribute [rw] resource_id
|
17870
|
+
# The unique ID of the resource referenced in the failed request.
|
17871
|
+
# @return [String]
|
17872
|
+
#
|
17873
|
+
# @!attribute [rw] resource_type
|
17874
|
+
# The resource type of the resource referenced in the failed request.
|
17875
|
+
# @return [String]
|
17876
|
+
#
|
17877
|
+
# @!attribute [rw] quota_code
|
17878
|
+
# The quota code recognized by the Amazon Web Services Service Quotas
|
17879
|
+
# service.
|
17880
|
+
# @return [String]
|
17881
|
+
#
|
17882
|
+
# @!attribute [rw] service_code
|
17883
|
+
# The code for the Amazon Web Services service that owns the quota.
|
17884
|
+
# @return [String]
|
17885
|
+
#
|
17886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ServiceQuotaExceededException AWS API Documentation
|
17887
|
+
#
|
17888
|
+
class ServiceQuotaExceededException < Struct.new(
|
17889
|
+
:message,
|
17890
|
+
:resource_id,
|
17891
|
+
:resource_type,
|
17892
|
+
:quota_code,
|
17893
|
+
:service_code)
|
17894
|
+
SENSITIVE = []
|
17895
|
+
include Aws::Structure
|
17896
|
+
end
|
17897
|
+
|
17720
17898
|
# The service setting data structure.
|
17721
17899
|
#
|
17722
17900
|
# `ServiceSetting` is an account-level setting for an Amazon Web
|
@@ -17990,6 +18168,42 @@ module Aws::SSM
|
|
17990
18168
|
include Aws::Structure
|
17991
18169
|
end
|
17992
18170
|
|
18171
|
+
# @!attribute [rw] reason
|
18172
|
+
# A brief description explaining why you are requesting access to the
|
18173
|
+
# node.
|
18174
|
+
# @return [String]
|
18175
|
+
#
|
18176
|
+
# @!attribute [rw] targets
|
18177
|
+
# The node you are requesting access to.
|
18178
|
+
# @return [Array<Types::Target>]
|
18179
|
+
#
|
18180
|
+
# @!attribute [rw] tags
|
18181
|
+
# Key-value pairs of metadata you want to assign to the access
|
18182
|
+
# request.
|
18183
|
+
# @return [Array<Types::Tag>]
|
18184
|
+
#
|
18185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAccessRequestRequest AWS API Documentation
|
18186
|
+
#
|
18187
|
+
class StartAccessRequestRequest < Struct.new(
|
18188
|
+
:reason,
|
18189
|
+
:targets,
|
18190
|
+
:tags)
|
18191
|
+
SENSITIVE = []
|
18192
|
+
include Aws::Structure
|
18193
|
+
end
|
18194
|
+
|
18195
|
+
# @!attribute [rw] access_request_id
|
18196
|
+
# The ID of the access request.
|
18197
|
+
# @return [String]
|
18198
|
+
#
|
18199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAccessRequestResponse AWS API Documentation
|
18200
|
+
#
|
18201
|
+
class StartAccessRequestResponse < Struct.new(
|
18202
|
+
:access_request_id)
|
18203
|
+
SENSITIVE = []
|
18204
|
+
include Aws::Structure
|
18205
|
+
end
|
18206
|
+
|
17993
18207
|
# @!attribute [rw] association_ids
|
17994
18208
|
# The association IDs that you want to run immediately and only one
|
17995
18209
|
# time.
|
@@ -18910,6 +19124,31 @@ module Aws::SSM
|
|
18910
19124
|
include Aws::Structure
|
18911
19125
|
end
|
18912
19126
|
|
19127
|
+
# The request or operation couldn't be performed because the service is
|
19128
|
+
# throttling requests.
|
19129
|
+
#
|
19130
|
+
# @!attribute [rw] message
|
19131
|
+
# @return [String]
|
19132
|
+
#
|
19133
|
+
# @!attribute [rw] quota_code
|
19134
|
+
# The quota code recognized by the Amazon Web Services Service Quotas
|
19135
|
+
# service.
|
19136
|
+
# @return [String]
|
19137
|
+
#
|
19138
|
+
# @!attribute [rw] service_code
|
19139
|
+
# The code for the Amazon Web Services service that owns the quota.
|
19140
|
+
# @return [String]
|
19141
|
+
#
|
19142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ThrottlingException AWS API Documentation
|
19143
|
+
#
|
19144
|
+
class ThrottlingException < Struct.new(
|
19145
|
+
:message,
|
19146
|
+
:quota_code,
|
19147
|
+
:service_code)
|
19148
|
+
SENSITIVE = []
|
19149
|
+
include Aws::Structure
|
19150
|
+
end
|
19151
|
+
|
18913
19152
|
# The `Targets` parameter includes too many tags. Remove one or more
|
18914
19153
|
# tags and try the command again.
|
18915
19154
|
#
|
@@ -20478,6 +20717,22 @@ module Aws::SSM
|
|
20478
20717
|
# to Linux managed nodes only.
|
20479
20718
|
# @return [Array<Types::PatchSource>]
|
20480
20719
|
#
|
20720
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
20721
|
+
# Indicates the status to be assigned to security patches that are
|
20722
|
+
# available but not approved because they don't meet the installation
|
20723
|
+
# criteria specified in the patch baseline.
|
20724
|
+
#
|
20725
|
+
# Example scenario: Security patches that you might want installed can
|
20726
|
+
# be skipped if you have specified a long period to wait after a patch
|
20727
|
+
# is released before installation. If an update to the patch is
|
20728
|
+
# released during your specified waiting period, the waiting period
|
20729
|
+
# for installing the patch starts over. If the waiting period is too
|
20730
|
+
# long, multiple versions of the patch could be released but never
|
20731
|
+
# installed.
|
20732
|
+
#
|
20733
|
+
# Supported for Windows Server managed nodes only.
|
20734
|
+
# @return [String]
|
20735
|
+
#
|
20481
20736
|
# @!attribute [rw] replace
|
20482
20737
|
# If True, then all fields that are required by the
|
20483
20738
|
# CreatePatchBaseline operation are also required for this API
|
@@ -20498,6 +20753,7 @@ module Aws::SSM
|
|
20498
20753
|
:rejected_patches_action,
|
20499
20754
|
:description,
|
20500
20755
|
:sources,
|
20756
|
+
:available_security_updates_compliance_status,
|
20501
20757
|
:replace)
|
20502
20758
|
SENSITIVE = []
|
20503
20759
|
include Aws::Structure
|
@@ -20567,6 +20823,15 @@ module Aws::SSM
|
|
20567
20823
|
# to Linux managed nodes only.
|
20568
20824
|
# @return [Array<Types::PatchSource>]
|
20569
20825
|
#
|
20826
|
+
# @!attribute [rw] available_security_updates_compliance_status
|
20827
|
+
# Indicates the compliance status of managed nodes for which
|
20828
|
+
# security-related patches are available but were not approved. This
|
20829
|
+
# preference is specified when the `CreatePatchBaseline` or
|
20830
|
+
# `UpdatePatchBaseline` commands are run.
|
20831
|
+
#
|
20832
|
+
# Applies to Windows Server managed nodes only.
|
20833
|
+
# @return [String]
|
20834
|
+
#
|
20570
20835
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaselineResult AWS API Documentation
|
20571
20836
|
#
|
20572
20837
|
class UpdatePatchBaselineResult < Struct.new(
|
@@ -20583,7 +20848,8 @@ module Aws::SSM
|
|
20583
20848
|
:created_date,
|
20584
20849
|
:modified_date,
|
20585
20850
|
:description,
|
20586
|
-
:sources
|
20851
|
+
:sources,
|
20852
|
+
:available_security_updates_compliance_status)
|
20587
20853
|
SENSITIVE = []
|
20588
20854
|
include Aws::Structure
|
20589
20855
|
end
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -340,7 +340,7 @@ module Aws
|
|
340
340
|
name: ::String,
|
341
341
|
?display_name: ::String,
|
342
342
|
?version_name: ::String,
|
343
|
-
?document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup"),
|
343
|
+
?document_type: ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy"),
|
344
344
|
?document_format: ("YAML" | "JSON" | "TEXT"),
|
345
345
|
?target_type: ::String,
|
346
346
|
?tags: Array[
|
@@ -486,6 +486,7 @@ module Aws
|
|
486
486
|
configuration: ::String
|
487
487
|
},
|
488
488
|
],
|
489
|
+
?available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT"),
|
489
490
|
?client_token: ::String,
|
490
491
|
?tags: Array[
|
491
492
|
{
|
@@ -1177,7 +1178,7 @@ module Aws
|
|
1177
1178
|
def describe_ops_items: (
|
1178
1179
|
?ops_item_filters: Array[
|
1179
1180
|
{
|
1180
|
-
key: ("Status" | "CreatedBy" | "Source" | "Priority" | "Title" | "OpsItemId" | "CreatedTime" | "LastModifiedTime" | "ActualStartTime" | "ActualEndTime" | "PlannedStartTime" | "PlannedEndTime" | "OperationalData" | "OperationalDataKey" | "OperationalDataValue" | "ResourceId" | "AutomationId" | "Category" | "Severity" | "OpsItemType" | "ChangeRequestByRequesterArn" | "ChangeRequestByRequesterName" | "ChangeRequestByApproverArn" | "ChangeRequestByApproverName" | "ChangeRequestByTemplate" | "ChangeRequestByTargetsResourceGroup" | "InsightByType" | "AccountId"),
|
1181
|
+
key: ("Status" | "CreatedBy" | "Source" | "Priority" | "Title" | "OpsItemId" | "CreatedTime" | "LastModifiedTime" | "ActualStartTime" | "ActualEndTime" | "PlannedStartTime" | "PlannedEndTime" | "OperationalData" | "OperationalDataKey" | "OperationalDataValue" | "ResourceId" | "AutomationId" | "Category" | "Severity" | "OpsItemType" | "AccessRequestByRequesterArn" | "AccessRequestByRequesterId" | "AccessRequestByApproverArn" | "AccessRequestByApproverId" | "AccessRequestBySourceAccountId" | "AccessRequestBySourceOpsItemId" | "AccessRequestBySourceRegion" | "AccessRequestByIsReplica" | "AccessRequestByTargetResourceId" | "ChangeRequestByRequesterArn" | "ChangeRequestByRequesterName" | "ChangeRequestByApproverArn" | "ChangeRequestByApproverName" | "ChangeRequestByTemplate" | "ChangeRequestByTargetsResourceGroup" | "InsightByType" | "AccountId"),
|
1181
1182
|
values: Array[::String],
|
1182
1183
|
operator: ("Equal" | "Contains" | "GreaterThan" | "LessThan")
|
1183
1184
|
},
|
@@ -1245,6 +1246,7 @@ module Aws
|
|
1245
1246
|
def instances_with_critical_non_compliant_patches: () -> ::Integer
|
1246
1247
|
def instances_with_security_non_compliant_patches: () -> ::Integer
|
1247
1248
|
def instances_with_other_non_compliant_patches: () -> ::Integer
|
1249
|
+
def instances_with_available_security_updates: () -> ::Integer
|
1248
1250
|
end
|
1249
1251
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#describe_patch_group_state-instance_method
|
1250
1252
|
def describe_patch_group_state: (
|
@@ -1314,6 +1316,17 @@ module Aws
|
|
1314
1316
|
) -> _DisassociateOpsItemRelatedItemResponseSuccess
|
1315
1317
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateOpsItemRelatedItemResponseSuccess
|
1316
1318
|
|
1319
|
+
interface _GetAccessTokenResponseSuccess
|
1320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessTokenResponse]
|
1321
|
+
def credentials: () -> Types::Credentials
|
1322
|
+
def access_request_status: () -> ("Approved" | "Rejected" | "Revoked" | "Expired" | "Pending")
|
1323
|
+
end
|
1324
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_access_token-instance_method
|
1325
|
+
def get_access_token: (
|
1326
|
+
access_request_id: ::String
|
1327
|
+
) -> _GetAccessTokenResponseSuccess
|
1328
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessTokenResponseSuccess
|
1329
|
+
|
1317
1330
|
interface _GetAutomationExecutionResponseSuccess
|
1318
1331
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAutomationExecutionResult]
|
1319
1332
|
def automation_execution: () -> Types::AutomationExecution
|
@@ -1437,7 +1450,8 @@ module Aws
|
|
1437
1450
|
products: Array[::String],
|
1438
1451
|
configuration: ::String
|
1439
1452
|
},
|
1440
|
-
]
|
1453
|
+
]?,
|
1454
|
+
available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")?
|
1441
1455
|
}
|
1442
1456
|
) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
1443
1457
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
@@ -1452,7 +1466,7 @@ module Aws
|
|
1452
1466
|
def status: () -> ("Creating" | "Active" | "Updating" | "Deleting" | "Failed")
|
1453
1467
|
def status_information: () -> ::String
|
1454
1468
|
def content: () -> ::String
|
1455
|
-
def document_type: () -> ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup")
|
1469
|
+
def document_type: () -> ("Command" | "Policy" | "Automation" | "Session" | "Package" | "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "DeploymentStrategy" | "ChangeCalendar" | "Automation.ChangeTemplate" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "CloudFormation" | "ConformancePackTemplate" | "QuickSetup" | "ManualApprovalPolicy" | "AutoApprovalPolicy")
|
1456
1470
|
def document_format: () -> ("YAML" | "JSON" | "TEXT")
|
1457
1471
|
def requires: () -> ::Array[Types::DocumentRequires]
|
1458
1472
|
def attachments_content: () -> ::Array[Types::AttachmentContent]
|
@@ -1793,6 +1807,7 @@ module Aws
|
|
1793
1807
|
def modified_date: () -> ::Time
|
1794
1808
|
def description: () -> ::String
|
1795
1809
|
def sources: () -> ::Array[Types::PatchSource]
|
1810
|
+
def available_security_updates_compliance_status: () -> ("COMPLIANT" | "NON_COMPLIANT")
|
1796
1811
|
end
|
1797
1812
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#get_patch_baseline-instance_method
|
1798
1813
|
def get_patch_baseline: (
|
@@ -2450,7 +2465,7 @@ module Aws
|
|
2450
2465
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#send_automation_signal-instance_method
|
2451
2466
|
def send_automation_signal: (
|
2452
2467
|
automation_execution_id: ::String,
|
2453
|
-
signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume"),
|
2468
|
+
signal_type: ("Approve" | "Reject" | "StartStep" | "StopStep" | "Resume" | "Revoke"),
|
2454
2469
|
?payload: Hash[::String, Array[::String]]
|
2455
2470
|
) -> _SendAutomationSignalResponseSuccess
|
2456
2471
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendAutomationSignalResponseSuccess
|
@@ -2501,6 +2516,28 @@ module Aws
|
|
2501
2516
|
) -> _SendCommandResponseSuccess
|
2502
2517
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendCommandResponseSuccess
|
2503
2518
|
|
2519
|
+
interface _StartAccessRequestResponseSuccess
|
2520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAccessRequestResponse]
|
2521
|
+
def access_request_id: () -> ::String
|
2522
|
+
end
|
2523
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#start_access_request-instance_method
|
2524
|
+
def start_access_request: (
|
2525
|
+
reason: ::String,
|
2526
|
+
targets: Array[
|
2527
|
+
{
|
2528
|
+
key: ::String?,
|
2529
|
+
values: Array[::String]?
|
2530
|
+
},
|
2531
|
+
],
|
2532
|
+
?tags: Array[
|
2533
|
+
{
|
2534
|
+
key: ::String,
|
2535
|
+
value: ::String
|
2536
|
+
},
|
2537
|
+
]
|
2538
|
+
) -> _StartAccessRequestResponseSuccess
|
2539
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAccessRequestResponseSuccess
|
2540
|
+
|
2504
2541
|
interface _StartAssociationsOnceResponseSuccess
|
2505
2542
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartAssociationsOnceResult]
|
2506
2543
|
end
|
@@ -3078,7 +3115,7 @@ module Aws
|
|
3078
3115
|
ops_item_id: ::String
|
3079
3116
|
},
|
3080
3117
|
],
|
3081
|
-
?status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Rejected" | "Closed"),
|
3118
|
+
?status: ("Open" | "InProgress" | "Resolved" | "Pending" | "TimedOut" | "Cancelling" | "Cancelled" | "Failed" | "CompletedWithSuccess" | "CompletedWithFailure" | "Scheduled" | "RunbookInProgress" | "PendingChangeCalendarOverride" | "ChangeCalendarOverrideApproved" | "ChangeCalendarOverrideRejected" | "PendingApproval" | "Approved" | "Revoked" | "Rejected" | "Closed"),
|
3082
3119
|
ops_item_id: ::String,
|
3083
3120
|
?title: ::String,
|
3084
3121
|
?category: ::String,
|
@@ -3121,6 +3158,7 @@ module Aws
|
|
3121
3158
|
def modified_date: () -> ::Time
|
3122
3159
|
def description: () -> ::String
|
3123
3160
|
def sources: () -> ::Array[Types::PatchSource]
|
3161
|
+
def available_security_updates_compliance_status: () -> ("COMPLIANT" | "NON_COMPLIANT")
|
3124
3162
|
end
|
3125
3163
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSM/Client.html#update_patch_baseline-instance_method
|
3126
3164
|
def update_patch_baseline: (
|
@@ -3165,6 +3203,7 @@ module Aws
|
|
3165
3203
|
configuration: ::String
|
3166
3204
|
},
|
3167
3205
|
],
|
3206
|
+
?available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT"),
|
3168
3207
|
?replace: bool
|
3169
3208
|
) -> _UpdatePatchBaselineResponseSuccess
|
3170
3209
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePatchBaselineResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -11,6 +11,9 @@ module Aws
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
12
12
|
end
|
13
13
|
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
14
17
|
class AlreadyExistsException < ::Aws::Errors::ServiceError
|
15
18
|
def message: () -> ::String
|
16
19
|
end
|
@@ -368,6 +371,13 @@ module Aws
|
|
368
371
|
class ResourcePolicyNotFoundException < ::Aws::Errors::ServiceError
|
369
372
|
def message: () -> ::String
|
370
373
|
end
|
374
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
375
|
+
def message: () -> ::String
|
376
|
+
def resource_id: () -> ::String
|
377
|
+
def resource_type: () -> ::String
|
378
|
+
def quota_code: () -> ::String
|
379
|
+
def service_code: () -> ::String
|
380
|
+
end
|
371
381
|
class ServiceSettingNotFound < ::Aws::Errors::ServiceError
|
372
382
|
def message: () -> ::String
|
373
383
|
end
|
@@ -382,6 +392,11 @@ module Aws
|
|
382
392
|
class TargetNotConnected < ::Aws::Errors::ServiceError
|
383
393
|
def message: () -> ::String
|
384
394
|
end
|
395
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
396
|
+
def message: () -> ::String
|
397
|
+
def quota_code: () -> ::String
|
398
|
+
def service_code: () -> ::String
|
399
|
+
end
|
385
400
|
class TooManyTagsError < ::Aws::Errors::ServiceError
|
386
401
|
end
|
387
402
|
class TooManyUpdates < ::Aws::Errors::ServiceError
|