UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

29 lines (26 loc) 896 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 { StoreReleasePublishLogsGetOptionalParams } from "../models"; /** Interface representing a StoreReleasePublishLogs. */ export interface StoreReleasePublishLogs { /** * Returns publish logs for a particular release published to a particular store * @param storeName The name of the store * @param releaseId The ID of the realease * @param ownerName The name of the owner * @param appName The name of the application * @param options The options parameters. */ get( storeName: string, releaseId: string, ownerName: string, appName: string, options?: StoreReleasePublishLogsGetOptionalParams ): Promise<void>; }