2026/04/13 - AWSDeadlineCloud - 2 new api methods
Changes 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.
Gets the settings for a Deadline Cloud monitor.
See also: AWS API Documentation
Request Syntax
client.get_monitor_settings(
monitorId='string'
)
string
[REQUIRED]
The unique identifier of the monitor. This ID is returned by the CreateMonitor operation, and is included in the response to the GetMonitor operation.
dict
Response Syntax
{
'settings': {
'string': 'string'
}
}
Response Structure
(dict) --
settings (dict) --
Monitor settings as key-value pairs.
(string) --
(string) --
Updates the settings for a Deadline Cloud monitor. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.
See also: AWS API Documentation
Request Syntax
client.update_monitor_settings(
monitorId='string',
settings={
'string': 'string'
}
)
string
[REQUIRED]
The unique identifier of the monitor to update settings for.
dict
[REQUIRED]
Monitor settings as key-value pairs. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.
(string) --
(string) --
dict
Response Syntax
{}
Response Structure
(dict) --