cdktf-crd
Version:
31 lines (30 loc) • 1.11 kB
TypeScript
import { Construct } from "constructs";
import { Manifest, type ManifestConfig } from "@cdktn/provider-kubernetes/lib/manifest";
export declare class AnthosGkeIoEntitlementV1alpha1 extends Manifest {
constructor(scope: Construct, id: string, config: AnthosGkeIoEntitlementV1alpha1Config);
}
export interface AnthosGkeIoEntitlementV1alpha1Config extends ManifestConfig {
manifest: {
apiVersion: "anthos.gke.io/v1alpha1";
kind: "Entitlement";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
spec?: {
/**
* Format: date-time
* @description ExpirationTimestamp is when this Entitlement expires. An RFC3339 date/time.
*/
expirationTimestamp?: string;
/** @description MembershipName is the full name of the Membership represented by this entitlement. */
membershipName?: string;
};
};
}