aws-sdk-ssm 1.94.0 → 1.99.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
  SHA256:
3
- metadata.gz: 8f4ee7898abab202265e5683df1dd3ee63e32ca0f305e833bfeb5911bdc1886b
4
- data.tar.gz: 6c5df6a825f7637ed7f6801950dcde030ec1c0dd5842f8b1f5a1f8be24cf43fc
3
+ metadata.gz: c000ab8485134462ad24290c2936ab3abc6e9ddcf12e68e3041725a626337520
4
+ data.tar.gz: caf564a137db6f36c9002fee0028b82f850a326dbbe43ea0b413466b33e07d31
5
5
  SHA512:
6
- metadata.gz: e2697209bcc6993b16ffec15ce998b8f51db5b8422b395eb4f39f2ab8d10d167ff7a493772fa0b5f56bb4b679e95a572d038e1d1c470a3517657b48d29f09748
7
- data.tar.gz: 3a5ca0268063639e26d5e5a6eb1d17427e5f144613b46b2b9ed7856d26f4c1c07fbcdc820919add48b5c16cd8d9ac6d6630ce3d34850e70a3f120c730cbd0f5f
6
+ metadata.gz: 801650301db9be419175d45bcc2c08b700ad3729b4e8c64b5443b8708f08d07714af934566f128b96d2283cda689537bc6a06ea7a2fbaca3e4daf79ed1bc2576
7
+ data.tar.gz: 896d67fcc736b28c17d728d56640d833b9f80824876553ee2ce8f251ec2eae9c30059725a04fa37433dcc7bb38991b12d4ff91b97606765c1972fa3038fad697
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssm/customizations'
49
49
  # @!group service
50
50
  module Aws::SSM
51
51
 
52
- GEM_VERSION = '1.94.0'
52
+ GEM_VERSION = '1.99.0'
53
53
 
54
54
  end
@@ -731,7 +731,8 @@ module Aws::SSM
731
731
  # By default, when you create a new associations, the system runs it
732
732
  # immediately after it is created and then according to the schedule you
733
733
  # specified. Specify this option if you don't want an association to
734
- # run immediately after you create it.
734
+ # run immediately after you create it. This parameter is not supported
735
+ # for rate expressions.
735
736
  #
736
737
  # @return [Types::CreateAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
737
738
  #
@@ -1407,6 +1408,44 @@ module Aws::SSM
1407
1408
  req.send_request(options)
1408
1409
  end
1409
1410
 
1411
+ # If you create a new application in AppManager, Systems Manager calls
1412
+ # this API action to specify information about the new application,
1413
+ # including the application type.
1414
+ #
1415
+ # @option params [required, String] :resource_id
1416
+ # A resource ID for a new AppManager application.
1417
+ #
1418
+ # @option params [Hash<String,Types::MetadataValue>] :metadata
1419
+ # Metadata for a new AppManager application.
1420
+ #
1421
+ # @return [Types::CreateOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1422
+ #
1423
+ # * {Types::CreateOpsMetadataResult#ops_metadata_arn #ops_metadata_arn} => String
1424
+ #
1425
+ # @example Request syntax with placeholder values
1426
+ #
1427
+ # resp = client.create_ops_metadata({
1428
+ # resource_id: "OpsMetadataResourceId", # required
1429
+ # metadata: {
1430
+ # "MetadataKey" => {
1431
+ # value: "MetadataValueString",
1432
+ # },
1433
+ # },
1434
+ # })
1435
+ #
1436
+ # @example Response structure
1437
+ #
1438
+ # resp.ops_metadata_arn #=> String
1439
+ #
1440
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateOpsMetadata AWS API Documentation
1441
+ #
1442
+ # @overload create_ops_metadata(params = {})
1443
+ # @param [Hash] params ({})
1444
+ def create_ops_metadata(params = {}, options = {})
1445
+ req = build_request(:create_ops_metadata, params)
1446
+ req.send_request(options)
1447
+ end
1448
+
1410
1449
  # Creates a patch baseline.
1411
1450
  #
1412
1451
  # <note markdown="1"> For information about valid key and value pairs in `PatchFilters` for
@@ -1517,7 +1556,7 @@ module Aws::SSM
1517
1556
  # @example Request syntax with placeholder values
1518
1557
  #
1519
1558
  # resp = client.create_patch_baseline({
1520
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
1559
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
1521
1560
  # name: "BaselineName", # required
1522
1561
  # global_filters: {
1523
1562
  # patch_filters: [ # required
@@ -1884,6 +1923,28 @@ module Aws::SSM
1884
1923
  req.send_request(options)
1885
1924
  end
1886
1925
 
1926
+ # Delete OpsMetadata related to an application.
1927
+ #
1928
+ # @option params [required, String] :ops_metadata_arn
1929
+ # The Amazon Resource Name (ARN) of an OpsMetadata Object to delete.
1930
+ #
1931
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1932
+ #
1933
+ # @example Request syntax with placeholder values
1934
+ #
1935
+ # resp = client.delete_ops_metadata({
1936
+ # ops_metadata_arn: "OpsMetadataArn", # required
1937
+ # })
1938
+ #
1939
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteOpsMetadata AWS API Documentation
1940
+ #
1941
+ # @overload delete_ops_metadata(params = {})
1942
+ # @param [Hash] params ({})
1943
+ def delete_ops_metadata(params = {}, options = {})
1944
+ req = build_request(:delete_ops_metadata, params)
1945
+ req.send_request(options)
1946
+ end
1947
+
1887
1948
  # Delete a parameter from the system.
1888
1949
  #
1889
1950
  # @option params [required, String] :name
@@ -2448,7 +2509,7 @@ module Aws::SSM
2448
2509
  # resp = client.describe_automation_executions({
2449
2510
  # filters: [
2450
2511
  # {
2451
- # key: "DocumentNamePrefix", # required, accepts DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter, AutomationType, TagKey
2512
+ # key: "DocumentNamePrefix", # required, accepts DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter, AutomationType, TagKey, TargetResourceGroup
2452
2513
  # values: ["AutomationExecutionFilterValue"], # required
2453
2514
  # },
2454
2515
  # ],
@@ -3251,6 +3312,7 @@ module Aws::SSM
3251
3312
  # resp.patches[0].severity #=> String
3252
3313
  # resp.patches[0].state #=> String, one of "INSTALLED", "INSTALLED_OTHER", "INSTALLED_PENDING_REBOOT", "INSTALLED_REJECTED", "MISSING", "NOT_APPLICABLE", "FAILED"
3253
3314
  # resp.patches[0].installed_time #=> Time
3315
+ # resp.patches[0].cve_ids #=> String
3254
3316
  # resp.next_token #=> String
3255
3317
  #
3256
3318
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstancePatches AWS API Documentation
@@ -4108,7 +4170,7 @@ module Aws::SSM
4108
4170
  # resp.baseline_identities #=> Array
4109
4171
  # resp.baseline_identities[0].baseline_id #=> String
4110
4172
  # resp.baseline_identities[0].baseline_name #=> String
4111
- # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4173
+ # resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
4112
4174
  # resp.baseline_identities[0].baseline_description #=> String
4113
4175
  # resp.baseline_identities[0].default_baseline #=> Boolean
4114
4176
  # resp.next_token #=> String
@@ -4222,7 +4284,7 @@ module Aws::SSM
4222
4284
  # resp.mappings[0].patch_group #=> String
4223
4285
  # resp.mappings[0].baseline_identity.baseline_id #=> String
4224
4286
  # resp.mappings[0].baseline_identity.baseline_name #=> String
4225
- # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4287
+ # resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
4226
4288
  # resp.mappings[0].baseline_identity.baseline_description #=> String
4227
4289
  # resp.mappings[0].baseline_identity.default_baseline #=> Boolean
4228
4290
  # resp.next_token #=> String
@@ -4262,6 +4324,10 @@ module Aws::SSM
4262
4324
  #
4263
4325
  # : Valid properties: PRODUCT, PRIORITY
4264
4326
  #
4327
+ # MACOS
4328
+ #
4329
+ # : Valid properties: PRODUCT, CLASSIFICATION
4330
+ #
4265
4331
  # ORACLE\_LINUX
4266
4332
  #
4267
4333
  # : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
@@ -4291,8 +4357,8 @@ module Aws::SSM
4291
4357
  #
4292
4358
  # @option params [String] :patch_set
4293
4359
  # Indicates whether to list patches for the Windows operating system or
4294
- # for Microsoft applications. Not applicable for Linux operating
4295
- # systems.
4360
+ # for Microsoft applications. Not applicable for the Linux or macOS
4361
+ # operating systems.
4296
4362
  #
4297
4363
  # @option params [Integer] :max_results
4298
4364
  # The maximum number of items to return for this call. The call also
@@ -4313,7 +4379,7 @@ module Aws::SSM
4313
4379
  # @example Request syntax with placeholder values
4314
4380
  #
4315
4381
  # resp = client.describe_patch_properties({
4316
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
4382
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
4317
4383
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
4318
4384
  # patch_set: "OS", # accepts OS, APPLICATION
4319
4385
  # max_results: 1,
@@ -4371,7 +4437,7 @@ module Aws::SSM
4371
4437
  # next_token: "NextToken",
4372
4438
  # filters: [
4373
4439
  # {
4374
- # key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status
4440
+ # key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status, SessionId
4375
4441
  # value: "SessionFilterValue", # required
4376
4442
  # },
4377
4443
  # ],
@@ -4713,13 +4779,13 @@ module Aws::SSM
4713
4779
  # @example Request syntax with placeholder values
4714
4780
  #
4715
4781
  # resp = client.get_default_patch_baseline({
4716
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
4782
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
4717
4783
  # })
4718
4784
  #
4719
4785
  # @example Response structure
4720
4786
  #
4721
4787
  # resp.baseline_id #=> String
4722
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
4788
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
4723
4789
  #
4724
4790
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
4725
4791
  #
@@ -5362,6 +5428,50 @@ module Aws::SSM
5362
5428
  req.send_request(options)
5363
5429
  end
5364
5430
 
5431
+ # View operational metadata related to an application in AppManager.
5432
+ #
5433
+ # @option params [required, String] :ops_metadata_arn
5434
+ # The Amazon Resource Name (ARN) of an OpsMetadata Object to view.
5435
+ #
5436
+ # @option params [Integer] :max_results
5437
+ # The maximum number of items to return for this call. The call also
5438
+ # returns a token that you can specify in a subsequent call to get the
5439
+ # next set of results.
5440
+ #
5441
+ # @option params [String] :next_token
5442
+ # A token to start the list. Use this token to get the next set of
5443
+ # results.
5444
+ #
5445
+ # @return [Types::GetOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5446
+ #
5447
+ # * {Types::GetOpsMetadataResult#resource_id #resource_id} => String
5448
+ # * {Types::GetOpsMetadataResult#metadata #metadata} => Hash&lt;String,Types::MetadataValue&gt;
5449
+ # * {Types::GetOpsMetadataResult#next_token #next_token} => String
5450
+ #
5451
+ # @example Request syntax with placeholder values
5452
+ #
5453
+ # resp = client.get_ops_metadata({
5454
+ # ops_metadata_arn: "OpsMetadataArn", # required
5455
+ # max_results: 1,
5456
+ # next_token: "NextToken",
5457
+ # })
5458
+ #
5459
+ # @example Response structure
5460
+ #
5461
+ # resp.resource_id #=> String
5462
+ # resp.metadata #=> Hash
5463
+ # resp.metadata["MetadataKey"].value #=> String
5464
+ # resp.next_token #=> String
5465
+ #
5466
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetOpsMetadata AWS API Documentation
5467
+ #
5468
+ # @overload get_ops_metadata(params = {})
5469
+ # @param [Hash] params ({})
5470
+ def get_ops_metadata(params = {}, options = {})
5471
+ req = build_request(:get_ops_metadata, params)
5472
+ req.send_request(options)
5473
+ end
5474
+
5365
5475
  # View a summary of OpsItems based on specified filters and aggregators.
5366
5476
  #
5367
5477
  # @option params [String] :sync_name
@@ -5740,7 +5850,7 @@ module Aws::SSM
5740
5850
  #
5741
5851
  # resp.baseline_id #=> String
5742
5852
  # resp.name #=> String
5743
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
5853
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
5744
5854
  # resp.global_filters.patch_filters #=> Array
5745
5855
  # resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
5746
5856
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -5801,14 +5911,14 @@ module Aws::SSM
5801
5911
  #
5802
5912
  # resp = client.get_patch_baseline_for_patch_group({
5803
5913
  # patch_group: "PatchGroup", # required
5804
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN
5914
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS
5805
5915
  # })
5806
5916
  #
5807
5917
  # @example Response structure
5808
5918
  #
5809
5919
  # resp.baseline_id #=> String
5810
5920
  # resp.patch_group #=> String
5811
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
5921
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
5812
5922
  #
5813
5923
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
5814
5924
  #
@@ -6017,6 +6127,13 @@ module Aws::SSM
6017
6127
  # One or more filters. Use a filter to return a more specific list of
6018
6128
  # results.
6019
6129
  #
6130
+ # <note markdown="1"> Filtering associations using the `InstanceID` attribute only returns
6131
+ # legacy associations created using the `InstanceID` attribute.
6132
+ # Associations targeting the instance that are part of the Target
6133
+ # Attributes `ResourceGroup` or `Tags` are not returned.
6134
+ #
6135
+ # </note>
6136
+ #
6020
6137
  # @option params [Integer] :max_results
6021
6138
  # The maximum number of items to return for this call. The call also
6022
6139
  # returns a token that you can specify in a subsequent call to get the
@@ -6614,6 +6731,59 @@ module Aws::SSM
6614
6731
  req.send_request(options)
6615
6732
  end
6616
6733
 
6734
+ # Systems Manager calls this API action when displaying all AppManager
6735
+ # OpsMetadata objects or blobs.
6736
+ #
6737
+ # @option params [Array<Types::OpsMetadataFilter>] :filters
6738
+ # One or more filters to limit the number of OpsMetadata objects
6739
+ # returned by the call.
6740
+ #
6741
+ # @option params [Integer] :max_results
6742
+ # The maximum number of items to return for this call. The call also
6743
+ # returns a token that you can specify in a subsequent call to get the
6744
+ # next set of results.
6745
+ #
6746
+ # @option params [String] :next_token
6747
+ # A token to start the list. Use this token to get the next set of
6748
+ # results.
6749
+ #
6750
+ # @return [Types::ListOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6751
+ #
6752
+ # * {Types::ListOpsMetadataResult#ops_metadata_list #ops_metadata_list} => Array&lt;Types::OpsMetadata&gt;
6753
+ # * {Types::ListOpsMetadataResult#next_token #next_token} => String
6754
+ #
6755
+ # @example Request syntax with placeholder values
6756
+ #
6757
+ # resp = client.list_ops_metadata({
6758
+ # filters: [
6759
+ # {
6760
+ # key: "OpsMetadataFilterKey", # required
6761
+ # values: ["OpsMetadataFilterValue"], # required
6762
+ # },
6763
+ # ],
6764
+ # max_results: 1,
6765
+ # next_token: "NextToken",
6766
+ # })
6767
+ #
6768
+ # @example Response structure
6769
+ #
6770
+ # resp.ops_metadata_list #=> Array
6771
+ # resp.ops_metadata_list[0].resource_id #=> String
6772
+ # resp.ops_metadata_list[0].ops_metadata_arn #=> String
6773
+ # resp.ops_metadata_list[0].last_modified_date #=> Time
6774
+ # resp.ops_metadata_list[0].last_modified_user #=> String
6775
+ # resp.ops_metadata_list[0].creation_date #=> Time
6776
+ # resp.next_token #=> String
6777
+ #
6778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsMetadata AWS API Documentation
6779
+ #
6780
+ # @overload list_ops_metadata(params = {})
6781
+ # @param [Hash] params ({})
6782
+ def list_ops_metadata(params = {}, options = {})
6783
+ req = build_request(:list_ops_metadata, params)
6784
+ req.send_request(options)
6785
+ end
6786
+
6617
6787
  # Returns a resource-level summary count. The summary includes
6618
6788
  # information about compliant and non-compliant statuses and detailed
6619
6789
  # compliance-item severity counts, according to the filter criteria you
@@ -7090,7 +7260,7 @@ module Aws::SSM
7090
7260
  # The type of parameter that you want to add to the system.
7091
7261
  #
7092
7262
  # <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
7093
- # templates or in the China Regions.
7263
+ # templates.
7094
7264
  #
7095
7265
  # </note>
7096
7266
  #
@@ -8487,7 +8657,8 @@ module Aws::SSM
8487
8657
  # By default, when you update an association, the system runs it
8488
8658
  # immediately after it is updated and then according to the schedule you
8489
8659
  # specified. Specify this option if you don't want an association to
8490
- # run immediately after you update it.
8660
+ # run immediately after you update it. This parameter is not supported
8661
+ # for rate expressions.
8491
8662
  #
8492
8663
  # Also, if you specified this option when you created the association,
8493
8664
  # you can reset it. To do so, specify the
@@ -9461,6 +9632,47 @@ module Aws::SSM
9461
9632
  req.send_request(options)
9462
9633
  end
9463
9634
 
9635
+ # Systems Manager calls this API action when you edit OpsMetadata in
9636
+ # AppManager.
9637
+ #
9638
+ # @option params [required, String] :ops_metadata_arn
9639
+ # The Amazon Resoure Name (ARN) of the OpsMetadata Object to update.
9640
+ #
9641
+ # @option params [Hash<String,Types::MetadataValue>] :metadata_to_update
9642
+ # Metadata to add to an OpsMetadata object.
9643
+ #
9644
+ # @option params [Array<String>] :keys_to_delete
9645
+ # The metadata keys to delete from the OpsMetadata object.
9646
+ #
9647
+ # @return [Types::UpdateOpsMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9648
+ #
9649
+ # * {Types::UpdateOpsMetadataResult#ops_metadata_arn #ops_metadata_arn} => String
9650
+ #
9651
+ # @example Request syntax with placeholder values
9652
+ #
9653
+ # resp = client.update_ops_metadata({
9654
+ # ops_metadata_arn: "OpsMetadataArn", # required
9655
+ # metadata_to_update: {
9656
+ # "MetadataKey" => {
9657
+ # value: "MetadataValueString",
9658
+ # },
9659
+ # },
9660
+ # keys_to_delete: ["MetadataKey"],
9661
+ # })
9662
+ #
9663
+ # @example Response structure
9664
+ #
9665
+ # resp.ops_metadata_arn #=> String
9666
+ #
9667
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateOpsMetadata AWS API Documentation
9668
+ #
9669
+ # @overload update_ops_metadata(params = {})
9670
+ # @param [Hash] params ({})
9671
+ def update_ops_metadata(params = {}, options = {})
9672
+ req = build_request(:update_ops_metadata, params)
9673
+ req.send_request(options)
9674
+ end
9675
+
9464
9676
  # Modifies an existing patch baseline. Fields not specified in the
9465
9677
  # request are left unchanged.
9466
9678
  #
@@ -9612,7 +9824,7 @@ module Aws::SSM
9612
9824
  #
9613
9825
  # resp.baseline_id #=> String
9614
9826
  # resp.name #=> String
9615
- # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN"
9827
+ # resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS"
9616
9828
  # resp.global_filters.patch_filters #=> Array
9617
9829
  # resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
9618
9830
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -9781,7 +9993,7 @@ module Aws::SSM
9781
9993
  params: params,
9782
9994
  config: config)
9783
9995
  context[:gem_name] = 'aws-sdk-ssm'
9784
- context[:gem_version] = '1.94.0'
9996
+ context[:gem_version] = '1.99.0'
9785
9997
  Seahorse::Client::Request.new(handlers, context)
9786
9998
  end
9787
9999
 
@@ -194,6 +194,8 @@ module Aws::SSM
194
194
  CreateMaintenanceWindowResult = Shapes::StructureShape.new(name: 'CreateMaintenanceWindowResult')
195
195
  CreateOpsItemRequest = Shapes::StructureShape.new(name: 'CreateOpsItemRequest')
196
196
  CreateOpsItemResponse = Shapes::StructureShape.new(name: 'CreateOpsItemResponse')
197
+ CreateOpsMetadataRequest = Shapes::StructureShape.new(name: 'CreateOpsMetadataRequest')
198
+ CreateOpsMetadataResult = Shapes::StructureShape.new(name: 'CreateOpsMetadataResult')
197
199
  CreatePatchBaselineRequest = Shapes::StructureShape.new(name: 'CreatePatchBaselineRequest')
198
200
  CreatePatchBaselineResult = Shapes::StructureShape.new(name: 'CreatePatchBaselineResult')
199
201
  CreateResourceDataSyncRequest = Shapes::StructureShape.new(name: 'CreateResourceDataSyncRequest')
@@ -213,6 +215,8 @@ module Aws::SSM
213
215
  DeleteInventoryResult = Shapes::StructureShape.new(name: 'DeleteInventoryResult')
214
216
  DeleteMaintenanceWindowRequest = Shapes::StructureShape.new(name: 'DeleteMaintenanceWindowRequest')
215
217
  DeleteMaintenanceWindowResult = Shapes::StructureShape.new(name: 'DeleteMaintenanceWindowResult')
218
+ DeleteOpsMetadataRequest = Shapes::StructureShape.new(name: 'DeleteOpsMetadataRequest')
219
+ DeleteOpsMetadataResult = Shapes::StructureShape.new(name: 'DeleteOpsMetadataResult')
216
220
  DeleteParameterRequest = Shapes::StructureShape.new(name: 'DeleteParameterRequest')
217
221
  DeleteParameterResult = Shapes::StructureShape.new(name: 'DeleteParameterResult')
218
222
  DeleteParametersRequest = Shapes::StructureShape.new(name: 'DeleteParametersRequest')
@@ -389,6 +393,9 @@ module Aws::SSM
389
393
  GetMaintenanceWindowTaskResult = Shapes::StructureShape.new(name: 'GetMaintenanceWindowTaskResult')
390
394
  GetOpsItemRequest = Shapes::StructureShape.new(name: 'GetOpsItemRequest')
391
395
  GetOpsItemResponse = Shapes::StructureShape.new(name: 'GetOpsItemResponse')
396
+ GetOpsMetadataMaxResults = Shapes::IntegerShape.new(name: 'GetOpsMetadataMaxResults')
397
+ GetOpsMetadataRequest = Shapes::StructureShape.new(name: 'GetOpsMetadataRequest')
398
+ GetOpsMetadataResult = Shapes::StructureShape.new(name: 'GetOpsMetadataResult')
392
399
  GetOpsSummaryRequest = Shapes::StructureShape.new(name: 'GetOpsSummaryRequest')
393
400
  GetOpsSummaryResult = Shapes::StructureShape.new(name: 'GetOpsSummaryResult')
394
401
  GetParameterHistoryRequest = Shapes::StructureShape.new(name: 'GetParameterHistoryRequest')
@@ -572,6 +579,9 @@ module Aws::SSM
572
579
  ListDocumentsResult = Shapes::StructureShape.new(name: 'ListDocumentsResult')
573
580
  ListInventoryEntriesRequest = Shapes::StructureShape.new(name: 'ListInventoryEntriesRequest')
574
581
  ListInventoryEntriesResult = Shapes::StructureShape.new(name: 'ListInventoryEntriesResult')
582
+ ListOpsMetadataMaxResults = Shapes::IntegerShape.new(name: 'ListOpsMetadataMaxResults')
583
+ ListOpsMetadataRequest = Shapes::StructureShape.new(name: 'ListOpsMetadataRequest')
584
+ ListOpsMetadataResult = Shapes::StructureShape.new(name: 'ListOpsMetadataResult')
575
585
  ListResourceComplianceSummariesRequest = Shapes::StructureShape.new(name: 'ListResourceComplianceSummariesRequest')
576
586
  ListResourceComplianceSummariesResult = Shapes::StructureShape.new(name: 'ListResourceComplianceSummariesResult')
577
587
  ListResourceDataSyncRequest = Shapes::StructureShape.new(name: 'ListResourceDataSyncRequest')
@@ -649,6 +659,11 @@ module Aws::SSM
649
659
  MaxErrors = Shapes::StringShape.new(name: 'MaxErrors')
650
660
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
651
661
  MaxResultsEC2Compatible = Shapes::IntegerShape.new(name: 'MaxResultsEC2Compatible')
662
+ MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
663
+ MetadataKeysToDeleteList = Shapes::ListShape.new(name: 'MetadataKeysToDeleteList')
664
+ MetadataMap = Shapes::MapShape.new(name: 'MetadataMap')
665
+ MetadataValue = Shapes::StructureShape.new(name: 'MetadataValue')
666
+ MetadataValueString = Shapes::StringShape.new(name: 'MetadataValueString')
652
667
  ModifyDocumentPermissionRequest = Shapes::StructureShape.new(name: 'ModifyDocumentPermissionRequest')
653
668
  ModifyDocumentPermissionResponse = Shapes::StructureShape.new(name: 'ModifyDocumentPermissionResponse')
654
669
  NextToken = Shapes::StringShape.new(name: 'NextToken')
@@ -714,6 +729,21 @@ module Aws::SSM
714
729
  OpsItemSummaries = Shapes::ListShape.new(name: 'OpsItemSummaries')
715
730
  OpsItemSummary = Shapes::StructureShape.new(name: 'OpsItemSummary')
716
731
  OpsItemTitle = Shapes::StringShape.new(name: 'OpsItemTitle')
732
+ OpsMetadata = Shapes::StructureShape.new(name: 'OpsMetadata')
733
+ OpsMetadataAlreadyExistsException = Shapes::StructureShape.new(name: 'OpsMetadataAlreadyExistsException')
734
+ OpsMetadataArn = Shapes::StringShape.new(name: 'OpsMetadataArn')
735
+ OpsMetadataFilter = Shapes::StructureShape.new(name: 'OpsMetadataFilter')
736
+ OpsMetadataFilterKey = Shapes::StringShape.new(name: 'OpsMetadataFilterKey')
737
+ OpsMetadataFilterList = Shapes::ListShape.new(name: 'OpsMetadataFilterList')
738
+ OpsMetadataFilterValue = Shapes::StringShape.new(name: 'OpsMetadataFilterValue')
739
+ OpsMetadataFilterValueList = Shapes::ListShape.new(name: 'OpsMetadataFilterValueList')
740
+ OpsMetadataInvalidArgumentException = Shapes::StructureShape.new(name: 'OpsMetadataInvalidArgumentException')
741
+ OpsMetadataKeyLimitExceededException = Shapes::StructureShape.new(name: 'OpsMetadataKeyLimitExceededException')
742
+ OpsMetadataLimitExceededException = Shapes::StructureShape.new(name: 'OpsMetadataLimitExceededException')
743
+ OpsMetadataList = Shapes::ListShape.new(name: 'OpsMetadataList')
744
+ OpsMetadataNotFoundException = Shapes::StructureShape.new(name: 'OpsMetadataNotFoundException')
745
+ OpsMetadataResourceId = Shapes::StringShape.new(name: 'OpsMetadataResourceId')
746
+ OpsMetadataTooManyUpdatesException = Shapes::StructureShape.new(name: 'OpsMetadataTooManyUpdatesException')
717
747
  OpsResultAttribute = Shapes::StructureShape.new(name: 'OpsResultAttribute')
718
748
  OpsResultAttributeList = Shapes::ListShape.new(name: 'OpsResultAttributeList')
719
749
  OutputSource = Shapes::StructureShape.new(name: 'OutputSource')
@@ -775,6 +805,7 @@ module Aws::SSM
775
805
  PatchBugzillaIdList = Shapes::ListShape.new(name: 'PatchBugzillaIdList')
776
806
  PatchCVEId = Shapes::StringShape.new(name: 'PatchCVEId')
777
807
  PatchCVEIdList = Shapes::ListShape.new(name: 'PatchCVEIdList')
808
+ PatchCVEIds = Shapes::StringShape.new(name: 'PatchCVEIds')
778
809
  PatchClassification = Shapes::StringShape.new(name: 'PatchClassification')
779
810
  PatchComplianceData = Shapes::StructureShape.new(name: 'PatchComplianceData')
780
811
  PatchComplianceDataList = Shapes::ListShape.new(name: 'PatchComplianceDataList')
@@ -1044,6 +1075,8 @@ module Aws::SSM
1044
1075
  UpdateManagedInstanceRoleResult = Shapes::StructureShape.new(name: 'UpdateManagedInstanceRoleResult')
1045
1076
  UpdateOpsItemRequest = Shapes::StructureShape.new(name: 'UpdateOpsItemRequest')
1046
1077
  UpdateOpsItemResponse = Shapes::StructureShape.new(name: 'UpdateOpsItemResponse')
1078
+ UpdateOpsMetadataRequest = Shapes::StructureShape.new(name: 'UpdateOpsMetadataRequest')
1079
+ UpdateOpsMetadataResult = Shapes::StructureShape.new(name: 'UpdateOpsMetadataResult')
1047
1080
  UpdatePatchBaselineRequest = Shapes::StructureShape.new(name: 'UpdatePatchBaselineRequest')
1048
1081
  UpdatePatchBaselineResult = Shapes::StructureShape.new(name: 'UpdatePatchBaselineResult')
1049
1082
  UpdateResourceDataSyncRequest = Shapes::StructureShape.new(name: 'UpdateResourceDataSyncRequest')
@@ -1574,6 +1607,13 @@ module Aws::SSM
1574
1607
  CreateOpsItemResponse.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: String, location_name: "OpsItemId"))
1575
1608
  CreateOpsItemResponse.struct_class = Types::CreateOpsItemResponse
1576
1609
 
1610
+ CreateOpsMetadataRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: OpsMetadataResourceId, required: true, location_name: "ResourceId"))
1611
+ CreateOpsMetadataRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: MetadataMap, location_name: "Metadata"))
1612
+ CreateOpsMetadataRequest.struct_class = Types::CreateOpsMetadataRequest
1613
+
1614
+ CreateOpsMetadataResult.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, location_name: "OpsMetadataArn"))
1615
+ CreateOpsMetadataResult.struct_class = Types::CreateOpsMetadataResult
1616
+
1577
1617
  CreatePatchBaselineRequest.add_member(:operating_system, Shapes::ShapeRef.new(shape: OperatingSystem, location_name: "OperatingSystem"))
1578
1618
  CreatePatchBaselineRequest.add_member(:name, Shapes::ShapeRef.new(shape: BaselineName, required: true, location_name: "Name"))
1579
1619
  CreatePatchBaselineRequest.add_member(:global_filters, Shapes::ShapeRef.new(shape: PatchFilterGroup, location_name: "GlobalFilters"))
@@ -1640,6 +1680,11 @@ module Aws::SSM
1640
1680
  DeleteMaintenanceWindowResult.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, location_name: "WindowId"))
1641
1681
  DeleteMaintenanceWindowResult.struct_class = Types::DeleteMaintenanceWindowResult
1642
1682
 
1683
+ DeleteOpsMetadataRequest.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, required: true, location_name: "OpsMetadataArn"))
1684
+ DeleteOpsMetadataRequest.struct_class = Types::DeleteOpsMetadataRequest
1685
+
1686
+ DeleteOpsMetadataResult.struct_class = Types::DeleteOpsMetadataResult
1687
+
1643
1688
  DeleteParameterRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
1644
1689
  DeleteParameterRequest.struct_class = Types::DeleteParameterRequest
1645
1690
 
@@ -2339,6 +2384,16 @@ module Aws::SSM
2339
2384
  GetOpsItemResponse.add_member(:ops_item, Shapes::ShapeRef.new(shape: OpsItem, location_name: "OpsItem"))
2340
2385
  GetOpsItemResponse.struct_class = Types::GetOpsItemResponse
2341
2386
 
2387
+ GetOpsMetadataRequest.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, required: true, location_name: "OpsMetadataArn"))
2388
+ GetOpsMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetOpsMetadataMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
2389
+ GetOpsMetadataRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2390
+ GetOpsMetadataRequest.struct_class = Types::GetOpsMetadataRequest
2391
+
2392
+ GetOpsMetadataResult.add_member(:resource_id, Shapes::ShapeRef.new(shape: OpsMetadataResourceId, location_name: "ResourceId"))
2393
+ GetOpsMetadataResult.add_member(:metadata, Shapes::ShapeRef.new(shape: MetadataMap, location_name: "Metadata"))
2394
+ GetOpsMetadataResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2395
+ GetOpsMetadataResult.struct_class = Types::GetOpsMetadataResult
2396
+
2342
2397
  GetOpsSummaryRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
2343
2398
  GetOpsSummaryRequest.add_member(:filters, Shapes::ShapeRef.new(shape: OpsFilterList, location_name: "Filters"))
2344
2399
  GetOpsSummaryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: OpsAggregatorList, location_name: "Aggregators"))
@@ -2892,6 +2947,15 @@ module Aws::SSM
2892
2947
  ListInventoryEntriesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2893
2948
  ListInventoryEntriesResult.struct_class = Types::ListInventoryEntriesResult
2894
2949
 
2950
+ ListOpsMetadataRequest.add_member(:filters, Shapes::ShapeRef.new(shape: OpsMetadataFilterList, location_name: "Filters"))
2951
+ ListOpsMetadataRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListOpsMetadataMaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
2952
+ ListOpsMetadataRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2953
+ ListOpsMetadataRequest.struct_class = Types::ListOpsMetadataRequest
2954
+
2955
+ ListOpsMetadataResult.add_member(:ops_metadata_list, Shapes::ShapeRef.new(shape: OpsMetadataList, location_name: "OpsMetadataList"))
2956
+ ListOpsMetadataResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2957
+ ListOpsMetadataResult.struct_class = Types::ListOpsMetadataResult
2958
+
2895
2959
  ListResourceComplianceSummariesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ComplianceStringFilterList, location_name: "Filters"))
2896
2960
  ListResourceComplianceSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2897
2961
  ListResourceComplianceSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
@@ -3065,6 +3129,14 @@ module Aws::SSM
3065
3129
  MaxDocumentSizeExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
3066
3130
  MaxDocumentSizeExceeded.struct_class = Types::MaxDocumentSizeExceeded
3067
3131
 
3132
+ MetadataKeysToDeleteList.member = Shapes::ShapeRef.new(shape: MetadataKey)
3133
+
3134
+ MetadataMap.key = Shapes::ShapeRef.new(shape: MetadataKey)
3135
+ MetadataMap.value = Shapes::ShapeRef.new(shape: MetadataValue)
3136
+
3137
+ MetadataValue.add_member(:value, Shapes::ShapeRef.new(shape: MetadataValueString, location_name: "Value"))
3138
+ MetadataValue.struct_class = Types::MetadataValue
3139
+
3068
3140
  ModifyDocumentPermissionRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, required: true, location_name: "Name"))
3069
3141
  ModifyDocumentPermissionRequest.add_member(:permission_type, Shapes::ShapeRef.new(shape: DocumentPermissionType, required: true, location_name: "PermissionType"))
3070
3142
  ModifyDocumentPermissionRequest.add_member(:account_ids_to_add, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "AccountIdsToAdd"))
@@ -3204,6 +3276,41 @@ module Aws::SSM
3204
3276
  OpsItemSummary.add_member(:severity, Shapes::ShapeRef.new(shape: OpsItemSeverity, location_name: "Severity"))
3205
3277
  OpsItemSummary.struct_class = Types::OpsItemSummary
3206
3278
 
3279
+ OpsMetadata.add_member(:resource_id, Shapes::ShapeRef.new(shape: OpsMetadataResourceId, location_name: "ResourceId"))
3280
+ OpsMetadata.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, location_name: "OpsMetadataArn"))
3281
+ OpsMetadata.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastModifiedDate"))
3282
+ OpsMetadata.add_member(:last_modified_user, Shapes::ShapeRef.new(shape: String, location_name: "LastModifiedUser"))
3283
+ OpsMetadata.add_member(:creation_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "CreationDate"))
3284
+ OpsMetadata.struct_class = Types::OpsMetadata
3285
+
3286
+ OpsMetadataAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3287
+ OpsMetadataAlreadyExistsException.struct_class = Types::OpsMetadataAlreadyExistsException
3288
+
3289
+ OpsMetadataFilter.add_member(:key, Shapes::ShapeRef.new(shape: OpsMetadataFilterKey, required: true, location_name: "Key"))
3290
+ OpsMetadataFilter.add_member(:values, Shapes::ShapeRef.new(shape: OpsMetadataFilterValueList, required: true, location_name: "Values"))
3291
+ OpsMetadataFilter.struct_class = Types::OpsMetadataFilter
3292
+
3293
+ OpsMetadataFilterList.member = Shapes::ShapeRef.new(shape: OpsMetadataFilter)
3294
+
3295
+ OpsMetadataFilterValueList.member = Shapes::ShapeRef.new(shape: OpsMetadataFilterValue)
3296
+
3297
+ OpsMetadataInvalidArgumentException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3298
+ OpsMetadataInvalidArgumentException.struct_class = Types::OpsMetadataInvalidArgumentException
3299
+
3300
+ OpsMetadataKeyLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3301
+ OpsMetadataKeyLimitExceededException.struct_class = Types::OpsMetadataKeyLimitExceededException
3302
+
3303
+ OpsMetadataLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3304
+ OpsMetadataLimitExceededException.struct_class = Types::OpsMetadataLimitExceededException
3305
+
3306
+ OpsMetadataList.member = Shapes::ShapeRef.new(shape: OpsMetadata)
3307
+
3308
+ OpsMetadataNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3309
+ OpsMetadataNotFoundException.struct_class = Types::OpsMetadataNotFoundException
3310
+
3311
+ OpsMetadataTooManyUpdatesException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
3312
+ OpsMetadataTooManyUpdatesException.struct_class = Types::OpsMetadataTooManyUpdatesException
3313
+
3207
3314
  OpsResultAttribute.add_member(:type_name, Shapes::ShapeRef.new(shape: OpsDataTypeName, required: true, location_name: "TypeName"))
3208
3315
  OpsResultAttribute.struct_class = Types::OpsResultAttribute
3209
3316
 
@@ -3358,6 +3465,7 @@ module Aws::SSM
3358
3465
  PatchComplianceData.add_member(:severity, Shapes::ShapeRef.new(shape: PatchSeverity, required: true, location_name: "Severity"))
3359
3466
  PatchComplianceData.add_member(:state, Shapes::ShapeRef.new(shape: PatchComplianceDataState, required: true, location_name: "State"))
3360
3467
  PatchComplianceData.add_member(:installed_time, Shapes::ShapeRef.new(shape: DateTime, required: true, location_name: "InstalledTime"))
3468
+ PatchComplianceData.add_member(:cve_ids, Shapes::ShapeRef.new(shape: PatchCVEIds, location_name: "CVEIds"))
3361
3469
  PatchComplianceData.struct_class = Types::PatchComplianceData
3362
3470
 
3363
3471
  PatchComplianceDataList.member = Shapes::ShapeRef.new(shape: PatchComplianceData)
@@ -4026,6 +4134,14 @@ module Aws::SSM
4026
4134
 
4027
4135
  UpdateOpsItemResponse.struct_class = Types::UpdateOpsItemResponse
4028
4136
 
4137
+ UpdateOpsMetadataRequest.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, required: true, location_name: "OpsMetadataArn"))
4138
+ UpdateOpsMetadataRequest.add_member(:metadata_to_update, Shapes::ShapeRef.new(shape: MetadataMap, location_name: "MetadataToUpdate"))
4139
+ UpdateOpsMetadataRequest.add_member(:keys_to_delete, Shapes::ShapeRef.new(shape: MetadataKeysToDeleteList, location_name: "KeysToDelete"))
4140
+ UpdateOpsMetadataRequest.struct_class = Types::UpdateOpsMetadataRequest
4141
+
4142
+ UpdateOpsMetadataResult.add_member(:ops_metadata_arn, Shapes::ShapeRef.new(shape: OpsMetadataArn, location_name: "OpsMetadataArn"))
4143
+ UpdateOpsMetadataResult.struct_class = Types::UpdateOpsMetadataResult
4144
+
4029
4145
  UpdatePatchBaselineRequest.add_member(:baseline_id, Shapes::ShapeRef.new(shape: BaselineId, required: true, location_name: "BaselineId"))
4030
4146
  UpdatePatchBaselineRequest.add_member(:name, Shapes::ShapeRef.new(shape: BaselineName, location_name: "Name"))
4031
4147
  UpdatePatchBaselineRequest.add_member(:global_filters, Shapes::ShapeRef.new(shape: PatchFilterGroup, location_name: "GlobalFilters"))
@@ -4209,6 +4325,19 @@ module Aws::SSM
4209
4325
  o.errors << Shapes::ShapeRef.new(shape: OpsItemInvalidParameterException)
4210
4326
  end)
4211
4327
 
4328
+ api.add_operation(:create_ops_metadata, Seahorse::Model::Operation.new.tap do |o|
4329
+ o.name = "CreateOpsMetadata"
4330
+ o.http_method = "POST"
4331
+ o.http_request_uri = "/"
4332
+ o.input = Shapes::ShapeRef.new(shape: CreateOpsMetadataRequest)
4333
+ o.output = Shapes::ShapeRef.new(shape: CreateOpsMetadataResult)
4334
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataAlreadyExistsException)
4335
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataTooManyUpdatesException)
4336
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataInvalidArgumentException)
4337
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataLimitExceededException)
4338
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
4339
+ end)
4340
+
4212
4341
  api.add_operation(:create_patch_baseline, Seahorse::Model::Operation.new.tap do |o|
4213
4342
  o.name = "CreatePatchBaseline"
4214
4343
  o.http_method = "POST"
@@ -4291,6 +4420,17 @@ module Aws::SSM
4291
4420
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
4292
4421
  end)
4293
4422
 
4423
+ api.add_operation(:delete_ops_metadata, Seahorse::Model::Operation.new.tap do |o|
4424
+ o.name = "DeleteOpsMetadata"
4425
+ o.http_method = "POST"
4426
+ o.http_request_uri = "/"
4427
+ o.input = Shapes::ShapeRef.new(shape: DeleteOpsMetadataRequest)
4428
+ o.output = Shapes::ShapeRef.new(shape: DeleteOpsMetadataResult)
4429
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataNotFoundException)
4430
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataInvalidArgumentException)
4431
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
4432
+ end)
4433
+
4294
4434
  api.add_operation(:delete_parameter, Seahorse::Model::Operation.new.tap do |o|
4295
4435
  o.name = "DeleteParameter"
4296
4436
  o.http_method = "POST"
@@ -5054,6 +5194,17 @@ module Aws::SSM
5054
5194
  o.errors << Shapes::ShapeRef.new(shape: OpsItemNotFoundException)
5055
5195
  end)
5056
5196
 
5197
+ api.add_operation(:get_ops_metadata, Seahorse::Model::Operation.new.tap do |o|
5198
+ o.name = "GetOpsMetadata"
5199
+ o.http_method = "POST"
5200
+ o.http_request_uri = "/"
5201
+ o.input = Shapes::ShapeRef.new(shape: GetOpsMetadataRequest)
5202
+ o.output = Shapes::ShapeRef.new(shape: GetOpsMetadataResult)
5203
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataNotFoundException)
5204
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataInvalidArgumentException)
5205
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
5206
+ end)
5207
+
5057
5208
  api.add_operation(:get_ops_summary, Seahorse::Model::Operation.new.tap do |o|
5058
5209
  o.name = "GetOpsSummary"
5059
5210
  o.http_method = "POST"
@@ -5331,6 +5482,16 @@ module Aws::SSM
5331
5482
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
5332
5483
  end)
5333
5484
 
5485
+ api.add_operation(:list_ops_metadata, Seahorse::Model::Operation.new.tap do |o|
5486
+ o.name = "ListOpsMetadata"
5487
+ o.http_method = "POST"
5488
+ o.http_request_uri = "/"
5489
+ o.input = Shapes::ShapeRef.new(shape: ListOpsMetadataRequest)
5490
+ o.output = Shapes::ShapeRef.new(shape: ListOpsMetadataResult)
5491
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataInvalidArgumentException)
5492
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
5493
+ end)
5494
+
5334
5495
  api.add_operation(:list_resource_compliance_summaries, Seahorse::Model::Operation.new.tap do |o|
5335
5496
  o.name = "ListResourceComplianceSummaries"
5336
5497
  o.http_method = "POST"
@@ -5734,6 +5895,19 @@ module Aws::SSM
5734
5895
  o.errors << Shapes::ShapeRef.new(shape: OpsItemInvalidParameterException)
5735
5896
  end)
5736
5897
 
5898
+ api.add_operation(:update_ops_metadata, Seahorse::Model::Operation.new.tap do |o|
5899
+ o.name = "UpdateOpsMetadata"
5900
+ o.http_method = "POST"
5901
+ o.http_request_uri = "/"
5902
+ o.input = Shapes::ShapeRef.new(shape: UpdateOpsMetadataRequest)
5903
+ o.output = Shapes::ShapeRef.new(shape: UpdateOpsMetadataResult)
5904
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataNotFoundException)
5905
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataInvalidArgumentException)
5906
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataKeyLimitExceededException)
5907
+ o.errors << Shapes::ShapeRef.new(shape: OpsMetadataTooManyUpdatesException)
5908
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
5909
+ end)
5910
+
5737
5911
  api.add_operation(:update_patch_baseline, Seahorse::Model::Operation.new.tap do |o|
5738
5912
  o.name = "UpdatePatchBaseline"
5739
5913
  o.http_method = "POST"