cdktf-crd
Version:
24 lines (23 loc) • 879 B
TypeScript
import { Construct } from "constructs";
import { Manifest, type ManifestConfig } from "@cdktn/provider-kubernetes/lib/manifest";
export declare class GeneratorsExternalSecretsIoUUIDV1alpha1 extends Manifest {
constructor(scope: Construct, id: string, config: GeneratorsExternalSecretsIoUUIDV1alpha1Config);
}
export interface GeneratorsExternalSecretsIoUUIDV1alpha1Config extends ManifestConfig {
manifest: {
apiVersion: "generators.external-secrets.io/v1alpha1";
kind: "UUID";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description UUIDSpec controls the behavior of the uuid generator. */
spec?: Record<string, never>;
};
}