/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: v1.34.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V2CrossVersionObjectReference } from '../models/V2CrossVersionObjectReference.js'; import { V2MetricIdentifier } from '../models/V2MetricIdentifier.js'; import { V2MetricTarget } from '../models/V2MetricTarget.js'; /** * ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object). */ export declare class V2ObjectMetricSource { 'describedObject': V2CrossVersionObjectReference; 'metric': V2MetricIdentifier; 'target': V2MetricTarget; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }