cdktf-crd
Version:
29 lines (28 loc) • 1.09 kB
TypeScript
import { Manifest, type ManifestConfig } from "@cdktf/provider-kubernetes/lib/manifest";
import { Construct } from "constructs";
export declare class KubernetesDataplaneV2EncryptionV1alpha1Manifest extends Manifest {
constructor(scope: Construct, id: string, config: KubernetesDataplaneV2EncryptionV1alpha1ManifestConfig);
}
export interface KubernetesDataplaneV2EncryptionV1alpha1ManifestConfig extends ManifestConfig {
manifest: {
apiVersion?: "networking.gke.io/v1alpha1";
kind?: "DataplaneV2Encryption";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description Spec is the desired configuration for node-to-node encryption. */
spec?: {
/** @description Enable node-to-node encryption. */
enabled: boolean;
/** @description Type of encryption to be used. */
type: string;
};
};
}