import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface RoutingSmsAddressConfig extends cdktf.TerraformMetaArguments { /** * This is used when the address is created. If the value is not set or true, then the system will, if necessary, auto-correct the address you provide. Set this value to false if the system should not auto-correct the address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#auto_correct_address RoutingSmsAddress#auto_correct_address} */ readonly autoCorrectAddress?: boolean | cdktf.IResolvable; /** * The city in which this address is in * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#city RoutingSmsAddress#city} */ readonly city: string; /** * The ISO country code of this address * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#country_code RoutingSmsAddress#country_code} */ readonly countryCode: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#id RoutingSmsAddress#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; /** * Name associated with this address * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#name RoutingSmsAddress#name} */ readonly name?: string; /** * The postal code this address is in * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#postal_code RoutingSmsAddress#postal_code} */ readonly postalCode: string; /** * The state or region this address is in * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#region RoutingSmsAddress#region} */ readonly region: string; /** * The number and street address where this address is located. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#street RoutingSmsAddress#street} */ readonly street: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address genesyscloud_routing_sms_address} */ export declare class RoutingSmsAddress extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_routing_sms_address"; /** * Generates CDKTF code for importing a RoutingSmsAddress 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 RoutingSmsAddress to import * @param importFromId The id of the existing RoutingSmsAddress that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/routing_sms_address#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the RoutingSmsAddress 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/routing_sms_address genesyscloud_routing_sms_address} 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 RoutingSmsAddressConfig */ constructor(scope: Construct, id: string, config: RoutingSmsAddressConfig); private _autoCorrectAddress?; get autoCorrectAddress(): boolean | cdktf.IResolvable; set autoCorrectAddress(value: boolean | cdktf.IResolvable); resetAutoCorrectAddress(): void; get autoCorrectAddressInput(): any; private _city?; get city(): string; set city(value: string); get cityInput(): string; private _countryCode?; get countryCode(): string; set countryCode(value: string); get countryCodeInput(): 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 _postalCode?; get postalCode(): string; set postalCode(value: string); get postalCodeInput(): string; private _region?; get region(): string; set region(value: string); get regionInput(): string; private _street?; get street(): string; set street(value: string); get streetInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }