UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

72 lines (71 loc) 3.62 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciDnsResolverEndpointConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_resolver_endpoint#resolver_endpoint_name DataOciDnsResolverEndpoint#resolver_endpoint_name} */ readonly resolverEndpointName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_resolver_endpoint#resolver_id DataOciDnsResolverEndpoint#resolver_id} */ readonly resolverId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_resolver_endpoint#scope DataOciDnsResolverEndpoint#scope} */ readonly scope?: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_resolver_endpoint oci_dns_resolver_endpoint} */ export declare class DataOciDnsResolverEndpoint extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_dns_resolver_endpoint"; /** * Generates CDKTF code for importing a DataOciDnsResolverEndpoint 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 DataOciDnsResolverEndpoint to import * @param importFromId The id of the existing DataOciDnsResolverEndpoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dns_resolver_endpoint#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciDnsResolverEndpoint 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/dns_resolver_endpoint oci_dns_resolver_endpoint} 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 DataOciDnsResolverEndpointConfig */ constructor(scope: Construct, id: string, config: DataOciDnsResolverEndpointConfig); get compartmentId(): string; get endpointType(): string; get forwardingAddress(): string; get id(): string; get isForwarding(): cdktf.IResolvable; get isListening(): cdktf.IResolvable; get listeningAddress(): string; get name(): string; get nsgIds(): string[]; private _resolverEndpointName?; get resolverEndpointName(): string; set resolverEndpointName(value: string); get resolverEndpointNameInput(): string | undefined; private _resolverId?; get resolverId(): string; set resolverId(value: string); get resolverIdInput(): string | undefined; private _scope?; get scope(): string; set scope(value: string); resetScope(): void; get scopeInput(): string | undefined; get selfAttribute(): string; get state(): string; get subnetId(): string; get timeCreated(): string; get timeUpdated(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }