import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciIdentityDomainsUserAttributesSettingConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#attribute_sets DataOciIdentityDomainsUserAttributesSetting#attribute_sets}
    */
    readonly attributeSets?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#attributes DataOciIdentityDomainsUserAttributesSetting#attributes}
    */
    readonly attributes?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#authorization DataOciIdentityDomainsUserAttributesSetting#authorization}
    */
    readonly authorization?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#id DataOciIdentityDomainsUserAttributesSetting#id}
    *
    * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
    * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
    */
    readonly id?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#idcs_endpoint DataOciIdentityDomainsUserAttributesSetting#idcs_endpoint}
    */
    readonly idcsEndpoint: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#resource_type_schema_version DataOciIdentityDomainsUserAttributesSetting#resource_type_schema_version}
    */
    readonly resourceTypeSchemaVersion?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#user_attributes_setting_id DataOciIdentityDomainsUserAttributesSetting#user_attributes_setting_id}
    */
    readonly userAttributesSettingId: string;
}
export interface DataOciIdentityDomainsUserAttributesSettingAttributeSettings {
}
export declare function dataOciIdentityDomainsUserAttributesSettingAttributeSettingsToTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingAttributeSettings): any;
export declare function dataOciIdentityDomainsUserAttributesSettingAttributeSettingsToHclTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingAttributeSettings): any;
export declare class DataOciIdentityDomainsUserAttributesSettingAttributeSettingsOutputReference 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(): DataOciIdentityDomainsUserAttributesSettingAttributeSettings | undefined;
    set internalValue(value: DataOciIdentityDomainsUserAttributesSettingAttributeSettings | undefined);
    get endUserMutability(): string;
    get endUserMutabilityCanonicalValues(): string[];
    get name(): string;
}
export declare class DataOciIdentityDomainsUserAttributesSettingAttributeSettingsList 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): DataOciIdentityDomainsUserAttributesSettingAttributeSettingsOutputReference;
}
export interface DataOciIdentityDomainsUserAttributesSettingIdcsCreatedBy {
}
export declare function dataOciIdentityDomainsUserAttributesSettingIdcsCreatedByToTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingIdcsCreatedBy): any;
export declare function dataOciIdentityDomainsUserAttributesSettingIdcsCreatedByToHclTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingIdcsCreatedBy): any;
export declare class DataOciIdentityDomainsUserAttributesSettingIdcsCreatedByOutputReference 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(): DataOciIdentityDomainsUserAttributesSettingIdcsCreatedBy | undefined;
    set internalValue(value: DataOciIdentityDomainsUserAttributesSettingIdcsCreatedBy | undefined);
    get display(): string;
    get ocid(): string;
    get ref(): string;
    get type(): string;
    get value(): string;
}
export declare class DataOciIdentityDomainsUserAttributesSettingIdcsCreatedByList 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): DataOciIdentityDomainsUserAttributesSettingIdcsCreatedByOutputReference;
}
export interface DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedBy {
}
export declare function dataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedByToTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedBy): any;
export declare function dataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedByToHclTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedBy): any;
export declare class DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedByOutputReference 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(): DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedBy | undefined;
    set internalValue(value: DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedBy | undefined);
    get display(): string;
    get ocid(): string;
    get ref(): string;
    get type(): string;
    get value(): string;
}
export declare class DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedByList 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): DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedByOutputReference;
}
export interface DataOciIdentityDomainsUserAttributesSettingMeta {
}
export declare function dataOciIdentityDomainsUserAttributesSettingMetaToTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingMeta): any;
export declare function dataOciIdentityDomainsUserAttributesSettingMetaToHclTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingMeta): any;
export declare class DataOciIdentityDomainsUserAttributesSettingMetaOutputReference 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(): DataOciIdentityDomainsUserAttributesSettingMeta | undefined;
    set internalValue(value: DataOciIdentityDomainsUserAttributesSettingMeta | undefined);
    get created(): string;
    get lastModified(): string;
    get location(): string;
    get resourceType(): string;
    get version(): string;
}
export declare class DataOciIdentityDomainsUserAttributesSettingMetaList 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): DataOciIdentityDomainsUserAttributesSettingMetaOutputReference;
}
export interface DataOciIdentityDomainsUserAttributesSettingTags {
}
export declare function dataOciIdentityDomainsUserAttributesSettingTagsToTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingTags): any;
export declare function dataOciIdentityDomainsUserAttributesSettingTagsToHclTerraform(struct?: DataOciIdentityDomainsUserAttributesSettingTags): any;
export declare class DataOciIdentityDomainsUserAttributesSettingTagsOutputReference 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(): DataOciIdentityDomainsUserAttributesSettingTags | undefined;
    set internalValue(value: DataOciIdentityDomainsUserAttributesSettingTags | undefined);
    get key(): string;
    get value(): string;
}
export declare class DataOciIdentityDomainsUserAttributesSettingTagsList 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): DataOciIdentityDomainsUserAttributesSettingTagsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting oci_identity_domains_user_attributes_setting}
*/
export declare class DataOciIdentityDomainsUserAttributesSetting extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_identity_domains_user_attributes_setting";
    /**
    * Generates CDKTF code for importing a DataOciIdentityDomainsUserAttributesSetting resource upon running "cdktf plan <stack-name>"
    * @param scope The scope in which to define this construct
    * @param importToId The construct id used in the generated config for the DataOciIdentityDomainsUserAttributesSetting to import
    * @param importFromId The id of the existing DataOciIdentityDomainsUserAttributesSetting that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciIdentityDomainsUserAttributesSetting to import is found
    */
    static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
    /**
    * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_user_attributes_setting oci_identity_domains_user_attributes_setting} 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 DataOciIdentityDomainsUserAttributesSettingConfig
    */
    constructor(scope: Construct, id: string, config: DataOciIdentityDomainsUserAttributesSettingConfig);
    private _attributeSets?;
    get attributeSets(): string[];
    set attributeSets(value: string[]);
    resetAttributeSets(): void;
    get attributeSetsInput(): string[] | undefined;
    private _attributeSettings;
    get attributeSettings(): DataOciIdentityDomainsUserAttributesSettingAttributeSettingsList;
    private _attributes?;
    get attributes(): string;
    set attributes(value: string);
    resetAttributes(): void;
    get attributesInput(): string | undefined;
    private _authorization?;
    get authorization(): string;
    set authorization(value: string);
    resetAuthorization(): void;
    get authorizationInput(): string | undefined;
    get compartmentOcid(): string;
    get deleteInProgress(): cdktf.IResolvable;
    get domainOcid(): string;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    private _idcsCreatedBy;
    get idcsCreatedBy(): DataOciIdentityDomainsUserAttributesSettingIdcsCreatedByList;
    private _idcsEndpoint?;
    get idcsEndpoint(): string;
    set idcsEndpoint(value: string);
    get idcsEndpointInput(): string | undefined;
    private _idcsLastModifiedBy;
    get idcsLastModifiedBy(): DataOciIdentityDomainsUserAttributesSettingIdcsLastModifiedByList;
    get idcsLastUpgradedInRelease(): string;
    get idcsPreventedOperations(): string[];
    private _meta;
    get meta(): DataOciIdentityDomainsUserAttributesSettingMetaList;
    get ocid(): string;
    private _resourceTypeSchemaVersion?;
    get resourceTypeSchemaVersion(): string;
    set resourceTypeSchemaVersion(value: string);
    resetResourceTypeSchemaVersion(): void;
    get resourceTypeSchemaVersionInput(): string | undefined;
    get schemas(): string[];
    private _tags;
    get tags(): DataOciIdentityDomainsUserAttributesSettingTagsList;
    get tenancyOcid(): string;
    private _userAttributesSettingId?;
    get userAttributesSettingId(): string;
    set userAttributesSettingId(value: string);
    get userAttributesSettingIdInput(): string | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
