import { ModelData, Model } from "@kubernetes-models/base"; /** * SelfSignedTransportCertificates holds configuration for the self-signed certificates generated by the operator. */ export interface ISelfSignedTransportCertificates { /** * Disabled indicates that provisioning of the self-signed certificates should be disabled. */ "disabled"?: boolean; } /** * SelfSignedTransportCertificates holds configuration for the self-signed certificates generated by the operator. */ export declare class SelfSignedTransportCertificates extends Model implements ISelfSignedTransportCertificates { "disabled"?: boolean; constructor(data?: ModelData); } export type { ISelfSignedTransportCertificates as IComGithubElasticCloudOnK8sV3PkgApisElasticsearchV1SelfSignedTransportCertificates, SelfSignedTransportCertificates as ComGithubElasticCloudOnK8sV3PkgApisElasticsearchV1SelfSignedTransportCertificates };