import { IComGithubCiliumCiliumPkgPolicyApiPortProtocol } from "./PortProtocol.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * PortDenyRule is a list of ports/protocol that should be used for deny * policies. This structure lacks the L7Rules since it's not supported in deny * policies. */ export interface IPortDenyRule { /** * Ports is a list of L4 port/protocol */ "ports"?: Array; } /** * PortDenyRule is a list of ports/protocol that should be used for deny * policies. This structure lacks the L7Rules since it's not supported in deny * policies. */ export declare class PortDenyRule extends Model implements IPortDenyRule { "ports"?: Array; constructor(data?: ModelData); } export type { IPortDenyRule as IComGithubCiliumCiliumPkgPolicyApiPortDenyRule, PortDenyRule as ComGithubCiliumCiliumPkgPolicyApiPortDenyRule };