appcenter-cli
Version:
Command line tool for Visual Studio App Center
37 lines (34 loc) • 1.05 kB
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 {
OrganizationUpdateAvatarOptionalParams,
OrganizationUpdateAvatarResponse,
OrganizationDeleteAvatarOptionalParams,
OrganizationDeleteAvatarResponse
} from "../models";
/** Interface representing a Organization. */
export interface Organization {
/**
* Sets the organization avatar
* @param orgName The organization's name
* @param options The options parameters.
*/
updateAvatar(
orgName: string,
options?: OrganizationUpdateAvatarOptionalParams
): Promise<OrganizationUpdateAvatarResponse>;
/**
* Deletes the uploaded organization avatar
* @param orgName The organization's name
* @param options The options parameters.
*/
deleteAvatar(
orgName: string,
options?: OrganizationDeleteAvatarOptionalParams
): Promise<OrganizationDeleteAvatarResponse>;
}