cdktf-crd
Version:
33 lines (32 loc) • 1.33 kB
TypeScript
import { Construct } from "constructs";
import { Manifest, type ManifestConfig } from "@cdktn/provider-kubernetes/lib/manifest";
export declare class NetworkingGkeIoFrontendConfigV1beta1 extends Manifest {
constructor(scope: Construct, id: string, config: NetworkingGkeIoFrontendConfigV1beta1Config);
}
export interface NetworkingGkeIoFrontendConfigV1beta1Config extends ManifestConfig {
manifest: {
apiVersion: "networking.gke.io/v1beta1";
kind: "FrontendConfig";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description FrontendConfigSpec is the spec for a FrontendConfig resource */
spec?: {
/** @description HttpsRedirectConfig representing the configuration of Https redirects */
redirectToHttps?: {
enabled: boolean;
/** @description String representing the HTTP response code Options are MOVED_PERMANENTLY_DEFAULT, FOUND, TEMPORARY_REDIRECT, or PERMANENT_REDIRECT */
responseCodeName?: string;
};
sslPolicy?: string;
};
status?: Record<string, never>;
};
}