RunsOperations interface
Interface representing a Runs operations.
Properties
| cancel | Cancel an existing run. |
| get | Gets the detailed information for a given run. |
| get |
Gets a link to download the run logs. |
| list | Gets all the runs for a registry. |
| update | Patch the run properties. |
Property Details
cancel
Cancel an existing run.
cancel: (resourceGroupName: string, registryName: string, runId: string, options?: RunsCancelOptionalParams) => Promise<void>
Property Value
(resourceGroupName: string, registryName: string, runId: string, options?: RunsCancelOptionalParams) => Promise<void>
get
Gets the detailed information for a given run.
get: (resourceGroupName: string, registryName: string, runId: string, options?: RunsGetOptionalParams) => Promise<Run>
Property Value
(resourceGroupName: string, registryName: string, runId: string, options?: RunsGetOptionalParams) => Promise<Run>
getLogSasUrl
Gets a link to download the run logs.
getLogSasUrl: (resourceGroupName: string, registryName: string, runId: string, options?: RunsGetLogSasUrlOptionalParams) => Promise<RunGetLogResult>
Property Value
(resourceGroupName: string, registryName: string, runId: string, options?: RunsGetLogSasUrlOptionalParams) => Promise<RunGetLogResult>
list
Gets all the runs for a registry.
list: (resourceGroupName: string, registryName: string, options?: RunsListOptionalParams) => PagedAsyncIterableIterator<Run, Run[], PageSettings>
Property Value
(resourceGroupName: string, registryName: string, options?: RunsListOptionalParams) => PagedAsyncIterableIterator<Run, Run[], PageSettings>
update
Patch the run properties.
update: (resourceGroupName: string, registryName: string, runId: string, runUpdateParameters: RunUpdateParameters, options?: RunsUpdateOptionalParams) => Promise<Run>
Property Value
(resourceGroupName: string, registryName: string, runId: string, runUpdateParameters: RunUpdateParameters, options?: RunsUpdateOptionalParams) => Promise<Run>