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

/** Interface representing a CodePushDeploymentMetrics. */
export interface CodePushDeploymentMetrics {
  /**
   * Gets all releases metrics for 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.
   */
  get(
    deploymentName: string,
    ownerName: string,
    appName: string,
    options?: CodePushDeploymentMetricsGetOptionalParams
  ): Promise<CodePushDeploymentMetricsGetResponse>;
}
