aws-sdk-ssm 1.70.0 → 1.71.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: 4a042b6db782e367abda5a97edcff3e7c8c22857
4
- data.tar.gz: 52cab61b792d092a0dd123a8755817df0888985f
3
+ metadata.gz: de7763f5557082510ced27463a8fcd4b6023a175
4
+ data.tar.gz: 6cf94cd2a6c9a899e27824593ce7f0ae9a2f5d1f
5
5
  SHA512:
6
- metadata.gz: 308271ccd004e4b5676e27fdafeffc7e3720c433f21033ee7885428104ee8049f728b980bb489c2c9f4b8de6c525f74862db0167c775d4492a8e9aeca578e963
7
- data.tar.gz: 13bf7210ac3cacafd478b21d4438c7eebcdba3576e0efe8c52fc9bfdb04cff8d06de3e4a8fda2c4c659684eacc6a0aaf72b198e841e2ea1f8d23ae52bee5940b
6
+ metadata.gz: 3ab3c16a06e827023492b58195db8ab232a17aa9b784c13155e1a68fd069fd133ad5998cbdfd6881abc6d634ce00d5c3eda6009c2cd44509b9354cf62b87f8da
7
+ data.tar.gz: 4bfadb5b239a68fc70553ab1b5b4cd173bc723e3288fa682aca5c7e5ff5cb2bcb9525e3b3d276599b6feddf6b6298176d60de5be28919bca9174e8b78a939b38
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-ssm/customizations'
42
42
  # @service
43
43
  module Aws::SSM
44
44
 
45
- GEM_VERSION = '1.70.0'
45
+ GEM_VERSION = '1.71.0'
46
46
 
47
47
  end
@@ -1379,7 +1379,8 @@ module Aws::SSM
1379
1379
  # ],
1380
1380
  # },
1381
1381
  # compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
1382
- # approve_after_days: 1, # required
1382
+ # approve_after_days: 1,
1383
+ # approve_until_date: "PatchStringDate",
1383
1384
  # enable_non_security: false,
1384
1385
  # },
1385
1386
  # ],
@@ -1429,15 +1430,14 @@ module Aws::SSM
1429
1430
  # [Configuring Resource Data Sync for Inventory][1] in the *AWS Systems
1430
1431
  # Manager User Guide*.
1431
1432
  #
1432
- # You can configure Systems Manager Explorer to use the
1433
- # `SyncToDestination` type to synchronize operational work items
1434
- # (OpsItems) and operational data (OpsData) from multiple AWS Regions to
1435
- # a single Amazon S3 bucket. You can also configure Explorer to use the
1436
- # `SyncFromSource` type. This type synchronizes OpsItems and OpsData
1437
- # from multiple AWS accounts and Regions by using AWS Organizations. For
1438
- # more information, see [Setting Up Explorer to Display Data from
1439
- # Multiple Accounts and Regions][2] in the *AWS Systems Manager User
1440
- # Guide*.
1433
+ # You can configure Systems Manager Explorer to use the `SyncFromSource`
1434
+ # type to synchronize operational work items (OpsItems) and operational
1435
+ # data (OpsData) from multiple AWS Regions to a single Amazon S3 bucket.
1436
+ # This type can synchronize OpsItems and OpsData from multiple AWS
1437
+ # accounts and Regions or `EntireOrganization` by using AWS
1438
+ # Organizations. For more information, see [Setting Up Explorer to
1439
+ # Display Data from Multiple Accounts and Regions][2] in the *AWS
1440
+ # Systems Manager User Guide*.
1441
1441
  #
1442
1442
  # A resource data sync is an asynchronous operation that returns
1443
1443
  # immediately. After a successful initial sync is completed, the system
@@ -5432,6 +5432,7 @@ module Aws::SSM
5432
5432
  # resp.approval_rules.patch_rules[0].patch_filter_group.patch_filters[0].values[0] #=> String
5433
5433
  # resp.approval_rules.patch_rules[0].compliance_level #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "INFORMATIONAL", "UNSPECIFIED"
5434
5434
  # resp.approval_rules.patch_rules[0].approve_after_days #=> Integer
5435
+ # resp.approval_rules.patch_rules[0].approve_until_date #=> String
5435
5436
  # resp.approval_rules.patch_rules[0].enable_non_security #=> Boolean
5436
5437
  # resp.approved_patches #=> Array
5437
5438
  # resp.approved_patches[0] #=> String
@@ -6657,8 +6658,9 @@ module Aws::SSM
6657
6658
  # @option params [required, String] :name
6658
6659
  # The fully qualified name of the parameter that you want to add to the
6659
6660
  # system. The fully qualified name includes the complete hierarchy of
6660
- # the parameter path and name. For example:
6661
- # `/Dev/DBServer/MySQL/db-string13`
6661
+ # the parameter path and name. For parameters in a hierarchy, you must
6662
+ # include a leading forward slash character (/) when you create or
6663
+ # reference a parameter. For example: `/Dev/DBServer/MySQL/db-string13`
6662
6664
  #
6663
6665
  # Naming Constraints:
6664
6666
  #
@@ -6683,10 +6685,9 @@ module Aws::SSM
6683
6685
  #
6684
6686
  # <note markdown="1"> The maximum length constraint listed below includes capacity for
6685
6687
  # additional system attributes that are not part of the name. The
6686
- # maximum length for the fully qualified parameter name is 1011
6687
- # characters, including the full length of the parameter ARN. For
6688
- # example, the following fully qualified parameter name is 65
6689
- # characters, not 20 characters:
6688
+ # maximum length for a parameter name, including the full length of the
6689
+ # parameter ARN, is 1011 characters. For example, the length of the
6690
+ # following parameter name is 65 characters, not 20 characters:
6690
6691
  #
6691
6692
  # `arn:aws:ssm:us-east-2:111122223333:parameter/ExampleParameterName`
6692
6693
  #
@@ -9087,7 +9088,8 @@ module Aws::SSM
9087
9088
  # ],
9088
9089
  # },
9089
9090
  # compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
9090
- # approve_after_days: 1, # required
9091
+ # approve_after_days: 1,
9092
+ # approve_until_date: "PatchStringDate",
9091
9093
  # enable_non_security: false,
9092
9094
  # },
9093
9095
  # ],
@@ -9124,6 +9126,7 @@ module Aws::SSM
9124
9126
  # resp.approval_rules.patch_rules[0].patch_filter_group.patch_filters[0].values[0] #=> String
9125
9127
  # resp.approval_rules.patch_rules[0].compliance_level #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "INFORMATIONAL", "UNSPECIFIED"
9126
9128
  # resp.approval_rules.patch_rules[0].approve_after_days #=> Integer
9129
+ # resp.approval_rules.patch_rules[0].approve_until_date #=> String
9127
9130
  # resp.approval_rules.patch_rules[0].enable_non_security #=> Boolean
9128
9131
  # resp.approved_patches #=> Array
9129
9132
  # resp.approved_patches[0] #=> String
@@ -9256,7 +9259,7 @@ module Aws::SSM
9256
9259
  params: params,
9257
9260
  config: config)
9258
9261
  context[:gem_name] = 'aws-sdk-ssm'
9259
- context[:gem_version] = '1.70.0'
9262
+ context[:gem_version] = '1.71.0'
9260
9263
  Seahorse::Client::Request.new(handlers, context)
9261
9264
  end
9262
9265
 
@@ -818,6 +818,7 @@ module Aws::SSM
818
818
  PatchSourceProduct = Shapes::StringShape.new(name: 'PatchSourceProduct')
819
819
  PatchSourceProductList = Shapes::ListShape.new(name: 'PatchSourceProductList')
820
820
  PatchStatus = Shapes::StructureShape.new(name: 'PatchStatus')
821
+ PatchStringDate = Shapes::StringShape.new(name: 'PatchStringDate')
821
822
  PatchTitle = Shapes::StringShape.new(name: 'PatchTitle')
822
823
  PatchUnreportedNotApplicableCount = Shapes::IntegerShape.new(name: 'PatchUnreportedNotApplicableCount')
823
824
  PatchVendor = Shapes::StringShape.new(name: 'PatchVendor')
@@ -3323,7 +3324,8 @@ module Aws::SSM
3323
3324
 
3324
3325
  PatchRule.add_member(:patch_filter_group, Shapes::ShapeRef.new(shape: PatchFilterGroup, required: true, location_name: "PatchFilterGroup"))
3325
3326
  PatchRule.add_member(:compliance_level, Shapes::ShapeRef.new(shape: PatchComplianceLevel, location_name: "ComplianceLevel"))
3326
- PatchRule.add_member(:approve_after_days, Shapes::ShapeRef.new(shape: ApproveAfterDays, required: true, location_name: "ApproveAfterDays", metadata: {"box"=>true}))
3327
+ PatchRule.add_member(:approve_after_days, Shapes::ShapeRef.new(shape: ApproveAfterDays, location_name: "ApproveAfterDays", metadata: {"box"=>true}))
3328
+ PatchRule.add_member(:approve_until_date, Shapes::ShapeRef.new(shape: PatchStringDate, location_name: "ApproveUntilDate", metadata: {"box"=>true}))
3327
3329
  PatchRule.add_member(:enable_non_security, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableNonSecurity", metadata: {"box"=>true}))
3328
3330
  PatchRule.struct_class = Types::PatchRule
3329
3331
 
@@ -3092,7 +3092,8 @@ module Aws::SSM
3092
3092
  # ],
3093
3093
  # },
3094
3094
  # compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
3095
- # approve_after_days: 1, # required
3095
+ # approve_after_days: 1,
3096
+ # approve_until_date: "PatchStringDate",
3096
3097
  # enable_non_security: false,
3097
3098
  # },
3098
3099
  # ],
@@ -12856,7 +12857,8 @@ module Aws::SSM
12856
12857
  # ],
12857
12858
  # },
12858
12859
  # compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
12859
- # approve_after_days: 1, # required
12860
+ # approve_after_days: 1,
12861
+ # approve_until_date: "PatchStringDate",
12860
12862
  # enable_non_security: false,
12861
12863
  # }
12862
12864
  #
@@ -12877,6 +12879,11 @@ module Aws::SSM
12877
12879
  # days after they are released.
12878
12880
  # @return [Integer]
12879
12881
  #
12882
+ # @!attribute [rw] approve_until_date
12883
+ # The cutoff date for auto approval of released patches. Any patches
12884
+ # released on or before this date will be installed automatically
12885
+ # @return [String]
12886
+ #
12880
12887
  # @!attribute [rw] enable_non_security
12881
12888
  # For instances identified by the approval rule filters, enables a
12882
12889
  # patch baseline to apply non-security updates available in the
@@ -12890,6 +12897,7 @@ module Aws::SSM
12890
12897
  :patch_filter_group,
12891
12898
  :compliance_level,
12892
12899
  :approve_after_days,
12900
+ :approve_until_date,
12893
12901
  :enable_non_security)
12894
12902
  include Aws::Structure
12895
12903
  end
@@ -12911,7 +12919,8 @@ module Aws::SSM
12911
12919
  # ],
12912
12920
  # },
12913
12921
  # compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
12914
- # approve_after_days: 1, # required
12922
+ # approve_after_days: 1,
12923
+ # approve_until_date: "PatchStringDate",
12915
12924
  # enable_non_security: false,
12916
12925
  # },
12917
12926
  # ],
@@ -13202,7 +13211,9 @@ module Aws::SSM
13202
13211
  # @!attribute [rw] name
13203
13212
  # The fully qualified name of the parameter that you want to add to
13204
13213
  # the system. The fully qualified name includes the complete hierarchy
13205
- # of the parameter path and name. For example:
13214
+ # of the parameter path and name. For parameters in a hierarchy, you
13215
+ # must include a leading forward slash character (/) when you create
13216
+ # or reference a parameter. For example:
13206
13217
  # `/Dev/DBServer/MySQL/db-string13`
13207
13218
  #
13208
13219
  # Naming Constraints:
@@ -13228,10 +13239,9 @@ module Aws::SSM
13228
13239
  #
13229
13240
  # <note markdown="1"> The maximum length constraint listed below includes capacity for
13230
13241
  # additional system attributes that are not part of the name. The
13231
- # maximum length for the fully qualified parameter name is 1011
13232
- # characters, including the full length of the parameter ARN. For
13233
- # example, the following fully qualified parameter name is 65
13234
- # characters, not 20 characters:
13242
+ # maximum length for a parameter name, including the full length of
13243
+ # the parameter ARN, is 1011 characters. For example, the length of
13244
+ # the following parameter name is 65 characters, not 20 characters:
13235
13245
  #
13236
13246
  # `arn:aws:ssm:us-east-2:111122223333:parameter/ExampleParameterName`
13237
13247
  #
@@ -14309,8 +14319,9 @@ module Aws::SSM
14309
14319
  # @return [String]
14310
14320
  #
14311
14321
  # @!attribute [rw] aws_organizations_source
14312
- # The field name in `SyncSource` for the
14313
- # `ResourceDataSyncAwsOrganizationsSource` type.
14322
+ # Information about the AwsOrganizationsSource resource data sync
14323
+ # source. A sync source of this type can synchronize data from AWS
14324
+ # Organizations.
14314
14325
  # @return [Types::ResourceDataSyncAwsOrganizationsSource]
14315
14326
  #
14316
14327
  # @!attribute [rw] source_regions
@@ -17005,7 +17016,8 @@ module Aws::SSM
17005
17016
  # ],
17006
17017
  # },
17007
17018
  # compliance_level: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL, UNSPECIFIED
17008
- # approve_after_days: 1, # required
17019
+ # approve_after_days: 1,
17020
+ # approve_until_date: "PatchStringDate",
17009
17021
  # enable_non_security: false,
17010
17022
  # },
17011
17023
  # ],
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.70.0
4
+ version: 1.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-15 00:00:00.000000000 Z
11
+ date: 2020-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core