import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataGenesyscloudOrganizationsMeConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#default_country_code DataGenesyscloudOrganizationsMe#default_country_code} */ readonly defaultCountryCode?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#default_language DataGenesyscloudOrganizationsMe#default_language} */ readonly defaultLanguage?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#default_site_id DataGenesyscloudOrganizationsMe#default_site_id} */ readonly defaultSiteId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#domain DataGenesyscloudOrganizationsMe#domain} */ readonly domain?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#id DataGenesyscloudOrganizationsMe#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/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#name DataGenesyscloudOrganizationsMe#name} */ readonly name?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#product_platform DataGenesyscloudOrganizationsMe#product_platform} */ readonly productPlatform?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#support_uri DataGenesyscloudOrganizationsMe#support_uri} */ readonly supportUri?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#third_party_org_name DataGenesyscloudOrganizationsMe#third_party_org_name} */ readonly thirdPartyOrgName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#voicemail_enabled DataGenesyscloudOrganizationsMe#voicemail_enabled} */ readonly voicemailEnabled?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me genesyscloud_organizations_me} */ export declare class DataGenesyscloudOrganizationsMe extends cdktf.TerraformDataSource { static readonly tfResourceType = "genesyscloud_organizations_me"; /** * Generates CDKTF code for importing a DataGenesyscloudOrganizationsMe 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 DataGenesyscloudOrganizationsMe to import * @param importFromId The id of the existing DataGenesyscloudOrganizationsMe that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataGenesyscloudOrganizationsMe 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/mypurecloud/genesyscloud/1.73.0/docs/data-sources/organizations_me genesyscloud_organizations_me} 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 DataGenesyscloudOrganizationsMeConfig = {} */ constructor(scope: Construct, id: string, config?: DataGenesyscloudOrganizationsMeConfig); private _defaultCountryCode?; get defaultCountryCode(): string; set defaultCountryCode(value: string); resetDefaultCountryCode(): void; get defaultCountryCodeInput(): string; private _defaultLanguage?; get defaultLanguage(): string; set defaultLanguage(value: string); resetDefaultLanguage(): void; get defaultLanguageInput(): string; private _defaultSiteId?; get defaultSiteId(): string; set defaultSiteId(value: string); resetDefaultSiteId(): void; get defaultSiteIdInput(): string; private _domain?; get domain(): string; set domain(value: string); resetDomain(): void; get domainInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _productPlatform?; get productPlatform(): string; set productPlatform(value: string); resetProductPlatform(): void; get productPlatformInput(): string; private _supportUri?; get supportUri(): string; set supportUri(value: string); resetSupportUri(): void; get supportUriInput(): string; private _thirdPartyOrgName?; get thirdPartyOrgName(): string; set thirdPartyOrgName(value: string); resetThirdPartyOrgName(): void; get thirdPartyOrgNameInput(): string; private _voicemailEnabled?; get voicemailEnabled(): boolean | cdktf.IResolvable; set voicemailEnabled(value: boolean | cdktf.IResolvable); resetVoicemailEnabled(): void; get voicemailEnabledInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }