import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CdnClientConfigConfig extends cdktf.TerraformMetaArguments { /** * CDN traffic usage limit in gigabytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/cdn_client_config#utilization_level CdnClientConfig#utilization_level} */ readonly utilizationLevel?: number; } export interface CdnClientConfigService { } export declare function cdnClientConfigServiceToTerraform(struct?: CdnClientConfigService): any; export declare function cdnClientConfigServiceToHclTerraform(struct?: CdnClientConfigService): any; export declare class CdnClientConfigServiceOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): CdnClientConfigService | undefined; set internalValue(value: CdnClientConfigService | undefined); get enabled(): any; get status(): any; get updated(): any; } export declare class CdnClientConfigServiceList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): CdnClientConfigServiceOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/cdn_client_config gcore_cdn_client_config} */ export declare class CdnClientConfig extends cdktf.TerraformResource { static readonly tfResourceType = "gcore_cdn_client_config"; /** * Generates CDKTF code for importing a CdnClientConfig resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the CdnClientConfig to import * @param importFromId The id of the existing CdnClientConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/cdn_client_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CdnClientConfig to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/cdn_client_config gcore_cdn_client_config} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options CdnClientConfigConfig = {} */ constructor(scope: Construct, id: string, config?: CdnClientConfigConfig); get autoSuspendEnabled(): any; get cdnResourcesRulesMaxCount(): any; get cname(): any; get created(): any; get id(): any; private _service; get service(): CdnClientConfigServiceList; get updated(): any; get useBalancer(): any; private _utilizationLevel?; get utilizationLevel(): number; set utilizationLevel(value: number); resetUtilizationLevel(): void; get utilizationLevelInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }