cdktf-crd
Version:
28 lines (27 loc) • 1.05 kB
TypeScript
import { Construct } from "constructs";
import { Manifest, type ManifestConfig } from "@cdktn/provider-kubernetes/lib/manifest";
export declare class NodeGkeIoGCPResourceAllowlistV1 extends Manifest {
constructor(scope: Construct, id: string, config: NodeGkeIoGCPResourceAllowlistV1Config);
}
export interface NodeGkeIoGCPResourceAllowlistV1Config extends ManifestConfig {
manifest: {
apiVersion: "node.gke.io/v1";
kind: "GCPResourceAllowlist";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description GCPResourceAllowlistSpec defines the desired state of GCPResourceAllowlist */
spec?: {
allowedResourcePatterns: string[];
};
/** @description GCPResourceAllowlistStatus defines the observed state of GCPResourceAllowlist */
status?: Record<string, never>;
};
}