Interface RegistryTaskRuns
-
public interface RegistryTaskRunsAn immutable client-side representation of collection of Azure registry task runs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancel(String rgName, String acrName, String runId)The function that cancels a task run.Mono<Void>cancelAsync(String rgName, String acrName, String runId)The function that cancels a task run asynchronously.StringgetLogSasUrl(String rgName, String acrName, String runId)The function that returns the URI to the task run logs.Mono<String>getLogSasUrlAsync(String rgName, String acrName, String runId)The function that returns the URI to the task run logs asynchronously.com.azure.core.http.rest.PagedIterable<RegistryTaskRun>listByRegistry(String rgName, String acrName)The function that lists the RegistryTaskRun instances in a registry asynch.com.azure.core.http.rest.PagedFlux<RegistryTaskRun>listByRegistryAsync(String rgName, String acrName)The function that lists the RegistryTaskRun instances in a registry asynchronously.RegistryTaskRun.DefinitionStages.BlankFromRunsscheduleRun()The function that begins the steps to schedule a run.
-
-
-
Method Detail
-
scheduleRun
RegistryTaskRun.DefinitionStages.BlankFromRuns scheduleRun()
The function that begins the steps to schedule a run.- Returns:
- the next step in the execution of a run.
-
listByRegistryAsync
com.azure.core.http.rest.PagedFlux<RegistryTaskRun> listByRegistryAsync(String rgName, String acrName)
The function that lists the RegistryTaskRun instances in a registry asynchronously.- Parameters:
rgName- the resource group of the parent registry.acrName- the name of the parent registry.- Returns:
- the list of RegistryTaskRun instances.
-
listByRegistry
com.azure.core.http.rest.PagedIterable<RegistryTaskRun> listByRegistry(String rgName, String acrName)
The function that lists the RegistryTaskRun instances in a registry asynch.- Parameters:
rgName- the resource group of the parent registry.acrName- the name of the parent registry.- Returns:
- the list of RegistryTaskRun instances.
-
getLogSasUrlAsync
Mono<String> getLogSasUrlAsync(String rgName, String acrName, String runId)
The function that returns the URI to the task run logs asynchronously.- Parameters:
rgName- the resource group of the parent registry.acrName- the name of the parent registry.runId- the id of the task run.- Returns:
- the URI to the task run logs.
-
getLogSasUrl
String getLogSasUrl(String rgName, String acrName, String runId)
The function that returns the URI to the task run logs.- Parameters:
rgName- the resource group of the parent registry.acrName- the name of the parent registry.runId- the id of the task run.- Returns:
- the URI to the task run logs.
-
cancelAsync
Mono<Void> cancelAsync(String rgName, String acrName, String runId)
The function that cancels a task run asynchronously.- Parameters:
rgName- the resource group of the parent registry.acrName- the name of the parent registry.runId- the id of the task run.- Returns:
- handle to the request.
-
-