aws-sdk-ssm 1.202.0 → 1.203.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +47 -9
- data/lib/aws-sdk-ssm/client_api.rb +1 -0
- data/lib/aws-sdk-ssm/customizations.rb +0 -8
- data/lib/aws-sdk-ssm/types.rb +54 -10
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dfa66aaa24ddf64be321eabf279432968beb39a201b43c8efe72ee76825a546
|
4
|
+
data.tar.gz: 8d09f93351e0ca5aaa3e26cc264ae330c7e28e789b250be1261aaf936777a715
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd246a5a6fcb92f179d3f9f00f5052bbe56d5b265a55003a6ae89b1b73959545b6f93a53e858feb6663027b96f378ee6b26db25af2be41aa82657dee09b58cad
|
7
|
+
data.tar.gz: 9adc6c47d4a0646b540fa0840090eef7d16df93d4d70d5b4a79b9e4bfe3ef2f375c1c1dd2a249dfc38202eb1005e16d8a515fc19c67aa2f1bd778eadd8b92eca
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.203.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -1016,6 +1016,11 @@ module Aws::SSM
|
|
1016
1016
|
# action to create an association in multiple Regions and multiple
|
1017
1017
|
# accounts.
|
1018
1018
|
#
|
1019
|
+
# <note markdown="1"> The `IncludeChildOrganizationUnits` parameter is not supported by
|
1020
|
+
# State Manager.
|
1021
|
+
#
|
1022
|
+
# </note>
|
1023
|
+
#
|
1019
1024
|
# @option params [Integer] :schedule_offset
|
1020
1025
|
# Number of days to wait after the scheduled day to run an association.
|
1021
1026
|
# For example, if you specified a cron schedule of `cron(0 0 ? * THU#2
|
@@ -2170,10 +2175,20 @@ module Aws::SSM
|
|
2170
2175
|
#
|
2171
2176
|
# : **All OSs**: Packages in the rejected patches list, and packages
|
2172
2177
|
# that include them as dependencies, aren't installed by Patch
|
2173
|
-
# Manager under any circumstances.
|
2174
|
-
#
|
2175
|
-
#
|
2176
|
-
#
|
2178
|
+
# Manager under any circumstances.
|
2179
|
+
#
|
2180
|
+
# State value assignment for patch compliance:
|
2181
|
+
#
|
2182
|
+
# * If a package was installed before it was added to the rejected
|
2183
|
+
# patches list, or is installed outside of Patch Manager afterward,
|
2184
|
+
# it's considered noncompliant with the patch baseline and its
|
2185
|
+
# status is reported as `INSTALLED_REJECTED`.
|
2186
|
+
#
|
2187
|
+
# * If an update attempts to install a dependency package that is now
|
2188
|
+
# rejected by the baseline, when previous versions of the package
|
2189
|
+
# were not rejected, the package being updated is reported as
|
2190
|
+
# `MISSING` for `SCAN` operations and as `FAILED` for `INSTALL`
|
2191
|
+
# operations.
|
2177
2192
|
#
|
2178
2193
|
# @option params [String] :description
|
2179
2194
|
# A description of the patch baseline.
|
@@ -6249,6 +6264,13 @@ module Aws::SSM
|
|
6249
6264
|
# @option params [Types::BaselineOverride] :baseline_override
|
6250
6265
|
# Defines the basic information about a patch baseline override.
|
6251
6266
|
#
|
6267
|
+
# @option params [Boolean] :use_s3_dual_stack_endpoint
|
6268
|
+
# Specifies whether to use S3 dualstack endpoints for the patch snapshot
|
6269
|
+
# download URL. Set to `true` to receive a presigned URL that supports
|
6270
|
+
# both IPv4 and IPv6 connectivity. Set to `false` to use standard
|
6271
|
+
# IPv4-only endpoints. Default is `false`. This parameter is required
|
6272
|
+
# for managed nodes in IPv6-only environments.
|
6273
|
+
#
|
6252
6274
|
# @return [Types::GetDeployablePatchSnapshotForInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6253
6275
|
#
|
6254
6276
|
# * {Types::GetDeployablePatchSnapshotForInstanceResult#instance_id #instance_id} => String
|
@@ -6303,6 +6325,7 @@ module Aws::SSM
|
|
6303
6325
|
# ],
|
6304
6326
|
# available_security_updates_compliance_status: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT
|
6305
6327
|
# },
|
6328
|
+
# use_s3_dual_stack_endpoint: false,
|
6306
6329
|
# })
|
6307
6330
|
#
|
6308
6331
|
# @example Response structure
|
@@ -11739,6 +11762,11 @@ module Aws::SSM
|
|
11739
11762
|
# action to update an association in multiple Regions and multiple
|
11740
11763
|
# accounts.
|
11741
11764
|
#
|
11765
|
+
# <note markdown="1"> The `IncludeChildOrganizationUnits` parameter is not supported by
|
11766
|
+
# State Manager.
|
11767
|
+
#
|
11768
|
+
# </note>
|
11769
|
+
#
|
11742
11770
|
# @option params [Integer] :schedule_offset
|
11743
11771
|
# Number of days to wait after the scheduled day to run an association.
|
11744
11772
|
# For example, if you specified a cron schedule of `cron(0 0 ? * THU#2
|
@@ -13195,10 +13223,20 @@ module Aws::SSM
|
|
13195
13223
|
#
|
13196
13224
|
# : **All OSs**: Packages in the rejected patches list, and packages
|
13197
13225
|
# that include them as dependencies, aren't installed by Patch
|
13198
|
-
# Manager under any circumstances.
|
13199
|
-
#
|
13200
|
-
#
|
13201
|
-
#
|
13226
|
+
# Manager under any circumstances.
|
13227
|
+
#
|
13228
|
+
# State value assignment for patch compliance:
|
13229
|
+
#
|
13230
|
+
# * If a package was installed before it was added to the rejected
|
13231
|
+
# patches list, or is installed outside of Patch Manager afterward,
|
13232
|
+
# it's considered noncompliant with the patch baseline and its
|
13233
|
+
# status is reported as `INSTALLED_REJECTED`.
|
13234
|
+
#
|
13235
|
+
# * If an update attempts to install a dependency package that is now
|
13236
|
+
# rejected by the baseline, when previous versions of the package
|
13237
|
+
# were not rejected, the package being updated is reported as
|
13238
|
+
# `MISSING` for `SCAN` operations and as `FAILED` for `INSTALL`
|
13239
|
+
# operations.
|
13202
13240
|
#
|
13203
13241
|
# @option params [String] :description
|
13204
13242
|
# A description of the patch baseline.
|
@@ -13510,7 +13548,7 @@ module Aws::SSM
|
|
13510
13548
|
tracer: tracer
|
13511
13549
|
)
|
13512
13550
|
context[:gem_name] = 'aws-sdk-ssm'
|
13513
|
-
context[:gem_version] = '1.
|
13551
|
+
context[:gem_version] = '1.203.0'
|
13514
13552
|
Seahorse::Client::Request.new(handlers, context)
|
13515
13553
|
end
|
13516
13554
|
|
@@ -2680,6 +2680,7 @@ module Aws::SSM
|
|
2680
2680
|
GetDeployablePatchSnapshotForInstanceRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
2681
2681
|
GetDeployablePatchSnapshotForInstanceRequest.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, required: true, location_name: "SnapshotId"))
|
2682
2682
|
GetDeployablePatchSnapshotForInstanceRequest.add_member(:baseline_override, Shapes::ShapeRef.new(shape: BaselineOverride, location_name: "BaselineOverride"))
|
2683
|
+
GetDeployablePatchSnapshotForInstanceRequest.add_member(:use_s3_dual_stack_endpoint, Shapes::ShapeRef.new(shape: Boolean, location_name: "UseS3DualStackEndpoint"))
|
2683
2684
|
GetDeployablePatchSnapshotForInstanceRequest.struct_class = Types::GetDeployablePatchSnapshotForInstanceRequest
|
2684
2685
|
|
2685
2686
|
GetDeployablePatchSnapshotForInstanceResult.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -3382,6 +3382,11 @@ module Aws::SSM
|
|
3382
3382
|
# Amazon Web Services accounts where you want to run the association.
|
3383
3383
|
# Use this action to create an association in multiple Regions and
|
3384
3384
|
# multiple accounts.
|
3385
|
+
#
|
3386
|
+
# <note markdown="1"> The `IncludeChildOrganizationUnits` parameter is not supported by
|
3387
|
+
# State Manager.
|
3388
|
+
#
|
3389
|
+
# </note>
|
3385
3390
|
# @return [Array<Types::TargetLocation>]
|
3386
3391
|
#
|
3387
3392
|
# @!attribute [rw] schedule_offset
|
@@ -4084,10 +4089,20 @@ module Aws::SSM
|
|
4084
4089
|
#
|
4085
4090
|
# : **All OSs**: Packages in the rejected patches list, and packages
|
4086
4091
|
# that include them as dependencies, aren't installed by Patch
|
4087
|
-
# Manager under any circumstances.
|
4088
|
-
#
|
4089
|
-
#
|
4090
|
-
#
|
4092
|
+
# Manager under any circumstances.
|
4093
|
+
#
|
4094
|
+
# State value assignment for patch compliance:
|
4095
|
+
#
|
4096
|
+
# * If a package was installed before it was added to the rejected
|
4097
|
+
# patches list, or is installed outside of Patch Manager
|
4098
|
+
# afterward, it's considered noncompliant with the patch baseline
|
4099
|
+
# and its status is reported as `INSTALLED_REJECTED`.
|
4100
|
+
#
|
4101
|
+
# * If an update attempts to install a dependency package that is
|
4102
|
+
# now rejected by the baseline, when previous versions of the
|
4103
|
+
# package were not rejected, the package being updated is reported
|
4104
|
+
# as `MISSING` for `SCAN` operations and as `FAILED` for `INSTALL`
|
4105
|
+
# operations.
|
4091
4106
|
# @return [String]
|
4092
4107
|
#
|
4093
4108
|
# @!attribute [rw] description
|
@@ -8045,12 +8060,21 @@ module Aws::SSM
|
|
8045
8060
|
# Defines the basic information about a patch baseline override.
|
8046
8061
|
# @return [Types::BaselineOverride]
|
8047
8062
|
#
|
8063
|
+
# @!attribute [rw] use_s3_dual_stack_endpoint
|
8064
|
+
# Specifies whether to use S3 dualstack endpoints for the patch
|
8065
|
+
# snapshot download URL. Set to `true` to receive a presigned URL that
|
8066
|
+
# supports both IPv4 and IPv6 connectivity. Set to `false` to use
|
8067
|
+
# standard IPv4-only endpoints. Default is `false`. This parameter is
|
8068
|
+
# required for managed nodes in IPv6-only environments.
|
8069
|
+
# @return [Boolean]
|
8070
|
+
#
|
8048
8071
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDeployablePatchSnapshotForInstanceRequest AWS API Documentation
|
8049
8072
|
#
|
8050
8073
|
class GetDeployablePatchSnapshotForInstanceRequest < Struct.new(
|
8051
8074
|
:instance_id,
|
8052
8075
|
:snapshot_id,
|
8053
|
-
:baseline_override
|
8076
|
+
:baseline_override,
|
8077
|
+
:use_s3_dual_stack_endpoint)
|
8054
8078
|
SENSITIVE = []
|
8055
8079
|
include Aws::Structure
|
8056
8080
|
end
|
@@ -19065,12 +19089,13 @@ module Aws::SSM
|
|
19065
19089
|
# @!attribute [rw] target_location_max_concurrency
|
19066
19090
|
# The maximum number of Amazon Web Services Regions and Amazon Web
|
19067
19091
|
# Services accounts allowed to run the Automation concurrently.
|
19092
|
+
# `TargetLocationMaxConcurrency` has a default value of 1.
|
19068
19093
|
# @return [String]
|
19069
19094
|
#
|
19070
19095
|
# @!attribute [rw] target_location_max_errors
|
19071
19096
|
# The maximum number of errors allowed before the system stops
|
19072
19097
|
# queueing additional Automation executions for the currently running
|
19073
|
-
# Automation.
|
19098
|
+
# Automation. `TargetLocationMaxErrors` has a default value of 0.
|
19074
19099
|
# @return [String]
|
19075
19100
|
#
|
19076
19101
|
# @!attribute [rw] execution_role_name
|
@@ -19087,6 +19112,10 @@ module Aws::SSM
|
|
19087
19112
|
# @!attribute [rw] include_child_organization_units
|
19088
19113
|
# Indicates whether to include child organizational units (OUs) that
|
19089
19114
|
# are children of the targeted OUs. The default is `false`.
|
19115
|
+
#
|
19116
|
+
# <note markdown="1"> This parameter is not supported by State Manager.
|
19117
|
+
#
|
19118
|
+
# </note>
|
19090
19119
|
# @return [Boolean]
|
19091
19120
|
#
|
19092
19121
|
# @!attribute [rw] exclude_accounts
|
@@ -19620,6 +19649,11 @@ module Aws::SSM
|
|
19620
19649
|
# Amazon Web Services accounts where you want to run the association.
|
19621
19650
|
# Use this action to update an association in multiple Regions and
|
19622
19651
|
# multiple accounts.
|
19652
|
+
#
|
19653
|
+
# <note markdown="1"> The `IncludeChildOrganizationUnits` parameter is not supported by
|
19654
|
+
# State Manager.
|
19655
|
+
#
|
19656
|
+
# </note>
|
19623
19657
|
# @return [Array<Types::TargetLocation>]
|
19624
19658
|
#
|
19625
19659
|
# @!attribute [rw] schedule_offset
|
@@ -20779,10 +20813,20 @@ module Aws::SSM
|
|
20779
20813
|
#
|
20780
20814
|
# : **All OSs**: Packages in the rejected patches list, and packages
|
20781
20815
|
# that include them as dependencies, aren't installed by Patch
|
20782
|
-
# Manager under any circumstances.
|
20783
|
-
#
|
20784
|
-
#
|
20785
|
-
#
|
20816
|
+
# Manager under any circumstances.
|
20817
|
+
#
|
20818
|
+
# State value assignment for patch compliance:
|
20819
|
+
#
|
20820
|
+
# * If a package was installed before it was added to the rejected
|
20821
|
+
# patches list, or is installed outside of Patch Manager
|
20822
|
+
# afterward, it's considered noncompliant with the patch baseline
|
20823
|
+
# and its status is reported as `INSTALLED_REJECTED`.
|
20824
|
+
#
|
20825
|
+
# * If an update attempts to install a dependency package that is
|
20826
|
+
# now rejected by the baseline, when previous versions of the
|
20827
|
+
# package were not rejected, the package being updated is reported
|
20828
|
+
# as `MISSING` for `SCAN` operations and as `FAILED` for `INSTALL`
|
20829
|
+
# operations.
|
20786
20830
|
# @return [String]
|
20787
20831
|
#
|
20788
20832
|
# @!attribute [rw] description
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1453,7 +1453,8 @@ module Aws
|
|
1453
1453
|
},
|
1454
1454
|
]?,
|
1455
1455
|
available_security_updates_compliance_status: ("COMPLIANT" | "NON_COMPLIANT")?
|
1456
|
-
}
|
1456
|
+
},
|
1457
|
+
?use_s3_dual_stack_endpoint: bool
|
1457
1458
|
) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
1458
1459
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeployablePatchSnapshotForInstanceResponseSuccess
|
1459
1460
|
|
data/sig/types.rbs
CHANGED