cdktf-crd
Version:
37 lines (36 loc) • 1.35 kB
TypeScript
import { Construct } from "constructs";
import { Manifest, type ManifestConfig } from "@cdktn/provider-kubernetes/lib/manifest";
export declare class GeneratorsExternalSecretsIoFakeV1alpha1 extends Manifest {
constructor(scope: Construct, id: string, config: GeneratorsExternalSecretsIoFakeV1alpha1Config);
}
export interface GeneratorsExternalSecretsIoFakeV1alpha1Config extends ManifestConfig {
manifest: {
apiVersion: "generators.external-secrets.io/v1alpha1";
kind: "Fake";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description FakeSpec contains the static data. */
spec?: {
/**
* @description Used to select the correct ESO controller (think: ingress.ingressClassName)
* The ESO controller is instantiated with a specific controller name and filters VDS based on this property
*/
controller?: string;
/**
* @description Data defines the static data returned
* by this generator.
*/
data?: {
[key: string]: string;
};
};
};
}