aws-sdk-ssm 1.69.0 → 1.70.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 +35 -16
- data/lib/aws-sdk-ssm/types.rb +39 -17
- 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: 4a042b6db782e367abda5a97edcff3e7c8c22857
|
4
|
+
data.tar.gz: 52cab61b792d092a0dd123a8755817df0888985f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 308271ccd004e4b5676e27fdafeffc7e3720c433f21033ee7885428104ee8049f728b980bb489c2c9f4b8de6c525f74862db0167c775d4492a8e9aeca578e963
|
7
|
+
data.tar.gz: 13bf7210ac3cacafd478b21d4438c7eebcdba3576e0efe8c52fc9bfdb04cff8d06de3e4a8fda2c4c659684eacc6a0aaf72b198e841e2ea1f8d23ae52bee5940b
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -410,12 +410,21 @@ module Aws::SSM
|
|
410
410
|
req.send_request(options)
|
411
411
|
end
|
412
412
|
|
413
|
-
#
|
414
|
-
#
|
415
|
-
#
|
416
|
-
#
|
417
|
-
#
|
418
|
-
#
|
413
|
+
# Generates an activation code and activation ID you can use to register
|
414
|
+
# your on-premises server or virtual machine (VM) with Systems Manager.
|
415
|
+
# Registering these machines with Systems Manager makes it possible to
|
416
|
+
# manage them using Systems Manager capabilities. You use the activation
|
417
|
+
# code and ID when installing SSM Agent on machines in your hybrid
|
418
|
+
# environment. For more information about requirements for managing
|
419
|
+
# on-premises instances and VMs using Systems Manager, see [Setting Up
|
420
|
+
# AWS Systems Manager for Hybrid Environments][1] in the *AWS Systems
|
421
|
+
# Manager User Guide*.
|
422
|
+
#
|
423
|
+
# <note markdown="1"> On-premises servers or VMs that are registered with Systems Manager
|
424
|
+
# and Amazon EC2 instances that you manage with Systems Manager are all
|
425
|
+
# called *managed instances*.
|
426
|
+
#
|
427
|
+
# </note>
|
419
428
|
#
|
420
429
|
#
|
421
430
|
#
|
@@ -423,20 +432,28 @@ module Aws::SSM
|
|
423
432
|
#
|
424
433
|
# @option params [String] :description
|
425
434
|
# A user-defined description of the resource that you want to register
|
426
|
-
# with
|
435
|
+
# with Systems Manager.
|
427
436
|
#
|
428
437
|
# Do not enter personally identifiable information in this field.
|
429
438
|
#
|
430
439
|
# @option params [String] :default_instance_name
|
431
440
|
# The name of the registered, managed instance as it will appear in the
|
432
|
-
#
|
433
|
-
#
|
441
|
+
# Systems Manager console or when you use the AWS command line tools to
|
442
|
+
# list Systems Manager resources.
|
434
443
|
#
|
435
444
|
# Do not enter personally identifiable information in this field.
|
436
445
|
#
|
437
446
|
# @option params [required, String] :iam_role
|
438
447
|
# The Amazon Identity and Access Management (IAM) role that you want to
|
439
|
-
# assign to the managed instance.
|
448
|
+
# assign to the managed instance. This IAM role must provide AssumeRole
|
449
|
+
# permissions for the Systems Manager service principal
|
450
|
+
# `ssm.amazonaws.com`. For more information, see [Create an IAM Service
|
451
|
+
# Role for a Hybrid Environment][1] in the *AWS Systems Manager User
|
452
|
+
# Guide*.
|
453
|
+
#
|
454
|
+
#
|
455
|
+
#
|
456
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-service-role.html
|
440
457
|
#
|
441
458
|
# @option params [Integer] :registration_limit
|
442
459
|
# Specify the maximum number of managed instances you want to register.
|
@@ -850,8 +867,7 @@ module Aws::SSM
|
|
850
867
|
# changed.
|
851
868
|
#
|
852
869
|
# @option params [String] :document_type
|
853
|
-
# The type of document to create.
|
854
|
-
# `Command`, `Policy`, `Automation`, `Session`, and `Package`.
|
870
|
+
# The type of document to create.
|
855
871
|
#
|
856
872
|
# @option params [String] :document_format
|
857
873
|
# Specify the document format for the request. The document format can
|
@@ -5665,8 +5681,9 @@ module Aws::SSM
|
|
5665
5681
|
req.send_request(options)
|
5666
5682
|
end
|
5667
5683
|
|
5668
|
-
#
|
5669
|
-
#
|
5684
|
+
# Returns all State Manager associations in the current AWS account and
|
5685
|
+
# Region. You can limit the results to a specific State Manager
|
5686
|
+
# association document or instance by specifying a filter.
|
5670
5687
|
#
|
5671
5688
|
# @option params [Array<Types::AssociationFilter>] :association_filter_list
|
5672
5689
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -6104,7 +6121,9 @@ module Aws::SSM
|
|
6104
6121
|
req.send_request(options)
|
6105
6122
|
end
|
6106
6123
|
|
6107
|
-
#
|
6124
|
+
# Returns all Systems Manager (SSM) documents in the current AWS account
|
6125
|
+
# and Region. You can limit the results of this request by using a
|
6126
|
+
# filter.
|
6108
6127
|
#
|
6109
6128
|
# @option params [Array<Types::DocumentFilter>] :document_filter_list
|
6110
6129
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -9237,7 +9256,7 @@ module Aws::SSM
|
|
9237
9256
|
params: params,
|
9238
9257
|
config: config)
|
9239
9258
|
context[:gem_name] = 'aws-sdk-ssm'
|
9240
|
-
context[:gem_version] = '1.
|
9259
|
+
context[:gem_version] = '1.70.0'
|
9241
9260
|
Seahorse::Client::Request.new(handlers, context)
|
9242
9261
|
end
|
9243
9262
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -1099,12 +1099,11 @@ module Aws::SSM
|
|
1099
1099
|
# @return [String]
|
1100
1100
|
#
|
1101
1101
|
# @!attribute [rw] automation_execution_status
|
1102
|
-
# The status of the execution.
|
1103
|
-
# Succeeded, Failed, Timed out, or Cancelled.
|
1102
|
+
# The status of the execution.
|
1104
1103
|
# @return [String]
|
1105
1104
|
#
|
1106
1105
|
# @!attribute [rw] execution_start_time
|
1107
|
-
# The time the execution started
|
1106
|
+
# The time the execution started.
|
1108
1107
|
# @return [Time]
|
1109
1108
|
#
|
1110
1109
|
# @!attribute [rw] execution_end_time
|
@@ -2176,22 +2175,30 @@ module Aws::SSM
|
|
2176
2175
|
#
|
2177
2176
|
# @!attribute [rw] description
|
2178
2177
|
# A user-defined description of the resource that you want to register
|
2179
|
-
# with
|
2178
|
+
# with Systems Manager.
|
2180
2179
|
#
|
2181
2180
|
# Do not enter personally identifiable information in this field.
|
2182
2181
|
# @return [String]
|
2183
2182
|
#
|
2184
2183
|
# @!attribute [rw] default_instance_name
|
2185
2184
|
# The name of the registered, managed instance as it will appear in
|
2186
|
-
# the
|
2187
|
-
# list
|
2185
|
+
# the Systems Manager console or when you use the AWS command line
|
2186
|
+
# tools to list Systems Manager resources.
|
2188
2187
|
#
|
2189
2188
|
# Do not enter personally identifiable information in this field.
|
2190
2189
|
# @return [String]
|
2191
2190
|
#
|
2192
2191
|
# @!attribute [rw] iam_role
|
2193
2192
|
# The Amazon Identity and Access Management (IAM) role that you want
|
2194
|
-
# to assign to the managed instance.
|
2193
|
+
# to assign to the managed instance. This IAM role must provide
|
2194
|
+
# AssumeRole permissions for the Systems Manager service principal
|
2195
|
+
# `ssm.amazonaws.com`. For more information, see [Create an IAM
|
2196
|
+
# Service Role for a Hybrid Environment][1] in the *AWS Systems
|
2197
|
+
# Manager User Guide*.
|
2198
|
+
#
|
2199
|
+
#
|
2200
|
+
#
|
2201
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-service-role.html
|
2195
2202
|
# @return [String]
|
2196
2203
|
#
|
2197
2204
|
# @!attribute [rw] registration_limit
|
@@ -2705,8 +2712,7 @@ module Aws::SSM
|
|
2705
2712
|
# @return [String]
|
2706
2713
|
#
|
2707
2714
|
# @!attribute [rw] document_type
|
2708
|
-
# The type of document to create.
|
2709
|
-
# `Command`, `Policy`, `Automation`, `Session`, and `Package`.
|
2715
|
+
# The type of document to create.
|
2710
2716
|
# @return [String]
|
2711
2717
|
#
|
2712
2718
|
# @!attribute [rw] document_format
|
@@ -5618,7 +5624,9 @@ module Aws::SSM
|
|
5618
5624
|
# @return [Integer]
|
5619
5625
|
#
|
5620
5626
|
# @!attribute [rw] instances_with_installed_pending_reboot_patches
|
5621
|
-
#
|
5627
|
+
# The number of instances with patches installed by Patch Manager that
|
5628
|
+
# have not been rebooted after the patch installation. The status of
|
5629
|
+
# these instances is NON\_COMPLIANT.
|
5622
5630
|
# @return [Integer]
|
5623
5631
|
#
|
5624
5632
|
# @!attribute [rw] instances_with_installed_rejected_patches
|
@@ -8678,7 +8686,8 @@ module Aws::SSM
|
|
8678
8686
|
# @return [Integer]
|
8679
8687
|
#
|
8680
8688
|
# @!attribute [rw] installed_pending_reboot_count
|
8681
|
-
#
|
8689
|
+
# The number of patches installed by Patch Manager since the last time
|
8690
|
+
# the instance was rebooted.
|
8682
8691
|
# @return [Integer]
|
8683
8692
|
#
|
8684
8693
|
# @!attribute [rw] installed_rejected_count
|
@@ -8735,11 +8744,26 @@ module Aws::SSM
|
|
8735
8744
|
# @return [String]
|
8736
8745
|
#
|
8737
8746
|
# @!attribute [rw] last_no_reboot_install_operation_time
|
8738
|
-
#
|
8747
|
+
# The time of the last attempt to patch the instance with `NoReboot`
|
8748
|
+
# specified as the reboot option.
|
8739
8749
|
# @return [Time]
|
8740
8750
|
#
|
8741
8751
|
# @!attribute [rw] reboot_option
|
8742
|
-
#
|
8752
|
+
# Indicates the reboot option specified in the patch baseline.
|
8753
|
+
#
|
8754
|
+
# <note markdown="1"> Reboot options apply to `Install` operations only. Reboots are not
|
8755
|
+
# attempted for Patch Manager `Scan` operations.
|
8756
|
+
#
|
8757
|
+
# </note>
|
8758
|
+
#
|
8759
|
+
# * **RebootIfNeeded**\: Patch Manager tries to reboot the instance if
|
8760
|
+
# it installed any patches, or if any patches are detected with a
|
8761
|
+
# status of `InstalledPendingReboot`.
|
8762
|
+
#
|
8763
|
+
# * **NoReboot**\: Patch Manager attempts to install missing packages
|
8764
|
+
# without trying to reboot the system. Patches installed with this
|
8765
|
+
# option are assigned a status of `InstalledPendingReboot`. These
|
8766
|
+
# patches might not be in effect until a reboot is performed.
|
8743
8767
|
# @return [String]
|
8744
8768
|
#
|
8745
8769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstancePatchState AWS API Documentation
|
@@ -9543,8 +9567,7 @@ module Aws::SSM
|
|
9543
9567
|
# @return [Array<String>]
|
9544
9568
|
#
|
9545
9569
|
# @!attribute [rw] type
|
9546
|
-
# The type of filter.
|
9547
|
-
# "Equal"\|"NotEqual"\|"BeginWith"\|"LessThan"\|"GreaterThan"
|
9570
|
+
# The type of filter.
|
9548
9571
|
# @return [String]
|
9549
9572
|
#
|
9550
9573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryFilter AWS API Documentation
|
@@ -15372,8 +15395,7 @@ module Aws::SSM
|
|
15372
15395
|
# @return [Time]
|
15373
15396
|
#
|
15374
15397
|
# @!attribute [rw] step_status
|
15375
|
-
# The execution status for this step.
|
15376
|
-
# InProgress, Success, Cancelled, Failed, and TimedOut.
|
15398
|
+
# The execution status for this step.
|
15377
15399
|
# @return [String]
|
15378
15400
|
#
|
15379
15401
|
# @!attribute [rw] response_code
|
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.70.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:
|
11
|
+
date: 2020-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|