import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataVultrObjectStorageTierConfig extends cdktf.TerraformMetaArguments { /** * filter block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/data-sources/object_storage_tier#filter DataVultrObjectStorageTier#filter} */ readonly filter?: DataVultrObjectStorageTierFilter[] | cdktf.IResolvable; } export interface DataVultrObjectStorageTierLocations { } export declare function dataVultrObjectStorageTierLocationsToTerraform(struct?: DataVultrObjectStorageTierLocations): any; export declare function dataVultrObjectStorageTierLocationsToHclTerraform(struct?: DataVultrObjectStorageTierLocations): any; export declare class DataVultrObjectStorageTierLocationsOutputReference 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(): DataVultrObjectStorageTierLocations | undefined; set internalValue(value: DataVultrObjectStorageTierLocations | undefined); get hostname(): any; get id(): any; get name(): any; get region(): any; } export declare class DataVultrObjectStorageTierLocationsList 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): DataVultrObjectStorageTierLocationsOutputReference; } export interface DataVultrObjectStorageTierFilter { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/data-sources/object_storage_tier#name DataVultrObjectStorageTier#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/data-sources/object_storage_tier#values DataVultrObjectStorageTier#values} */ readonly values: string[]; } export declare function dataVultrObjectStorageTierFilterToTerraform(struct?: DataVultrObjectStorageTierFilter | cdktf.IResolvable): any; export declare function dataVultrObjectStorageTierFilterToHclTerraform(struct?: DataVultrObjectStorageTierFilter | cdktf.IResolvable): any; export declare class DataVultrObjectStorageTierFilterOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataVultrObjectStorageTierFilter | cdktf.IResolvable | undefined; set internalValue(value: DataVultrObjectStorageTierFilter | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); get nameInput(): string; private _values?; get values(): string[]; set values(value: string[]); get valuesInput(): string[]; } export declare class DataVultrObjectStorageTierFilterList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataVultrObjectStorageTierFilter[] | cdktf.IResolvable; /** * @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): DataVultrObjectStorageTierFilterOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/data-sources/object_storage_tier vultr_object_storage_tier} */ export declare class DataVultrObjectStorageTier extends cdktf.TerraformDataSource { static readonly tfResourceType = "vultr_object_storage_tier"; /** * Generates CDKTF code for importing a DataVultrObjectStorageTier 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 DataVultrObjectStorageTier to import * @param importFromId The id of the existing DataVultrObjectStorageTier that should be imported. Refer to the {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/data-sources/object_storage_tier#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataVultrObjectStorageTier 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/vultr/vultr/2.28.0/docs/data-sources/object_storage_tier vultr_object_storage_tier} Data Source * * @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 DataVultrObjectStorageTierConfig = {} */ constructor(scope: Construct, id: string, config?: DataVultrObjectStorageTierConfig); get id(): any; private _locations; get locations(): DataVultrObjectStorageTierLocationsList; get price(): any; get rateLimitBytes(): any; get rateLimitOperations(): any; get slug(): any; private _filter; get filter(): DataVultrObjectStorageTierFilterList; putFilter(value: DataVultrObjectStorageTierFilter[] | cdktf.IResolvable): void; resetFilter(): void; get filterInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }