Interface RegistryTasks
-
- All Superinterfaces:
SupportsCreating<RegistryTask.DefinitionStages.Blank>
public interface RegistryTasks extends SupportsCreating<RegistryTask.DefinitionStages.Blank>
Interface to define the RegistryTasks collection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteByRegistry(String resourceGroupName, String registryName, String taskName)Deletes a task in a registry.Mono<Void>deleteByRegistryAsync(String resourceGroupName, String registryName, String taskName)Deletes a task in a registry asynchronously.RegistryTaskgetByRegistry(String resourceGroupName, String registryName, String taskName, boolean includeSecrets)Gets a task in a registry.Mono<RegistryTask>getByRegistryAsync(String resourceGroupName, String registryName, String taskName, boolean includeSecrets)Gets a task in a registry asynchronously.com.azure.core.http.rest.PagedIterable<RegistryTask>listByRegistry(String resourceGroupName, String registryName)Lists the tasks in a registry.com.azure.core.http.rest.PagedFlux<RegistryTask>listByRegistryAsync(String resourceGroupName, String registryName)Lists the tasks in a registry asynchronously.-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.collection.SupportsCreating
define
-
-
-
-
Method Detail
-
listByRegistryAsync
com.azure.core.http.rest.PagedFlux<RegistryTask> listByRegistryAsync(String resourceGroupName, String registryName)
Lists the tasks in a registry asynchronously.- Parameters:
resourceGroupName- the resource group of the parent registry.registryName- the name of the parent registry.- Returns:
- the tasks with parent registry registry.
-
listByRegistry
com.azure.core.http.rest.PagedIterable<RegistryTask> listByRegistry(String resourceGroupName, String registryName)
Lists the tasks in a registry.- Parameters:
resourceGroupName- the resource group of the parent registry.registryName- the name of the parent registry.- Returns:
- the tasks with parent registry registry.
-
getByRegistryAsync
Mono<RegistryTask> getByRegistryAsync(String resourceGroupName, String registryName, String taskName, boolean includeSecrets)
Gets a task in a registry asynchronously.- Parameters:
resourceGroupName- the resource group of the parent registry.registryName- the name of the parent registry.taskName- the name of the task.includeSecrets- whether to include secrets or not.- Returns:
- the task
-
getByRegistry
RegistryTask getByRegistry(String resourceGroupName, String registryName, String taskName, boolean includeSecrets)
Gets a task in a registry.- Parameters:
resourceGroupName- the resource group of the parent registry.registryName- the name of the parent registry.taskName- the name of the task.includeSecrets- whether to include secrets or not.- Returns:
- the task
-
deleteByRegistryAsync
Mono<Void> deleteByRegistryAsync(String resourceGroupName, String registryName, String taskName)
Deletes a task in a registry asynchronously.- Parameters:
resourceGroupName- the resource group of the parent registry.registryName- the name of the parent registry.taskName- the name of the task.- Returns:
- the handle to the request.
-
-