aws-sdk-deadline 1.50.0 → 1.52.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: fc00b0a98a0ee452fa466c661fd3b68d19129ef6dbe72ac36d7c1ec7acf72443
4
- data.tar.gz: 0ad1e25e87f14eb496ccffd25ab4f9fe4a1bd86c4e5496b9878cee845d047ea7
3
+ metadata.gz: 0afb7b47be938bc0fe4b30160646bdf6a345a7d5005322b7e7de02ac2a8261b9
4
+ data.tar.gz: 73bae4bf3eb91d0c52f89af86ad0a3448474b0b231f1f3acd79f615ca81b07bb
5
5
  SHA512:
6
- metadata.gz: f532532fc533cb289b907bba7a7be1d9894845ff98bdfd652c7d1305097ebe1c2ef25a512842dd0f2b0aa3d7a3458c7b06822c29b31e63b585abc19ae8d21b63
7
- data.tar.gz: b32f52013f3eb8998ff87bd23150c8d9f9ece9f962a2601e1eae38dd53968f58904de4aa9a4385662dd2ba9c4fe316165057b120d6e973382302c85909859867
6
+ metadata.gz: fe63b051919526098cb5699b075d5ff09d341352c5f76aeb9ad537064777ba4b590351cb6be17420f3f86191f39a2bf02cd3bd0666fc040a92d5efaf858fcb79
7
+ data.tar.gz: 7334ab4b241e8a4d3ac29cfd55ab28da7ef13d2c1997f3cd443730feda764469cfadc255fc718a4b27364b686a57c083a81dc8357558251edf89ba2f0021fd6b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2026-04-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for rtx-pro-server-6000 GPU accelerator for service-managed fleets.
8
+
9
+ 1.51.0 (2026-04-13)
10
+ ------------------
11
+
12
+ * Feature - Adds GetMonitorSettings and UpdateMonitorSettings APIs to Deadline Cloud. Enables reading and writing monitor settings as key-value pairs (up to 64 keys per monitor). UpdateMonitorSettings supports upsert and delete (via empty value) semantics and is idempotent.
13
+
4
14
  1.50.0 (2026-04-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.52.0
@@ -2058,7 +2058,7 @@ module Aws::Deadline
2058
2058
  # accelerator_capabilities: {
2059
2059
  # selections: [ # required
2060
2060
  # {
2061
- # name: "t4", # required, accepts t4, a10g, l4, l40s
2061
+ # name: "t4", # required, accepts t4, a10g, l4, l40s, rtx-pro-server-6000
2062
2062
  # runtime: "AcceleratorRuntime",
2063
2063
  # },
2064
2064
  # ],
@@ -2411,8 +2411,8 @@ module Aws::Deadline
2411
2411
  # authenticates monitor users.
2412
2412
  #
2413
2413
  # @option params [String] :identity_center_region
2414
- # The AWS region where IAM Identity Center is enabled. Required when
2415
- # Identity Center is in a different region than the monitor.
2414
+ # The AWS Region where IAM Identity Center is enabled. Required when IAM
2415
+ # Identity Center is in a different Region than the monitor.
2416
2416
  #
2417
2417
  # @option params [required, String] :subdomain
2418
2418
  # The subdomain to use when creating the monitor URL. The full URL of
@@ -3518,7 +3518,7 @@ module Aws::Deadline
3518
3518
  # resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.iops #=> Integer
3519
3519
  # resp.configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.throughput_mi_b #=> Integer
3520
3520
  # resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections #=> Array
3521
- # resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s"
3521
+ # resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s", "rtx-pro-server-6000"
3522
3522
  # resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].runtime #=> String
3523
3523
  # resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.min #=> Integer
3524
3524
  # resp.configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.max #=> Integer
@@ -3823,6 +3823,44 @@ module Aws::Deadline
3823
3823
  req.send_request(options)
3824
3824
  end
3825
3825
 
3826
+ # Gets the settings for a Deadline Cloud monitor.
3827
+ #
3828
+ # @option params [required, String] :monitor_id
3829
+ # The unique identifier of the monitor. This ID is returned by the
3830
+ # `CreateMonitor` operation, and is included in the response to the
3831
+ # `ListMonitors` operation.
3832
+ #
3833
+ # @return [Types::GetMonitorSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3834
+ #
3835
+ # * {Types::GetMonitorSettingsResponse#settings #settings} => Hash<String,String>
3836
+ #
3837
+ #
3838
+ # @example Example: Get monitor settings
3839
+ #
3840
+ # resp = client.get_monitor_settings({
3841
+ # monitor_id: "monitor-1234567890abcdef1234567890abcdef",
3842
+ # })
3843
+ #
3844
+ # @example Request syntax with placeholder values
3845
+ #
3846
+ # resp = client.get_monitor_settings({
3847
+ # monitor_id: "MonitorId", # required
3848
+ # })
3849
+ #
3850
+ # @example Response structure
3851
+ #
3852
+ # resp.settings #=> Hash
3853
+ # resp.settings["SettingKey"] #=> String
3854
+ #
3855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetMonitorSettings AWS API Documentation
3856
+ #
3857
+ # @overload get_monitor_settings(params = {})
3858
+ # @param [Hash] params ({})
3859
+ def get_monitor_settings(params = {}, options = {})
3860
+ req = build_request(:get_monitor_settings, params)
3861
+ req.send_request(options)
3862
+ end
3863
+
3826
3864
  # Gets a queue.
3827
3865
  #
3828
3866
  # @option params [required, String] :farm_id
@@ -4959,7 +4997,7 @@ module Aws::Deadline
4959
4997
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.iops #=> Integer
4960
4998
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.root_ebs_volume.throughput_mi_b #=> Integer
4961
4999
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections #=> Array
4962
- # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s"
5000
+ # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].name #=> String, one of "t4", "a10g", "l4", "l40s", "rtx-pro-server-6000"
4963
5001
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.selections[0].runtime #=> String
4964
5002
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.min #=> Integer
4965
5003
  # resp.fleets[0].configuration.service_managed_ec2.instance_capabilities.accelerator_capabilities.count.max #=> Integer
@@ -7193,7 +7231,7 @@ module Aws::Deadline
7193
7231
  # accelerator_capabilities: {
7194
7232
  # selections: [ # required
7195
7233
  # {
7196
- # name: "t4", # required, accepts t4, a10g, l4, l40s
7234
+ # name: "t4", # required, accepts t4, a10g, l4, l40s, rtx-pro-server-6000
7197
7235
  # runtime: "AcceleratorRuntime",
7198
7236
  # },
7199
7237
  # ],
@@ -7433,6 +7471,48 @@ module Aws::Deadline
7433
7471
  req.send_request(options)
7434
7472
  end
7435
7473
 
7474
+ # Updates the settings for a Deadline Cloud monitor. Keys present in the
7475
+ # request are upserted; keys absent are left unchanged. Send an empty
7476
+ # string value to delete a key.
7477
+ #
7478
+ # @option params [required, String] :monitor_id
7479
+ # The unique identifier of the monitor to update settings for.
7480
+ #
7481
+ # @option params [required, Hash<String,String>] :settings
7482
+ # The monitor settings to update as key-value pairs. Keys present in the
7483
+ # request are upserted; keys absent are left unchanged. Send an empty
7484
+ # string value to delete a key.
7485
+ #
7486
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7487
+ #
7488
+ #
7489
+ # @example Example: Update monitor settings
7490
+ #
7491
+ # resp = client.update_monitor_settings({
7492
+ # monitor_id: "monitor-1234567890abcdef1234567890abcdef",
7493
+ # settings: {
7494
+ # "idcApplicationArn" => "arn:aws:sso::123456789012:application/ins-1234567890abcdef/apl-1234567890abcdef",
7495
+ # },
7496
+ # })
7497
+ #
7498
+ # @example Request syntax with placeholder values
7499
+ #
7500
+ # resp = client.update_monitor_settings({
7501
+ # monitor_id: "MonitorId", # required
7502
+ # settings: { # required
7503
+ # "SettingKey" => "SettingValue",
7504
+ # },
7505
+ # })
7506
+ #
7507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdateMonitorSettings AWS API Documentation
7508
+ #
7509
+ # @overload update_monitor_settings(params = {})
7510
+ # @param [Hash] params ({})
7511
+ def update_monitor_settings(params = {}, options = {})
7512
+ req = build_request(:update_monitor_settings, params)
7513
+ req.send_request(options)
7514
+ end
7515
+
7436
7516
  # Updates a queue.
7437
7517
  #
7438
7518
  # @option params [required, String] :farm_id
@@ -8069,7 +8149,7 @@ module Aws::Deadline
8069
8149
  tracer: tracer
8070
8150
  )
8071
8151
  context[:gem_name] = 'aws-sdk-deadline'
8072
- context[:gem_version] = '1.50.0'
8152
+ context[:gem_version] = '1.52.0'
8073
8153
  Seahorse::Client::Request.new(handlers, context)
8074
8154
  end
8075
8155
 
@@ -303,6 +303,8 @@ module Aws::Deadline
303
303
  GetLimitResponse = Shapes::StructureShape.new(name: 'GetLimitResponse')
304
304
  GetMonitorRequest = Shapes::StructureShape.new(name: 'GetMonitorRequest')
305
305
  GetMonitorResponse = Shapes::StructureShape.new(name: 'GetMonitorResponse')
306
+ GetMonitorSettingsRequest = Shapes::StructureShape.new(name: 'GetMonitorSettingsRequest')
307
+ GetMonitorSettingsResponse = Shapes::StructureShape.new(name: 'GetMonitorSettingsResponse')
306
308
  GetQueueEnvironmentRequest = Shapes::StructureShape.new(name: 'GetQueueEnvironmentRequest')
307
309
  GetQueueEnvironmentResponse = Shapes::StructureShape.new(name: 'GetQueueEnvironmentResponse')
308
310
  GetQueueFleetAssociationRequest = Shapes::StructureShape.new(name: 'GetQueueFleetAssociationRequest')
@@ -600,6 +602,9 @@ module Aws::Deadline
600
602
  SessionsStatisticsResources = Shapes::UnionShape.new(name: 'SessionsStatisticsResources')
601
603
  SessionsStatisticsResourcesFleetIdsList = Shapes::ListShape.new(name: 'SessionsStatisticsResourcesFleetIdsList')
602
604
  SessionsStatisticsResourcesQueueIdsList = Shapes::ListShape.new(name: 'SessionsStatisticsResourcesQueueIdsList')
605
+ SettingKey = Shapes::StringShape.new(name: 'SettingKey')
606
+ SettingValue = Shapes::StringShape.new(name: 'SettingValue')
607
+ SettingsMap = Shapes::MapShape.new(name: 'SettingsMap')
603
608
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
604
609
  StartSessionsStatisticsAggregationRequest = Shapes::StructureShape.new(name: 'StartSessionsStatisticsAggregationRequest')
605
610
  StartSessionsStatisticsAggregationResponse = Shapes::StructureShape.new(name: 'StartSessionsStatisticsAggregationResponse')
@@ -695,6 +700,8 @@ module Aws::Deadline
695
700
  UpdateLimitResponse = Shapes::StructureShape.new(name: 'UpdateLimitResponse')
696
701
  UpdateMonitorRequest = Shapes::StructureShape.new(name: 'UpdateMonitorRequest')
697
702
  UpdateMonitorResponse = Shapes::StructureShape.new(name: 'UpdateMonitorResponse')
703
+ UpdateMonitorSettingsRequest = Shapes::StructureShape.new(name: 'UpdateMonitorSettingsRequest')
704
+ UpdateMonitorSettingsResponse = Shapes::StructureShape.new(name: 'UpdateMonitorSettingsResponse')
698
705
  UpdateQueueEnvironmentRequest = Shapes::StructureShape.new(name: 'UpdateQueueEnvironmentRequest')
699
706
  UpdateQueueEnvironmentResponse = Shapes::StructureShape.new(name: 'UpdateQueueEnvironmentResponse')
700
707
  UpdateQueueFleetAssociationRequest = Shapes::StructureShape.new(name: 'UpdateQueueFleetAssociationRequest')
@@ -1910,6 +1917,12 @@ module Aws::Deadline
1910
1917
  GetMonitorResponse.add_member(:updated_by, Shapes::ShapeRef.new(shape: UpdatedBy, location_name: "updatedBy"))
1911
1918
  GetMonitorResponse.struct_class = Types::GetMonitorResponse
1912
1919
 
1920
+ GetMonitorSettingsRequest.add_member(:monitor_id, Shapes::ShapeRef.new(shape: MonitorId, required: true, location: "uri", location_name: "monitorId"))
1921
+ GetMonitorSettingsRequest.struct_class = Types::GetMonitorSettingsRequest
1922
+
1923
+ GetMonitorSettingsResponse.add_member(:settings, Shapes::ShapeRef.new(shape: SettingsMap, required: true, location_name: "settings"))
1924
+ GetMonitorSettingsResponse.struct_class = Types::GetMonitorSettingsResponse
1925
+
1913
1926
  GetQueueEnvironmentRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
1914
1927
  GetQueueEnvironmentRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
1915
1928
  GetQueueEnvironmentRequest.add_member(:queue_environment_id, Shapes::ShapeRef.new(shape: QueueEnvironmentId, required: true, location: "uri", location_name: "queueEnvironmentId"))
@@ -2992,6 +3005,9 @@ module Aws::Deadline
2992
3005
 
2993
3006
  SessionsStatisticsResourcesQueueIdsList.member = Shapes::ShapeRef.new(shape: QueueId)
2994
3007
 
3008
+ SettingsMap.key = Shapes::ShapeRef.new(shape: SettingKey)
3009
+ SettingsMap.value = Shapes::ShapeRef.new(shape: SettingValue)
3010
+
2995
3011
  StartSessionsStatisticsAggregationRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
2996
3012
  StartSessionsStatisticsAggregationRequest.add_member(:resource_ids, Shapes::ShapeRef.new(shape: SessionsStatisticsResources, required: true, location_name: "resourceIds"))
2997
3013
  StartSessionsStatisticsAggregationRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "startTime"))
@@ -3321,6 +3337,12 @@ module Aws::Deadline
3321
3337
 
3322
3338
  UpdateMonitorResponse.struct_class = Types::UpdateMonitorResponse
3323
3339
 
3340
+ UpdateMonitorSettingsRequest.add_member(:monitor_id, Shapes::ShapeRef.new(shape: MonitorId, required: true, location: "uri", location_name: "monitorId"))
3341
+ UpdateMonitorSettingsRequest.add_member(:settings, Shapes::ShapeRef.new(shape: SettingsMap, required: true, location_name: "settings"))
3342
+ UpdateMonitorSettingsRequest.struct_class = Types::UpdateMonitorSettingsRequest
3343
+
3344
+ UpdateMonitorSettingsResponse.struct_class = Types::UpdateMonitorSettingsResponse
3345
+
3324
3346
  UpdateQueueEnvironmentRequest.add_member(:farm_id, Shapes::ShapeRef.new(shape: FarmId, required: true, location: "uri", location_name: "farmId"))
3325
3347
  UpdateQueueEnvironmentRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "queueId"))
3326
3348
  UpdateQueueEnvironmentRequest.add_member(:queue_environment_id, Shapes::ShapeRef.new(shape: QueueEnvironmentId, required: true, location: "uri", location_name: "queueEnvironmentId"))
@@ -4471,6 +4493,22 @@ module Aws::Deadline
4471
4493
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
4472
4494
  end)
4473
4495
 
4496
+ api.add_operation(:get_monitor_settings, Seahorse::Model::Operation.new.tap do |o|
4497
+ o.name = "GetMonitorSettings"
4498
+ o.http_method = "GET"
4499
+ o.http_request_uri = "/2023-10-12/monitors/{monitorId}/settings"
4500
+ o.endpoint_pattern = {
4501
+ "hostPrefix" => "management.",
4502
+ }
4503
+ o.input = Shapes::ShapeRef.new(shape: GetMonitorSettingsRequest)
4504
+ o.output = Shapes::ShapeRef.new(shape: GetMonitorSettingsResponse)
4505
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
4506
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
4507
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
4508
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
4509
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
4510
+ end)
4511
+
4474
4512
  api.add_operation(:get_queue, Seahorse::Model::Operation.new.tap do |o|
4475
4513
  o.name = "GetQueue"
4476
4514
  o.http_method = "GET"
@@ -5522,6 +5560,22 @@ module Aws::Deadline
5522
5560
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
5523
5561
  end)
5524
5562
 
5563
+ api.add_operation(:update_monitor_settings, Seahorse::Model::Operation.new.tap do |o|
5564
+ o.name = "UpdateMonitorSettings"
5565
+ o.http_method = "PATCH"
5566
+ o.http_request_uri = "/2023-10-12/monitors/{monitorId}/settings"
5567
+ o.endpoint_pattern = {
5568
+ "hostPrefix" => "management.",
5569
+ }
5570
+ o.input = Shapes::ShapeRef.new(shape: UpdateMonitorSettingsRequest)
5571
+ o.output = Shapes::ShapeRef.new(shape: UpdateMonitorSettingsResponse)
5572
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
5573
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
5574
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
5575
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
5576
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
5577
+ end)
5578
+
5525
5579
  api.add_operation(:update_queue, Seahorse::Model::Operation.new.tap do |o|
5526
5580
  o.name = "UpdateQueue"
5527
5581
  o.http_method = "PATCH"
@@ -27,6 +27,8 @@ module Aws::Deadline
27
27
  #
28
28
  # * `l40s`: Uses G6e instance family
29
29
  #
30
+ # * `rtx-pro-server-6000`: Uses G7e instance family
31
+ #
30
32
  # </note>
31
33
  #
32
34
  # @!attribute [rw] selections
@@ -100,6 +102,9 @@ module Aws::Deadline
100
102
  # * `l4` - NVIDIA L4 Tensor Core GPU (24 GiB memory)
101
103
  #
102
104
  # * `l40s` - NVIDIA L40S Tensor Core GPU (48 GiB memory)
105
+ #
106
+ # * `rtx-pro-server-6000` - NVIDIA RTX PRO Server 6000 GPU (96 GiB
107
+ # memory)
103
108
  # @return [String]
104
109
  #
105
110
  # @!attribute [rw] runtime
@@ -112,9 +117,11 @@ module Aws::Deadline
112
117
  # specify `latest` and a new version of the runtime is released, the
113
118
  # new version of the runtime is used.
114
119
  #
115
- # * `grid:r570` - [NVIDIA vGPU software 18][1]
120
+ # * `grid:r580` - [NVIDIA vGPU software 19][1]
121
+ #
122
+ # * `grid:r570` - [NVIDIA vGPU software 18][2]
116
123
  #
117
- # * `grid:r535` - [NVIDIA vGPU software 16][2]
124
+ # * `grid:r535` - [NVIDIA vGPU software 16][3]
118
125
  #
119
126
  # If you don't specify a runtime, Amazon Web Services Deadline Cloud
120
127
  # uses `latest` as the default. However, if you have multiple
@@ -123,22 +130,26 @@ module Aws::Deadline
123
130
  #
124
131
  # Not all runtimes are compatible with all accelerator types:
125
132
  #
126
- # * `t4` and `a10g`: Support all runtimes (`grid:r570`, `grid:r535`)
133
+ # * `t4` and `a10g`: Support all runtimes (`grid:r580`, `grid:r570`,
134
+ # `grid:r535`)
127
135
  #
128
136
  # * `l4` and `l40s`: Only support `grid:r570` and newer
129
137
  #
138
+ # * `rtx-pro-server-6000`: Only supports `grid:r580`
139
+ #
130
140
  # All accelerators in a fleet must use the same runtime version. You
131
141
  # cannot mix different runtime versions within a single fleet.
132
142
  #
133
- # <note markdown="1"> When you specify `latest`, it resolves to `grid:r570` for all
143
+ # <note markdown="1"> When you specify `latest`, it resolves to `grid:r580` for all
134
144
  # currently supported accelerators.
135
145
  #
136
146
  # </note>
137
147
  #
138
148
  #
139
149
  #
140
- # [1]: https://docs.nvidia.com/vgpu/18.0/index.html
141
- # [2]: https://docs.nvidia.com/vgpu/16.0/index.html
150
+ # [1]: https://docs.nvidia.com/vgpu/19.0/index.html
151
+ # [2]: https://docs.nvidia.com/vgpu/18.0/index.html
152
+ # [3]: https://docs.nvidia.com/vgpu/16.0/index.html
142
153
  # @return [String]
143
154
  #
144
155
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AcceleratorSelection AWS API Documentation
@@ -3006,8 +3017,8 @@ module Aws::Deadline
3006
3017
  # @return [String]
3007
3018
  #
3008
3019
  # @!attribute [rw] identity_center_region
3009
- # The AWS region where IAM Identity Center is enabled. Required when
3010
- # Identity Center is in a different region than the monitor.
3020
+ # The AWS Region where IAM Identity Center is enabled. Required when
3021
+ # IAM Identity Center is in a different Region than the monitor.
3011
3022
  # @return [String]
3012
3023
  #
3013
3024
  # @!attribute [rw] subdomain
@@ -3398,8 +3409,7 @@ module Aws::Deadline
3398
3409
  #
3399
3410
  # @!attribute [rw] scale_out_workers_per_minute
3400
3411
  # The number of workers that can be added per minute to the fleet. The
3401
- # default is a service-defined value that balances efficiency with
3402
- # cost.
3412
+ # default is 10 workers per minute.
3403
3413
  # @return [Integer]
3404
3414
  #
3405
3415
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CustomerManagedAutoScalingConfiguration AWS API Documentation
@@ -5210,7 +5220,7 @@ module Aws::Deadline
5210
5220
  # @return [String]
5211
5221
  #
5212
5222
  # @!attribute [rw] identity_center_region
5213
- # The AWS region where IAM Identity Center is enabled.
5223
+ # The AWS Region where IAM Identity Center is enabled.
5214
5224
  # @return [String]
5215
5225
  #
5216
5226
  # @!attribute [rw] identity_center_application_arn
@@ -5255,6 +5265,32 @@ module Aws::Deadline
5255
5265
  include Aws::Structure
5256
5266
  end
5257
5267
 
5268
+ # @!attribute [rw] monitor_id
5269
+ # The unique identifier of the monitor. This ID is returned by the
5270
+ # `CreateMonitor` operation, and is included in the response to the
5271
+ # `ListMonitors` operation.
5272
+ # @return [String]
5273
+ #
5274
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetMonitorSettingsRequest AWS API Documentation
5275
+ #
5276
+ class GetMonitorSettingsRequest < Struct.new(
5277
+ :monitor_id)
5278
+ SENSITIVE = []
5279
+ include Aws::Structure
5280
+ end
5281
+
5282
+ # @!attribute [rw] settings
5283
+ # The monitor settings as key-value pairs.
5284
+ # @return [Hash<String,String>]
5285
+ #
5286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetMonitorSettingsResponse AWS API Documentation
5287
+ #
5288
+ class GetMonitorSettingsResponse < Struct.new(
5289
+ :settings)
5290
+ SENSITIVE = []
5291
+ include Aws::Structure
5292
+ end
5293
+
5258
5294
  # @!attribute [rw] farm_id
5259
5295
  # The farm ID for the queue environment.
5260
5296
  # @return [String]
@@ -9002,7 +9038,7 @@ module Aws::Deadline
9002
9038
  # @return [String]
9003
9039
  #
9004
9040
  # @!attribute [rw] identity_center_region
9005
- # The AWS region where IAM Identity Center is enabled.
9041
+ # The AWS Region where IAM Identity Center is enabled.
9006
9042
  # @return [String]
9007
9043
  #
9008
9044
  # @!attribute [rw] identity_center_application_arn
@@ -10051,8 +10087,7 @@ module Aws::Deadline
10051
10087
  #
10052
10088
  # @!attribute [rw] scale_out_workers_per_minute
10053
10089
  # The number of workers that can be added per minute to the fleet. The
10054
- # default is a service-defined value that balances efficiency with
10055
- # cost.
10090
+ # default is 10 workers per minute.
10056
10091
  # @return [Integer]
10057
10092
  #
10058
10093
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ServiceManagedEc2AutoScalingConfiguration AWS API Documentation
@@ -11914,6 +11949,29 @@ module Aws::Deadline
11914
11949
  #
11915
11950
  class UpdateMonitorResponse < Aws::EmptyStructure; end
11916
11951
 
11952
+ # @!attribute [rw] monitor_id
11953
+ # The unique identifier of the monitor to update settings for.
11954
+ # @return [String]
11955
+ #
11956
+ # @!attribute [rw] settings
11957
+ # The monitor settings to update as key-value pairs. Keys present in
11958
+ # the request are upserted; keys absent are left unchanged. Send an
11959
+ # empty string value to delete a key.
11960
+ # @return [Hash<String,String>]
11961
+ #
11962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdateMonitorSettingsRequest AWS API Documentation
11963
+ #
11964
+ class UpdateMonitorSettingsRequest < Struct.new(
11965
+ :monitor_id,
11966
+ :settings)
11967
+ SENSITIVE = []
11968
+ include Aws::Structure
11969
+ end
11970
+
11971
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/UpdateMonitorSettingsResponse AWS API Documentation
11972
+ #
11973
+ class UpdateMonitorSettingsResponse < Aws::EmptyStructure; end
11974
+
11917
11975
  # @!attribute [rw] farm_id
11918
11976
  # The farm ID of the queue environment to update.
11919
11977
  # @return [String]
@@ -55,7 +55,7 @@ module Aws::Deadline
55
55
  autoload :EndpointProvider, 'aws-sdk-deadline/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-deadline/endpoints'
57
57
 
58
- GEM_VERSION = '1.50.0'
58
+ GEM_VERSION = '1.52.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -515,7 +515,7 @@ module Aws
515
515
  accelerator_capabilities: {
516
516
  selections: Array[
517
517
  {
518
- name: ("t4" | "a10g" | "l4" | "l40s"),
518
+ name: ("t4" | "a10g" | "l4" | "l40s" | "rtx-pro-server-6000"),
519
519
  runtime: ::String?
520
520
  },
521
521
  ],
@@ -1122,6 +1122,16 @@ module Aws
1122
1122
  ) -> _GetMonitorResponseSuccess
1123
1123
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMonitorResponseSuccess
1124
1124
 
1125
+ interface _GetMonitorSettingsResponseSuccess
1126
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetMonitorSettingsResponse]
1127
+ def settings: () -> ::Hash[::String, ::String]
1128
+ end
1129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#get_monitor_settings-instance_method
1130
+ def get_monitor_settings: (
1131
+ monitor_id: ::String
1132
+ ) -> _GetMonitorSettingsResponseSuccess
1133
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMonitorSettingsResponseSuccess
1134
+
1125
1135
  interface _GetQueueResponseSuccess
1126
1136
  include ::Seahorse::Client::_ResponseSuccess[Types::GetQueueResponse]
1127
1137
  def farm_id: () -> ::String
@@ -2213,7 +2223,7 @@ module Aws
2213
2223
  accelerator_capabilities: {
2214
2224
  selections: Array[
2215
2225
  {
2216
- name: ("t4" | "a10g" | "l4" | "l40s"),
2226
+ name: ("t4" | "a10g" | "l4" | "l40s" | "rtx-pro-server-6000"),
2217
2227
  runtime: ::String?
2218
2228
  },
2219
2229
  ],
@@ -2304,6 +2314,16 @@ module Aws
2304
2314
  ) -> _UpdateMonitorResponseSuccess
2305
2315
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMonitorResponseSuccess
2306
2316
 
2317
+ interface _UpdateMonitorSettingsResponseSuccess
2318
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMonitorSettingsResponse]
2319
+ end
2320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Deadline/Client.html#update_monitor_settings-instance_method
2321
+ def update_monitor_settings: (
2322
+ monitor_id: ::String,
2323
+ settings: Hash[::String, ::String]
2324
+ ) -> _UpdateMonitorSettingsResponseSuccess
2325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMonitorSettingsResponseSuccess
2326
+
2307
2327
  interface _UpdateQueueResponseSuccess
2308
2328
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateQueueResponse]
2309
2329
  end
data/sig/types.rbs CHANGED
@@ -21,7 +21,7 @@ module Aws::Deadline
21
21
  end
22
22
 
23
23
  class AcceleratorSelection
24
- attr_accessor name: ("t4" | "a10g" | "l4" | "l40s")
24
+ attr_accessor name: ("t4" | "a10g" | "l4" | "l40s" | "rtx-pro-server-6000")
25
25
  attr_accessor runtime: ::String
26
26
  SENSITIVE: []
27
27
  end
@@ -1413,6 +1413,16 @@ module Aws::Deadline
1413
1413
  SENSITIVE: []
1414
1414
  end
1415
1415
 
1416
+ class GetMonitorSettingsRequest
1417
+ attr_accessor monitor_id: ::String
1418
+ SENSITIVE: []
1419
+ end
1420
+
1421
+ class GetMonitorSettingsResponse
1422
+ attr_accessor settings: ::Hash[::String, ::String]
1423
+ SENSITIVE: []
1424
+ end
1425
+
1416
1426
  class GetQueueEnvironmentRequest
1417
1427
  attr_accessor farm_id: ::String
1418
1428
  attr_accessor queue_id: ::String
@@ -3153,6 +3163,15 @@ module Aws::Deadline
3153
3163
  class UpdateMonitorResponse < Aws::EmptyStructure
3154
3164
  end
3155
3165
 
3166
+ class UpdateMonitorSettingsRequest
3167
+ attr_accessor monitor_id: ::String
3168
+ attr_accessor settings: ::Hash[::String, ::String]
3169
+ SENSITIVE: []
3170
+ end
3171
+
3172
+ class UpdateMonitorSettingsResponse < Aws::EmptyStructure
3173
+ end
3174
+
3156
3175
  class UpdateQueueEnvironmentRequest
3157
3176
  attr_accessor farm_id: ::String
3158
3177
  attr_accessor queue_id: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-deadline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.52.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services