appcenter-cli
Version:
Command line tool for Visual Studio App Center
30 lines (27 loc) • 911 B
text/typescript
/*
* 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 {
CodePushDeploymentUploadCreateOptionalParams,
CodePushDeploymentUploadCreateResponse
} from "../models";
/** Interface representing a CodePushDeploymentUpload. */
export interface CodePushDeploymentUpload {
/**
* Create a new CodePush release upload for the specified deployment
* @param deploymentName deployment name
* @param ownerName The name of the owner
* @param appName The name of the application
* @param options The options parameters.
*/
create(
deploymentName: string,
ownerName: string,
appName: string,
options?: CodePushDeploymentUploadCreateOptionalParams
): Promise<CodePushDeploymentUploadCreateResponse>;
}