Interface RegistryTasks

    • 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.
      • deleteByRegistry

        void deleteByRegistry​(String resourceGroupName,
                              String registryName,
                              String taskName)
        Deletes 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.