UNPKG

@azure/arm-appservice

Version:
50 lines 2.39 kB
import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { WorkflowVersions } from "../operationsInterfaces/index.js"; import type { WebSiteManagementClient } from "../webSiteManagementClient.js"; import type { WorkflowVersion, WorkflowVersionsListOptionalParams, WorkflowVersionsGetOptionalParams, WorkflowVersionsGetResponse } from "../models/index.js"; /** Class containing WorkflowVersions operations. */ export declare class WorkflowVersionsImpl implements WorkflowVersions { private readonly client; /** * Initialize a new instance of the class WorkflowVersions class. * @param client Reference to the service client */ constructor(client: WebSiteManagementClient); /** * Gets a list of workflow versions. * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @param workflowName The workflow name. * @param options The options parameters. */ list(resourceGroupName: string, name: string, workflowName: string, options?: WorkflowVersionsListOptionalParams): PagedAsyncIterableIterator<WorkflowVersion>; private listPagingPage; private listPagingAll; /** * Gets a list of workflow versions. * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @param workflowName The workflow name. * @param options The options parameters. */ private _list; /** * Gets a workflow version. * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @param workflowName The workflow name. * @param versionId The workflow versionId. * @param options The options parameters. */ get(resourceGroupName: string, name: string, workflowName: string, versionId: string, options?: WorkflowVersionsGetOptionalParams): Promise<WorkflowVersionsGetResponse>; /** * ListNext * @param resourceGroupName Name of the resource group to which the resource belongs. * @param name Site name. * @param workflowName The workflow name. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=workflowVersions.d.ts.map