/*
 * 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 {
  FileAssetsCreateOptionalParams,
  FileAssetsCreateResponse
} from "../models";

/** Interface representing a FileAssets. */
export interface FileAssets {
  /**
   * Create a new asset to upload a file
   * @param ownerName The name of the owner
   * @param appName The name of the application
   * @param options The options parameters.
   */
  create(
    ownerName: string,
    appName: string,
    options?: FileAssetsCreateOptionalParams
  ): Promise<FileAssetsCreateResponse>;
}
