rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
58 lines (57 loc) • 2.98 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciEmailEmailReturnPathConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/email_email_return_path#email_return_path_id DataOciEmailEmailReturnPath#email_return_path_id}
*/
readonly emailReturnPathId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/email_email_return_path oci_email_email_return_path}
*/
export declare class DataOciEmailEmailReturnPath extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_email_email_return_path";
/**
* Generates CDKTF code for importing a DataOciEmailEmailReturnPath 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 DataOciEmailEmailReturnPath to import
* @param importFromId The id of the existing DataOciEmailEmailReturnPath that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/email_email_return_path#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciEmailEmailReturnPath 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/email_email_return_path oci_email_email_return_path} 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 DataOciEmailEmailReturnPathConfig
*/
constructor(scope: Construct, id: string, config: DataOciEmailEmailReturnPathConfig);
get cnameRecordValue(): string;
get compartmentId(): string;
private _definedTags;
get definedTags(): cdktf.StringMap;
get description(): string;
get dnsSubdomainName(): string;
private _emailReturnPathId?;
get emailReturnPathId(): string;
set emailReturnPathId(value: string);
get emailReturnPathIdInput(): string | undefined;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get id(): string;
get lifecycleDetails(): string;
get name(): string;
get parentResourceId(): string;
get state(): string;
private _systemTags;
get systemTags(): cdktf.StringMap;
get timeCreated(): string;
get timeUpdated(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}