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