@azure/arm-appservice
Version:
A generated SDK for WebSiteManagementClient.
24 lines • 1.38 kB
TypeScript
import type { PagedAsyncIterableIterator } from "@azure/core-paging";
import type { DeletedSite, DeletedWebAppsListOptionalParams, DeletedWebAppsListByLocationOptionalParams, DeletedWebAppsGetDeletedWebAppByLocationOptionalParams, DeletedWebAppsGetDeletedWebAppByLocationResponse } from "../models/index.js";
/** Interface representing a DeletedWebApps. */
export interface DeletedWebApps {
/**
* Description for Get all deleted apps for a subscription.
* @param options The options parameters.
*/
list(options?: DeletedWebAppsListOptionalParams): PagedAsyncIterableIterator<DeletedSite>;
/**
* Description for Get all deleted apps for a subscription at location
* @param location
* @param options The options parameters.
*/
listByLocation(location: string, options?: DeletedWebAppsListByLocationOptionalParams): PagedAsyncIterableIterator<DeletedSite>;
/**
* Description for Get deleted app for a subscription at location.
* @param location
* @param deletedSiteId The numeric ID of the deleted app, e.g. 12345
* @param options The options parameters.
*/
getDeletedWebAppByLocation(location: string, deletedSiteId: string, options?: DeletedWebAppsGetDeletedWebAppByLocationOptionalParams): Promise<DeletedWebAppsGetDeletedWebAppByLocationResponse>;
}
//# sourceMappingURL=deletedWebApps.d.ts.map