aws-sdk-ssm 1.216.0 → 1.217.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: 2979a20afde094df9f4e950a8f237d0553808a259cddf79184aac8a519d3fd9d
4
- data.tar.gz: 2f88e0c9620154d6e72fcb6623b0feee84d2383cb4539609df95c8da384e5ce9
3
+ metadata.gz: 8dfe69506a1a71ccc3e23a5617a34bbb80bff55c94e3809837e51f04e7519000
4
+ data.tar.gz: 92e5150768ee1d1219c4be067969d22c80fa1f9ad63497e3a1bb5b9dd4dccbb8
5
5
  SHA512:
6
- metadata.gz: 91e52ba9771a4fc061e203211b88f6ef4b27f1221dff546f852ea59bb1ee4adcc192bfe6b5469089442fa968661257e1b36fa17cfa2e0980dc53aa75cef09ecf
7
- data.tar.gz: 8b99b13882d2898f48d6548701c410b1908338841b472f2e0d77b11d08162b3f717cdec411b5df20296b1c6be26ef1e57263082343635027c58665664350fa93
6
+ metadata.gz: f25bfb00508248e31ce59c7e6eff5a553b9de69ff54770eb587aba93146b138c4018cb2e476cea398d602f84a255708c5320f3add5d52cdcbc61803e3220717d
7
+ data.tar.gz: c467ae6424295e0f9cc5624d85b3e531cf611d4d03f30e4c21d4cbcd60f77cbe00f38c4d7f57504215b3c3f9c4717b9000193b0c1be9cb9593a43bac0b0c8088
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.217.0 (2026-07-07)
5
+ ------------------
6
+
7
+ * Feature - Adding SSM Cloud Connector to support Azure Virtual Machines onboarding to AWS Systems Manager
8
+
4
9
  1.216.0 (2026-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.216.0
1
+ 1.217.0
@@ -571,7 +571,7 @@ module Aws::SSM
571
571
  # @example Request syntax with placeholder values
572
572
  #
573
573
  # resp = client.add_tags_to_resource({
574
- # resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem, OpsMetadata, Automation, Association
574
+ # resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem, OpsMetadata, Automation, Association, CloudConnector
575
575
  # resource_id: "ResourceId", # required
576
576
  # tags: [ # required
577
577
  # {
@@ -1014,7 +1014,7 @@ module Aws::SSM
1014
1014
  # action to create an association in multiple Regions and multiple
1015
1015
  # accounts.
1016
1016
  #
1017
- # <note markdown="1"> The `IncludeChildOrganizationUnits` parameter is not supported by
1017
+ # <note markdown="1"> The `TargetLocationAlarmConfiguration` parameter is not supported by
1018
1018
  # State Manager.
1019
1019
  #
1020
1020
  # </note>
@@ -1517,6 +1517,80 @@ module Aws::SSM
1517
1517
  req.send_request(options)
1518
1518
  end
1519
1519
 
1520
+ # Creates a cloud connector that establishes a connection between
1521
+ # Systems Manager and a third-party cloud environment.
1522
+ #
1523
+ # @option params [required, String] :display_name
1524
+ # A friendly name for the cloud connector.
1525
+ #
1526
+ # @option params [required, String] :role_arn
1527
+ # The Amazon Resource Name (ARN) of the IAM role that the cloud
1528
+ # connector uses to communicate with the third-party cloud environment.
1529
+ #
1530
+ # @option params [String] :description
1531
+ # A description for the cloud connector.
1532
+ #
1533
+ # @option params [required, Types::CloudConnectorConfiguration] :configuration
1534
+ # The configuration details for connecting to the third-party cloud
1535
+ # environment.
1536
+ #
1537
+ # @option params [required, String] :config_connector_arn
1538
+ # The ARN of the Amazon Web Services Config connector associated with
1539
+ # this cloud connector.
1540
+ #
1541
+ # @option params [Array<Types::Tag>] :tags
1542
+ # Optional metadata that you assign to a resource. Tags enable you to
1543
+ # categorize a resource in different ways, such as by purpose, owner, or
1544
+ # environment.
1545
+ #
1546
+ # @return [Types::CreateCloudConnectorResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1547
+ #
1548
+ # * {Types::CreateCloudConnectorResult#cloud_connector_id #cloud_connector_id} => String
1549
+ #
1550
+ # @example Request syntax with placeholder values
1551
+ #
1552
+ # resp = client.create_cloud_connector({
1553
+ # display_name: "DisplayName", # required
1554
+ # role_arn: "CloudConnectorIamRoleArn", # required
1555
+ # description: "CloudConnectorDescription",
1556
+ # configuration: { # required
1557
+ # azure_configuration: {
1558
+ # tenant_id: "AzureTenantId", # required
1559
+ # tenant_display_name: "AzureTenantDisplayName",
1560
+ # application_id: "AzureApplicationId", # required
1561
+ # application_display_name: "AzureApplicationDisplayName",
1562
+ # targets: {
1563
+ # subscriptions: [
1564
+ # {
1565
+ # id: "AzureSubscriptionId", # required
1566
+ # display_name: "AzureSubscriptionDisplayName",
1567
+ # },
1568
+ # ],
1569
+ # },
1570
+ # },
1571
+ # },
1572
+ # config_connector_arn: "ConfigConnectorArn", # required
1573
+ # tags: [
1574
+ # {
1575
+ # key: "TagKey", # required
1576
+ # value: "TagValue", # required
1577
+ # },
1578
+ # ],
1579
+ # })
1580
+ #
1581
+ # @example Response structure
1582
+ #
1583
+ # resp.cloud_connector_id #=> String
1584
+ #
1585
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateCloudConnector AWS API Documentation
1586
+ #
1587
+ # @overload create_cloud_connector(params = {})
1588
+ # @param [Hash] params ({})
1589
+ def create_cloud_connector(params = {}, options = {})
1590
+ req = build_request(:create_cloud_connector, params)
1591
+ req.send_request(options)
1592
+ end
1593
+
1520
1594
  # Creates a Amazon Web Services Systems Manager (SSM document). An SSM
1521
1595
  # document defines the actions that Systems Manager performs on your
1522
1596
  # managed nodes. For more information about SSM documents, including
@@ -2533,6 +2607,34 @@ module Aws::SSM
2533
2607
  req.send_request(options)
2534
2608
  end
2535
2609
 
2610
+ # Deletes a cloud connector.
2611
+ #
2612
+ # @option params [required, String] :cloud_connector_id
2613
+ # The ID of the cloud connector to delete.
2614
+ #
2615
+ # @return [Types::DeleteCloudConnectorResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2616
+ #
2617
+ # * {Types::DeleteCloudConnectorResult#cloud_connector_id #cloud_connector_id} => String
2618
+ #
2619
+ # @example Request syntax with placeholder values
2620
+ #
2621
+ # resp = client.delete_cloud_connector({
2622
+ # cloud_connector_id: "CloudConnectorId", # required
2623
+ # })
2624
+ #
2625
+ # @example Response structure
2626
+ #
2627
+ # resp.cloud_connector_id #=> String
2628
+ #
2629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteCloudConnector AWS API Documentation
2630
+ #
2631
+ # @overload delete_cloud_connector(params = {})
2632
+ # @param [Hash] params ({})
2633
+ def delete_cloud_connector(params = {}, options = {})
2634
+ req = build_request(:delete_cloud_connector, params)
2635
+ req.send_request(options)
2636
+ end
2637
+
2536
2638
  # Deletes the Amazon Web Services Systems Manager document (SSM
2537
2639
  # document) and all managed node associations to the document.
2538
2640
  #
@@ -4228,7 +4330,8 @@ module Aws::SSM
4228
4330
  # resp.instance_information_list[0].association_overview.instance_association_status_aggregated_count #=> Hash
4229
4331
  # resp.instance_information_list[0].association_overview.instance_association_status_aggregated_count["StatusName"] #=> Integer
4230
4332
  # resp.instance_information_list[0].source_id #=> String
4231
- # resp.instance_information_list[0].source_type #=> String, one of "AWS::EC2::Instance", "AWS::IoT::Thing", "AWS::SSM::ManagedInstance"
4333
+ # resp.instance_information_list[0].source_type #=> String, one of "AWS::EC2::Instance", "AWS::IoT::Thing", "AWS::SSM::ManagedInstance", "Microsoft.Compute/virtualMachines"
4334
+ # resp.instance_information_list[0].source_location #=> String
4232
4335
  # resp.next_token #=> String
4233
4336
  #
4234
4337
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceInformation AWS API Documentation
@@ -4548,7 +4651,9 @@ module Aws::SSM
4548
4651
  # resp.instance_properties[0].association_overview.instance_association_status_aggregated_count #=> Hash
4549
4652
  # resp.instance_properties[0].association_overview.instance_association_status_aggregated_count["StatusName"] #=> Integer
4550
4653
  # resp.instance_properties[0].source_id #=> String
4551
- # resp.instance_properties[0].source_type #=> String, one of "AWS::EC2::Instance", "AWS::IoT::Thing", "AWS::SSM::ManagedInstance"
4654
+ # resp.instance_properties[0].source_type #=> String, one of "AWS::EC2::Instance", "AWS::IoT::Thing", "AWS::SSM::ManagedInstance", "Microsoft.Compute/virtualMachines"
4655
+ # resp.instance_properties[0].source_location #=> String
4656
+ # resp.instance_properties[0].availability_zone #=> String
4552
4657
  # resp.next_token #=> String
4553
4658
  #
4554
4659
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeInstanceProperties AWS API Documentation
@@ -6121,6 +6226,54 @@ module Aws::SSM
6121
6226
  req.send_request(options)
6122
6227
  end
6123
6228
 
6229
+ # Returns detailed information about a cloud connector.
6230
+ #
6231
+ # @option params [required, String] :cloud_connector_id
6232
+ # The ID of the cloud connector to retrieve information about.
6233
+ #
6234
+ # @return [Types::GetCloudConnectorResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6235
+ #
6236
+ # * {Types::GetCloudConnectorResult#cloud_connector_arn #cloud_connector_arn} => String
6237
+ # * {Types::GetCloudConnectorResult#display_name #display_name} => String
6238
+ # * {Types::GetCloudConnectorResult#description #description} => String
6239
+ # * {Types::GetCloudConnectorResult#role_arn #role_arn} => String
6240
+ # * {Types::GetCloudConnectorResult#configuration #configuration} => Types::CloudConnectorConfiguration
6241
+ # * {Types::GetCloudConnectorResult#config_connector_arn #config_connector_arn} => String
6242
+ # * {Types::GetCloudConnectorResult#created_at #created_at} => Time
6243
+ # * {Types::GetCloudConnectorResult#updated_at #updated_at} => Time
6244
+ #
6245
+ # @example Request syntax with placeholder values
6246
+ #
6247
+ # resp = client.get_cloud_connector({
6248
+ # cloud_connector_id: "CloudConnectorId", # required
6249
+ # })
6250
+ #
6251
+ # @example Response structure
6252
+ #
6253
+ # resp.cloud_connector_arn #=> String
6254
+ # resp.display_name #=> String
6255
+ # resp.description #=> String
6256
+ # resp.role_arn #=> String
6257
+ # resp.configuration.azure_configuration.tenant_id #=> String
6258
+ # resp.configuration.azure_configuration.tenant_display_name #=> String
6259
+ # resp.configuration.azure_configuration.application_id #=> String
6260
+ # resp.configuration.azure_configuration.application_display_name #=> String
6261
+ # resp.configuration.azure_configuration.targets.subscriptions #=> Array
6262
+ # resp.configuration.azure_configuration.targets.subscriptions[0].id #=> String
6263
+ # resp.configuration.azure_configuration.targets.subscriptions[0].display_name #=> String
6264
+ # resp.config_connector_arn #=> String
6265
+ # resp.created_at #=> Time
6266
+ # resp.updated_at #=> Time
6267
+ #
6268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCloudConnector AWS API Documentation
6269
+ #
6270
+ # @overload get_cloud_connector(params = {})
6271
+ # @param [Hash] params ({})
6272
+ def get_cloud_connector(params = {}, options = {})
6273
+ req = build_request(:get_cloud_connector, params)
6274
+ req.send_request(options)
6275
+ end
6276
+
6124
6277
  # Returns detailed information about command execution for an invocation
6125
6278
  # or plugin. The Run Command API follows an eventual consistency model,
6126
6279
  # due to the distributed nature of the system supporting the API. This
@@ -7260,6 +7413,29 @@ module Aws::SSM
7260
7413
  #
7261
7414
  # </note>
7262
7415
  #
7416
+ # <note markdown="1"> Parameter Store throughput defines the number of API transactions per
7417
+ # second (TPS) that Systems Manager can process. This applies to
7418
+ # `GetParameter`, `GetParameters`, and `PutParameter` API calls for your
7419
+ # Amazon Web Services account and Amazon Web Services Region. By
7420
+ # default, Parameter Store is configured with a standard throughput
7421
+ # quota suitable for low- to moderate-volume workloads. Applications
7422
+ # that retrieve configuration data infrequently or operate at smaller
7423
+ # scale can use this default setting without additional cost.
7424
+ #
7425
+ # For higher-volume workloads, you can enable higher throughput. This
7426
+ # increases the maximum number of supported transactions per second for
7427
+ # your account and Region. Increased throughput supports applications
7428
+ # and workloads that need concurrent access to multiple parameters. If
7429
+ # you experience `ThrottlingException: Rate exceeded` errors, enable
7430
+ # higher throughput. For more information, see [Changing Parameter Store
7431
+ # throughput][1].
7432
+ #
7433
+ # </note>
7434
+ #
7435
+ #
7436
+ #
7437
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-throughput.html
7438
+ #
7263
7439
  # @option params [required, String] :name
7264
7440
  # The name or Amazon Resource Name (ARN) of the parameter that you want
7265
7441
  # to query. For parameters shared with you from another account, you
@@ -7402,6 +7578,29 @@ module Aws::SSM
7402
7578
  # specified name for a parameter contains spaces between characters, the
7403
7579
  # request fails with a `ValidationException` error.
7404
7580
  #
7581
+ # <note markdown="1"> Parameter Store throughput defines the number of API transactions per
7582
+ # second (TPS) that Systems Manager can process. This applies to
7583
+ # `GetParameter`, `GetParameters`, and `PutParameter` API calls for your
7584
+ # Amazon Web Services account and Amazon Web Services Region. By
7585
+ # default, Parameter Store is configured with a standard throughput
7586
+ # quota suitable for low- to moderate-volume workloads. Applications
7587
+ # that retrieve configuration data infrequently or operate at smaller
7588
+ # scale can use this default setting without additional cost.
7589
+ #
7590
+ # For higher-volume workloads, you can enable higher throughput. This
7591
+ # increases the maximum number of supported transactions per second for
7592
+ # your account and Region. Increased throughput supports applications
7593
+ # and workloads that need concurrent access to multiple parameters. If
7594
+ # you experience `ThrottlingException: Rate exceeded` errors, enable
7595
+ # higher throughput. For more information, see [Changing Parameter Store
7596
+ # throughput][1].
7597
+ #
7598
+ # </note>
7599
+ #
7600
+ #
7601
+ #
7602
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-throughput.html
7603
+ #
7405
7604
  # @option params [required, Array<String>] :names
7406
7605
  # The names or Amazon Resource Names (ARNs) of the parameters that you
7407
7606
  # want to query. For parameters shared with you from another account,
@@ -7662,7 +7861,7 @@ module Aws::SSM
7662
7861
  #
7663
7862
  # @option params [String] :operating_system
7664
7863
  # Returns the operating system rule specified for patch groups using the
7665
- # patch baseline.
7864
+ # patch baseline. The default value is `WINDOWS`.
7666
7865
  #
7667
7866
  # @return [Types::GetPatchBaselineForPatchGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7668
7867
  #
@@ -8025,7 +8224,7 @@ module Aws::SSM
8025
8224
  # resp = client.list_associations({
8026
8225
  # association_filter_list: [
8027
8226
  # {
8028
- # key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName, ResourceGroupName
8227
+ # key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName, ResourceGroupName, CloudConnectorId
8029
8228
  # value: "AssociationFilterValue", # required
8030
8229
  # },
8031
8230
  # ],
@@ -8069,6 +8268,60 @@ module Aws::SSM
8069
8268
  req.send_request(options)
8070
8269
  end
8071
8270
 
8271
+ # Returns a list of cloud connectors in the current Amazon Web Services
8272
+ # account and Amazon Web Services Region.
8273
+ #
8274
+ # @option params [Integer] :max_results
8275
+ # The maximum number of items to return for this call.
8276
+ #
8277
+ # @option params [String] :next_token
8278
+ # The token for the next set of items to return. (You received this
8279
+ # token from a previous call.)
8280
+ #
8281
+ # @option params [Array<Types::CloudConnectorFilter>] :filters
8282
+ # One or more filters to limit the cloud connectors returned in the
8283
+ # response.
8284
+ #
8285
+ # @return [Types::ListCloudConnectorsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8286
+ #
8287
+ # * {Types::ListCloudConnectorsResult#cloud_connectors #cloud_connectors} => Array&lt;Types::CloudConnectorSummary&gt;
8288
+ # * {Types::ListCloudConnectorsResult#next_token #next_token} => String
8289
+ #
8290
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
8291
+ #
8292
+ # @example Request syntax with placeholder values
8293
+ #
8294
+ # resp = client.list_cloud_connectors({
8295
+ # max_results: 1,
8296
+ # next_token: "NextToken",
8297
+ # filters: [
8298
+ # {
8299
+ # filter_key: "SubscriptionId", # accepts SubscriptionId, TenantId
8300
+ # filter_values: ["CloudConnectorFilterValue"],
8301
+ # },
8302
+ # ],
8303
+ # })
8304
+ #
8305
+ # @example Response structure
8306
+ #
8307
+ # resp.cloud_connectors #=> Array
8308
+ # resp.cloud_connectors[0].cloud_connector_id #=> String
8309
+ # resp.cloud_connectors[0].display_name #=> String
8310
+ # resp.cloud_connectors[0].description #=> String
8311
+ # resp.cloud_connectors[0].role_arn #=> String
8312
+ # resp.cloud_connectors[0].created_at #=> Time
8313
+ # resp.cloud_connectors[0].updated_at #=> Time
8314
+ # resp.next_token #=> String
8315
+ #
8316
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCloudConnectors AWS API Documentation
8317
+ #
8318
+ # @overload list_cloud_connectors(params = {})
8319
+ # @param [Hash] params ({})
8320
+ def list_cloud_connectors(params = {}, options = {})
8321
+ req = build_request(:list_cloud_connectors, params)
8322
+ req.send_request(options)
8323
+ end
8324
+
8072
8325
  # An invocation is copy of a command sent to a specific managed node. A
8073
8326
  # command can apply to one or more managed nodes. A command invocation
8074
8327
  # applies to one managed node. For example, if a user runs `SendCommand`
@@ -8792,7 +9045,7 @@ module Aws::SSM
8792
9045
  # sync_name: "ResourceDataSyncName",
8793
9046
  # filters: [
8794
9047
  # {
8795
- # key: "AgentType", # required, accepts AgentType, AgentVersion, ComputerName, InstanceId, InstanceStatus, IpAddress, ManagedStatus, PlatformName, PlatformType, PlatformVersion, ResourceType, OrganizationalUnitId, OrganizationalUnitPath, Region, AccountId
9048
+ # key: "AgentType", # required, accepts AgentType, AgentVersion, ComputerName, InstanceId, InstanceStatus, IpAddress, ManagedStatus, PlatformName, PlatformType, PlatformVersion, ResourceType, OrganizationalUnitId, OrganizationalUnitPath, Region, AccountId, SourceType, SourceId, SourceLocation, AvailabilityZone, AvailabilityZoneId
8796
9049
  # values: ["NodeFilterValue"], # required
8797
9050
  # type: "Equal", # accepts Equal, NotEqual, BeginWith
8798
9051
  # },
@@ -8816,10 +9069,16 @@ module Aws::SSM
8816
9069
  # resp.nodes[0].node_type.instance.instance_status #=> String
8817
9070
  # resp.nodes[0].node_type.instance.ip_address #=> String
8818
9071
  # resp.nodes[0].node_type.instance.managed_status #=> String, one of "All", "Managed", "Unmanaged"
9072
+ # resp.nodes[0].node_type.instance.name #=> String
8819
9073
  # resp.nodes[0].node_type.instance.platform_type #=> String, one of "Windows", "Linux", "MacOS"
8820
9074
  # resp.nodes[0].node_type.instance.platform_name #=> String
8821
9075
  # resp.nodes[0].node_type.instance.platform_version #=> String
8822
9076
  # resp.nodes[0].node_type.instance.resource_type #=> String, one of "ManagedInstance", "EC2Instance"
9077
+ # resp.nodes[0].node_type.instance.source_type #=> String, one of "AWS::EC2::Instance", "AWS::IoT::Thing", "AWS::SSM::ManagedInstance", "Microsoft.Compute/virtualMachines"
9078
+ # resp.nodes[0].node_type.instance.source_id #=> String
9079
+ # resp.nodes[0].node_type.instance.source_location #=> String
9080
+ # resp.nodes[0].node_type.instance.availability_zone #=> String
9081
+ # resp.nodes[0].node_type.instance.availability_zone_id #=> String
8823
9082
  # resp.next_token #=> String
8824
9083
  #
8825
9084
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListNodes AWS API Documentation
@@ -8919,7 +9178,7 @@ module Aws::SSM
8919
9178
  # sync_name: "ResourceDataSyncName",
8920
9179
  # filters: [
8921
9180
  # {
8922
- # key: "AgentType", # required, accepts AgentType, AgentVersion, ComputerName, InstanceId, InstanceStatus, IpAddress, ManagedStatus, PlatformName, PlatformType, PlatformVersion, ResourceType, OrganizationalUnitId, OrganizationalUnitPath, Region, AccountId
9181
+ # key: "AgentType", # required, accepts AgentType, AgentVersion, ComputerName, InstanceId, InstanceStatus, IpAddress, ManagedStatus, PlatformName, PlatformType, PlatformVersion, ResourceType, OrganizationalUnitId, OrganizationalUnitPath, Region, AccountId, SourceType, SourceId, SourceLocation, AvailabilityZone, AvailabilityZoneId
8923
9182
  # values: ["NodeFilterValue"], # required
8924
9183
  # type: "Equal", # accepts Equal, NotEqual, BeginWith
8925
9184
  # },
@@ -8928,7 +9187,7 @@ module Aws::SSM
8928
9187
  # {
8929
9188
  # aggregator_type: "Count", # required, accepts Count
8930
9189
  # type_name: "Instance", # required, accepts Instance
8931
- # attribute_name: "AgentVersion", # required, accepts AgentVersion, PlatformName, PlatformType, PlatformVersion, Region, ResourceType
9190
+ # attribute_name: "AgentVersion", # required, accepts AgentVersion, PlatformName, PlatformType, PlatformVersion, Region, ResourceType, SourceType, AvailabilityZone
8932
9191
  # aggregators: {
8933
9192
  # # recursive NodeAggregatorList
8934
9193
  # },
@@ -9308,7 +9567,7 @@ module Aws::SSM
9308
9567
  # @example Request syntax with placeholder values
9309
9568
  #
9310
9569
  # resp = client.list_tags_for_resource({
9311
- # resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem, OpsMetadata, Automation, Association
9570
+ # resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem, OpsMetadata, Automation, Association, CloudConnector
9312
9571
  # resource_id: "ResourceId", # required
9313
9572
  # })
9314
9573
  #
@@ -9564,6 +9823,29 @@ module Aws::SSM
9564
9823
 
9565
9824
  # Create or update a parameter in Parameter Store.
9566
9825
  #
9826
+ # <note markdown="1"> Parameter Store throughput defines the number of API transactions per
9827
+ # second (TPS) that Systems Manager can process. This applies to
9828
+ # `GetParameter`, `GetParameters`, and `PutParameter` API calls for your
9829
+ # Amazon Web Services account and Amazon Web Services Region. By
9830
+ # default, Parameter Store is configured with a standard throughput
9831
+ # quota suitable for low- to moderate-volume workloads. Applications
9832
+ # that retrieve configuration data infrequently or operate at smaller
9833
+ # scale can use this default setting without additional cost.
9834
+ #
9835
+ # For higher-volume workloads, you can enable higher throughput. This
9836
+ # increases the maximum number of supported transactions per second for
9837
+ # your account and Region. Increased throughput supports applications
9838
+ # and workloads that need concurrent access to multiple parameters. If
9839
+ # you experience `ThrottlingException: Rate exceeded` errors, enable
9840
+ # higher throughput. For more information, see [Changing Parameter Store
9841
+ # throughput][1].
9842
+ #
9843
+ # </note>
9844
+ #
9845
+ #
9846
+ #
9847
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-throughput.html
9848
+ #
9567
9849
  # @option params [required, String] :name
9568
9850
  # The fully qualified name of the parameter that you want to create or
9569
9851
  # update.
@@ -10458,7 +10740,7 @@ module Aws::SSM
10458
10740
  # @example Request syntax with placeholder values
10459
10741
  #
10460
10742
  # resp = client.remove_tags_from_resource({
10461
- # resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem, OpsMetadata, Automation, Association
10743
+ # resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem, OpsMetadata, Automation, Association, CloudConnector
10462
10744
  # resource_id: "ResourceId", # required
10463
10745
  # tag_keys: ["TagKey"], # required
10464
10746
  # })
@@ -11833,7 +12115,7 @@ module Aws::SSM
11833
12115
  # action to update an association in multiple Regions and multiple
11834
12116
  # accounts.
11835
12117
  #
11836
- # <note markdown="1"> The `IncludeChildOrganizationUnits` parameter is not supported by
12118
+ # <note markdown="1"> The `TargetLocationAlarmConfiguration` parameter is not supported by
11837
12119
  # State Manager.
11838
12120
  #
11839
12121
  # </note>
@@ -12182,6 +12464,62 @@ module Aws::SSM
12182
12464
  req.send_request(options)
12183
12465
  end
12184
12466
 
12467
+ # Updates an existing cloud connector with new configuration details.
12468
+ #
12469
+ # @option params [required, String] :cloud_connector_id
12470
+ # The ID of the cloud connector to update.
12471
+ #
12472
+ # @option params [String] :display_name
12473
+ # A new friendly name for the cloud connector.
12474
+ #
12475
+ # @option params [Types::CloudConnectorConfiguration] :configuration
12476
+ # The updated configuration details for connecting to the third-party
12477
+ # cloud environment.
12478
+ #
12479
+ # @option params [String] :description
12480
+ # A new description for the cloud connector.
12481
+ #
12482
+ # @return [Types::UpdateCloudConnectorResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
12483
+ #
12484
+ # * {Types::UpdateCloudConnectorResult#cloud_connector_id #cloud_connector_id} => String
12485
+ #
12486
+ # @example Request syntax with placeholder values
12487
+ #
12488
+ # resp = client.update_cloud_connector({
12489
+ # cloud_connector_id: "CloudConnectorId", # required
12490
+ # display_name: "DisplayName",
12491
+ # configuration: {
12492
+ # azure_configuration: {
12493
+ # tenant_id: "AzureTenantId", # required
12494
+ # tenant_display_name: "AzureTenantDisplayName",
12495
+ # application_id: "AzureApplicationId", # required
12496
+ # application_display_name: "AzureApplicationDisplayName",
12497
+ # targets: {
12498
+ # subscriptions: [
12499
+ # {
12500
+ # id: "AzureSubscriptionId", # required
12501
+ # display_name: "AzureSubscriptionDisplayName",
12502
+ # },
12503
+ # ],
12504
+ # },
12505
+ # },
12506
+ # },
12507
+ # description: "CloudConnectorDescription",
12508
+ # })
12509
+ #
12510
+ # @example Response structure
12511
+ #
12512
+ # resp.cloud_connector_id #=> String
12513
+ #
12514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateCloudConnector AWS API Documentation
12515
+ #
12516
+ # @overload update_cloud_connector(params = {})
12517
+ # @param [Hash] params ({})
12518
+ def update_cloud_connector(params = {}, options = {})
12519
+ req = build_request(:update_cloud_connector, params)
12520
+ req.send_request(options)
12521
+ end
12522
+
12185
12523
  # Updates one or more values for an SSM document.
12186
12524
  #
12187
12525
  # @option params [required, String] :content
@@ -13633,6 +13971,53 @@ module Aws::SSM
13633
13971
  req.send_request(options)
13634
13972
  end
13635
13973
 
13974
+ # Validates the configuration and connectivity of a cloud connector.
13975
+ #
13976
+ # @option params [required, String] :cloud_connector_id
13977
+ # The ID of the cloud connector to validate.
13978
+ #
13979
+ # @option params [Integer] :max_results
13980
+ # The maximum number of validation findings to return.
13981
+ #
13982
+ # @option params [String] :next_token
13983
+ # The token for the next set of items to return. (You received this
13984
+ # token from a previous call.)
13985
+ #
13986
+ # @return [Types::ValidateCloudConnectorResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13987
+ #
13988
+ # * {Types::ValidateCloudConnectorResult#validation_findings #validation_findings} => Array&lt;Types::ValidationFinding&gt;
13989
+ # * {Types::ValidateCloudConnectorResult#next_token #next_token} => String
13990
+ #
13991
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
13992
+ #
13993
+ # @example Request syntax with placeholder values
13994
+ #
13995
+ # resp = client.validate_cloud_connector({
13996
+ # cloud_connector_id: "CloudConnectorId", # required
13997
+ # max_results: 1,
13998
+ # next_token: "NextToken",
13999
+ # })
14000
+ #
14001
+ # @example Response structure
14002
+ #
14003
+ # resp.validation_findings #=> Array
14004
+ # resp.validation_findings[0].type #=> String, one of "INFO", "WARN", "ERROR"
14005
+ # resp.validation_findings[0].code #=> String, one of "TargetInaccessible", "TargetUnusable", "TargetStateWarning", "AwsRoleAssumptionFailed", "WebIdentityTokenFailed", "OutboundWebIdentityFederationDisabled", "ProviderCredentialCreationFailed", "TenantSummary", "SubscriptionAccessible"
14006
+ # resp.validation_findings[0].message #=> String
14007
+ # resp.validation_findings[0].provider_message #=> String
14008
+ # resp.validation_findings[0].scope.type #=> String, one of "azure:tenant", "azure:subscription"
14009
+ # resp.validation_findings[0].scope.id #=> String
14010
+ # resp.next_token #=> String
14011
+ #
14012
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ValidateCloudConnector AWS API Documentation
14013
+ #
14014
+ # @overload validate_cloud_connector(params = {})
14015
+ # @param [Hash] params ({})
14016
+ def validate_cloud_connector(params = {}, options = {})
14017
+ req = build_request(:validate_cloud_connector, params)
14018
+ req.send_request(options)
14019
+ end
14020
+
13636
14021
  # @!endgroup
13637
14022
 
13638
14023
  # @param params ({})
@@ -13651,7 +14036,7 @@ module Aws::SSM
13651
14036
  tracer: tracer
13652
14037
  )
13653
14038
  context[:gem_name] = 'aws-sdk-ssm'
13654
- context[:gem_version] = '1.216.0'
14039
+ context[:gem_version] = '1.217.0'
13655
14040
  Seahorse::Client::Request.new(handlers, context)
13656
14041
  end
13657
14042