import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ExternalcontactsExternalSourceConfig extends cdktf.TerraformMetaArguments { /** * Whether the external source is active. Defaults to `true`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source#active ExternalcontactsExternalSource#active} */ readonly active?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source#id ExternalcontactsExternalSource#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; /** * The name of the external source. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source#name ExternalcontactsExternalSource#name} */ readonly name: string; /** * link_configuration block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source#link_configuration ExternalcontactsExternalSource#link_configuration} */ readonly linkConfiguration?: ExternalcontactsExternalSourceLinkConfiguration; } export interface ExternalcontactsExternalSourceLinkConfiguration { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source#uri_template ExternalcontactsExternalSource#uri_template} */ readonly uriTemplate?: string; } export declare function externalcontactsExternalSourceLinkConfigurationToTerraform(struct?: ExternalcontactsExternalSourceLinkConfigurationOutputReference | ExternalcontactsExternalSourceLinkConfiguration): any; export declare function externalcontactsExternalSourceLinkConfigurationToHclTerraform(struct?: ExternalcontactsExternalSourceLinkConfigurationOutputReference | ExternalcontactsExternalSourceLinkConfiguration): any; export declare class ExternalcontactsExternalSourceLinkConfigurationOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): ExternalcontactsExternalSourceLinkConfiguration | undefined; set internalValue(value: ExternalcontactsExternalSourceLinkConfiguration | undefined); private _uriTemplate?; get uriTemplate(): string; set uriTemplate(value: string); resetUriTemplate(): void; get uriTemplateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source genesyscloud_externalcontacts_external_source} */ export declare class ExternalcontactsExternalSource extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_externalcontacts_external_source"; /** * Generates CDKTF code for importing a ExternalcontactsExternalSource 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 ExternalcontactsExternalSource to import * @param importFromId The id of the existing ExternalcontactsExternalSource that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/externalcontacts_external_source#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ExternalcontactsExternalSource 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/resources/externalcontacts_external_source genesyscloud_externalcontacts_external_source} 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 ExternalcontactsExternalSourceConfig */ constructor(scope: Construct, id: string, config: ExternalcontactsExternalSourceConfig); private _active?; get active(): boolean | cdktf.IResolvable; set active(value: boolean | cdktf.IResolvable); resetActive(): void; get activeInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _linkConfiguration; get linkConfiguration(): ExternalcontactsExternalSourceLinkConfigurationOutputReference; putLinkConfiguration(value: ExternalcontactsExternalSourceLinkConfiguration): void; resetLinkConfiguration(): void; get linkConfigurationInput(): ExternalcontactsExternalSourceLinkConfiguration; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }