aws-sdk-ssm 1.83.0 → 1.89.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 +3 -2
- data/lib/aws-sdk-ssm/client.rb +325 -36
- data/lib/aws-sdk-ssm/client_api.rb +209 -5
- data/lib/aws-sdk-ssm/types.rb +215 -67
- data/lib/aws-sdk-ssm/waiters.rb +156 -0
- metadata +3 -2
@@ -501,7 +501,6 @@ module Aws::SSM
|
|
501
501
|
InventoryAggregatorExpression = Shapes::StringShape.new(name: 'InventoryAggregatorExpression')
|
502
502
|
InventoryAggregatorList = Shapes::ListShape.new(name: 'InventoryAggregatorList')
|
503
503
|
InventoryAttributeDataType = Shapes::StringShape.new(name: 'InventoryAttributeDataType')
|
504
|
-
InventoryDeletionId = Shapes::StringShape.new(name: 'InventoryDeletionId')
|
505
504
|
InventoryDeletionLastStatusMessage = Shapes::StringShape.new(name: 'InventoryDeletionLastStatusMessage')
|
506
505
|
InventoryDeletionLastStatusUpdateTime = Shapes::TimestampShape.new(name: 'InventoryDeletionLastStatusUpdateTime')
|
507
506
|
InventoryDeletionStartTime = Shapes::TimestampShape.new(name: 'InventoryDeletionStartTime')
|
@@ -1007,6 +1006,7 @@ module Aws::SSM
|
|
1007
1006
|
TooManyUpdates = Shapes::StructureShape.new(name: 'TooManyUpdates')
|
1008
1007
|
TotalCount = Shapes::IntegerShape.new(name: 'TotalCount')
|
1009
1008
|
TotalSizeLimitExceededException = Shapes::StructureShape.new(name: 'TotalSizeLimitExceededException')
|
1009
|
+
UUID = Shapes::StringShape.new(name: 'UUID')
|
1010
1010
|
UnsupportedCalendarException = Shapes::StructureShape.new(name: 'UnsupportedCalendarException')
|
1011
1011
|
UnsupportedFeatureRequiredException = Shapes::StructureShape.new(name: 'UnsupportedFeatureRequiredException')
|
1012
1012
|
UnsupportedInventoryItemContextException = Shapes::StructureShape.new(name: 'UnsupportedInventoryItemContextException')
|
@@ -1614,10 +1614,10 @@ module Aws::SSM
|
|
1614
1614
|
DeleteInventoryRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, required: true, location_name: "TypeName"))
|
1615
1615
|
DeleteInventoryRequest.add_member(:schema_delete_option, Shapes::ShapeRef.new(shape: InventorySchemaDeleteOption, location_name: "SchemaDeleteOption"))
|
1616
1616
|
DeleteInventoryRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: DryRun, location_name: "DryRun"))
|
1617
|
-
DeleteInventoryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
1617
|
+
DeleteInventoryRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UUID, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
1618
1618
|
DeleteInventoryRequest.struct_class = Types::DeleteInventoryRequest
|
1619
1619
|
|
1620
|
-
DeleteInventoryResult.add_member(:deletion_id, Shapes::ShapeRef.new(shape:
|
1620
|
+
DeleteInventoryResult.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
1621
1621
|
DeleteInventoryResult.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, location_name: "TypeName"))
|
1622
1622
|
DeleteInventoryResult.add_member(:deletion_summary, Shapes::ShapeRef.new(shape: InventoryDeletionSummary, location_name: "DeletionSummary"))
|
1623
1623
|
DeleteInventoryResult.struct_class = Types::DeleteInventoryResult
|
@@ -1838,7 +1838,7 @@ module Aws::SSM
|
|
1838
1838
|
DescribeInstancePatchesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1839
1839
|
DescribeInstancePatchesResult.struct_class = Types::DescribeInstancePatchesResult
|
1840
1840
|
|
1841
|
-
DescribeInventoryDeletionsRequest.add_member(:deletion_id, Shapes::ShapeRef.new(shape:
|
1841
|
+
DescribeInventoryDeletionsRequest.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
1842
1842
|
DescribeInventoryDeletionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1843
1843
|
DescribeInventoryDeletionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
1844
1844
|
DescribeInventoryDeletionsRequest.struct_class = Types::DescribeInventoryDeletionsRequest
|
@@ -2678,7 +2678,7 @@ module Aws::SSM
|
|
2678
2678
|
|
2679
2679
|
InventoryAggregatorList.member = Shapes::ShapeRef.new(shape: InventoryAggregator)
|
2680
2680
|
|
2681
|
-
InventoryDeletionStatusItem.add_member(:deletion_id, Shapes::ShapeRef.new(shape:
|
2681
|
+
InventoryDeletionStatusItem.add_member(:deletion_id, Shapes::ShapeRef.new(shape: UUID, location_name: "DeletionId"))
|
2682
2682
|
InventoryDeletionStatusItem.add_member(:type_name, Shapes::ShapeRef.new(shape: InventoryItemTypeName, location_name: "TypeName"))
|
2683
2683
|
InventoryDeletionStatusItem.add_member(:deletion_start_time, Shapes::ShapeRef.new(shape: InventoryDeletionStartTime, location_name: "DeletionStartTime"))
|
2684
2684
|
InventoryDeletionStatusItem.add_member(:last_status, Shapes::ShapeRef.new(shape: InventoryDeletionStatus, location_name: "LastStatus"))
|
@@ -4384,6 +4384,12 @@ module Aws::SSM
|
|
4384
4384
|
o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
|
4385
4385
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4386
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
|
+
)
|
4387
4393
|
end)
|
4388
4394
|
|
4389
4395
|
api.add_operation(:describe_association_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4395,6 +4401,12 @@ module Aws::SSM
|
|
4395
4401
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4396
4402
|
o.errors << Shapes::ShapeRef.new(shape: AssociationDoesNotExist)
|
4397
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
|
+
)
|
4398
4410
|
end)
|
4399
4411
|
|
4400
4412
|
api.add_operation(:describe_automation_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4407,6 +4419,12 @@ module Aws::SSM
|
|
4407
4419
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterValue)
|
4408
4420
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4409
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
|
+
)
|
4410
4428
|
end)
|
4411
4429
|
|
4412
4430
|
api.add_operation(:describe_automation_step_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4420,6 +4438,12 @@ module Aws::SSM
|
|
4420
4438
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterKey)
|
4421
4439
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterValue)
|
4422
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
|
+
)
|
4423
4447
|
end)
|
4424
4448
|
|
4425
4449
|
api.add_operation(:describe_available_patches, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4429,6 +4453,12 @@ module Aws::SSM
|
|
4429
4453
|
o.input = Shapes::ShapeRef.new(shape: DescribeAvailablePatchesRequest)
|
4430
4454
|
o.output = Shapes::ShapeRef.new(shape: DescribeAvailablePatchesResult)
|
4431
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
|
+
)
|
4432
4462
|
end)
|
4433
4463
|
|
4434
4464
|
api.add_operation(:describe_document, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4462,6 +4492,12 @@ module Aws::SSM
|
|
4462
4492
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4463
4493
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
|
4464
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
|
+
)
|
4465
4501
|
end)
|
4466
4502
|
|
4467
4503
|
api.add_operation(:describe_effective_patches_for_patch_baseline, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4474,6 +4510,12 @@ module Aws::SSM
|
|
4474
4510
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4475
4511
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperatingSystem)
|
4476
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
|
+
)
|
4477
4519
|
end)
|
4478
4520
|
|
4479
4521
|
api.add_operation(:describe_instance_associations_status, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4485,6 +4527,12 @@ module Aws::SSM
|
|
4485
4527
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4486
4528
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
|
4487
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
|
+
)
|
4488
4536
|
end)
|
4489
4537
|
|
4490
4538
|
api.add_operation(:describe_instance_information, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4514,6 +4562,12 @@ module Aws::SSM
|
|
4514
4562
|
o.output = Shapes::ShapeRef.new(shape: DescribeInstancePatchStatesResult)
|
4515
4563
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4516
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
|
+
)
|
4517
4571
|
end)
|
4518
4572
|
|
4519
4573
|
api.add_operation(:describe_instance_patch_states_for_patch_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4525,6 +4579,12 @@ module Aws::SSM
|
|
4525
4579
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4526
4580
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
4527
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
|
+
)
|
4528
4588
|
end)
|
4529
4589
|
|
4530
4590
|
api.add_operation(:describe_instance_patches, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4537,6 +4597,12 @@ module Aws::SSM
|
|
4537
4597
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceId)
|
4538
4598
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
4539
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
|
+
)
|
4540
4606
|
end)
|
4541
4607
|
|
4542
4608
|
api.add_operation(:describe_inventory_deletions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4548,6 +4614,12 @@ module Aws::SSM
|
|
4548
4614
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4549
4615
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDeletionIdException)
|
4550
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
|
+
)
|
4551
4623
|
end)
|
4552
4624
|
|
4553
4625
|
api.add_operation(:describe_maintenance_window_execution_task_invocations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4558,6 +4630,12 @@ module Aws::SSM
|
|
4558
4630
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionTaskInvocationsResult)
|
4559
4631
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4560
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
|
+
)
|
4561
4639
|
end)
|
4562
4640
|
|
4563
4641
|
api.add_operation(:describe_maintenance_window_execution_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4568,6 +4646,12 @@ module Aws::SSM
|
|
4568
4646
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionTasksResult)
|
4569
4647
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4570
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
|
+
)
|
4571
4655
|
end)
|
4572
4656
|
|
4573
4657
|
api.add_operation(:describe_maintenance_window_executions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4577,6 +4661,12 @@ module Aws::SSM
|
|
4577
4661
|
o.input = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionsRequest)
|
4578
4662
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowExecutionsResult)
|
4579
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
|
+
)
|
4580
4670
|
end)
|
4581
4671
|
|
4582
4672
|
api.add_operation(:describe_maintenance_window_schedule, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4587,6 +4677,12 @@ module Aws::SSM
|
|
4587
4677
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowScheduleResult)
|
4588
4678
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4589
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
|
+
)
|
4590
4686
|
end)
|
4591
4687
|
|
4592
4688
|
api.add_operation(:describe_maintenance_window_targets, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4597,6 +4693,12 @@ module Aws::SSM
|
|
4597
4693
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowTargetsResult)
|
4598
4694
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4599
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
|
+
)
|
4600
4702
|
end)
|
4601
4703
|
|
4602
4704
|
api.add_operation(:describe_maintenance_window_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4607,6 +4709,12 @@ module Aws::SSM
|
|
4607
4709
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowTasksResult)
|
4608
4710
|
o.errors << Shapes::ShapeRef.new(shape: DoesNotExistException)
|
4609
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
|
+
)
|
4610
4718
|
end)
|
4611
4719
|
|
4612
4720
|
api.add_operation(:describe_maintenance_windows, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4616,6 +4724,12 @@ module Aws::SSM
|
|
4616
4724
|
o.input = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsRequest)
|
4617
4725
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsResult)
|
4618
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
|
+
)
|
4619
4733
|
end)
|
4620
4734
|
|
4621
4735
|
api.add_operation(:describe_maintenance_windows_for_target, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4625,6 +4739,12 @@ module Aws::SSM
|
|
4625
4739
|
o.input = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsForTargetRequest)
|
4626
4740
|
o.output = Shapes::ShapeRef.new(shape: DescribeMaintenanceWindowsForTargetResult)
|
4627
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
|
+
)
|
4628
4748
|
end)
|
4629
4749
|
|
4630
4750
|
api.add_operation(:describe_ops_items, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4634,6 +4754,12 @@ module Aws::SSM
|
|
4634
4754
|
o.input = Shapes::ShapeRef.new(shape: DescribeOpsItemsRequest)
|
4635
4755
|
o.output = Shapes::ShapeRef.new(shape: DescribeOpsItemsResponse)
|
4636
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
|
+
)
|
4637
4763
|
end)
|
4638
4764
|
|
4639
4765
|
api.add_operation(:describe_parameters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4662,6 +4788,12 @@ module Aws::SSM
|
|
4662
4788
|
o.input = Shapes::ShapeRef.new(shape: DescribePatchBaselinesRequest)
|
4663
4789
|
o.output = Shapes::ShapeRef.new(shape: DescribePatchBaselinesResult)
|
4664
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
|
+
)
|
4665
4797
|
end)
|
4666
4798
|
|
4667
4799
|
api.add_operation(:describe_patch_group_state, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4681,6 +4813,12 @@ module Aws::SSM
|
|
4681
4813
|
o.input = Shapes::ShapeRef.new(shape: DescribePatchGroupsRequest)
|
4682
4814
|
o.output = Shapes::ShapeRef.new(shape: DescribePatchGroupsResult)
|
4683
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
|
+
)
|
4684
4822
|
end)
|
4685
4823
|
|
4686
4824
|
api.add_operation(:describe_patch_properties, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4690,6 +4828,12 @@ module Aws::SSM
|
|
4690
4828
|
o.input = Shapes::ShapeRef.new(shape: DescribePatchPropertiesRequest)
|
4691
4829
|
o.output = Shapes::ShapeRef.new(shape: DescribePatchPropertiesResult)
|
4692
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
|
+
)
|
4693
4837
|
end)
|
4694
4838
|
|
4695
4839
|
api.add_operation(:describe_sessions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4701,6 +4845,12 @@ module Aws::SSM
|
|
4701
4845
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4702
4846
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilterKey)
|
4703
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
|
+
)
|
4704
4854
|
end)
|
4705
4855
|
|
4706
4856
|
api.add_operation(:get_automation_execution, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4791,6 +4941,12 @@ module Aws::SSM
|
|
4791
4941
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
4792
4942
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAggregatorException)
|
4793
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
|
+
)
|
4794
4950
|
end)
|
4795
4951
|
|
4796
4952
|
api.add_operation(:get_inventory_schema, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4802,6 +4958,12 @@ module Aws::SSM
|
|
4802
4958
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4803
4959
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
4804
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
|
+
)
|
4805
4967
|
end)
|
4806
4968
|
|
4807
4969
|
api.add_operation(:get_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4876,6 +5038,12 @@ module Aws::SSM
|
|
4876
5038
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4877
5039
|
o.errors << Shapes::ShapeRef.new(shape: InvalidTypeNameException)
|
4878
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
|
+
)
|
4879
5047
|
end)
|
4880
5048
|
|
4881
5049
|
api.add_operation(:get_parameter, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4990,6 +5158,12 @@ module Aws::SSM
|
|
4990
5158
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
4991
5159
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
4992
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
|
+
)
|
4993
5167
|
end)
|
4994
5168
|
|
4995
5169
|
api.add_operation(:list_associations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5057,6 +5231,12 @@ module Aws::SSM
|
|
5057
5231
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5058
5232
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
5059
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
|
+
)
|
5060
5240
|
end)
|
5061
5241
|
|
5062
5242
|
api.add_operation(:list_compliance_summaries, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5068,6 +5248,12 @@ module Aws::SSM
|
|
5068
5248
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
5069
5249
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5070
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
|
+
)
|
5071
5257
|
end)
|
5072
5258
|
|
5073
5259
|
api.add_operation(:list_document_versions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5079,6 +5265,12 @@ module Aws::SSM
|
|
5079
5265
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5080
5266
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5081
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
|
+
)
|
5082
5274
|
end)
|
5083
5275
|
|
5084
5276
|
api.add_operation(:list_documents, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5120,6 +5312,12 @@ module Aws::SSM
|
|
5120
5312
|
o.errors << Shapes::ShapeRef.new(shape: InvalidFilter)
|
5121
5313
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
|
5122
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
|
+
)
|
5123
5321
|
end)
|
5124
5322
|
|
5125
5323
|
api.add_operation(:list_resource_data_sync, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5131,6 +5329,12 @@ module Aws::SSM
|
|
5131
5329
|
o.errors << Shapes::ShapeRef.new(shape: ResourceDataSyncInvalidConfigurationException)
|
5132
5330
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
5133
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
|
+
)
|
5134
5338
|
end)
|
5135
5339
|
|
5136
5340
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|