UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

30 lines (27 loc) 942 B
/* * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ import { AppBlockLogsOptionalParams, AppBlockLogsResponse } from "../models"; /** Interface representing a App. */ export interface App { /** * **Warning, this operation is not reversible.** * * A successful call to this API will permanently stop ingesting any logs received via SDK by app_id, * and cannot be restored. We advise caution when using this API, it is designed to permanently disable * an app_id. * * @param ownerName The name of the owner * @param appName The name of the application * @param options The options parameters. */ blockLogs( ownerName: string, appName: string, options?: AppBlockLogsOptionalParams ): Promise<AppBlockLogsResponse>; }