UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

50 lines (49 loc) 2.91 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciGoldenGateConnectionAssignmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_connection_assignment#connection_assignment_id DataOciGoldenGateConnectionAssignment#connection_assignment_id} */ readonly connectionAssignmentId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_connection_assignment oci_golden_gate_connection_assignment} */ export declare class DataOciGoldenGateConnectionAssignment extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_golden_gate_connection_assignment"; /** * Generates CDKTF code for importing a DataOciGoldenGateConnectionAssignment 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 DataOciGoldenGateConnectionAssignment to import * @param importFromId The id of the existing DataOciGoldenGateConnectionAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_connection_assignment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciGoldenGateConnectionAssignment 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/golden_gate_connection_assignment oci_golden_gate_connection_assignment} 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 DataOciGoldenGateConnectionAssignmentConfig */ constructor(scope: Construct, id: string, config: DataOciGoldenGateConnectionAssignmentConfig); get aliasName(): string; get compartmentId(): string; private _connectionAssignmentId?; get connectionAssignmentId(): string; set connectionAssignmentId(value: string); get connectionAssignmentIdInput(): string | undefined; get connectionId(): string; get deploymentId(): string; get id(): string; get isLockOverride(): cdktf.IResolvable; get state(): string; get timeCreated(): string; get timeUpdated(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }