RunRequest Class
The request parameters for scheduling a run.
You probably want to use the sub-classes and not this class directly. Known sub-classes are: DockerBuildRequest, EncodedTaskRunRequest, FileTaskRunRequest, TaskRunRequest
All required parameters must be populated in order to send to Azure.
- Inheritance
-
azure.mgmt.containerregistry._serialization.ModelRunRequest
Constructor
RunRequest(*, is_archive_enabled: bool = False, agent_pool_name: str | None = None, log_template: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
is_archive_enabled
|
The value that indicates whether archiving is enabled for the run or not. |
agent_pool_name
|
The dedicated agent pool for the run. |
log_template
|
The template that describes the repository and tag information for run log artifact. |
Variables
Name | Description |
---|---|
type
|
The type of the run request. Required. |
is_archive_enabled
|
The value that indicates whether archiving is enabled for the run or not. |
agent_pool_name
|
The dedicated agent pool for the run. |
log_template
|
The template that describes the repository and tag information for run log artifact. |
Azure SDK for Python