aws-sdk-ssm 1.98.0 → 1.99.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72e43f5042db28d8ed4f3704c0e8b5336cb461a2f8a7da710cfd129a1a07591a
4
- data.tar.gz: ad614166ed3c23d09679636c0c8844c0785c093258972f31df2798e7dcb3a9e9
3
+ metadata.gz: c000ab8485134462ad24290c2936ab3abc6e9ddcf12e68e3041725a626337520
4
+ data.tar.gz: caf564a137db6f36c9002fee0028b82f850a326dbbe43ea0b413466b33e07d31
5
5
  SHA512:
6
- metadata.gz: 3004f46e1173b58b7a83a248952dda98e8da85ab8e46ffb8db5d706c208dcbb85c02db293563b9df5efbf9949b81b0b91317f8ba7b6dd4dcc203d040148df521
7
- data.tar.gz: e482e0eb0292eca9d5e58a0f4f94ccc0cb8997d3b189a5b54c0c7aee5a088da49700a00e6d83c43e29ba93a11babe5f0a4a8e2ee40bf4e0459ad947ad3dfae60
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.98.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
@@ -4109,7 +4170,7 @@ module Aws::SSM
4109
4170
  # resp.baseline_identities #=> Array
4110
4171
  # resp.baseline_identities[0].baseline_id #=> String
4111
4172
  # resp.baseline_identities[0].baseline_name #=> String
4112
- # 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"
4113
4174
  # resp.baseline_identities[0].baseline_description #=> String
4114
4175
  # resp.baseline_identities[0].default_baseline #=> Boolean
4115
4176
  # resp.next_token #=> String
@@ -4223,7 +4284,7 @@ module Aws::SSM
4223
4284
  # resp.mappings[0].patch_group #=> String
4224
4285
  # resp.mappings[0].baseline_identity.baseline_id #=> String
4225
4286
  # resp.mappings[0].baseline_identity.baseline_name #=> String
4226
- # 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"
4227
4288
  # resp.mappings[0].baseline_identity.baseline_description #=> String
4228
4289
  # resp.mappings[0].baseline_identity.default_baseline #=> Boolean
4229
4290
  # resp.next_token #=> String
@@ -4263,6 +4324,10 @@ module Aws::SSM
4263
4324
  #
4264
4325
  # : Valid properties: PRODUCT, PRIORITY
4265
4326
  #
4327
+ # MACOS
4328
+ #
4329
+ # : Valid properties: PRODUCT, CLASSIFICATION
4330
+ #
4266
4331
  # ORACLE\_LINUX
4267
4332
  #
4268
4333
  # : Valid properties: PRODUCT, CLASSIFICATION, SEVERITY
@@ -4292,8 +4357,8 @@ module Aws::SSM
4292
4357
  #
4293
4358
  # @option params [String] :patch_set
4294
4359
  # Indicates whether to list patches for the Windows operating system or
4295
- # for Microsoft applications. Not applicable for Linux operating
4296
- # systems.
4360
+ # for Microsoft applications. Not applicable for the Linux or macOS
4361
+ # operating systems.
4297
4362
  #
4298
4363
  # @option params [Integer] :max_results
4299
4364
  # The maximum number of items to return for this call. The call also
@@ -4314,7 +4379,7 @@ module Aws::SSM
4314
4379
  # @example Request syntax with placeholder values
4315
4380
  #
4316
4381
  # resp = client.describe_patch_properties({
4317
- # 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
4318
4383
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
4319
4384
  # patch_set: "OS", # accepts OS, APPLICATION
4320
4385
  # max_results: 1,
@@ -4714,13 +4779,13 @@ module Aws::SSM
4714
4779
  # @example Request syntax with placeholder values
4715
4780
  #
4716
4781
  # resp = client.get_default_patch_baseline({
4717
- # 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
4718
4783
  # })
4719
4784
  #
4720
4785
  # @example Response structure
4721
4786
  #
4722
4787
  # resp.baseline_id #=> String
4723
- # 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"
4724
4789
  #
4725
4790
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
4726
4791
  #
@@ -5363,6 +5428,50 @@ module Aws::SSM
5363
5428
  req.send_request(options)
5364
5429
  end
5365
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
+
5366
5475
  # View a summary of OpsItems based on specified filters and aggregators.
5367
5476
  #
5368
5477
  # @option params [String] :sync_name
@@ -5741,7 +5850,7 @@ module Aws::SSM
5741
5850
  #
5742
5851
  # resp.baseline_id #=> String
5743
5852
  # resp.name #=> String
5744
- # 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"
5745
5854
  # resp.global_filters.patch_filters #=> Array
5746
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"
5747
5856
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -5802,14 +5911,14 @@ module Aws::SSM
5802
5911
  #
5803
5912
  # resp = client.get_patch_baseline_for_patch_group({
5804
5913
  # patch_group: "PatchGroup", # required
5805
- # 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
5806
5915
  # })
5807
5916
  #
5808
5917
  # @example Response structure
5809
5918
  #
5810
5919
  # resp.baseline_id #=> String
5811
5920
  # resp.patch_group #=> String
5812
- # 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"
5813
5922
  #
5814
5923
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
5815
5924
  #
@@ -6622,6 +6731,59 @@ module Aws::SSM
6622
6731
  req.send_request(options)
6623
6732
  end
6624
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
+
6625
6787
  # Returns a resource-level summary count. The summary includes
6626
6788
  # information about compliant and non-compliant statuses and detailed
6627
6789
  # compliance-item severity counts, according to the filter criteria you
@@ -8495,7 +8657,8 @@ module Aws::SSM
8495
8657
  # By default, when you update an association, the system runs it
8496
8658
  # immediately after it is updated and then according to the schedule you
8497
8659
  # specified. Specify this option if you don't want an association to
8498
- # run immediately after you update it.
8660
+ # run immediately after you update it. This parameter is not supported
8661
+ # for rate expressions.
8499
8662
  #
8500
8663
  # Also, if you specified this option when you created the association,
8501
8664
  # you can reset it. To do so, specify the
@@ -9469,6 +9632,47 @@ module Aws::SSM
9469
9632
  req.send_request(options)
9470
9633
  end
9471
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
+
9472
9676
  # Modifies an existing patch baseline. Fields not specified in the
9473
9677
  # request are left unchanged.
9474
9678
  #
@@ -9620,7 +9824,7 @@ module Aws::SSM
9620
9824
  #
9621
9825
  # resp.baseline_id #=> String
9622
9826
  # resp.name #=> String
9623
- # 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"
9624
9828
  # resp.global_filters.patch_filters #=> Array
9625
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"
9626
9830
  # resp.global_filters.patch_filters[0].values #=> Array
@@ -9789,7 +9993,7 @@ module Aws::SSM
9789
9993
  params: params,
9790
9994
  config: config)
9791
9995
  context[:gem_name] = 'aws-sdk-ssm'
9792
- context[:gem_version] = '1.98.0'
9996
+ context[:gem_version] = '1.99.0'
9793
9997
  Seahorse::Client::Request.new(handlers, context)
9794
9998
  end
9795
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')
@@ -1045,6 +1075,8 @@ module Aws::SSM
1045
1075
  UpdateManagedInstanceRoleResult = Shapes::StructureShape.new(name: 'UpdateManagedInstanceRoleResult')
1046
1076
  UpdateOpsItemRequest = Shapes::StructureShape.new(name: 'UpdateOpsItemRequest')
1047
1077
  UpdateOpsItemResponse = Shapes::StructureShape.new(name: 'UpdateOpsItemResponse')
1078
+ UpdateOpsMetadataRequest = Shapes::StructureShape.new(name: 'UpdateOpsMetadataRequest')
1079
+ UpdateOpsMetadataResult = Shapes::StructureShape.new(name: 'UpdateOpsMetadataResult')
1048
1080
  UpdatePatchBaselineRequest = Shapes::StructureShape.new(name: 'UpdatePatchBaselineRequest')
1049
1081
  UpdatePatchBaselineResult = Shapes::StructureShape.new(name: 'UpdatePatchBaselineResult')
1050
1082
  UpdateResourceDataSyncRequest = Shapes::StructureShape.new(name: 'UpdateResourceDataSyncRequest')
@@ -1575,6 +1607,13 @@ module Aws::SSM
1575
1607
  CreateOpsItemResponse.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: String, location_name: "OpsItemId"))
1576
1608
  CreateOpsItemResponse.struct_class = Types::CreateOpsItemResponse
1577
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
+
1578
1617
  CreatePatchBaselineRequest.add_member(:operating_system, Shapes::ShapeRef.new(shape: OperatingSystem, location_name: "OperatingSystem"))
1579
1618
  CreatePatchBaselineRequest.add_member(:name, Shapes::ShapeRef.new(shape: BaselineName, required: true, location_name: "Name"))
1580
1619
  CreatePatchBaselineRequest.add_member(:global_filters, Shapes::ShapeRef.new(shape: PatchFilterGroup, location_name: "GlobalFilters"))
@@ -1641,6 +1680,11 @@ module Aws::SSM
1641
1680
  DeleteMaintenanceWindowResult.add_member(:window_id, Shapes::ShapeRef.new(shape: MaintenanceWindowId, location_name: "WindowId"))
1642
1681
  DeleteMaintenanceWindowResult.struct_class = Types::DeleteMaintenanceWindowResult
1643
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
+
1644
1688
  DeleteParameterRequest.add_member(:name, Shapes::ShapeRef.new(shape: PSParameterName, required: true, location_name: "Name"))
1645
1689
  DeleteParameterRequest.struct_class = Types::DeleteParameterRequest
1646
1690
 
@@ -2340,6 +2384,16 @@ module Aws::SSM
2340
2384
  GetOpsItemResponse.add_member(:ops_item, Shapes::ShapeRef.new(shape: OpsItem, location_name: "OpsItem"))
2341
2385
  GetOpsItemResponse.struct_class = Types::GetOpsItemResponse
2342
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
+
2343
2397
  GetOpsSummaryRequest.add_member(:sync_name, Shapes::ShapeRef.new(shape: ResourceDataSyncName, location_name: "SyncName"))
2344
2398
  GetOpsSummaryRequest.add_member(:filters, Shapes::ShapeRef.new(shape: OpsFilterList, location_name: "Filters"))
2345
2399
  GetOpsSummaryRequest.add_member(:aggregators, Shapes::ShapeRef.new(shape: OpsAggregatorList, location_name: "Aggregators"))
@@ -2893,6 +2947,15 @@ module Aws::SSM
2893
2947
  ListInventoryEntriesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2894
2948
  ListInventoryEntriesResult.struct_class = Types::ListInventoryEntriesResult
2895
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
+
2896
2959
  ListResourceComplianceSummariesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ComplianceStringFilterList, location_name: "Filters"))
2897
2960
  ListResourceComplianceSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
2898
2961
  ListResourceComplianceSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
@@ -3066,6 +3129,14 @@ module Aws::SSM
3066
3129
  MaxDocumentSizeExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
3067
3130
  MaxDocumentSizeExceeded.struct_class = Types::MaxDocumentSizeExceeded
3068
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
+
3069
3140
  ModifyDocumentPermissionRequest.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, required: true, location_name: "Name"))
3070
3141
  ModifyDocumentPermissionRequest.add_member(:permission_type, Shapes::ShapeRef.new(shape: DocumentPermissionType, required: true, location_name: "PermissionType"))
3071
3142
  ModifyDocumentPermissionRequest.add_member(:account_ids_to_add, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "AccountIdsToAdd"))
@@ -3205,6 +3276,41 @@ module Aws::SSM
3205
3276
  OpsItemSummary.add_member(:severity, Shapes::ShapeRef.new(shape: OpsItemSeverity, location_name: "Severity"))
3206
3277
  OpsItemSummary.struct_class = Types::OpsItemSummary
3207
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
+
3208
3314
  OpsResultAttribute.add_member(:type_name, Shapes::ShapeRef.new(shape: OpsDataTypeName, required: true, location_name: "TypeName"))
3209
3315
  OpsResultAttribute.struct_class = Types::OpsResultAttribute
3210
3316
 
@@ -4028,6 +4134,14 @@ module Aws::SSM
4028
4134
 
4029
4135
  UpdateOpsItemResponse.struct_class = Types::UpdateOpsItemResponse
4030
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
+
4031
4145
  UpdatePatchBaselineRequest.add_member(:baseline_id, Shapes::ShapeRef.new(shape: BaselineId, required: true, location_name: "BaselineId"))
4032
4146
  UpdatePatchBaselineRequest.add_member(:name, Shapes::ShapeRef.new(shape: BaselineName, location_name: "Name"))
4033
4147
  UpdatePatchBaselineRequest.add_member(:global_filters, Shapes::ShapeRef.new(shape: PatchFilterGroup, location_name: "GlobalFilters"))
@@ -4211,6 +4325,19 @@ module Aws::SSM
4211
4325
  o.errors << Shapes::ShapeRef.new(shape: OpsItemInvalidParameterException)
4212
4326
  end)
4213
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
+
4214
4341
  api.add_operation(:create_patch_baseline, Seahorse::Model::Operation.new.tap do |o|
4215
4342
  o.name = "CreatePatchBaseline"
4216
4343
  o.http_method = "POST"
@@ -4293,6 +4420,17 @@ module Aws::SSM
4293
4420
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
4294
4421
  end)
4295
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
+
4296
4434
  api.add_operation(:delete_parameter, Seahorse::Model::Operation.new.tap do |o|
4297
4435
  o.name = "DeleteParameter"
4298
4436
  o.http_method = "POST"
@@ -5056,6 +5194,17 @@ module Aws::SSM
5056
5194
  o.errors << Shapes::ShapeRef.new(shape: OpsItemNotFoundException)
5057
5195
  end)
5058
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
+
5059
5208
  api.add_operation(:get_ops_summary, Seahorse::Model::Operation.new.tap do |o|
5060
5209
  o.name = "GetOpsSummary"
5061
5210
  o.http_method = "POST"
@@ -5333,6 +5482,16 @@ module Aws::SSM
5333
5482
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextToken)
5334
5483
  end)
5335
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
+
5336
5495
  api.add_operation(:list_resource_compliance_summaries, Seahorse::Model::Operation.new.tap do |o|
5337
5496
  o.name = "ListResourceComplianceSummaries"
5338
5497
  o.http_method = "POST"
@@ -5736,6 +5895,19 @@ module Aws::SSM
5736
5895
  o.errors << Shapes::ShapeRef.new(shape: OpsItemInvalidParameterException)
5737
5896
  end)
5738
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
+
5739
5911
  api.add_operation(:update_patch_baseline, Seahorse::Model::Operation.new.tap do |o|
5740
5912
  o.name = "UpdatePatchBaseline"
5741
5913
  o.http_method = "POST"