kubernetes-models
Version:
23 lines (22 loc) • 816 B
TypeScript
import { Model } from "@kubernetes-models/base";
/**
* ServiceBackendPort is the service port being referenced.
*/
export interface IServiceBackendPort {
/**
* Name is the name of the port on the Service. This is a mutually exclusive setting with "Number".
*/
"name"?: string;
/**
* Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".
*/
"number"?: number;
}
/**
* ServiceBackendPort is the service port being referenced.
*/
export declare class ServiceBackendPort extends Model<IServiceBackendPort> implements IServiceBackendPort {
"name"?: string;
"number"?: number;
}
export { IServiceBackendPort as IIoK8sApiNetworkingV1ServiceBackendPort, ServiceBackendPort as IoK8sApiNetworkingV1ServiceBackendPort };