UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

278 lines (277 loc) 13.5 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataintegrationWorkspaceConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#compartment_id DataintegrationWorkspace#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#defined_tags DataintegrationWorkspace#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#description DataintegrationWorkspace#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#display_name DataintegrationWorkspace#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#dns_server_ip DataintegrationWorkspace#dns_server_ip} */ readonly dnsServerIp?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#dns_server_zone DataintegrationWorkspace#dns_server_zone} */ readonly dnsServerZone?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#endpoint_compartment_id DataintegrationWorkspace#endpoint_compartment_id} */ readonly endpointCompartmentId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#endpoint_id DataintegrationWorkspace#endpoint_id} */ readonly endpointId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#endpoint_name DataintegrationWorkspace#endpoint_name} */ readonly endpointName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#freeform_tags DataintegrationWorkspace#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#id DataintegrationWorkspace#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; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#is_force_operation DataintegrationWorkspace#is_force_operation} */ readonly isForceOperation?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#is_private_network_enabled DataintegrationWorkspace#is_private_network_enabled} */ readonly isPrivateNetworkEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#quiesce_timeout DataintegrationWorkspace#quiesce_timeout} */ readonly quiesceTimeout?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#registry_compartment_id DataintegrationWorkspace#registry_compartment_id} */ readonly registryCompartmentId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#registry_id DataintegrationWorkspace#registry_id} */ readonly registryId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#registry_name DataintegrationWorkspace#registry_name} */ readonly registryName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#subnet_id DataintegrationWorkspace#subnet_id} */ readonly subnetId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#vcn_id DataintegrationWorkspace#vcn_id} */ readonly vcnId?: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#timeouts DataintegrationWorkspace#timeouts} */ readonly timeouts?: DataintegrationWorkspaceTimeouts; } export interface DataintegrationWorkspaceTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#create DataintegrationWorkspace#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#delete DataintegrationWorkspace#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#update DataintegrationWorkspace#update} */ readonly update?: string; } export declare function dataintegrationWorkspaceTimeoutsToTerraform(struct?: DataintegrationWorkspaceTimeouts | cdktf.IResolvable): any; export declare function dataintegrationWorkspaceTimeoutsToHclTerraform(struct?: DataintegrationWorkspaceTimeouts | cdktf.IResolvable): any; export declare class DataintegrationWorkspaceTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataintegrationWorkspaceTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DataintegrationWorkspaceTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace oci_dataintegration_workspace} */ export declare class DataintegrationWorkspace extends cdktf.TerraformResource { static readonly tfResourceType = "oci_dataintegration_workspace"; /** * Generates CDKTF code for importing a DataintegrationWorkspace 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 DataintegrationWorkspace to import * @param importFromId The id of the existing DataintegrationWorkspace that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataintegrationWorkspace 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/resources/dataintegration_workspace oci_dataintegration_workspace} 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 DataintegrationWorkspaceConfig */ constructor(scope: Construct, id: string, config: DataintegrationWorkspaceConfig); private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string | undefined; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; private _dnsServerIp?; get dnsServerIp(): string; set dnsServerIp(value: string); resetDnsServerIp(): void; get dnsServerIpInput(): string | undefined; private _dnsServerZone?; get dnsServerZone(): string; set dnsServerZone(value: string); resetDnsServerZone(): void; get dnsServerZoneInput(): string | undefined; private _endpointCompartmentId?; get endpointCompartmentId(): string; set endpointCompartmentId(value: string); resetEndpointCompartmentId(): void; get endpointCompartmentIdInput(): string | undefined; private _endpointId?; get endpointId(): string; set endpointId(value: string); resetEndpointId(): void; get endpointIdInput(): string | undefined; private _endpointName?; get endpointName(): string; set endpointName(value: string); resetEndpointName(): void; get endpointNameInput(): string | undefined; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _isForceOperation?; get isForceOperation(): boolean | cdktf.IResolvable; set isForceOperation(value: boolean | cdktf.IResolvable); resetIsForceOperation(): void; get isForceOperationInput(): boolean | cdktf.IResolvable | undefined; private _isPrivateNetworkEnabled?; get isPrivateNetworkEnabled(): boolean | cdktf.IResolvable; set isPrivateNetworkEnabled(value: boolean | cdktf.IResolvable); resetIsPrivateNetworkEnabled(): void; get isPrivateNetworkEnabledInput(): boolean | cdktf.IResolvable | undefined; private _quiesceTimeout?; get quiesceTimeout(): number; set quiesceTimeout(value: number); resetQuiesceTimeout(): void; get quiesceTimeoutInput(): number | undefined; private _registryCompartmentId?; get registryCompartmentId(): string; set registryCompartmentId(value: string); resetRegistryCompartmentId(): void; get registryCompartmentIdInput(): string | undefined; private _registryId?; get registryId(): string; set registryId(value: string); resetRegistryId(): void; get registryIdInput(): string | undefined; private _registryName?; get registryName(): string; set registryName(value: string); resetRegistryName(): void; get registryNameInput(): string | undefined; get state(): string; get stateMessage(): string; private _subnetId?; get subnetId(): string; set subnetId(value: string); resetSubnetId(): void; get subnetIdInput(): string | undefined; get timeCreated(): string; get timeUpdated(): string; private _vcnId?; get vcnId(): string; set vcnId(value: string); resetVcnId(): void; get vcnIdInput(): string | undefined; private _timeouts; get timeouts(): DataintegrationWorkspaceTimeoutsOutputReference; putTimeouts(value: DataintegrationWorkspaceTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | DataintegrationWorkspaceTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }