QueueSettings Class
Note
This is an experimental class, and may change at any time. Please see https://aka.ms/azuremlexperimental for more information.
Queue settings for a pipeline job.
- Inheritance
-
azure.ai.ml.entities._mixins.RestTranslatableMixinQueueSettingsazure.ai.ml.entities._mixins.DictMixinQueueSettings
Constructor
QueueSettings(*, job_tier: str | None = None, priority: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
job_tier
|
The job tier. Accepted values are "Spot", "Basic", "Standard", and "Premium". |
priority
|
The priority of the job on a compute. Accepted values are "low", "medium", and "high". Defaults to "medium". |
kwargs
|
Additional properties for QueueSettings. |
Variables
Name | Description |
---|---|
job_tier
|
str or
<xref:azure.mgmt.machinelearningservices.models.JobTier>
Enum to determine the job tier. Possible values include: "Spot", "Basic", "Standard", "Premium", "Null". |
priority
|
Controls the priority of the job on a compute. |
Methods
get | |
has_key | |
items | |
keys | |
update | |
values |
get
get(key: Any, default: Any | None = None) -> Any
Parameters
Name | Description |
---|---|
key
Required
|
|
default
|
Default value: None
|
has_key
has_key(k: Any) -> bool
Parameters
Name | Description |
---|---|
k
Required
|
|
items
items() -> list
keys
keys() -> list
update
update(*args: Any, **kwargs: Any) -> None
values
values() -> list
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python