import { ModelData, Model } from "@kubernetes-models/base"; /** * SubjectAlternativeName represents a SAN entry in a x509 certificate. */ export interface ISubjectAlternativeName { /** * DNS is the DNS name of the subject. */ "dns"?: string; /** * IP is the IP address of the subject. */ "ip"?: string; } /** * SubjectAlternativeName represents a SAN entry in a x509 certificate. */ export declare class SubjectAlternativeName extends Model implements ISubjectAlternativeName { "dns"?: string; "ip"?: string; constructor(data?: ModelData); } export type { ISubjectAlternativeName as IComGithubElasticCloudOnK8sV3PkgApisCommonV1beta1SubjectAlternativeName, SubjectAlternativeName as ComGithubElasticCloudOnK8sV3PkgApisCommonV1beta1SubjectAlternativeName };