import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataExoscaleIamOrgPolicyConfig extends cdktf.TerraformMetaArguments { /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/iam_org_policy#timeouts DataExoscaleIamOrgPolicy#timeouts} */ readonly timeouts?: DataExoscaleIamOrgPolicyTimeouts; } export interface DataExoscaleIamOrgPolicyServicesRules { } export declare function dataExoscaleIamOrgPolicyServicesRulesToTerraform(struct?: DataExoscaleIamOrgPolicyServicesRules): any; export declare function dataExoscaleIamOrgPolicyServicesRulesToHclTerraform(struct?: DataExoscaleIamOrgPolicyServicesRules): any; export declare class DataExoscaleIamOrgPolicyServicesRulesOutputReference 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(): DataExoscaleIamOrgPolicyServicesRules | undefined; set internalValue(value: DataExoscaleIamOrgPolicyServicesRules | undefined); get action(): any; get expression(): any; get resources(): any; } export declare class DataExoscaleIamOrgPolicyServicesRulesList 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): DataExoscaleIamOrgPolicyServicesRulesOutputReference; } export interface DataExoscaleIamOrgPolicyServices { } export declare function dataExoscaleIamOrgPolicyServicesToTerraform(struct?: DataExoscaleIamOrgPolicyServices): any; export declare function dataExoscaleIamOrgPolicyServicesToHclTerraform(struct?: DataExoscaleIamOrgPolicyServices): any; export declare class DataExoscaleIamOrgPolicyServicesOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectKey the key of this item in the map */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectKey: string); get internalValue(): DataExoscaleIamOrgPolicyServices | undefined; set internalValue(value: DataExoscaleIamOrgPolicyServices | undefined); private _rules; get rules(): DataExoscaleIamOrgPolicyServicesRulesList; get type(): any; } export declare class DataExoscaleIamOrgPolicyServicesMap extends cdktf.ComplexMap { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); /** * @param key the key of the item to return */ get(key: string): DataExoscaleIamOrgPolicyServicesOutputReference; } export interface DataExoscaleIamOrgPolicyTimeouts { /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/iam_org_policy#read DataExoscaleIamOrgPolicy#read} */ readonly read?: string; } export declare function dataExoscaleIamOrgPolicyTimeoutsToTerraform(struct?: DataExoscaleIamOrgPolicyTimeouts | cdktf.IResolvable): any; export declare function dataExoscaleIamOrgPolicyTimeoutsToHclTerraform(struct?: DataExoscaleIamOrgPolicyTimeouts | cdktf.IResolvable): any; export declare class DataExoscaleIamOrgPolicyTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): DataExoscaleIamOrgPolicyTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DataExoscaleIamOrgPolicyTimeouts | cdktf.IResolvable | undefined); private _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/iam_org_policy exoscale_iam_org_policy} */ export declare class DataExoscaleIamOrgPolicy extends cdktf.TerraformDataSource { static readonly tfResourceType = "exoscale_iam_org_policy"; /** * Generates CDKTF code for importing a DataExoscaleIamOrgPolicy 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 DataExoscaleIamOrgPolicy to import * @param importFromId The id of the existing DataExoscaleIamOrgPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/exoscale/exoscale/0.67.1/docs/data-sources/iam_org_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataExoscaleIamOrgPolicy 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/exoscale/exoscale/0.67.1/docs/data-sources/iam_org_policy exoscale_iam_org_policy} 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 DataExoscaleIamOrgPolicyConfig = {} */ constructor(scope: Construct, id: string, config?: DataExoscaleIamOrgPolicyConfig); get defaultServiceStrategy(): any; get id(): any; private _services; get services(): DataExoscaleIamOrgPolicyServicesMap; private _timeouts; get timeouts(): DataExoscaleIamOrgPolicyTimeoutsOutputReference; putTimeouts(value: DataExoscaleIamOrgPolicyTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }