import { ModelData, Model } from "@kubernetes-models/base"; /** * EncryptionSpec defines the encryption relevant configuration of a node. */ export interface IEncryptionSpec { /** * Key is the index to the key to use for encryption or 0 if encryption is * disabled. */ "key"?: number; } /** * EncryptionSpec defines the encryption relevant configuration of a node. */ export declare class EncryptionSpec extends Model implements IEncryptionSpec { "key"?: number; constructor(data?: ModelData); } export type { IEncryptionSpec as IComGithubCiliumCiliumPkgK8sApisCiliumIoV2EncryptionSpec, EncryptionSpec as ComGithubCiliumCiliumPkgK8sApisCiliumIoV2EncryptionSpec };