aws-sdk-ssm 1.0.0.rc3 → 1.0.0.rc4
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 +227 -68
- data/lib/aws-sdk-ssm/client_api.rb +12 -11
- data/lib/aws-sdk-ssm/types.rb +530 -90
- 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: 2d8dc63a1f7cc5cd4a185608645624e8eb1911a9
|
4
|
+
data.tar.gz: 549281bcc68799d65d8724189a0705e54b6fb26f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6aa840fc4524f1e7b2cfb7ebb2f82f75e639d3b88dc5cb58f310b5c706ad7c3f3202fa66acb5136a2a9a4aa5150fce8f64e772ac5b28c3fa5eae47b097733d4
|
7
|
+
data.tar.gz: bfaf3eaaaaa29df0254beda6f99b95380e641a1691ac1e47c95ac63a37ecca50d2490824588cd544faa399790e6a4b93f0a462b990b330949cb9eb47b247c12d
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
|
18
18
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
19
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
20
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
21
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
21
22
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
22
23
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
23
24
|
|
@@ -45,6 +46,7 @@ module Aws::SSM
|
|
45
46
|
add_plugin(Aws::Plugins::ResponsePaging)
|
46
47
|
add_plugin(Aws::Plugins::StubResponses)
|
47
48
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
49
|
+
add_plugin(Aws::Plugins::JsonvalueConverter)
|
48
50
|
add_plugin(Aws::Plugins::SignatureV4)
|
49
51
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
50
52
|
|
@@ -172,7 +174,7 @@ module Aws::SSM
|
|
172
174
|
# characters.
|
173
175
|
#
|
174
176
|
# For more information about tags, see [Tagging Your Amazon EC2
|
175
|
-
# Resources][1] in the Amazon EC2 User Guide
|
177
|
+
# Resources][1] in the *Amazon EC2 User Guide*.
|
176
178
|
#
|
177
179
|
#
|
178
180
|
#
|
@@ -204,6 +206,8 @@ module Aws::SSM
|
|
204
206
|
# ],
|
205
207
|
# })
|
206
208
|
#
|
209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AddTagsToResource AWS API Documentation
|
210
|
+
#
|
207
211
|
# @overload add_tags_to_resource(params = {})
|
208
212
|
# @param [Hash] params ({})
|
209
213
|
def add_tags_to_resource(params = {}, options = {})
|
@@ -232,6 +236,8 @@ module Aws::SSM
|
|
232
236
|
# instance_ids: ["InstanceId"],
|
233
237
|
# })
|
234
238
|
#
|
239
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CancelCommand AWS API Documentation
|
240
|
+
#
|
235
241
|
# @overload cancel_command(params = {})
|
236
242
|
# @param [Hash] params ({})
|
237
243
|
def cancel_command(params = {}, options = {})
|
@@ -243,13 +249,12 @@ module Aws::SSM
|
|
243
249
|
# so that you can manage these resources using Run Command. An
|
244
250
|
# on-premises server or virtual machine that has been registered with
|
245
251
|
# EC2 is called a managed instance. For more information about
|
246
|
-
# activations, see [Setting Up
|
247
|
-
#
|
252
|
+
# activations, see [Setting Up Systems Manager in Hybrid
|
253
|
+
# Environments][1].
|
248
254
|
#
|
249
255
|
#
|
250
256
|
#
|
251
|
-
# [1]: http://docs.aws.amazon.com/
|
252
|
-
# [2]: http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/managed-instances.html
|
257
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances.html
|
253
258
|
#
|
254
259
|
# @option params [String] :description
|
255
260
|
# A user-defined description of the resource that you want to register
|
@@ -292,6 +297,8 @@ module Aws::SSM
|
|
292
297
|
# resp.activation_id #=> String
|
293
298
|
# resp.activation_code #=> String
|
294
299
|
#
|
300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateActivation AWS API Documentation
|
301
|
+
#
|
295
302
|
# @overload create_activation(params = {})
|
296
303
|
# @param [Hash] params ({})
|
297
304
|
def create_activation(params = {}, options = {})
|
@@ -299,11 +306,11 @@ module Aws::SSM
|
|
299
306
|
req.send_request(options)
|
300
307
|
end
|
301
308
|
|
302
|
-
# Associates the specified
|
303
|
-
# targets.
|
309
|
+
# Associates the specified Systems Manager document with the specified
|
310
|
+
# instances or targets.
|
304
311
|
#
|
305
|
-
# When you associate
|
306
|
-
# instance IDs or tags, the SSM
|
312
|
+
# When you associate a document with one or more instances using
|
313
|
+
# instance IDs or tags, the SSM Agent running on the instance processes
|
307
314
|
# the document and configures the instance as specified.
|
308
315
|
#
|
309
316
|
# If you associate a document with an instance that already has an
|
@@ -311,7 +318,7 @@ module Aws::SSM
|
|
311
318
|
# exception.
|
312
319
|
#
|
313
320
|
# @option params [required, String] :name
|
314
|
-
# The name of the
|
321
|
+
# The name of the Systems Manager document.
|
315
322
|
#
|
316
323
|
# @option params [String] :document_version
|
317
324
|
# The document version you want to associate with the target(s). Can be
|
@@ -404,6 +411,8 @@ module Aws::SSM
|
|
404
411
|
# resp.association_description.last_execution_date #=> Time
|
405
412
|
# resp.association_description.last_successful_execution_date #=> Time
|
406
413
|
#
|
414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
|
415
|
+
#
|
407
416
|
# @overload create_association(params = {})
|
408
417
|
# @param [Hash] params ({})
|
409
418
|
def create_association(params = {}, options = {})
|
@@ -411,11 +420,11 @@ module Aws::SSM
|
|
411
420
|
req.send_request(options)
|
412
421
|
end
|
413
422
|
|
414
|
-
# Associates the specified
|
415
|
-
# targets.
|
423
|
+
# Associates the specified Systems Manager document with the specified
|
424
|
+
# instances or targets.
|
416
425
|
#
|
417
|
-
# When you associate
|
418
|
-
# instance IDs or tags, the SSM
|
426
|
+
# When you associate a document with one or more instances using
|
427
|
+
# instance IDs or tags, the SSM Agent running on the instance processes
|
419
428
|
# the document and configures the instance as specified.
|
420
429
|
#
|
421
430
|
# If you associate a document with an instance that already has an
|
@@ -507,6 +516,8 @@ module Aws::SSM
|
|
507
516
|
# resp.failed[0].message #=> String
|
508
517
|
# resp.failed[0].fault #=> String, one of "Client", "Server", "Unknown"
|
509
518
|
#
|
519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatch AWS API Documentation
|
520
|
+
#
|
510
521
|
# @overload create_association_batch(params = {})
|
511
522
|
# @param [Hash] params ({})
|
512
523
|
def create_association_batch(params = {}, options = {})
|
@@ -514,16 +525,16 @@ module Aws::SSM
|
|
514
525
|
req.send_request(options)
|
515
526
|
end
|
516
527
|
|
517
|
-
# Creates
|
528
|
+
# Creates a Systems Manager document.
|
518
529
|
#
|
519
|
-
# After you create
|
530
|
+
# After you create a document, you can use CreateAssociation to
|
520
531
|
# associate it with one or more running instances.
|
521
532
|
#
|
522
533
|
# @option params [required, String] :content
|
523
534
|
# A valid JSON string.
|
524
535
|
#
|
525
536
|
# @option params [required, String] :name
|
526
|
-
# A name for the
|
537
|
+
# A name for the Systems Manager document.
|
527
538
|
#
|
528
539
|
# @option params [String] :document_type
|
529
540
|
# The type of document to create. Valid document types include: Policy,
|
@@ -564,6 +575,8 @@ module Aws::SSM
|
|
564
575
|
# resp.document_description.latest_version #=> String
|
565
576
|
# resp.document_description.default_version #=> String
|
566
577
|
#
|
578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateDocument AWS API Documentation
|
579
|
+
#
|
567
580
|
# @overload create_document(params = {})
|
568
581
|
# @param [Hash] params ({})
|
569
582
|
def create_document(params = {}, options = {})
|
@@ -616,6 +629,8 @@ module Aws::SSM
|
|
616
629
|
#
|
617
630
|
# resp.window_id #=> String
|
618
631
|
#
|
632
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateMaintenanceWindow AWS API Documentation
|
633
|
+
#
|
619
634
|
# @overload create_maintenance_window(params = {})
|
620
635
|
# @param [Hash] params ({})
|
621
636
|
def create_maintenance_window(params = {}, options = {})
|
@@ -690,6 +705,8 @@ module Aws::SSM
|
|
690
705
|
#
|
691
706
|
# resp.baseline_id #=> String
|
692
707
|
#
|
708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreatePatchBaseline AWS API Documentation
|
709
|
+
#
|
693
710
|
# @overload create_patch_baseline(params = {})
|
694
711
|
# @param [Hash] params ({})
|
695
712
|
def create_patch_baseline(params = {}, options = {})
|
@@ -714,6 +731,8 @@ module Aws::SSM
|
|
714
731
|
# activation_id: "ActivationId", # required
|
715
732
|
# })
|
716
733
|
#
|
734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteActivation AWS API Documentation
|
735
|
+
#
|
717
736
|
# @overload delete_activation(params = {})
|
718
737
|
# @param [Hash] params ({})
|
719
738
|
def delete_activation(params = {}, options = {})
|
@@ -721,16 +740,17 @@ module Aws::SSM
|
|
721
740
|
req.send_request(options)
|
722
741
|
end
|
723
742
|
|
724
|
-
# Disassociates the specified
|
743
|
+
# Disassociates the specified Systems Manager document from the
|
744
|
+
# specified instance.
|
725
745
|
#
|
726
|
-
# When you disassociate
|
727
|
-
#
|
728
|
-
#
|
729
|
-
#
|
730
|
-
#
|
746
|
+
# When you disassociate a document from an instance, it does not change
|
747
|
+
# the configuration of the instance. To change the configuration state
|
748
|
+
# of an instance after you disassociate a document, you must create a
|
749
|
+
# new document with the desired configuration and associate it with the
|
750
|
+
# instance.
|
731
751
|
#
|
732
752
|
# @option params [String] :name
|
733
|
-
# The name of the
|
753
|
+
# The name of the Systems Manager document.
|
734
754
|
#
|
735
755
|
# @option params [String] :instance_id
|
736
756
|
# The ID of the instance.
|
@@ -748,6 +768,8 @@ module Aws::SSM
|
|
748
768
|
# association_id: "AssociationId",
|
749
769
|
# })
|
750
770
|
#
|
771
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteAssociation AWS API Documentation
|
772
|
+
#
|
751
773
|
# @overload delete_association(params = {})
|
752
774
|
# @param [Hash] params ({})
|
753
775
|
def delete_association(params = {}, options = {})
|
@@ -755,15 +777,15 @@ module Aws::SSM
|
|
755
777
|
req.send_request(options)
|
756
778
|
end
|
757
779
|
|
758
|
-
# Deletes the
|
759
|
-
# document.
|
780
|
+
# Deletes the Systems Manager document and all instance associations to
|
781
|
+
# the document.
|
760
782
|
#
|
761
|
-
# Before you delete the
|
783
|
+
# Before you delete the document, we recommend that you use
|
762
784
|
# DeleteAssociation to disassociate all instances that are associated
|
763
785
|
# with the document.
|
764
786
|
#
|
765
787
|
# @option params [required, String] :name
|
766
|
-
# The name of the
|
788
|
+
# The name of the document.
|
767
789
|
#
|
768
790
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
769
791
|
#
|
@@ -773,6 +795,8 @@ module Aws::SSM
|
|
773
795
|
# name: "DocumentName", # required
|
774
796
|
# })
|
775
797
|
#
|
798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteDocument AWS API Documentation
|
799
|
+
#
|
776
800
|
# @overload delete_document(params = {})
|
777
801
|
# @param [Hash] params ({})
|
778
802
|
def delete_document(params = {}, options = {})
|
@@ -799,6 +823,8 @@ module Aws::SSM
|
|
799
823
|
#
|
800
824
|
# resp.window_id #=> String
|
801
825
|
#
|
826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteMaintenanceWindow AWS API Documentation
|
827
|
+
#
|
802
828
|
# @overload delete_maintenance_window(params = {})
|
803
829
|
# @param [Hash] params ({})
|
804
830
|
def delete_maintenance_window(params = {}, options = {})
|
@@ -819,6 +845,8 @@ module Aws::SSM
|
|
819
845
|
# name: "PSParameterName", # required
|
820
846
|
# })
|
821
847
|
#
|
848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteParameter AWS API Documentation
|
849
|
+
#
|
822
850
|
# @overload delete_parameter(params = {})
|
823
851
|
# @param [Hash] params ({})
|
824
852
|
def delete_parameter(params = {}, options = {})
|
@@ -845,6 +873,8 @@ module Aws::SSM
|
|
845
873
|
#
|
846
874
|
# resp.baseline_id #=> String
|
847
875
|
#
|
876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeletePatchBaseline AWS API Documentation
|
877
|
+
#
|
848
878
|
# @overload delete_patch_baseline(params = {})
|
849
879
|
# @param [Hash] params ({})
|
850
880
|
def delete_patch_baseline(params = {}, options = {})
|
@@ -855,7 +885,7 @@ module Aws::SSM
|
|
855
885
|
# Removes the server or virtual machine from the list of registered
|
856
886
|
# servers. You can reregister the instance again at any time. If you
|
857
887
|
# don’t plan to use Run Command on the server, we suggest uninstalling
|
858
|
-
# the SSM
|
888
|
+
# the SSM Agent first.
|
859
889
|
#
|
860
890
|
# @option params [required, String] :instance_id
|
861
891
|
# The ID assigned to the managed instance when you registered it using
|
@@ -869,6 +899,8 @@ module Aws::SSM
|
|
869
899
|
# instance_id: "ManagedInstanceId", # required
|
870
900
|
# })
|
871
901
|
#
|
902
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterManagedInstance AWS API Documentation
|
903
|
+
#
|
872
904
|
# @overload deregister_managed_instance(params = {})
|
873
905
|
# @param [Hash] params ({})
|
874
906
|
def deregister_managed_instance(params = {}, options = {})
|
@@ -902,6 +934,8 @@ module Aws::SSM
|
|
902
934
|
# resp.baseline_id #=> String
|
903
935
|
# resp.patch_group #=> String
|
904
936
|
#
|
937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterPatchBaselineForPatchGroup AWS API Documentation
|
938
|
+
#
|
905
939
|
# @overload deregister_patch_baseline_for_patch_group(params = {})
|
906
940
|
# @param [Hash] params ({})
|
907
941
|
def deregister_patch_baseline_for_patch_group(params = {}, options = {})
|
@@ -934,6 +968,8 @@ module Aws::SSM
|
|
934
968
|
# resp.window_id #=> String
|
935
969
|
# resp.window_target_id #=> String
|
936
970
|
#
|
971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTargetFromMaintenanceWindow AWS API Documentation
|
972
|
+
#
|
937
973
|
# @overload deregister_target_from_maintenance_window(params = {})
|
938
974
|
# @param [Hash] params ({})
|
939
975
|
def deregister_target_from_maintenance_window(params = {}, options = {})
|
@@ -966,6 +1002,8 @@ module Aws::SSM
|
|
966
1002
|
# resp.window_id #=> String
|
967
1003
|
# resp.window_task_id #=> String
|
968
1004
|
#
|
1005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeregisterTaskFromMaintenanceWindow AWS API Documentation
|
1006
|
+
#
|
969
1007
|
# @overload deregister_task_from_maintenance_window(params = {})
|
970
1008
|
# @param [Hash] params ({})
|
971
1009
|
def deregister_task_from_maintenance_window(params = {}, options = {})
|
@@ -1022,6 +1060,8 @@ module Aws::SSM
|
|
1022
1060
|
# resp.activation_list[0].created_date #=> Time
|
1023
1061
|
# resp.next_token #=> String
|
1024
1062
|
#
|
1063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeActivations AWS API Documentation
|
1064
|
+
#
|
1025
1065
|
# @overload describe_activations(params = {})
|
1026
1066
|
# @param [Hash] params ({})
|
1027
1067
|
def describe_activations(params = {}, options = {})
|
@@ -1029,7 +1069,8 @@ module Aws::SSM
|
|
1029
1069
|
req.send_request(options)
|
1030
1070
|
end
|
1031
1071
|
|
1032
|
-
# Describes the associations for the specified
|
1072
|
+
# Describes the associations for the specified Systems Manager document
|
1073
|
+
# or instance.
|
1033
1074
|
#
|
1034
1075
|
# @option params [String] :name
|
1035
1076
|
# The name of the SSM document.
|
@@ -1082,6 +1123,8 @@ module Aws::SSM
|
|
1082
1123
|
# resp.association_description.last_execution_date #=> Time
|
1083
1124
|
# resp.association_description.last_successful_execution_date #=> Time
|
1084
1125
|
#
|
1126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
|
1127
|
+
#
|
1085
1128
|
# @overload describe_association(params = {})
|
1086
1129
|
# @param [Hash] params ({})
|
1087
1130
|
def describe_association(params = {}, options = {})
|
@@ -1138,6 +1181,8 @@ module Aws::SSM
|
|
1138
1181
|
# resp.automation_execution_metadata_list[0].outputs["AutomationParameterKey"][0] #=> String
|
1139
1182
|
# resp.next_token #=> String
|
1140
1183
|
#
|
1184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationExecutions AWS API Documentation
|
1185
|
+
#
|
1141
1186
|
# @overload describe_automation_executions(params = {})
|
1142
1187
|
# @param [Hash] params ({})
|
1143
1188
|
def describe_automation_executions(params = {}, options = {})
|
@@ -1193,6 +1238,8 @@ module Aws::SSM
|
|
1193
1238
|
# resp.patches[0].language #=> String
|
1194
1239
|
# resp.next_token #=> String
|
1195
1240
|
#
|
1241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAvailablePatches AWS API Documentation
|
1242
|
+
#
|
1196
1243
|
# @overload describe_available_patches(params = {})
|
1197
1244
|
# @param [Hash] params ({})
|
1198
1245
|
def describe_available_patches(params = {}, options = {})
|
@@ -1243,6 +1290,8 @@ module Aws::SSM
|
|
1243
1290
|
# resp.document.latest_version #=> String
|
1244
1291
|
# resp.document.default_version #=> String
|
1245
1292
|
#
|
1293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocument AWS API Documentation
|
1294
|
+
#
|
1246
1295
|
# @overload describe_document(params = {})
|
1247
1296
|
# @param [Hash] params ({})
|
1248
1297
|
def describe_document(params = {}, options = {})
|
@@ -1250,10 +1299,10 @@ module Aws::SSM
|
|
1250
1299
|
req.send_request(options)
|
1251
1300
|
end
|
1252
1301
|
|
1253
|
-
# Describes the permissions for
|
1254
|
-
# document, you are the owner. If a document is shared, it
|
1255
|
-
# shared privately (by specifying a user’s AWS account ID)
|
1256
|
-
# (*All*).
|
1302
|
+
# Describes the permissions for a Systems Manager document. If you
|
1303
|
+
# created the document, you are the owner. If a document is shared, it
|
1304
|
+
# can either be shared privately (by specifying a user’s AWS account ID)
|
1305
|
+
# or publicly (*All*).
|
1257
1306
|
#
|
1258
1307
|
# @option params [required, String] :name
|
1259
1308
|
# The name of the document for which you are the owner.
|
@@ -1278,6 +1327,8 @@ module Aws::SSM
|
|
1278
1327
|
# resp.account_ids #=> Array
|
1279
1328
|
# resp.account_ids[0] #=> String
|
1280
1329
|
#
|
1330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermission AWS API Documentation
|
1331
|
+
#
|
1281
1332
|
# @overload describe_document_permission(params = {})
|
1282
1333
|
# @param [Hash] params ({})
|
1283
1334
|
def describe_document_permission(params = {}, options = {})
|
@@ -1320,6 +1371,8 @@ module Aws::SSM
|
|
1320
1371
|
# resp.associations[0].content #=> String
|
1321
1372
|
# resp.next_token #=> String
|
1322
1373
|
#
|
1374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectiveInstanceAssociations AWS API Documentation
|
1375
|
+
#
|
1323
1376
|
# @overload describe_effective_instance_associations(params = {})
|
1324
1377
|
# @param [Hash] params ({})
|
1325
1378
|
def describe_effective_instance_associations(params = {}, options = {})
|
@@ -1373,6 +1426,8 @@ module Aws::SSM
|
|
1373
1426
|
# resp.effective_patches[0].patch_status.approval_date #=> Time
|
1374
1427
|
# resp.next_token #=> String
|
1375
1428
|
#
|
1429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeEffectivePatchesForPatchBaseline AWS API Documentation
|
1430
|
+
#
|
1376
1431
|
# @overload describe_effective_patches_for_patch_baseline(params = {})
|
1377
1432
|
# @param [Hash] params ({})
|
1378
1433
|
def describe_effective_patches_for_patch_baseline(params = {}, options = {})
|
@@ -1422,6 +1477,8 @@ module Aws::SSM
|
|
1422
1477
|
# resp.instance_association_status_infos[0].output_url.s3_output_url.output_url #=> String
|
1423
1478
|
# resp.next_token #=> String
|
1424
1479
|
#
|
1480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceAssociationsStatus AWS API Documentation
|
1481
|
+
#
|
1425
1482
|
# @overload describe_instance_associations_status(params = {})
|
1426
1483
|
# @param [Hash] params ({})
|
1427
1484
|
def describe_instance_associations_status(params = {}, options = {})
|
@@ -1431,7 +1488,7 @@ module Aws::SSM
|
|
1431
1488
|
|
1432
1489
|
# Describes one or more of your instances. You can use this to get
|
1433
1490
|
# information about instances like the operating system platform, the
|
1434
|
-
# SSM
|
1491
|
+
# SSM Agent version (Linux), status etc. If you specify one or more
|
1435
1492
|
# instance IDs, it returns information for those instances. If you do
|
1436
1493
|
# not specify instance IDs, it returns information for all your
|
1437
1494
|
# instances. If you specify an instance ID that is not valid or an
|
@@ -1504,6 +1561,8 @@ module Aws::SSM
|
|
1504
1561
|
# resp.instance_information_list[0].association_overview.instance_association_status_aggregated_count["StatusName"] #=> Integer
|
1505
1562
|
# resp.next_token #=> String
|
1506
1563
|
#
|
1564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceInformation AWS API Documentation
|
1565
|
+
#
|
1507
1566
|
# @overload describe_instance_information(params = {})
|
1508
1567
|
# @param [Hash] params ({})
|
1509
1568
|
def describe_instance_information(params = {}, options = {})
|
@@ -1555,6 +1614,8 @@ module Aws::SSM
|
|
1555
1614
|
# resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
|
1556
1615
|
# resp.next_token #=> String
|
1557
1616
|
#
|
1617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStates AWS API Documentation
|
1618
|
+
#
|
1558
1619
|
# @overload describe_instance_patch_states(params = {})
|
1559
1620
|
# @param [Hash] params ({})
|
1560
1621
|
def describe_instance_patch_states(params = {}, options = {})
|
@@ -1623,6 +1684,8 @@ module Aws::SSM
|
|
1623
1684
|
# resp.instance_patch_states[0].operation #=> String, one of "Scan", "Install"
|
1624
1685
|
# resp.next_token #=> String
|
1625
1686
|
#
|
1687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatchStatesForPatchGroup AWS API Documentation
|
1688
|
+
#
|
1626
1689
|
# @overload describe_instance_patch_states_for_patch_group(params = {})
|
1627
1690
|
# @param [Hash] params ({})
|
1628
1691
|
def describe_instance_patch_states_for_patch_group(params = {}, options = {})
|
@@ -1682,6 +1745,8 @@ module Aws::SSM
|
|
1682
1745
|
# resp.patches[0].installed_time #=> Time
|
1683
1746
|
# resp.next_token #=> String
|
1684
1747
|
#
|
1748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatches AWS API Documentation
|
1749
|
+
#
|
1685
1750
|
# @overload describe_instance_patches(params = {})
|
1686
1751
|
# @param [Hash] params ({})
|
1687
1752
|
def describe_instance_patches(params = {}, options = {})
|
@@ -1749,6 +1814,8 @@ module Aws::SSM
|
|
1749
1814
|
# resp.window_execution_task_invocation_identities[0].window_target_id #=> String
|
1750
1815
|
# resp.next_token #=> String
|
1751
1816
|
#
|
1817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTaskInvocations AWS API Documentation
|
1818
|
+
#
|
1752
1819
|
# @overload describe_maintenance_window_execution_task_invocations(params = {})
|
1753
1820
|
# @param [Hash] params ({})
|
1754
1821
|
def describe_maintenance_window_execution_task_invocations(params = {}, options = {})
|
@@ -1809,6 +1876,8 @@ module Aws::SSM
|
|
1809
1876
|
# resp.window_execution_task_identities[0].task_type #=> String, one of "RUN_COMMAND"
|
1810
1877
|
# resp.next_token #=> String
|
1811
1878
|
#
|
1879
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutionTasks AWS API Documentation
|
1880
|
+
#
|
1812
1881
|
# @overload describe_maintenance_window_execution_tasks(params = {})
|
1813
1882
|
# @param [Hash] params ({})
|
1814
1883
|
def describe_maintenance_window_execution_tasks(params = {}, options = {})
|
@@ -1873,6 +1942,8 @@ module Aws::SSM
|
|
1873
1942
|
# resp.window_executions[0].end_time #=> Time
|
1874
1943
|
# resp.next_token #=> String
|
1875
1944
|
#
|
1945
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowExecutions AWS API Documentation
|
1946
|
+
#
|
1876
1947
|
# @overload describe_maintenance_window_executions(params = {})
|
1877
1948
|
# @param [Hash] params ({})
|
1878
1949
|
def describe_maintenance_window_executions(params = {}, options = {})
|
@@ -1931,6 +2002,8 @@ module Aws::SSM
|
|
1931
2002
|
# resp.targets[0].owner_information #=> String
|
1932
2003
|
# resp.next_token #=> String
|
1933
2004
|
#
|
2005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTargets AWS API Documentation
|
2006
|
+
#
|
1934
2007
|
# @overload describe_maintenance_window_targets(params = {})
|
1935
2008
|
# @param [Hash] params ({})
|
1936
2009
|
def describe_maintenance_window_targets(params = {}, options = {})
|
@@ -1999,6 +2072,8 @@ module Aws::SSM
|
|
1999
2072
|
# resp.tasks[0].max_errors #=> String
|
2000
2073
|
# resp.next_token #=> String
|
2001
2074
|
#
|
2075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindowTasks AWS API Documentation
|
2076
|
+
#
|
2002
2077
|
# @overload describe_maintenance_window_tasks(params = {})
|
2003
2078
|
# @param [Hash] params ({})
|
2004
2079
|
def describe_maintenance_window_tasks(params = {}, options = {})
|
@@ -2049,6 +2124,8 @@ module Aws::SSM
|
|
2049
2124
|
# resp.window_identities[0].cutoff #=> Integer
|
2050
2125
|
# resp.next_token #=> String
|
2051
2126
|
#
|
2127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeMaintenanceWindows AWS API Documentation
|
2128
|
+
#
|
2052
2129
|
# @overload describe_maintenance_windows(params = {})
|
2053
2130
|
# @param [Hash] params ({})
|
2054
2131
|
def describe_maintenance_windows(params = {}, options = {})
|
@@ -2100,6 +2177,8 @@ module Aws::SSM
|
|
2100
2177
|
# resp.parameters[0].description #=> String
|
2101
2178
|
# resp.next_token #=> String
|
2102
2179
|
#
|
2180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeParameters AWS API Documentation
|
2181
|
+
#
|
2103
2182
|
# @overload describe_parameters(params = {})
|
2104
2183
|
# @param [Hash] params ({})
|
2105
2184
|
def describe_parameters(params = {}, options = {})
|
@@ -2150,6 +2229,8 @@ module Aws::SSM
|
|
2150
2229
|
# resp.baseline_identities[0].default_baseline #=> Boolean
|
2151
2230
|
# resp.next_token #=> String
|
2152
2231
|
#
|
2232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchBaselines AWS API Documentation
|
2233
|
+
#
|
2153
2234
|
# @overload describe_patch_baselines(params = {})
|
2154
2235
|
# @param [Hash] params ({})
|
2155
2236
|
def describe_patch_baselines(params = {}, options = {})
|
@@ -2187,6 +2268,8 @@ module Aws::SSM
|
|
2187
2268
|
# resp.instances_with_failed_patches #=> Integer
|
2188
2269
|
# resp.instances_with_not_applicable_patches #=> Integer
|
2189
2270
|
#
|
2271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupState AWS API Documentation
|
2272
|
+
#
|
2190
2273
|
# @overload describe_patch_group_state(params = {})
|
2191
2274
|
# @param [Hash] params ({})
|
2192
2275
|
def describe_patch_group_state(params = {}, options = {})
|
@@ -2225,6 +2308,8 @@ module Aws::SSM
|
|
2225
2308
|
# resp.mappings[0].baseline_identity.default_baseline #=> Boolean
|
2226
2309
|
# resp.next_token #=> String
|
2227
2310
|
#
|
2311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroups AWS API Documentation
|
2312
|
+
#
|
2228
2313
|
# @overload describe_patch_groups(params = {})
|
2229
2314
|
# @param [Hash] params ({})
|
2230
2315
|
def describe_patch_groups(params = {}, options = {})
|
@@ -2279,6 +2364,8 @@ module Aws::SSM
|
|
2279
2364
|
# resp.automation_execution.outputs["AutomationParameterKey"][0] #=> String
|
2280
2365
|
# resp.automation_execution.failure_message #=> String
|
2281
2366
|
#
|
2367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecution AWS API Documentation
|
2368
|
+
#
|
2282
2369
|
# @overload get_automation_execution(params = {})
|
2283
2370
|
# @param [Hash] params ({})
|
2284
2371
|
def get_automation_execution(params = {}, options = {})
|
@@ -2299,8 +2386,8 @@ module Aws::SSM
|
|
2299
2386
|
#
|
2300
2387
|
# @option params [String] :plugin_name
|
2301
2388
|
# (Optional) The name of the plugin for which you want detailed results.
|
2302
|
-
# If the
|
2303
|
-
#
|
2389
|
+
# If the document contains only one plugin, the name can be omitted and
|
2390
|
+
# the details will be returned.
|
2304
2391
|
#
|
2305
2392
|
# @return [Types::GetCommandInvocationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2306
2393
|
#
|
@@ -2346,6 +2433,8 @@ module Aws::SSM
|
|
2346
2433
|
# resp.standard_error_content #=> String
|
2347
2434
|
# resp.standard_error_url #=> String
|
2348
2435
|
#
|
2436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocation AWS API Documentation
|
2437
|
+
#
|
2349
2438
|
# @overload get_command_invocation(params = {})
|
2350
2439
|
# @param [Hash] params ({})
|
2351
2440
|
def get_command_invocation(params = {}, options = {})
|
@@ -2363,6 +2452,8 @@ module Aws::SSM
|
|
2363
2452
|
#
|
2364
2453
|
# resp.baseline_id #=> String
|
2365
2454
|
#
|
2455
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
|
2456
|
+
#
|
2366
2457
|
# @overload get_default_patch_baseline(params = {})
|
2367
2458
|
# @param [Hash] params ({})
|
2368
2459
|
def get_default_patch_baseline(params = {}, options = {})
|
@@ -2400,6 +2491,8 @@ module Aws::SSM
|
|
2400
2491
|
# resp.snapshot_id #=> String
|
2401
2492
|
# resp.snapshot_download_url #=> String
|
2402
2493
|
#
|
2494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDeployablePatchSnapshotForInstance AWS API Documentation
|
2495
|
+
#
|
2403
2496
|
# @overload get_deployable_patch_snapshot_for_instance(params = {})
|
2404
2497
|
# @param [Hash] params ({})
|
2405
2498
|
def get_deployable_patch_snapshot_for_instance(params = {}, options = {})
|
@@ -2436,6 +2529,8 @@ module Aws::SSM
|
|
2436
2529
|
# resp.content #=> String
|
2437
2530
|
# resp.document_type #=> String, one of "Command", "Policy", "Automation"
|
2438
2531
|
#
|
2532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocument AWS API Documentation
|
2533
|
+
#
|
2439
2534
|
# @overload get_document(params = {})
|
2440
2535
|
# @param [Hash] params ({})
|
2441
2536
|
def get_document(params = {}, options = {})
|
@@ -2499,6 +2594,8 @@ module Aws::SSM
|
|
2499
2594
|
# resp.entities[0].data["InventoryResultItemKey"].content[0]["AttributeName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
2500
2595
|
# resp.next_token #=> String
|
2501
2596
|
#
|
2597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventory AWS API Documentation
|
2598
|
+
#
|
2502
2599
|
# @overload get_inventory(params = {})
|
2503
2600
|
# @param [Hash] params ({})
|
2504
2601
|
def get_inventory(params = {}, options = {})
|
@@ -2544,6 +2641,8 @@ module Aws::SSM
|
|
2544
2641
|
# resp.schemas[0].attributes[0].data_type #=> String, one of "string", "number"
|
2545
2642
|
# resp.next_token #=> String
|
2546
2643
|
#
|
2644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetInventorySchema AWS API Documentation
|
2645
|
+
#
|
2547
2646
|
# @overload get_inventory_schema(params = {})
|
2548
2647
|
# @param [Hash] params ({})
|
2549
2648
|
def get_inventory_schema(params = {}, options = {})
|
@@ -2586,6 +2685,8 @@ module Aws::SSM
|
|
2586
2685
|
# resp.created_date #=> Time
|
2587
2686
|
# resp.modified_date #=> Time
|
2588
2687
|
#
|
2688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindow AWS API Documentation
|
2689
|
+
#
|
2589
2690
|
# @overload get_maintenance_window(params = {})
|
2590
2691
|
# @param [Hash] params ({})
|
2591
2692
|
def get_maintenance_window(params = {}, options = {})
|
@@ -2624,6 +2725,8 @@ module Aws::SSM
|
|
2624
2725
|
# resp.start_time #=> Time
|
2625
2726
|
# resp.end_time #=> Time
|
2626
2727
|
#
|
2728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecution AWS API Documentation
|
2729
|
+
#
|
2627
2730
|
# @overload get_maintenance_window_execution(params = {})
|
2628
2731
|
# @param [Hash] params ({})
|
2629
2732
|
def get_maintenance_window_execution(params = {}, options = {})
|
@@ -2683,6 +2786,8 @@ module Aws::SSM
|
|
2683
2786
|
# resp.start_time #=> Time
|
2684
2787
|
# resp.end_time #=> Time
|
2685
2788
|
#
|
2789
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionTask AWS API Documentation
|
2790
|
+
#
|
2686
2791
|
# @overload get_maintenance_window_execution_task(params = {})
|
2687
2792
|
# @param [Hash] params ({})
|
2688
2793
|
def get_maintenance_window_execution_task(params = {}, options = {})
|
@@ -2734,6 +2839,8 @@ module Aws::SSM
|
|
2734
2839
|
# resp.parameters[0].value #=> String
|
2735
2840
|
# resp.next_token #=> String
|
2736
2841
|
#
|
2842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameterHistory AWS API Documentation
|
2843
|
+
#
|
2737
2844
|
# @overload get_parameter_history(params = {})
|
2738
2845
|
# @param [Hash] params ({})
|
2739
2846
|
def get_parameter_history(params = {}, options = {})
|
@@ -2741,7 +2848,7 @@ module Aws::SSM
|
|
2741
2848
|
req.send_request(options)
|
2742
2849
|
end
|
2743
2850
|
|
2744
|
-
# Get
|
2851
|
+
# Get details of a parameter.
|
2745
2852
|
#
|
2746
2853
|
# @option params [required, Array<String>] :names
|
2747
2854
|
# Names of the parameters for which you want to query information.
|
@@ -2772,6 +2879,8 @@ module Aws::SSM
|
|
2772
2879
|
# resp.invalid_parameters #=> Array
|
2773
2880
|
# resp.invalid_parameters[0] #=> String
|
2774
2881
|
#
|
2882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetParameters AWS API Documentation
|
2883
|
+
#
|
2775
2884
|
# @overload get_parameters(params = {})
|
2776
2885
|
# @param [Hash] params ({})
|
2777
2886
|
def get_parameters(params = {}, options = {})
|
@@ -2827,6 +2936,8 @@ module Aws::SSM
|
|
2827
2936
|
# resp.modified_date #=> Time
|
2828
2937
|
# resp.description #=> String
|
2829
2938
|
#
|
2939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaseline AWS API Documentation
|
2940
|
+
#
|
2830
2941
|
# @overload get_patch_baseline(params = {})
|
2831
2942
|
# @param [Hash] params ({})
|
2832
2943
|
def get_patch_baseline(params = {}, options = {})
|
@@ -2856,6 +2967,8 @@ module Aws::SSM
|
|
2856
2967
|
# resp.baseline_id #=> String
|
2857
2968
|
# resp.patch_group #=> String
|
2858
2969
|
#
|
2970
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
|
2971
|
+
#
|
2859
2972
|
# @overload get_patch_baseline_for_patch_group(params = {})
|
2860
2973
|
# @param [Hash] params ({})
|
2861
2974
|
def get_patch_baseline_for_patch_group(params = {}, options = {})
|
@@ -2863,7 +2976,8 @@ module Aws::SSM
|
|
2863
2976
|
req.send_request(options)
|
2864
2977
|
end
|
2865
2978
|
|
2866
|
-
# Lists the associations for the specified
|
2979
|
+
# Lists the associations for the specified Systems Manager document or
|
2980
|
+
# instance.
|
2867
2981
|
#
|
2868
2982
|
# @option params [Array<Types::AssociationFilter>] :association_filter_list
|
2869
2983
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -2915,6 +3029,8 @@ module Aws::SSM
|
|
2915
3029
|
# resp.associations[0].schedule_expression #=> String
|
2916
3030
|
# resp.next_token #=> String
|
2917
3031
|
#
|
3032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociations AWS API Documentation
|
3033
|
+
#
|
2918
3034
|
# @overload list_associations(params = {})
|
2919
3035
|
# @param [Hash] params ({})
|
2920
3036
|
def list_associations(params = {}, options = {})
|
@@ -3007,6 +3123,8 @@ module Aws::SSM
|
|
3007
3123
|
# resp.command_invocations[0].notification_config.notification_type #=> String, one of "Command", "Invocation"
|
3008
3124
|
# resp.next_token #=> String
|
3009
3125
|
#
|
3126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandInvocations AWS API Documentation
|
3127
|
+
#
|
3010
3128
|
# @overload list_command_invocations(params = {})
|
3011
3129
|
# @param [Hash] params ({})
|
3012
3130
|
def list_command_invocations(params = {}, options = {})
|
@@ -3089,6 +3207,8 @@ module Aws::SSM
|
|
3089
3207
|
# resp.commands[0].notification_config.notification_type #=> String, one of "Command", "Invocation"
|
3090
3208
|
# resp.next_token #=> String
|
3091
3209
|
#
|
3210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommands AWS API Documentation
|
3211
|
+
#
|
3092
3212
|
# @overload list_commands(params = {})
|
3093
3213
|
# @param [Hash] params ({})
|
3094
3214
|
def list_commands(params = {}, options = {})
|
@@ -3132,6 +3252,8 @@ module Aws::SSM
|
|
3132
3252
|
# resp.document_versions[0].is_default_version #=> Boolean
|
3133
3253
|
# resp.next_token #=> String
|
3134
3254
|
#
|
3255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocumentVersions AWS API Documentation
|
3256
|
+
#
|
3135
3257
|
# @overload list_document_versions(params = {})
|
3136
3258
|
# @param [Hash] params ({})
|
3137
3259
|
def list_document_versions(params = {}, options = {})
|
@@ -3184,6 +3306,8 @@ module Aws::SSM
|
|
3184
3306
|
# resp.document_identifiers[0].schema_version #=> String
|
3185
3307
|
# resp.next_token #=> String
|
3186
3308
|
#
|
3309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListDocuments AWS API Documentation
|
3310
|
+
#
|
3187
3311
|
# @overload list_documents(params = {})
|
3188
3312
|
# @param [Hash] params ({})
|
3189
3313
|
def list_documents(params = {}, options = {})
|
@@ -3248,6 +3372,8 @@ module Aws::SSM
|
|
3248
3372
|
# resp.entries[0]["AttributeName"] #=> <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
|
3249
3373
|
# resp.next_token #=> String
|
3250
3374
|
#
|
3375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListInventoryEntries AWS API Documentation
|
3376
|
+
#
|
3251
3377
|
# @overload list_inventory_entries(params = {})
|
3252
3378
|
# @param [Hash] params ({})
|
3253
3379
|
def list_inventory_entries(params = {}, options = {})
|
@@ -3280,6 +3406,8 @@ module Aws::SSM
|
|
3280
3406
|
# resp.tag_list[0].key #=> String
|
3281
3407
|
# resp.tag_list[0].value #=> String
|
3282
3408
|
#
|
3409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListTagsForResource AWS API Documentation
|
3410
|
+
#
|
3283
3411
|
# @overload list_tags_for_resource(params = {})
|
3284
3412
|
# @param [Hash] params ({})
|
3285
3413
|
def list_tags_for_resource(params = {}, options = {})
|
@@ -3287,10 +3415,10 @@ module Aws::SSM
|
|
3287
3415
|
req.send_request(options)
|
3288
3416
|
end
|
3289
3417
|
|
3290
|
-
#
|
3291
|
-
# privately, you must specify the AWS user account IDs for
|
3292
|
-
# who can use the document. If you share a document
|
3293
|
-
# specify *All* as the account ID.
|
3418
|
+
# Shares a Systems Manager document publicly or privately. If you share
|
3419
|
+
# a document privately, you must specify the AWS user account IDs for
|
3420
|
+
# those people who can use the document. If you share a document
|
3421
|
+
# publicly, you must specify *All* as the account ID.
|
3294
3422
|
#
|
3295
3423
|
# @option params [required, String] :name
|
3296
3424
|
# The name of the document that you want to share.
|
@@ -3321,6 +3449,8 @@ module Aws::SSM
|
|
3321
3449
|
# account_ids_to_remove: ["AccountId"],
|
3322
3450
|
# })
|
3323
3451
|
#
|
3452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ModifyDocumentPermission AWS API Documentation
|
3453
|
+
#
|
3324
3454
|
# @overload modify_document_permission(params = {})
|
3325
3455
|
# @param [Hash] params ({})
|
3326
3456
|
def modify_document_permission(params = {}, options = {})
|
@@ -3360,6 +3490,8 @@ module Aws::SSM
|
|
3360
3490
|
# ],
|
3361
3491
|
# })
|
3362
3492
|
#
|
3493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutInventory AWS API Documentation
|
3494
|
+
#
|
3363
3495
|
# @overload put_inventory(params = {})
|
3364
3496
|
# @param [Hash] params ({})
|
3365
3497
|
def put_inventory(params = {}, options = {})
|
@@ -3385,7 +3517,8 @@ module Aws::SSM
|
|
3385
3517
|
# The parameter key ID that you want to add to the system.
|
3386
3518
|
#
|
3387
3519
|
# @option params [Boolean] :overwrite
|
3388
|
-
# Overwrite an existing parameter.
|
3520
|
+
# Overwrite an existing parameter. If not specified, will default to
|
3521
|
+
# "false".
|
3389
3522
|
#
|
3390
3523
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3391
3524
|
#
|
@@ -3400,6 +3533,8 @@ module Aws::SSM
|
|
3400
3533
|
# overwrite: false,
|
3401
3534
|
# })
|
3402
3535
|
#
|
3536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameter AWS API Documentation
|
3537
|
+
#
|
3403
3538
|
# @overload put_parameter(params = {})
|
3404
3539
|
# @param [Hash] params ({})
|
3405
3540
|
def put_parameter(params = {}, options = {})
|
@@ -3427,6 +3562,8 @@ module Aws::SSM
|
|
3427
3562
|
#
|
3428
3563
|
# resp.baseline_id #=> String
|
3429
3564
|
#
|
3565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterDefaultPatchBaseline AWS API Documentation
|
3566
|
+
#
|
3430
3567
|
# @overload register_default_patch_baseline(params = {})
|
3431
3568
|
# @param [Hash] params ({})
|
3432
3569
|
def register_default_patch_baseline(params = {}, options = {})
|
@@ -3460,6 +3597,8 @@ module Aws::SSM
|
|
3460
3597
|
# resp.baseline_id #=> String
|
3461
3598
|
# resp.patch_group #=> String
|
3462
3599
|
#
|
3600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterPatchBaselineForPatchGroup AWS API Documentation
|
3601
|
+
#
|
3463
3602
|
# @overload register_patch_baseline_for_patch_group(params = {})
|
3464
3603
|
# @param [Hash] params ({})
|
3465
3604
|
def register_patch_baseline_for_patch_group(params = {}, options = {})
|
@@ -3514,6 +3653,8 @@ module Aws::SSM
|
|
3514
3653
|
#
|
3515
3654
|
# resp.window_target_id #=> String
|
3516
3655
|
#
|
3656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTargetWithMaintenanceWindow AWS API Documentation
|
3657
|
+
#
|
3517
3658
|
# @overload register_target_with_maintenance_window(params = {})
|
3518
3659
|
# @param [Hash] params ({})
|
3519
3660
|
def register_target_with_maintenance_window(params = {}, options = {})
|
@@ -3589,8 +3730,8 @@ module Aws::SSM
|
|
3589
3730
|
# },
|
3590
3731
|
# },
|
3591
3732
|
# priority: 1,
|
3592
|
-
# max_concurrency: "
|
3593
|
-
# max_errors: "
|
3733
|
+
# max_concurrency: "MaxConcurrency", # required
|
3734
|
+
# max_errors: "MaxErrors", # required
|
3594
3735
|
# logging_info: {
|
3595
3736
|
# s3_bucket_name: "S3BucketName", # required
|
3596
3737
|
# s3_key_prefix: "S3KeyPrefix",
|
@@ -3603,6 +3744,8 @@ module Aws::SSM
|
|
3603
3744
|
#
|
3604
3745
|
# resp.window_task_id #=> String
|
3605
3746
|
#
|
3747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTaskWithMaintenanceWindow AWS API Documentation
|
3748
|
+
#
|
3606
3749
|
# @overload register_task_with_maintenance_window(params = {})
|
3607
3750
|
# @param [Hash] params ({})
|
3608
3751
|
def register_task_with_maintenance_window(params = {}, options = {})
|
@@ -3631,6 +3774,8 @@ module Aws::SSM
|
|
3631
3774
|
# tag_keys: ["TagKey"], # required
|
3632
3775
|
# })
|
3633
3776
|
#
|
3777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RemoveTagsFromResource AWS API Documentation
|
3778
|
+
#
|
3634
3779
|
# @overload remove_tags_from_resource(params = {})
|
3635
3780
|
# @param [Hash] params ({})
|
3636
3781
|
def remove_tags_from_resource(params = {}, options = {})
|
@@ -3646,20 +3791,18 @@ module Aws::SSM
|
|
3646
3791
|
#
|
3647
3792
|
# @option params [Array<Types::Target>] :targets
|
3648
3793
|
# (Optional) An array of search criteria that targets instances using a
|
3649
|
-
# `Key
|
3794
|
+
# `Key`,`Value` combination that you specify. `Targets` is required if
|
3650
3795
|
# you don't provide one or more instance IDs in the call. For more
|
3651
3796
|
# information about how to use `Targets`, see [Executing a Command Using
|
3652
|
-
#
|
3653
|
-
# Amazon EC2 Run Command][2] (Windows).
|
3797
|
+
# Systems Manager Run Command][1].
|
3654
3798
|
#
|
3655
3799
|
#
|
3656
3800
|
#
|
3657
|
-
# [1]: http://docs.aws.amazon.com/
|
3658
|
-
# [2]: http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html
|
3801
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html
|
3659
3802
|
#
|
3660
3803
|
# @option params [required, String] :document_name
|
3661
|
-
# Required. The name of the
|
3662
|
-
# public document or a custom document.
|
3804
|
+
# Required. The name of the Systems Manager document to execute. This
|
3805
|
+
# can be a public document or a custom document.
|
3663
3806
|
#
|
3664
3807
|
# @option params [String] :document_hash
|
3665
3808
|
# The Sha256 or Sha1 hash created by the system when the document was
|
@@ -3685,8 +3828,8 @@ module Aws::SSM
|
|
3685
3828
|
# description of what the command should do.
|
3686
3829
|
#
|
3687
3830
|
# @option params [Hash<String,Array>] :parameters
|
3688
|
-
# The required and optional parameters specified in the
|
3689
|
-
#
|
3831
|
+
# The required and optional parameters specified in the document being
|
3832
|
+
# executed.
|
3690
3833
|
#
|
3691
3834
|
# @option params [String] :output_s3_region
|
3692
3835
|
# (Optional) The region where the Amazon Simple Storage Service (Amazon
|
@@ -3706,13 +3849,11 @@ module Aws::SSM
|
|
3706
3849
|
# the command at the same time. You can specify a number such as “10” or
|
3707
3850
|
# a percentage such as “10%”. The default value is 50. For more
|
3708
3851
|
# information about how to use `MaxConcurrency`, see [Executing a
|
3709
|
-
# Command Using
|
3710
|
-
# Command Using Amazon EC2 Run Command][2] (Windows).
|
3852
|
+
# Command Using Systems Manager Run Command][1].
|
3711
3853
|
#
|
3712
3854
|
#
|
3713
3855
|
#
|
3714
|
-
# [1]: http://docs.aws.amazon.com/
|
3715
|
-
# [2]: http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html
|
3856
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html
|
3716
3857
|
#
|
3717
3858
|
# @option params [String] :max_errors
|
3718
3859
|
# The maximum number of errors allowed without the command failing. When
|
@@ -3720,13 +3861,11 @@ module Aws::SSM
|
|
3720
3861
|
# systems stops sending the command to additional targets. You can
|
3721
3862
|
# specify a number like “10” or a percentage like “10%”. The default
|
3722
3863
|
# value is 50. For more information about how to use `MaxErrors`, see
|
3723
|
-
# [Executing a Command Using
|
3724
|
-
# [Executing a Command Using Amazon EC2 Run Command][2] (Windows).
|
3864
|
+
# [Executing a Command Using Systems Manager Run Command][1].
|
3725
3865
|
#
|
3726
3866
|
#
|
3727
3867
|
#
|
3728
|
-
# [1]: http://docs.aws.amazon.com/
|
3729
|
-
# [2]: http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/run-command.html
|
3868
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html
|
3730
3869
|
#
|
3731
3870
|
# @option params [String] :service_role_arn
|
3732
3871
|
# The IAM role that Systems Manager uses to send notifications.
|
@@ -3759,8 +3898,8 @@ module Aws::SSM
|
|
3759
3898
|
# output_s3_region: "S3Region",
|
3760
3899
|
# output_s3_bucket_name: "S3BucketName",
|
3761
3900
|
# output_s3_key_prefix: "S3KeyPrefix",
|
3762
|
-
# max_concurrency: "
|
3763
|
-
# max_errors: "
|
3901
|
+
# max_concurrency: "MaxConcurrency",
|
3902
|
+
# max_errors: "MaxErrors",
|
3764
3903
|
# service_role_arn: "ServiceRole",
|
3765
3904
|
# notification_config: {
|
3766
3905
|
# notification_arn: "NotificationArn",
|
@@ -3801,6 +3940,8 @@ module Aws::SSM
|
|
3801
3940
|
# resp.command.notification_config.notification_events[0] #=> String, one of "All", "InProgress", "Success", "TimedOut", "Cancelled", "Failed"
|
3802
3941
|
# resp.command.notification_config.notification_type #=> String, one of "Command", "Invocation"
|
3803
3942
|
#
|
3943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SendCommand AWS API Documentation
|
3944
|
+
#
|
3804
3945
|
# @overload send_command(params = {})
|
3805
3946
|
# @param [Hash] params ({})
|
3806
3947
|
def send_command(params = {}, options = {})
|
@@ -3838,6 +3979,8 @@ module Aws::SSM
|
|
3838
3979
|
#
|
3839
3980
|
# resp.automation_execution_id #=> String
|
3840
3981
|
#
|
3982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAutomationExecution AWS API Documentation
|
3983
|
+
#
|
3841
3984
|
# @overload start_automation_execution(params = {})
|
3842
3985
|
# @param [Hash] params ({})
|
3843
3986
|
def start_automation_execution(params = {}, options = {})
|
@@ -3858,6 +4001,8 @@ module Aws::SSM
|
|
3858
4001
|
# automation_execution_id: "AutomationExecutionId", # required
|
3859
4002
|
# })
|
3860
4003
|
#
|
4004
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StopAutomationExecution AWS API Documentation
|
4005
|
+
#
|
3861
4006
|
# @overload stop_automation_execution(params = {})
|
3862
4007
|
# @param [Hash] params ({})
|
3863
4008
|
def stop_automation_execution(params = {}, options = {})
|
@@ -3947,6 +4092,8 @@ module Aws::SSM
|
|
3947
4092
|
# resp.association_description.last_execution_date #=> Time
|
3948
4093
|
# resp.association_description.last_successful_execution_date #=> Time
|
3949
4094
|
#
|
4095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
|
4096
|
+
#
|
3950
4097
|
# @overload update_association(params = {})
|
3951
4098
|
# @param [Hash] params ({})
|
3952
4099
|
def update_association(params = {}, options = {})
|
@@ -3954,8 +4101,8 @@ module Aws::SSM
|
|
3954
4101
|
req.send_request(options)
|
3955
4102
|
end
|
3956
4103
|
|
3957
|
-
# Updates the status of the
|
3958
|
-
# instance.
|
4104
|
+
# Updates the status of the Systems Manager document associated with the
|
4105
|
+
# specified instance.
|
3959
4106
|
#
|
3960
4107
|
# @option params [required, String] :name
|
3961
4108
|
# The name of the SSM document.
|
@@ -4013,6 +4160,8 @@ module Aws::SSM
|
|
4013
4160
|
# resp.association_description.last_execution_date #=> Time
|
4014
4161
|
# resp.association_description.last_successful_execution_date #=> Time
|
4015
4162
|
#
|
4163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
|
4164
|
+
#
|
4016
4165
|
# @overload update_association_status(params = {})
|
4017
4166
|
# @param [Hash] params ({})
|
4018
4167
|
def update_association_status(params = {}, options = {})
|
@@ -4066,6 +4215,8 @@ module Aws::SSM
|
|
4066
4215
|
# resp.document_description.latest_version #=> String
|
4067
4216
|
# resp.document_description.default_version #=> String
|
4068
4217
|
#
|
4218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocument AWS API Documentation
|
4219
|
+
#
|
4069
4220
|
# @overload update_document(params = {})
|
4070
4221
|
# @param [Hash] params ({})
|
4071
4222
|
def update_document(params = {}, options = {})
|
@@ -4099,6 +4250,8 @@ module Aws::SSM
|
|
4099
4250
|
# resp.description.name #=> String
|
4100
4251
|
# resp.description.default_version #=> String
|
4101
4252
|
#
|
4253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateDocumentDefaultVersion AWS API Documentation
|
4254
|
+
#
|
4102
4255
|
# @overload update_document_default_version(params = {})
|
4103
4256
|
# @param [Hash] params ({})
|
4104
4257
|
def update_document_default_version(params = {}, options = {})
|
@@ -4165,6 +4318,8 @@ module Aws::SSM
|
|
4165
4318
|
# resp.allow_unassociated_targets #=> Boolean
|
4166
4319
|
# resp.enabled #=> Boolean
|
4167
4320
|
#
|
4321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindow AWS API Documentation
|
4322
|
+
#
|
4168
4323
|
# @overload update_maintenance_window(params = {})
|
4169
4324
|
# @param [Hash] params ({})
|
4170
4325
|
def update_maintenance_window(params = {}, options = {})
|
@@ -4190,6 +4345,8 @@ module Aws::SSM
|
|
4190
4345
|
# iam_role: "IamRole", # required
|
4191
4346
|
# })
|
4192
4347
|
#
|
4348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateManagedInstanceRole AWS API Documentation
|
4349
|
+
#
|
4193
4350
|
# @overload update_managed_instance_role(params = {})
|
4194
4351
|
# @param [Hash] params ({})
|
4195
4352
|
def update_managed_instance_role(params = {}, options = {})
|
@@ -4288,6 +4445,8 @@ module Aws::SSM
|
|
4288
4445
|
# resp.modified_date #=> Time
|
4289
4446
|
# resp.description #=> String
|
4290
4447
|
#
|
4448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdatePatchBaseline AWS API Documentation
|
4449
|
+
#
|
4291
4450
|
# @overload update_patch_baseline(params = {})
|
4292
4451
|
# @param [Hash] params ({})
|
4293
4452
|
def update_patch_baseline(params = {}, options = {})
|
@@ -4308,7 +4467,7 @@ module Aws::SSM
|
|
4308
4467
|
params: params,
|
4309
4468
|
config: config)
|
4310
4469
|
context[:gem_name] = 'aws-sdk-ssm'
|
4311
|
-
context[:gem_version] = '1.0.0.
|
4470
|
+
context[:gem_version] = '1.0.0.rc4'
|
4312
4471
|
Seahorse::Client::Request.new(handlers, context)
|
4313
4472
|
end
|
4314
4473
|
|