UNPKG

@azure/arm-appservice

Version:
27 lines 1.79 kB
import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { WorkflowRunActionRepetitionDefinition, WorkflowRunActionScopeRepetitionsListOptionalParams, WorkflowRunActionScopeRepetitionsGetOptionalParams, WorkflowRunActionScopeRepetitionsGetResponse } from "../models/index.js"; /** Interface representing a WorkflowRunActionScopeRepetitions. */ export interface WorkflowRunActionScopeRepetitions { /** * List the workflow run action scoped repetitions. * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @param workflowName The workflow name. * @param runName The workflow run name. * @param actionName The workflow action name. * @param options The options parameters. */ list(resourceGroupName: string, name: string, workflowName: string, runName: string, actionName: string, options?: WorkflowRunActionScopeRepetitionsListOptionalParams): PagedAsyncIterableIterator<WorkflowRunActionRepetitionDefinition>; /** * Get a workflow run action scoped repetition. * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @param workflowName The workflow name. * @param runName The workflow run name. * @param actionName The workflow action name. * @param repetitionName The workflow repetition. * @param options The options parameters. */ get(resourceGroupName: string, name: string, workflowName: string, runName: string, actionName: string, repetitionName: string, options?: WorkflowRunActionScopeRepetitionsGetOptionalParams): Promise<WorkflowRunActionScopeRepetitionsGetResponse>; } //# sourceMappingURL=workflowRunActionScopeRepetitions.d.ts.map