@Beta(value=V1_14_0)
public interface QueuedBuildOperations
| Modifier and Type | Method and Description |
|---|---|
void |
cancel(String buildId)
Cancels a queued build for the container registry.
|
rx.Completable |
cancelAsync(String buildId)
Cancels a queued build for the container registry asynchronously.
|
Build |
get(String buildId)
Gets the properties of the specified queued build.
|
rx.Observable<Build> |
getAsync(String buildId)
Gets the properties of the specified queued build.
|
com.microsoft.azure.PagedList<Build> |
list()
Lists all the queued build for the container registry.
|
rx.Observable<Build> |
listAsync()
Lists all the build tasks for the container registry.
|
com.microsoft.azure.PagedList<Build> |
listWithFilterAndTop(String filter,
int top)
Lists all the queued builds for the container registry matching the specified filter.
|
rx.Observable<Build> |
listWithFilterAndTopAsync(String filter,
int top)
Lists all the queued builds for the container registry matching the specified filter.
|
Build |
queueBuildTask(String buildTaskName)
Queues a build task to build for the current container registry.
|
rx.Observable<Build> |
queueBuildTaskAsync(String buildTaskName)
Queues a build task to build for the current container registry.
|
Build.QueuedQuickBuildDefinitionStages.Blank |
queueQuickBuild()
Creates a new quick build based on the request parameters and adds it to the build queue.
|
Build queueBuildTask(String buildTaskName)
buildTaskName - the name of build task to be queuedrx.Observable<Build> queueBuildTaskAsync(String buildTaskName)
buildTaskName - the name of build task to be queuedBuild.QueuedQuickBuildDefinitionStages.Blank queueQuickBuild()
Build get(String buildId)
buildId - the ID of the queued buildrx.Observable<Build> getAsync(String buildId)
buildId - the ID of the queued buildvoid cancel(String buildId)
buildId - the ID of the queued buildrx.Completable cancelAsync(String buildId)
buildId - the ID of the queued buildcom.microsoft.azure.PagedList<Build> list()
rx.Observable<Build> listAsync()
com.microsoft.azure.PagedList<Build> listWithFilterAndTop(String filter, int top)
filter - the specified filtertop - the maximum nuber of queued builds to returnrx.Observable<Build> listWithFilterAndTopAsync(String filter, int top)
filter - the specified filtertop - the maximum nuber of queued builds to return/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/