cdktf-crd
Version:
32 lines (31 loc) • 1.2 kB
TypeScript
import { Manifest, type ManifestConfig } from "@cdktf/provider-kubernetes/lib/manifest";
import { Construct } from "constructs";
export declare class NetworkingGkeIoRedirectServiceV1alpha1 extends Manifest {
constructor(scope: Construct, id: string, config: NetworkingGkeIoRedirectServiceV1alpha1Config);
}
export interface NetworkingGkeIoRedirectServiceV1alpha1Config extends ManifestConfig {
manifest: {
apiVersion: "networking.gke.io/v1alpha1";
kind: "RedirectService";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description Spec is the desired configuration for Google redirect service. */
spec?: {
/** @description redirect specifies a redirection operation. */
redirect?: {
/** @description Provider of the original service. */
provider?: string;
/** @description Type of service that needs redirection. */
type?: string;
};
};
};
}