import { SubscriptionResource } from './SubscriptionResource';
/** Metric subscription */
export interface MetricSubscription {
    /** Creation date of the subscription */
    createdAt: string;
    /** Subscribed resource, where the metric come from */
    resource: SubscriptionResource;
    /** Name of the destination metric service */
    serviceName: string;
    /** Subscription ID */
    subscriptionId: string;
    /** Id of the destination metric tenant */
    tenantId: string;
    /** Last update date of the subscription */
    updatedAt: string;
}
//# sourceMappingURL=MetricSubscription.d.ts.map