kubernetes-models
Version:
10 lines (9 loc) • 407 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../_schemas/IoK8sApiCoreV1ClientIPConfig.mjs";
/**
* ClientIPConfig represents the configurations of Client IP based session affinity.
*/
export class ClientIPConfig extends Model {
}
setSchema(ClientIPConfig, "io.k8s.api.core.v1.ClientIPConfig", addSchema);
export { ClientIPConfig as IoK8sApiCoreV1ClientIPConfig };