aws-sdk-ssm 1.81.1 → 1.86.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ssm.rb +4 -1
- data/lib/aws-sdk-ssm/client.rb +294 -27
- data/lib/aws-sdk-ssm/client_api.rb +212 -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 +618 -29
- data/lib/aws-sdk-ssm/waiters.rb +156 -0
- metadata +3 -2
@@ -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"))
|
@@ -4376,6 +4384,12 @@ module Aws::SSM
|
|
4376
4384
|
o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
|
4377
4385
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4378
4386
|
o.errors << Shapes::ShapeRef.new(shape: AssociationExecutionDoesNotExist)
|
4387
|
+
o[:pager] = Aws::Pager.new(
|
4388
|
+
limit_key: "max_results",
|
4389
|
+
tokens: {
|
4390
|
+
"next_token" => "next_token"
|
4391
|
+
}
|
4392
|
+
)
|
4379
4393
|
end)
|
4380
4394
|
|
4381
4395
|
api.add_operation(:describe_association_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4387,6 +4401,12 @@ module Aws::SSM
|
|
4387
4401
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4388
4402
|
o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
|
4389
4403
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4404
|
+
o[:pager] = Aws::Pager.new(
|
4405
|
+
limit_key: "max_results",
|
4406
|
+
tokens: {
|
4407
|
+
"next_token" => "next_token"
|
4408
|
+
}
|
4409
|
+
)
|
4390
4410
|
end)
|
4391
4411
|
|
4392
4412
|
api.add_operation(:describe_automation_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4399,6 +4419,12 @@ module Aws::SSM
|
|
4399
4419
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterValue)
|
4400
4420
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4401
4421
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4422
|
+
o[:pager] = Aws::Pager.new(
|
4423
|
+
limit_key: "max_results",
|
4424
|
+
tokens: {
|
4425
|
+
"next_token" => "next_token"
|
4426
|
+
}
|
4427
|
+
)
|
4402
4428
|
end)
|
4403
4429
|
|
4404
4430
|
api.add_operation(:describe_automation_step_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4412,6 +4438,12 @@ module Aws::SSM
|
|
4412
4438
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterKey)
|
4413
4439
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterValue)
|
4414
4440
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4441
|
+
o[:pager] = Aws::Pager.new(
|
4442
|
+
limit_key: "max_results",
|
4443
|
+
tokens: {
|
4444
|
+
"next_token" => "next_token"
|
4445
|
+
}
|
4446
|
+
)
|
4415
4447
|
end)
|
4416
4448
|
|
4417
4449
|
api.add_operation(:describe_available_patches, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4421,6 +4453,12 @@ module Aws::SSM
|
|
4421
4453
|
o.input = Shapes::ShapeRef.new(shape: DescribeAvailablePatchesRequest)
|
4422
4454
|
o.output = Shapes::ShapeRef.new(shape: DescribeAvailablePatchesResult)
|
4423
4455
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4456
|
+
o[:pager] = Aws::Pager.new(
|
4457
|
+
limit_key: "max_results",
|
4458
|
+
tokens: {
|
4459
|
+
"next_token" => "next_token"
|
4460
|
+
}
|
4461
|
+
)
|
4424
4462
|
end)
|
4425
4463
|
|
4426
4464
|
api.add_operation(:describe_document, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4454,6 +4492,12 @@ module Aws::SSM
|
|
4454
4492
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4455
4493
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
|
4456
4494
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4495
|
+
o[:pager] = Aws::Pager.new(
|
4496
|
+
limit_key: "max_results",
|
4497
|
+
tokens: {
|
4498
|
+
"next_token" => "next_token"
|
4499
|
+
}
|
4500
|
+
)
|
4457
4501
|
end)
|
4458
4502
|
|
4459
4503
|
api.add_operation(:describe_effective_patches_for_patch_baseline, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4466,6 +4510,12 @@ module Aws::SSM
|
|
4466
4510
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4467
4511
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperatingSystem)
|
4468
4512
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4513
|
+
o[:pager] = Aws::Pager.new(
|
4514
|
+
limit_key: "max_results",
|
4515
|
+
tokens: {
|
4516
|
+
"next_token" => "next_token"
|
4517
|
+
}
|
4518
|
+
)
|
4469
4519
|
end)
|
4470
4520
|
|
4471
4521
|
api.add_operation(:describe_instance_associations_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4477,6 +4527,12 @@ module Aws::SSM
|
|
4477
4527
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4478
4528
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
|
4479
4529
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4530
|
+
o[:pager] = Aws::Pager.new(
|
4531
|
+
limit_key: "max_results",
|
4532
|
+
tokens: {
|
4533
|
+
"next_token" => "next_token"
|
4534
|
+
}
|
4535
|
+
)
|
4480
4536
|
end)
|
4481
4537
|
|
4482
4538
|
api.add_operation(:describe_instance_information, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4506,6 +4562,12 @@ module Aws::SSM
|
|
4506
4562
|
o.output = Shapes::ShapeRef.new(shape: DescribeInstancePatchStatesResult)
|
4507
4563
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4508
4564
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4565
|
+
o[:pager] = Aws::Pager.new(
|
4566
|
+
limit_key: "max_results",
|
4567
|
+
tokens: {
|
4568
|
+
"next_token" => "next_token"
|
4569
|
+
}
|
4570
|
+
)
|
4509
4571
|
end)
|
4510
4572
|
|
4511
4573
|
api.add_operation(:describe_instance_patch_states_for_patch_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4517,6 +4579,12 @@ module Aws::SSM
|
|
4517
4579
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4518
4580
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
4519
4581
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4582
|
+
o[:pager] = Aws::Pager.new(
|
4583
|
+
limit_key: "max_results",
|
4584
|
+
tokens: {
|
4585
|
+
"next_token" => "next_token"
|
4586
|
+
}
|
4587
|
+
)
|
4520
4588
|
end)
|
4521
4589
|
|
4522
4590
|
api.add_operation(:describe_instance_patches, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4529,6 +4597,12 @@ module Aws::SSM
|
|
4529
4597
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
|
4530
4598
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
4531
4599
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4600
|
+
o[:pager] = Aws::Pager.new(
|
4601
|
+
limit_key: "max_results",
|
4602
|
+
tokens: {
|
4603
|
+
"next_token" => "next_token"
|
4604
|
+
}
|
4605
|
+
)
|
4532
4606
|
end)
|
4533
4607
|
|
4534
4608
|
api.add_operation(:describe_inventory_deletions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4540,6 +4614,12 @@ module Aws::SSM
|
|
4540
4614
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4541
4615
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDeletionIdException)
|
4542
4616
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4617
|
+
o[:pager] = Aws::Pager.new(
|
4618
|
+
limit_key: "max_results",
|
4619
|
+
tokens: {
|
4620
|
+
"next_token" => "next_token"
|
4621
|
+
}
|
4622
|
+
)
|
4543
4623
|
end)
|
4544
4624
|
|
4545
4625
|
api.add_operation(:describe_maintenance_window_execution_task_invocations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4550,6 +4630,12 @@ module Aws::SSM
|
|
4550
4630
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionTaskInvocationsResult)
|
4551
4631
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4552
4632
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4633
|
+
o[:pager] = Aws::Pager.new(
|
4634
|
+
limit_key: "max_results",
|
4635
|
+
tokens: {
|
4636
|
+
"next_token" => "next_token"
|
4637
|
+
}
|
4638
|
+
)
|
4553
4639
|
end)
|
4554
4640
|
|
4555
4641
|
api.add_operation(:describe_maintenance_window_execution_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4560,6 +4646,12 @@ module Aws::SSM
|
|
4560
4646
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionTasksResult)
|
4561
4647
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4562
4648
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4649
|
+
o[:pager] = Aws::Pager.new(
|
4650
|
+
limit_key: "max_results",
|
4651
|
+
tokens: {
|
4652
|
+
"next_token" => "next_token"
|
4653
|
+
}
|
4654
|
+
)
|
4563
4655
|
end)
|
4564
4656
|
|
4565
4657
|
api.add_operation(:describe_maintenance_window_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4569,6 +4661,12 @@ module Aws::SSM
|
|
4569
4661
|
o.input = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionsRequest)
|
4570
4662
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionsResult)
|
4571
4663
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4664
|
+
o[:pager] = Aws::Pager.new(
|
4665
|
+
limit_key: "max_results",
|
4666
|
+
tokens: {
|
4667
|
+
"next_token" => "next_token"
|
4668
|
+
}
|
4669
|
+
)
|
4572
4670
|
end)
|
4573
4671
|
|
4574
4672
|
api.add_operation(:describe_maintenance_window_schedule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4579,6 +4677,12 @@ module Aws::SSM
|
|
4579
4677
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowScheduleResult)
|
4580
4678
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4581
4679
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4680
|
+
o[:pager] = Aws::Pager.new(
|
4681
|
+
limit_key: "max_results",
|
4682
|
+
tokens: {
|
4683
|
+
"next_token" => "next_token"
|
4684
|
+
}
|
4685
|
+
)
|
4582
4686
|
end)
|
4583
4687
|
|
4584
4688
|
api.add_operation(:describe_maintenance_window_targets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4589,6 +4693,12 @@ module Aws::SSM
|
|
4589
4693
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowTargetsResult)
|
4590
4694
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4591
4695
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4696
|
+
o[:pager] = Aws::Pager.new(
|
4697
|
+
limit_key: "max_results",
|
4698
|
+
tokens: {
|
4699
|
+
"next_token" => "next_token"
|
4700
|
+
}
|
4701
|
+
)
|
4592
4702
|
end)
|
4593
4703
|
|
4594
4704
|
api.add_operation(:describe_maintenance_window_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4599,6 +4709,12 @@ module Aws::SSM
|
|
4599
4709
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowTasksResult)
|
4600
4710
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4601
4711
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4712
|
+
o[:pager] = Aws::Pager.new(
|
4713
|
+
limit_key: "max_results",
|
4714
|
+
tokens: {
|
4715
|
+
"next_token" => "next_token"
|
4716
|
+
}
|
4717
|
+
)
|
4602
4718
|
end)
|
4603
4719
|
|
4604
4720
|
api.add_operation(:describe_maintenance_windows, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4608,6 +4724,12 @@ module Aws::SSM
|
|
4608
4724
|
o.input = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsRequest)
|
4609
4725
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsResult)
|
4610
4726
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4727
|
+
o[:pager] = Aws::Pager.new(
|
4728
|
+
limit_key: "max_results",
|
4729
|
+
tokens: {
|
4730
|
+
"next_token" => "next_token"
|
4731
|
+
}
|
4732
|
+
)
|
4611
4733
|
end)
|
4612
4734
|
|
4613
4735
|
api.add_operation(:describe_maintenance_windows_for_target, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4617,6 +4739,12 @@ module Aws::SSM
|
|
4617
4739
|
o.input = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsForTargetRequest)
|
4618
4740
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsForTargetResult)
|
4619
4741
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4742
|
+
o[:pager] = Aws::Pager.new(
|
4743
|
+
limit_key: "max_results",
|
4744
|
+
tokens: {
|
4745
|
+
"next_token" => "next_token"
|
4746
|
+
}
|
4747
|
+
)
|
4620
4748
|
end)
|
4621
4749
|
|
4622
4750
|
api.add_operation(:describe_ops_items, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4626,6 +4754,12 @@ module Aws::SSM
|
|
4626
4754
|
o.input = Shapes::ShapeRef.new(shape: DescribeOpsItemsRequest)
|
4627
4755
|
o.output = Shapes::ShapeRef.new(shape: DescribeOpsItemsResponse)
|
4628
4756
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4757
|
+
o[:pager] = Aws::Pager.new(
|
4758
|
+
limit_key: "max_results",
|
4759
|
+
tokens: {
|
4760
|
+
"next_token" => "next_token"
|
4761
|
+
}
|
4762
|
+
)
|
4629
4763
|
end)
|
4630
4764
|
|
4631
4765
|
api.add_operation(:describe_parameters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4654,6 +4788,12 @@ module Aws::SSM
|
|
4654
4788
|
o.input = Shapes::ShapeRef.new(shape: DescribePatchBaselinesRequest)
|
4655
4789
|
o.output = Shapes::ShapeRef.new(shape: DescribePatchBaselinesResult)
|
4656
4790
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4791
|
+
o[:pager] = Aws::Pager.new(
|
4792
|
+
limit_key: "max_results",
|
4793
|
+
tokens: {
|
4794
|
+
"next_token" => "next_token"
|
4795
|
+
}
|
4796
|
+
)
|
4657
4797
|
end)
|
4658
4798
|
|
4659
4799
|
api.add_operation(:describe_patch_group_state, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4673,6 +4813,12 @@ module Aws::SSM
|
|
4673
4813
|
o.input = Shapes::ShapeRef.new(shape: DescribePatchGroupsRequest)
|
4674
4814
|
o.output = Shapes::ShapeRef.new(shape: DescribePatchGroupsResult)
|
4675
4815
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4816
|
+
o[:pager] = Aws::Pager.new(
|
4817
|
+
limit_key: "max_results",
|
4818
|
+
tokens: {
|
4819
|
+
"next_token" => "next_token"
|
4820
|
+
}
|
4821
|
+
)
|
4676
4822
|
end)
|
4677
4823
|
|
4678
4824
|
api.add_operation(:describe_patch_properties, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4682,6 +4828,12 @@ module Aws::SSM
|
|
4682
4828
|
o.input = Shapes::ShapeRef.new(shape: DescribePatchPropertiesRequest)
|
4683
4829
|
o.output = Shapes::ShapeRef.new(shape: DescribePatchPropertiesResult)
|
4684
4830
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4831
|
+
o[:pager] = Aws::Pager.new(
|
4832
|
+
limit_key: "max_results",
|
4833
|
+
tokens: {
|
4834
|
+
"next_token" => "next_token"
|
4835
|
+
}
|
4836
|
+
)
|
4685
4837
|
end)
|
4686
4838
|
|
4687
4839
|
api.add_operation(:describe_sessions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4693,6 +4845,12 @@ module Aws::SSM
|
|
4693
4845
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4694
4846
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterKey)
|
4695
4847
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4848
|
+
o[:pager] = Aws::Pager.new(
|
4849
|
+
limit_key: "max_results",
|
4850
|
+
tokens: {
|
4851
|
+
"next_token" => "next_token"
|
4852
|
+
}
|
4853
|
+
)
|
4696
4854
|
end)
|
4697
4855
|
|
4698
4856
|
api.add_operation(:get_automation_execution, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4783,6 +4941,12 @@ module Aws::SSM
|
|
4783
4941
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
4784
4942
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAggregatorException)
|
4785
4943
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResultAttributeException)
|
4944
|
+
o[:pager] = Aws::Pager.new(
|
4945
|
+
limit_key: "max_results",
|
4946
|
+
tokens: {
|
4947
|
+
"next_token" => "next_token"
|
4948
|
+
}
|
4949
|
+
)
|
4786
4950
|
end)
|
4787
4951
|
|
4788
4952
|
api.add_operation(:get_inventory_schema, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4794,6 +4958,12 @@ module Aws::SSM
|
|
4794
4958
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4795
4959
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
4796
4960
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4961
|
+
o[:pager] = Aws::Pager.new(
|
4962
|
+
limit_key: "max_results",
|
4963
|
+
tokens: {
|
4964
|
+
"next_token" => "next_token"
|
4965
|
+
}
|
4966
|
+
)
|
4797
4967
|
end)
|
4798
4968
|
|
4799
4969
|
api.add_operation(:get_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4868,6 +5038,12 @@ module Aws::SSM
|
|
4868
5038
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4869
5039
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
4870
5040
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAggregatorException)
|
5041
|
+
o[:pager] = Aws::Pager.new(
|
5042
|
+
limit_key: "max_results",
|
5043
|
+
tokens: {
|
5044
|
+
"next_token" => "next_token"
|
5045
|
+
}
|
5046
|
+
)
|
4871
5047
|
end)
|
4872
5048
|
|
4873
5049
|
api.add_operation(:get_parameter, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4982,6 +5158,12 @@ module Aws::SSM
|
|
4982
5158
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4983
5159
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4984
5160
|
o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
|
5161
|
+
o[:pager] = Aws::Pager.new(
|
5162
|
+
limit_key: "max_results",
|
5163
|
+
tokens: {
|
5164
|
+
"next_token" => "next_token"
|
5165
|
+
}
|
5166
|
+
)
|
4985
5167
|
end)
|
4986
5168
|
|
4987
5169
|
api.add_operation(:list_associations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5049,6 +5231,12 @@ module Aws::SSM
|
|
5049
5231
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5050
5232
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
5051
5233
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5234
|
+
o[:pager] = Aws::Pager.new(
|
5235
|
+
limit_key: "max_results",
|
5236
|
+
tokens: {
|
5237
|
+
"next_token" => "next_token"
|
5238
|
+
}
|
5239
|
+
)
|
5052
5240
|
end)
|
5053
5241
|
|
5054
5242
|
api.add_operation(:list_compliance_summaries, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5060,6 +5248,12 @@ module Aws::SSM
|
|
5060
5248
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
5061
5249
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5062
5250
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5251
|
+
o[:pager] = Aws::Pager.new(
|
5252
|
+
limit_key: "max_results",
|
5253
|
+
tokens: {
|
5254
|
+
"next_token" => "next_token"
|
5255
|
+
}
|
5256
|
+
)
|
5063
5257
|
end)
|
5064
5258
|
|
5065
5259
|
api.add_operation(:list_document_versions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5071,6 +5265,12 @@ module Aws::SSM
|
|
5071
5265
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5072
5266
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5073
5267
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
5268
|
+
o[:pager] = Aws::Pager.new(
|
5269
|
+
limit_key: "max_results",
|
5270
|
+
tokens: {
|
5271
|
+
"next_token" => "next_token"
|
5272
|
+
}
|
5273
|
+
)
|
5074
5274
|
end)
|
5075
5275
|
|
5076
5276
|
api.add_operation(:list_documents, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5112,6 +5312,12 @@ module Aws::SSM
|
|
5112
5312
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
5113
5313
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5114
5314
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5315
|
+
o[:pager] = Aws::Pager.new(
|
5316
|
+
limit_key: "max_results",
|
5317
|
+
tokens: {
|
5318
|
+
"next_token" => "next_token"
|
5319
|
+
}
|
5320
|
+
)
|
5115
5321
|
end)
|
5116
5322
|
|
5117
5323
|
api.add_operation(:list_resource_data_sync, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5123,6 +5329,12 @@ module Aws::SSM
|
|
5123
5329
|
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncInvalidConfigurationException)
|
5124
5330
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5125
5331
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5332
|
+
o[:pager] = Aws::Pager.new(
|
5333
|
+
limit_key: "max_results",
|
5334
|
+
tokens: {
|
5335
|
+
"next_token" => "next_token"
|
5336
|
+
}
|
5337
|
+
)
|
5126
5338
|
end)
|
5127
5339
|
|
5128
5340
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|