UNPKG

@azure/arm-appservice

Version:
239 lines 8.2 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { setContinuationToken } from "../pagingHelper.js"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers.js"; import * as Parameters from "../models/parameters.js"; /// <reference lib="esnext.asynciterable" /> /** Class containing DeletedWebApps operations. */ export class DeletedWebAppsImpl { client; /** * Initialize a new instance of the class DeletedWebApps class. * @param client Reference to the service client */ constructor(client) { this.client = client; } /** * Description for Get all deleted apps for a subscription. * @param options The options parameters. */ list(options) { const iter = this.listPagingAll(options); return { next() { return iter.next(); }, [Symbol.asyncIterator]() { return this; }, byPage: (settings) => { if (settings?.maxPageSize) { throw new Error("maxPageSize is not supported by this operation."); } return this.listPagingPage(options, settings); }, }; } async *listPagingPage(options, settings) { let result; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._list(options); const page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield page; } while (continuationToken) { result = await this._listNext(continuationToken, options); continuationToken = result.nextLink; const page = result.value || []; setContinuationToken(page, continuationToken); yield page; } } async *listPagingAll(options) { for await (const page of this.listPagingPage(options)) { yield* page; } } /** * Description for Get all deleted apps for a subscription at location * @param location * @param options The options parameters. */ listByLocation(location, options) { const iter = this.listByLocationPagingAll(location, options); return { next() { return iter.next(); }, [Symbol.asyncIterator]() { return this; }, byPage: (settings) => { if (settings?.maxPageSize) { throw new Error("maxPageSize is not supported by this operation."); } return this.listByLocationPagingPage(location, options, settings); }, }; } async *listByLocationPagingPage(location, options, settings) { let result; let continuationToken = settings?.continuationToken; if (!continuationToken) { result = await this._listByLocation(location, options); const page = result.value || []; continuationToken = result.nextLink; setContinuationToken(page, continuationToken); yield page; } while (continuationToken) { result = await this._listByLocationNext(location, continuationToken, options); continuationToken = result.nextLink; const page = result.value || []; setContinuationToken(page, continuationToken); yield page; } } async *listByLocationPagingAll(location, options) { for await (const page of this.listByLocationPagingPage(location, options)) { yield* page; } } /** * Description for Get all deleted apps for a subscription. * @param options The options parameters. */ _list(options) { return this.client.sendOperationRequest({ options }, listOperationSpec); } /** * Description for Get all deleted apps for a subscription at location * @param location * @param options The options parameters. */ _listByLocation(location, options) { return this.client.sendOperationRequest({ location, options }, listByLocationOperationSpec); } /** * 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, deletedSiteId, options) { return this.client.sendOperationRequest({ location, deletedSiteId, options }, getDeletedWebAppByLocationOperationSpec); } /** * ListNext * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ _listNext(nextLink, options) { return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec); } /** * ListByLocationNext * @param location * @param nextLink The nextLink from the previous successful call to the ListByLocation method. * @param options The options parameters. */ _listByLocationNext(location, nextLink, options) { return this.client.sendOperationRequest({ location, nextLink, options }, listByLocationNextOperationSpec); } } // Operation Specifications const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); const listOperationSpec = { path: "/subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.DeletedWebAppCollection, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.$host, Parameters.subscriptionId], headerParameters: [Parameters.accept], serializer, }; const listByLocationOperationSpec = { path: "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.DeletedWebAppCollection, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.$host, Parameters.subscriptionId, Parameters.location], headerParameters: [Parameters.accept], serializer, }; const getDeletedWebAppByLocationOperationSpec = { path: "/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites/{deletedSiteId}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.DeletedSite, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.location, Parameters.deletedSiteId, ], headerParameters: [Parameters.accept], serializer, }; const listNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.DeletedWebAppCollection, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, urlParameters: [Parameters.$host, Parameters.subscriptionId, Parameters.nextLink], headerParameters: [Parameters.accept], serializer, }; const listByLocationNextOperationSpec = { path: "{nextLink}", httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.DeletedWebAppCollection, }, default: { bodyMapper: Mappers.DefaultErrorResponse, }, }, urlParameters: [ Parameters.$host, Parameters.subscriptionId, Parameters.nextLink, Parameters.location, ], headerParameters: [Parameters.accept], serializer, }; //# sourceMappingURL=deletedWebApps.js.map