aws-sdk-ssm 1.81.1 → 1.82.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 +3 -1
- data/lib/aws-sdk-ssm/client.rb +57 -15
- data/lib/aws-sdk-ssm/client_api.rb +8 -0
- data/lib/aws-sdk-ssm/customizations.rb +1 -0
- data/lib/aws-sdk-ssm/errors.rb +2 -0
- data/lib/aws-sdk-ssm/resource.rb +2 -0
- data/lib/aws-sdk-ssm/types.rb +61 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89b2780e964aac2f35594fa42eb0d85067d33aa4a6657a09971bc86354742967
|
4
|
+
data.tar.gz: 5092209c6f492e36e4a38b368ed7c5a0ff1ab81a93af8b5b1cd8d037dab947f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7ca28f04dd0818bf47537d947019bed780e3eeb96a795cc1296108e82f356479710d9e6570662e731e13a3f308d5dc54cf9f4640460b6179e0b58808cced98c
|
7
|
+
data.tar.gz: a4a5a8b221a34265a4d89b16ba0454905fac8b449531ca6650e5ca97a835232213d400e1c84b63cb81a089d6dcae7641eac9171f9e8b5caaaa9d0918601b1996
|
data/lib/aws-sdk-ssm.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::SSM
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.82.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -579,14 +581,19 @@ module Aws::SSM
|
|
579
581
|
req.send_request(options)
|
580
582
|
end
|
581
583
|
|
582
|
-
#
|
583
|
-
# instances
|
584
|
-
#
|
585
|
-
#
|
586
|
-
#
|
587
|
-
#
|
588
|
-
#
|
589
|
-
#
|
584
|
+
# A State Manager association defines the state that you want to
|
585
|
+
# maintain on your instances. For example, an association can specify
|
586
|
+
# that anti-virus software must be installed and running on your
|
587
|
+
# instances, or that certain ports must be closed. For static targets,
|
588
|
+
# the association specifies a schedule for when the configuration is
|
589
|
+
# reapplied. For dynamic targets, such as an AWS Resource Group or an
|
590
|
+
# AWS Autoscaling Group, State Manager applies the configuration when
|
591
|
+
# new instances are added to the group. The association also specifies
|
592
|
+
# actions to take when applying the configuration. For example, an
|
593
|
+
# association for anti-virus software might run once a day. If the
|
594
|
+
# software is not installed, then State Manager installs it. If the
|
595
|
+
# software is installed, but the service is not running, then the
|
596
|
+
# association might instruct State Manager to start the service.
|
590
597
|
#
|
591
598
|
# @option params [required, String] :name
|
592
599
|
# The name of the SSM document that contains the configuration
|
@@ -1145,6 +1152,18 @@ module Aws::SSM
|
|
1145
1152
|
#
|
1146
1153
|
# [1]: https://www.iana.org/time-zones
|
1147
1154
|
#
|
1155
|
+
# @option params [Integer] :schedule_offset
|
1156
|
+
# The number of days to wait after the date and time specified by a CRON
|
1157
|
+
# expression before running the maintenance window.
|
1158
|
+
#
|
1159
|
+
# For example, the following cron expression schedules a maintenance
|
1160
|
+
# window to run on the third Tuesday of every month at 11:30 PM.
|
1161
|
+
#
|
1162
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
1163
|
+
#
|
1164
|
+
# If the schedule offset is `2`, the maintenance window won't run until
|
1165
|
+
# two days later.
|
1166
|
+
#
|
1148
1167
|
# @option params [required, Integer] :duration
|
1149
1168
|
# The duration of the maintenance window in hours.
|
1150
1169
|
#
|
@@ -1200,6 +1219,7 @@ module Aws::SSM
|
|
1200
1219
|
# end_date: "MaintenanceWindowStringDateTime",
|
1201
1220
|
# schedule: "MaintenanceWindowSchedule", # required
|
1202
1221
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
1222
|
+
# schedule_offset: 1,
|
1203
1223
|
# duration: 1, # required
|
1204
1224
|
# cutoff: 1, # required
|
1205
1225
|
# allow_unassociated_targets: false, # required
|
@@ -3680,6 +3700,7 @@ module Aws::SSM
|
|
3680
3700
|
# resp.window_identities[0].cutoff #=> Integer
|
3681
3701
|
# resp.window_identities[0].schedule #=> String
|
3682
3702
|
# resp.window_identities[0].schedule_timezone #=> String
|
3703
|
+
# resp.window_identities[0].schedule_offset #=> Integer
|
3683
3704
|
# resp.window_identities[0].end_date #=> String
|
3684
3705
|
# resp.window_identities[0].start_date #=> String
|
3685
3706
|
# resp.window_identities[0].next_execution_time #=> String
|
@@ -4854,6 +4875,7 @@ module Aws::SSM
|
|
4854
4875
|
# * {Types::GetMaintenanceWindowResult#end_date #end_date} => String
|
4855
4876
|
# * {Types::GetMaintenanceWindowResult#schedule #schedule} => String
|
4856
4877
|
# * {Types::GetMaintenanceWindowResult#schedule_timezone #schedule_timezone} => String
|
4878
|
+
# * {Types::GetMaintenanceWindowResult#schedule_offset #schedule_offset} => Integer
|
4857
4879
|
# * {Types::GetMaintenanceWindowResult#next_execution_time #next_execution_time} => String
|
4858
4880
|
# * {Types::GetMaintenanceWindowResult#duration #duration} => Integer
|
4859
4881
|
# * {Types::GetMaintenanceWindowResult#cutoff #cutoff} => Integer
|
@@ -4877,6 +4899,7 @@ module Aws::SSM
|
|
4877
4899
|
# resp.end_date #=> String
|
4878
4900
|
# resp.schedule #=> String
|
4879
4901
|
# resp.schedule_timezone #=> String
|
4902
|
+
# resp.schedule_offset #=> Integer
|
4880
4903
|
# resp.next_execution_time #=> String
|
4881
4904
|
# resp.duration #=> Integer
|
4882
4905
|
# resp.cutoff #=> Integer
|
@@ -6899,15 +6922,18 @@ module Aws::SSM
|
|
6899
6922
|
# @option params [String] :type
|
6900
6923
|
# The type of parameter that you want to add to the system.
|
6901
6924
|
#
|
6925
|
+
# <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
|
6926
|
+
# templates or in the China Regions.
|
6927
|
+
#
|
6928
|
+
# </note>
|
6929
|
+
#
|
6902
6930
|
# Items in a `StringList` must be separated by a comma (,). You can't
|
6903
6931
|
# use other punctuation or special character to escape items in the
|
6904
6932
|
# list. If you have a parameter value that requires a comma, then use
|
6905
6933
|
# the `String` data type.
|
6906
6934
|
#
|
6907
|
-
#
|
6908
|
-
#
|
6909
|
-
#
|
6910
|
-
# </note>
|
6935
|
+
# Specifying a parameter type is not required when updating a parameter.
|
6936
|
+
# You must specify a parameter type when creating a parameter.
|
6911
6937
|
#
|
6912
6938
|
# @option params [String] :key_id
|
6913
6939
|
# The KMS Key ID that you want to use to encrypt a parameter. Either the
|
@@ -8062,8 +8088,9 @@ module Aws::SSM
|
|
8062
8088
|
# @option params [String] :document_name
|
8063
8089
|
# The name of the SSM document to define the parameters and plugin
|
8064
8090
|
# settings for the session. For example, `SSM-SessionManagerRunShell`.
|
8065
|
-
#
|
8066
|
-
#
|
8091
|
+
# You can call the GetDocument API to verify the document exists before
|
8092
|
+
# attempting to start a session. If no document name is provided, a
|
8093
|
+
# shell to the instance is launched by default.
|
8067
8094
|
#
|
8068
8095
|
# @option params [Hash<String,Array>] :parameters
|
8069
8096
|
# Reserved for future use.
|
@@ -8633,6 +8660,18 @@ module Aws::SSM
|
|
8633
8660
|
#
|
8634
8661
|
# [1]: https://www.iana.org/time-zones
|
8635
8662
|
#
|
8663
|
+
# @option params [Integer] :schedule_offset
|
8664
|
+
# The number of days to wait after the date and time specified by a CRON
|
8665
|
+
# expression before running the maintenance window.
|
8666
|
+
#
|
8667
|
+
# For example, the following cron expression schedules a maintenance
|
8668
|
+
# window to run the third Tuesday of every month at 11:30 PM.
|
8669
|
+
#
|
8670
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
8671
|
+
#
|
8672
|
+
# If the schedule offset is `2`, the maintenance window won't run until
|
8673
|
+
# two days later.
|
8674
|
+
#
|
8636
8675
|
# @option params [Integer] :duration
|
8637
8676
|
# The duration of the maintenance window in hours.
|
8638
8677
|
#
|
@@ -8661,6 +8700,7 @@ module Aws::SSM
|
|
8661
8700
|
# * {Types::UpdateMaintenanceWindowResult#end_date #end_date} => String
|
8662
8701
|
# * {Types::UpdateMaintenanceWindowResult#schedule #schedule} => String
|
8663
8702
|
# * {Types::UpdateMaintenanceWindowResult#schedule_timezone #schedule_timezone} => String
|
8703
|
+
# * {Types::UpdateMaintenanceWindowResult#schedule_offset #schedule_offset} => Integer
|
8664
8704
|
# * {Types::UpdateMaintenanceWindowResult#duration #duration} => Integer
|
8665
8705
|
# * {Types::UpdateMaintenanceWindowResult#cutoff #cutoff} => Integer
|
8666
8706
|
# * {Types::UpdateMaintenanceWindowResult#allow_unassociated_targets #allow_unassociated_targets} => Boolean
|
@@ -8676,6 +8716,7 @@ module Aws::SSM
|
|
8676
8716
|
# end_date: "MaintenanceWindowStringDateTime",
|
8677
8717
|
# schedule: "MaintenanceWindowSchedule",
|
8678
8718
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
8719
|
+
# schedule_offset: 1,
|
8679
8720
|
# duration: 1,
|
8680
8721
|
# cutoff: 1,
|
8681
8722
|
# allow_unassociated_targets: false,
|
@@ -8692,6 +8733,7 @@ module Aws::SSM
|
|
8692
8733
|
# resp.end_date #=> String
|
8693
8734
|
# resp.schedule #=> String
|
8694
8735
|
# resp.schedule_timezone #=> String
|
8736
|
+
# resp.schedule_offset #=> Integer
|
8695
8737
|
# resp.duration #=> Integer
|
8696
8738
|
# resp.cutoff #=> Integer
|
8697
8739
|
# resp.allow_unassociated_targets #=> Boolean
|
@@ -9537,7 +9579,7 @@ module Aws::SSM
|
|
9537
9579
|
params: params,
|
9538
9580
|
config: config)
|
9539
9581
|
context[:gem_name] = 'aws-sdk-ssm'
|
9540
|
-
context[:gem_version] = '1.
|
9582
|
+
context[:gem_version] = '1.82.0'
|
9541
9583
|
Seahorse::Client::Request.new(handlers, context)
|
9542
9584
|
end
|
9543
9585
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -614,6 +616,7 @@ module Aws::SSM
|
|
614
616
|
MaintenanceWindowLambdaQualifier = Shapes::StringShape.new(name: 'MaintenanceWindowLambdaQualifier')
|
615
617
|
MaintenanceWindowMaxResults = Shapes::IntegerShape.new(name: 'MaintenanceWindowMaxResults')
|
616
618
|
MaintenanceWindowName = Shapes::StringShape.new(name: 'MaintenanceWindowName')
|
619
|
+
MaintenanceWindowOffset = Shapes::IntegerShape.new(name: 'MaintenanceWindowOffset')
|
617
620
|
MaintenanceWindowResourceType = Shapes::StringShape.new(name: 'MaintenanceWindowResourceType')
|
618
621
|
MaintenanceWindowRunCommandParameters = Shapes::StructureShape.new(name: 'MaintenanceWindowRunCommandParameters')
|
619
622
|
MaintenanceWindowSchedule = Shapes::StringShape.new(name: 'MaintenanceWindowSchedule')
|
@@ -1533,6 +1536,7 @@ module Aws::SSM
|
|
1533
1536
|
CreateMaintenanceWindowRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
1534
1537
|
CreateMaintenanceWindowRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, required: true, location_name: "Schedule"))
|
1535
1538
|
CreateMaintenanceWindowRequest.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
1539
|
+
CreateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1536
1540
|
CreateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, required: true, location_name: "Duration"))
|
1537
1541
|
CreateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, required: true, location_name: "Cutoff"))
|
1538
1542
|
CreateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, required: true, location_name: "AllowUnassociatedTargets"))
|
@@ -2287,6 +2291,7 @@ module Aws::SSM
|
|
2287
2291
|
GetMaintenanceWindowResult.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
2288
2292
|
GetMaintenanceWindowResult.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
2289
2293
|
GetMaintenanceWindowResult.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
2294
|
+
GetMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
2290
2295
|
GetMaintenanceWindowResult.add_member(:next_execution_time, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "NextExecutionTime"))
|
2291
2296
|
GetMaintenanceWindowResult.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration"))
|
2292
2297
|
GetMaintenanceWindowResult.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
@@ -2965,6 +2970,7 @@ module Aws::SSM
|
|
2965
2970
|
MaintenanceWindowIdentity.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
2966
2971
|
MaintenanceWindowIdentity.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
2967
2972
|
MaintenanceWindowIdentity.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
2973
|
+
MaintenanceWindowIdentity.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
2968
2974
|
MaintenanceWindowIdentity.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
2969
2975
|
MaintenanceWindowIdentity.add_member(:start_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "StartDate"))
|
2970
2976
|
MaintenanceWindowIdentity.add_member(:next_execution_time, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "NextExecutionTime"))
|
@@ -3901,6 +3907,7 @@ module Aws::SSM
|
|
3901
3907
|
UpdateMaintenanceWindowRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
3902
3908
|
UpdateMaintenanceWindowRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
3903
3909
|
UpdateMaintenanceWindowRequest.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
3910
|
+
UpdateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
3904
3911
|
UpdateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration", metadata: {"box"=>true}))
|
3905
3912
|
UpdateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff", metadata: {"box"=>true}))
|
3906
3913
|
UpdateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets", metadata: {"box"=>true}))
|
@@ -3915,6 +3922,7 @@ module Aws::SSM
|
|
3915
3922
|
UpdateMaintenanceWindowResult.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
3916
3923
|
UpdateMaintenanceWindowResult.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
3917
3924
|
UpdateMaintenanceWindowResult.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
3925
|
+
UpdateMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
3918
3926
|
UpdateMaintenanceWindowResult.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration"))
|
3919
3927
|
UpdateMaintenanceWindowResult.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
3920
3928
|
UpdateMaintenanceWindowResult.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets"))
|
data/lib/aws-sdk-ssm/errors.rb
CHANGED
data/lib/aws-sdk-ssm/resource.rb
CHANGED
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -2946,6 +2948,7 @@ module Aws::SSM
|
|
2946
2948
|
# end_date: "MaintenanceWindowStringDateTime",
|
2947
2949
|
# schedule: "MaintenanceWindowSchedule", # required
|
2948
2950
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
2951
|
+
# schedule_offset: 1,
|
2949
2952
|
# duration: 1, # required
|
2950
2953
|
# cutoff: 1, # required
|
2951
2954
|
# allow_unassociated_targets: false, # required
|
@@ -2999,6 +3002,19 @@ module Aws::SSM
|
|
2999
3002
|
# [1]: https://www.iana.org/time-zones
|
3000
3003
|
# @return [String]
|
3001
3004
|
#
|
3005
|
+
# @!attribute [rw] schedule_offset
|
3006
|
+
# The number of days to wait after the date and time specified by a
|
3007
|
+
# CRON expression before running the maintenance window.
|
3008
|
+
#
|
3009
|
+
# For example, the following cron expression schedules a maintenance
|
3010
|
+
# window to run on the third Tuesday of every month at 11:30 PM.
|
3011
|
+
#
|
3012
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
3013
|
+
#
|
3014
|
+
# If the schedule offset is `2`, the maintenance window won't run
|
3015
|
+
# until two days later.
|
3016
|
+
# @return [Integer]
|
3017
|
+
#
|
3002
3018
|
# @!attribute [rw] duration
|
3003
3019
|
# The duration of the maintenance window in hours.
|
3004
3020
|
# @return [Integer]
|
@@ -3055,6 +3071,7 @@ module Aws::SSM
|
|
3055
3071
|
:end_date,
|
3056
3072
|
:schedule,
|
3057
3073
|
:schedule_timezone,
|
3074
|
+
:schedule_offset,
|
3058
3075
|
:duration,
|
3059
3076
|
:cutoff,
|
3060
3077
|
:allow_unassociated_targets,
|
@@ -7697,6 +7714,11 @@ module Aws::SSM
|
|
7697
7714
|
# [1]: https://www.iana.org/time-zones
|
7698
7715
|
# @return [String]
|
7699
7716
|
#
|
7717
|
+
# @!attribute [rw] schedule_offset
|
7718
|
+
# The number of days to wait to run a maintenance window after the
|
7719
|
+
# scheduled CRON expression date and time.
|
7720
|
+
# @return [Integer]
|
7721
|
+
#
|
7700
7722
|
# @!attribute [rw] next_execution_time
|
7701
7723
|
# The next time the maintenance window will actually run, taking into
|
7702
7724
|
# account any specified times for the maintenance window to become
|
@@ -7739,6 +7761,7 @@ module Aws::SSM
|
|
7739
7761
|
:end_date,
|
7740
7762
|
:schedule,
|
7741
7763
|
:schedule_timezone,
|
7764
|
+
:schedule_offset,
|
7742
7765
|
:next_execution_time,
|
7743
7766
|
:duration,
|
7744
7767
|
:cutoff,
|
@@ -11190,6 +11213,11 @@ module Aws::SSM
|
|
11190
11213
|
# based on, in Internet Assigned Numbers Authority (IANA) format.
|
11191
11214
|
# @return [String]
|
11192
11215
|
#
|
11216
|
+
# @!attribute [rw] schedule_offset
|
11217
|
+
# The number of days to wait to run a maintenance window after the
|
11218
|
+
# scheduled CRON expression date and time.
|
11219
|
+
# @return [Integer]
|
11220
|
+
#
|
11193
11221
|
# @!attribute [rw] end_date
|
11194
11222
|
# The date and time, in ISO-8601 Extended format, for when the
|
11195
11223
|
# maintenance window is scheduled to become inactive.
|
@@ -11217,6 +11245,7 @@ module Aws::SSM
|
|
11217
11245
|
:cutoff,
|
11218
11246
|
:schedule,
|
11219
11247
|
:schedule_timezone,
|
11248
|
+
:schedule_offset,
|
11220
11249
|
:end_date,
|
11221
11250
|
:start_date,
|
11222
11251
|
:next_execution_time)
|
@@ -13551,15 +13580,19 @@ module Aws::SSM
|
|
13551
13580
|
# @!attribute [rw] type
|
13552
13581
|
# The type of parameter that you want to add to the system.
|
13553
13582
|
#
|
13583
|
+
# <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
|
13584
|
+
# templates or in the China Regions.
|
13585
|
+
#
|
13586
|
+
# </note>
|
13587
|
+
#
|
13554
13588
|
# Items in a `StringList` must be separated by a comma (,). You can't
|
13555
13589
|
# use other punctuation or special character to escape items in the
|
13556
13590
|
# list. If you have a parameter value that requires a comma, then use
|
13557
13591
|
# the `String` data type.
|
13558
13592
|
#
|
13559
|
-
#
|
13560
|
-
#
|
13561
|
-
#
|
13562
|
-
# </note>
|
13593
|
+
# Specifying a parameter type is not required when updating a
|
13594
|
+
# parameter. You must specify a parameter type when creating a
|
13595
|
+
# parameter.
|
13563
13596
|
# @return [String]
|
13564
13597
|
#
|
13565
13598
|
# @!attribute [rw] key_id
|
@@ -15653,8 +15686,9 @@ module Aws::SSM
|
|
15653
15686
|
# @!attribute [rw] document_name
|
15654
15687
|
# The name of the SSM document to define the parameters and plugin
|
15655
15688
|
# settings for the session. For example, `SSM-SessionManagerRunShell`.
|
15656
|
-
#
|
15657
|
-
#
|
15689
|
+
# You can call the GetDocument API to verify the document exists
|
15690
|
+
# before attempting to start a session. If no document name is
|
15691
|
+
# provided, a shell to the instance is launched by default.
|
15658
15692
|
# @return [String]
|
15659
15693
|
#
|
15660
15694
|
# @!attribute [rw] parameters
|
@@ -16649,6 +16683,7 @@ module Aws::SSM
|
|
16649
16683
|
# end_date: "MaintenanceWindowStringDateTime",
|
16650
16684
|
# schedule: "MaintenanceWindowSchedule",
|
16651
16685
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
16686
|
+
# schedule_offset: 1,
|
16652
16687
|
# duration: 1,
|
16653
16688
|
# cutoff: 1,
|
16654
16689
|
# allow_unassociated_targets: false,
|
@@ -16704,6 +16739,19 @@ module Aws::SSM
|
|
16704
16739
|
# [1]: https://www.iana.org/time-zones
|
16705
16740
|
# @return [String]
|
16706
16741
|
#
|
16742
|
+
# @!attribute [rw] schedule_offset
|
16743
|
+
# The number of days to wait after the date and time specified by a
|
16744
|
+
# CRON expression before running the maintenance window.
|
16745
|
+
#
|
16746
|
+
# For example, the following cron expression schedules a maintenance
|
16747
|
+
# window to run the third Tuesday of every month at 11:30 PM.
|
16748
|
+
#
|
16749
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
16750
|
+
#
|
16751
|
+
# If the schedule offset is `2`, the maintenance window won't run
|
16752
|
+
# until two days later.
|
16753
|
+
# @return [Integer]
|
16754
|
+
#
|
16707
16755
|
# @!attribute [rw] duration
|
16708
16756
|
# The duration of the maintenance window in hours.
|
16709
16757
|
# @return [Integer]
|
@@ -16738,6 +16786,7 @@ module Aws::SSM
|
|
16738
16786
|
:end_date,
|
16739
16787
|
:schedule,
|
16740
16788
|
:schedule_timezone,
|
16789
|
+
:schedule_offset,
|
16741
16790
|
:duration,
|
16742
16791
|
:cutoff,
|
16743
16792
|
:allow_unassociated_targets,
|
@@ -16787,6 +16836,11 @@ module Aws::SSM
|
|
16787
16836
|
# [1]: https://www.iana.org/time-zones
|
16788
16837
|
# @return [String]
|
16789
16838
|
#
|
16839
|
+
# @!attribute [rw] schedule_offset
|
16840
|
+
# The number of days to wait to run a maintenance window after the
|
16841
|
+
# scheduled CRON expression date and time.
|
16842
|
+
# @return [Integer]
|
16843
|
+
#
|
16790
16844
|
# @!attribute [rw] duration
|
16791
16845
|
# The duration of the maintenance window in hours.
|
16792
16846
|
# @return [Integer]
|
@@ -16815,6 +16869,7 @@ module Aws::SSM
|
|
16815
16869
|
:end_date,
|
16816
16870
|
:schedule,
|
16817
16871
|
:schedule_timezone,
|
16872
|
+
:schedule_offset,
|
16818
16873
|
:duration,
|
16819
16874
|
:cutoff,
|
16820
16875
|
:allow_unassociated_targets,
|
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.82.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: 2020-06-
|
11
|
+
date: 2020-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|