aws-sdk-ssm 1.31.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e586c96281b782327fd21179ddad34f2f245d772
4
- data.tar.gz: c167603a85955cac14e864cea066858df98666ba
3
+ metadata.gz: c65669835a9beb3b547b0e03358fc40f0206c7c0
4
+ data.tar.gz: d928e50e80ac311c5b3ec86e804e92f67584688d
5
5
  SHA512:
6
- metadata.gz: 79541ba0177774a71ddaaa5fe4602d262a9c5d0eb236ce0b1a11dcf81f5604c58b1ac1fc973642c98a67959b66f1b5bea6d1734c988b4f7a2a9364340b7aafe5
7
- data.tar.gz: 2a61d35b3cbb9ef3bfdf1ee9487b01f7992780933acbcc891ed5a8f9418817d09c4051c3488366d2a64ccb9c485ceda0920eb9b6ef24630ec0ea2709cedfdd5c
6
+ metadata.gz: e98cde0ccc29f0aad1ab3ad589adbd1b5a234b56c36400840de155a88cd92b4b71b74c2f810a1d5dd47d938a757b4c1fb2da934e047af7541de8ea7c4657b942
7
+ data.tar.gz: e7772ed487cb57634d5bfafbdbc75fbb2a5e78dffc4fa330200867b69bfde6cd3bbe2d8ae31b52b7e05b5b9bdc2d07b6e9c6c6051b25d24b322ec1d19b14deba
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-ssm/customizations'
42
42
  # @service
43
43
  module Aws::SSM
44
44
 
45
- GEM_VERSION = '1.31.0'
45
+ GEM_VERSION = '1.32.0'
46
46
 
47
47
  end
@@ -468,6 +468,9 @@ module Aws::SSM
468
468
  # the new instance will process its association within the limit
469
469
  # specified for MaxConcurrency.
470
470
  #
471
+ # @option params [String] :compliance_severity
472
+ # The severity level to assign to the association.
473
+ #
471
474
  # @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
472
475
  #
473
476
  # * {Types::CreateAssociationResult#association_description #association_description} => Types::AssociationDescription
@@ -498,6 +501,7 @@ module Aws::SSM
498
501
  # association_name: "AssociationName",
499
502
  # max_errors: "MaxErrors",
500
503
  # max_concurrency: "MaxConcurrency",
504
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
501
505
  # })
502
506
  #
503
507
  # @example Response structure
@@ -533,6 +537,7 @@ module Aws::SSM
533
537
  # resp.association_description.association_name #=> String
534
538
  # resp.association_description.max_errors #=> String
535
539
  # resp.association_description.max_concurrency #=> String
540
+ # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
536
541
  #
537
542
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociation AWS API Documentation
538
543
  #
@@ -590,6 +595,7 @@ module Aws::SSM
590
595
  # association_name: "AssociationName",
591
596
  # max_errors: "MaxErrors",
592
597
  # max_concurrency: "MaxConcurrency",
598
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
593
599
  # },
594
600
  # ],
595
601
  # })
@@ -628,6 +634,7 @@ module Aws::SSM
628
634
  # resp.successful[0].association_name #=> String
629
635
  # resp.successful[0].max_errors #=> String
630
636
  # resp.successful[0].max_concurrency #=> String
637
+ # resp.successful[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
631
638
  # resp.failed #=> Array
632
639
  # resp.failed[0].entry.name #=> String
633
640
  # resp.failed[0].entry.instance_id #=> String
@@ -646,6 +653,7 @@ module Aws::SSM
646
653
  # resp.failed[0].entry.association_name #=> String
647
654
  # resp.failed[0].entry.max_errors #=> String
648
655
  # resp.failed[0].entry.max_concurrency #=> String
656
+ # resp.failed[0].entry.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
649
657
  # resp.failed[0].message #=> String
650
658
  # resp.failed[0].fault #=> String, one of "Client", "Server", "Unknown"
651
659
  #
@@ -1595,6 +1603,7 @@ module Aws::SSM
1595
1603
  # resp.association_description.association_name #=> String
1596
1604
  # resp.association_description.max_errors #=> String
1597
1605
  # resp.association_description.max_concurrency #=> String
1606
+ # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
1598
1607
  #
1599
1608
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAssociation AWS API Documentation
1600
1609
  #
@@ -4603,6 +4612,7 @@ module Aws::SSM
4603
4612
  # resp.association_versions[0].association_name #=> String
4604
4613
  # resp.association_versions[0].max_errors #=> String
4605
4614
  # resp.association_versions[0].max_concurrency #=> String
4615
+ # resp.association_versions[0].compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
4606
4616
  # resp.next_token #=> String
4607
4617
  #
4608
4618
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListAssociationVersions AWS API Documentation
@@ -6615,6 +6625,9 @@ module Aws::SSM
6615
6625
  # the new instance will process its association within the limit
6616
6626
  # specified for MaxConcurrency.
6617
6627
  #
6628
+ # @option params [String] :compliance_severity
6629
+ # The severity level to assign to the association.
6630
+ #
6618
6631
  # @return [Types::UpdateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6619
6632
  #
6620
6633
  # * {Types::UpdateAssociationResult#association_description #association_description} => Types::AssociationDescription
@@ -6646,6 +6659,7 @@ module Aws::SSM
6646
6659
  # association_version: "AssociationVersion",
6647
6660
  # max_errors: "MaxErrors",
6648
6661
  # max_concurrency: "MaxConcurrency",
6662
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
6649
6663
  # })
6650
6664
  #
6651
6665
  # @example Response structure
@@ -6681,6 +6695,7 @@ module Aws::SSM
6681
6695
  # resp.association_description.association_name #=> String
6682
6696
  # resp.association_description.max_errors #=> String
6683
6697
  # resp.association_description.max_concurrency #=> String
6698
+ # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
6684
6699
  #
6685
6700
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociation AWS API Documentation
6686
6701
  #
@@ -6753,6 +6768,7 @@ module Aws::SSM
6753
6768
  # resp.association_description.association_name #=> String
6754
6769
  # resp.association_description.max_errors #=> String
6755
6770
  # resp.association_description.max_concurrency #=> String
6771
+ # resp.association_description.compliance_severity #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "UNSPECIFIED"
6756
6772
  #
6757
6773
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationStatus AWS API Documentation
6758
6774
  #
@@ -7550,7 +7566,7 @@ module Aws::SSM
7550
7566
  params: params,
7551
7567
  config: config)
7552
7568
  context[:gem_name] = 'aws-sdk-ssm'
7553
- context[:gem_version] = '1.31.0'
7569
+ context[:gem_version] = '1.32.0'
7554
7570
  Seahorse::Client::Request.new(handlers, context)
7555
7571
  end
7556
7572
 
@@ -28,6 +28,7 @@ module Aws::SSM
28
28
  AssociatedInstances = Shapes::StructureShape.new(name: 'AssociatedInstances')
29
29
  Association = Shapes::StructureShape.new(name: 'Association')
30
30
  AssociationAlreadyExists = Shapes::StructureShape.new(name: 'AssociationAlreadyExists')
31
+ AssociationComplianceSeverity = Shapes::StringShape.new(name: 'AssociationComplianceSeverity')
31
32
  AssociationDescription = Shapes::StructureShape.new(name: 'AssociationDescription')
32
33
  AssociationDescriptionList = Shapes::ListShape.new(name: 'AssociationDescriptionList')
33
34
  AssociationDoesNotExist = Shapes::StructureShape.new(name: 'AssociationDoesNotExist')
@@ -930,6 +931,7 @@ module Aws::SSM
930
931
  AssociationDescription.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
931
932
  AssociationDescription.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
932
933
  AssociationDescription.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
934
+ AssociationDescription.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
933
935
  AssociationDescription.struct_class = Types::AssociationDescription
934
936
 
935
937
  AssociationDescriptionList.member = Shapes::ShapeRef.new(shape: AssociationDescription)
@@ -1008,6 +1010,7 @@ module Aws::SSM
1008
1010
  AssociationVersionInfo.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
1009
1011
  AssociationVersionInfo.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
1010
1012
  AssociationVersionInfo.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
1013
+ AssociationVersionInfo.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
1011
1014
  AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
1012
1015
 
1013
1016
  AssociationVersionList.member = Shapes::ShapeRef.new(shape: AssociationVersionInfo)
@@ -1240,6 +1243,7 @@ module Aws::SSM
1240
1243
  CreateAssociationBatchRequestEntry.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
1241
1244
  CreateAssociationBatchRequestEntry.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
1242
1245
  CreateAssociationBatchRequestEntry.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
1246
+ CreateAssociationBatchRequestEntry.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
1243
1247
  CreateAssociationBatchRequestEntry.struct_class = Types::CreateAssociationBatchRequestEntry
1244
1248
 
1245
1249
  CreateAssociationBatchResult.add_member(:successful, Shapes::ShapeRef.new(shape: AssociationDescriptionList, location_name: "Successful"))
@@ -1256,6 +1260,7 @@ module Aws::SSM
1256
1260
  CreateAssociationRequest.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
1257
1261
  CreateAssociationRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
1258
1262
  CreateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
1263
+ CreateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
1259
1264
  CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
1260
1265
 
1261
1266
  CreateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
@@ -2989,6 +2994,7 @@ module Aws::SSM
2989
2994
  UpdateAssociationRequest.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
2990
2995
  UpdateAssociationRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
2991
2996
  UpdateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
2997
+ UpdateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
2992
2998
  UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
2993
2999
 
2994
3000
  UpdateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
@@ -296,6 +296,10 @@ module Aws::SSM
296
296
  # specified for MaxConcurrency.
297
297
  # @return [String]
298
298
  #
299
+ # @!attribute [rw] compliance_severity
300
+ # The severity level that is assigned to the association.
301
+ # @return [String]
302
+ #
299
303
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDescription AWS API Documentation
300
304
  #
301
305
  class AssociationDescription < Struct.new(
@@ -316,7 +320,8 @@ module Aws::SSM
316
320
  :last_successful_execution_date,
317
321
  :association_name,
318
322
  :max_errors,
319
- :max_concurrency)
323
+ :max_concurrency,
324
+ :compliance_severity)
320
325
  include Aws::Structure
321
326
  end
322
327
 
@@ -654,6 +659,10 @@ module Aws::SSM
654
659
  # specified for MaxConcurrency.
655
660
  # @return [String]
656
661
  #
662
+ # @!attribute [rw] compliance_severity
663
+ # The severity level that is assigned to the association.
664
+ # @return [String]
665
+ #
657
666
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationVersionInfo AWS API Documentation
658
667
  #
659
668
  class AssociationVersionInfo < Struct.new(
@@ -668,7 +677,8 @@ module Aws::SSM
668
677
  :output_location,
669
678
  :association_name,
670
679
  :max_errors,
671
- :max_concurrency)
680
+ :max_concurrency,
681
+ :compliance_severity)
672
682
  include Aws::Structure
673
683
  end
674
684
 
@@ -1960,6 +1970,7 @@ module Aws::SSM
1960
1970
  # association_name: "AssociationName",
1961
1971
  # max_errors: "MaxErrors",
1962
1972
  # max_concurrency: "MaxConcurrency",
1973
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
1963
1974
  # },
1964
1975
  # ],
1965
1976
  # }
@@ -2005,6 +2016,7 @@ module Aws::SSM
2005
2016
  # association_name: "AssociationName",
2006
2017
  # max_errors: "MaxErrors",
2007
2018
  # max_concurrency: "MaxConcurrency",
2019
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
2008
2020
  # }
2009
2021
  #
2010
2022
  # @!attribute [rw] name
@@ -2072,6 +2084,10 @@ module Aws::SSM
2072
2084
  # specified for MaxConcurrency.
2073
2085
  # @return [String]
2074
2086
  #
2087
+ # @!attribute [rw] compliance_severity
2088
+ # The severity level to assign to the association.
2089
+ # @return [String]
2090
+ #
2075
2091
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequestEntry AWS API Documentation
2076
2092
  #
2077
2093
  class CreateAssociationBatchRequestEntry < Struct.new(
@@ -2084,7 +2100,8 @@ module Aws::SSM
2084
2100
  :output_location,
2085
2101
  :association_name,
2086
2102
  :max_errors,
2087
- :max_concurrency)
2103
+ :max_concurrency,
2104
+ :compliance_severity)
2088
2105
  include Aws::Structure
2089
2106
  end
2090
2107
 
@@ -2131,6 +2148,7 @@ module Aws::SSM
2131
2148
  # association_name: "AssociationName",
2132
2149
  # max_errors: "MaxErrors",
2133
2150
  # max_concurrency: "MaxConcurrency",
2151
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
2134
2152
  # }
2135
2153
  #
2136
2154
  # @!attribute [rw] name
@@ -2199,6 +2217,10 @@ module Aws::SSM
2199
2217
  # specified for MaxConcurrency.
2200
2218
  # @return [String]
2201
2219
  #
2220
+ # @!attribute [rw] compliance_severity
2221
+ # The severity level to assign to the association.
2222
+ # @return [String]
2223
+ #
2202
2224
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationRequest AWS API Documentation
2203
2225
  #
2204
2226
  class CreateAssociationRequest < Struct.new(
@@ -2211,7 +2233,8 @@ module Aws::SSM
2211
2233
  :output_location,
2212
2234
  :association_name,
2213
2235
  :max_errors,
2214
- :max_concurrency)
2236
+ :max_concurrency,
2237
+ :compliance_severity)
2215
2238
  include Aws::Structure
2216
2239
  end
2217
2240
 
@@ -12457,6 +12480,7 @@ module Aws::SSM
12457
12480
  # association_version: "AssociationVersion",
12458
12481
  # max_errors: "MaxErrors",
12459
12482
  # max_concurrency: "MaxConcurrency",
12483
+ # compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
12460
12484
  # }
12461
12485
  #
12462
12486
  # @!attribute [rw] association_id
@@ -12533,6 +12557,10 @@ module Aws::SSM
12533
12557
  # specified for MaxConcurrency.
12534
12558
  # @return [String]
12535
12559
  #
12560
+ # @!attribute [rw] compliance_severity
12561
+ # The severity level to assign to the association.
12562
+ # @return [String]
12563
+ #
12536
12564
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
12537
12565
  #
12538
12566
  class UpdateAssociationRequest < Struct.new(
@@ -12546,7 +12574,8 @@ module Aws::SSM
12546
12574
  :association_name,
12547
12575
  :association_version,
12548
12576
  :max_errors,
12549
- :max_concurrency)
12577
+ :max_concurrency,
12578
+ :compliance_severity)
12550
12579
  include Aws::Structure
12551
12580
  end
12552
12581
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-24 00:00:00.000000000 Z
11
+ date: 2018-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core