@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
19 lines • 694 B
TypeScript
import { LogSubscriptionResource } from './LogSubscriptionResource';
/** Metrics subscription */
export interface MetricSubscription {
/** Creation date of the subscription */
createdAt: string;
/** Metric kind name of this subscription */
kind: string;
/** Subscribed resource, where the metrics come from */
resource: LogSubscriptionResource;
/** Name of the destination /dbaas/logs 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