kubernetes-models
Version:
19 lines (18 loc) • 515 B
TypeScript
import { ModelData, Model } from "@kubernetes-models/base";
/**
* PodIP represents a single IP address allocated to the pod.
*/
export interface IPodIP {
/**
* IP is the IP address assigned to the pod
*/
"ip": string;
}
/**
* PodIP represents a single IP address allocated to the pod.
*/
export declare class PodIP extends Model<IPodIP> implements IPodIP {
"ip": string;
constructor(data?: ModelData<IPodIP>);
}
export { IPodIP as IIoK8sApiCoreV1PodIP, PodIP as IoK8sApiCoreV1PodIP };