UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

228 lines (227 loc) 12.8 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataintegrationWorkspaceExportRequestConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#are_references_included DataintegrationWorkspaceExportRequest#are_references_included} */ readonly areReferencesIncluded?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#bucket DataintegrationWorkspaceExportRequest#bucket} */ readonly bucket: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#file_name DataintegrationWorkspaceExportRequest#file_name} */ readonly fileName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#filters DataintegrationWorkspaceExportRequest#filters} */ readonly filters?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#id DataintegrationWorkspaceExportRequest#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_export_request#is_object_overwrite_enabled DataintegrationWorkspaceExportRequest#is_object_overwrite_enabled} */ readonly isObjectOverwriteEnabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#object_keys DataintegrationWorkspaceExportRequest#object_keys} */ readonly objectKeys?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#object_storage_region DataintegrationWorkspaceExportRequest#object_storage_region} */ readonly objectStorageRegion?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#object_storage_tenancy_id DataintegrationWorkspaceExportRequest#object_storage_tenancy_id} */ readonly objectStorageTenancyId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#workspace_id DataintegrationWorkspaceExportRequest#workspace_id} */ readonly workspaceId: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#timeouts DataintegrationWorkspaceExportRequest#timeouts} */ readonly timeouts?: DataintegrationWorkspaceExportRequestTimeouts; } export interface DataintegrationWorkspaceExportRequestExportedItems { } export declare function dataintegrationWorkspaceExportRequestExportedItemsToTerraform(struct?: DataintegrationWorkspaceExportRequestExportedItems): any; export declare function dataintegrationWorkspaceExportRequestExportedItemsToHclTerraform(struct?: DataintegrationWorkspaceExportRequestExportedItems): any; export declare class DataintegrationWorkspaceExportRequestExportedItemsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataintegrationWorkspaceExportRequestExportedItems | undefined; set internalValue(value: DataintegrationWorkspaceExportRequestExportedItems | undefined); get aggregatorKey(): string; get identifier(): string; get key(): string; get name(): string; get namePath(): string; get objectType(): string; get objectVersion(): string; get timeUpdatedInMillis(): string; } export declare class DataintegrationWorkspaceExportRequestExportedItemsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataintegrationWorkspaceExportRequestExportedItemsOutputReference; } export interface DataintegrationWorkspaceExportRequestTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#create DataintegrationWorkspaceExportRequest#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#delete DataintegrationWorkspaceExportRequest#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#update DataintegrationWorkspaceExportRequest#update} */ readonly update?: string; } export declare function dataintegrationWorkspaceExportRequestTimeoutsToTerraform(struct?: DataintegrationWorkspaceExportRequestTimeouts | cdktf.IResolvable): any; export declare function dataintegrationWorkspaceExportRequestTimeoutsToHclTerraform(struct?: DataintegrationWorkspaceExportRequestTimeouts | cdktf.IResolvable): any; export declare class DataintegrationWorkspaceExportRequestTimeoutsOutputReference 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(): DataintegrationWorkspaceExportRequestTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DataintegrationWorkspaceExportRequestTimeouts | 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_export_request oci_dataintegration_workspace_export_request} */ export declare class DataintegrationWorkspaceExportRequest extends cdktf.TerraformResource { static readonly tfResourceType = "oci_dataintegration_workspace_export_request"; /** * Generates CDKTF code for importing a DataintegrationWorkspaceExportRequest 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 DataintegrationWorkspaceExportRequest to import * @param importFromId The id of the existing DataintegrationWorkspaceExportRequest that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/dataintegration_workspace_export_request#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataintegrationWorkspaceExportRequest 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_export_request oci_dataintegration_workspace_export_request} 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 DataintegrationWorkspaceExportRequestConfig */ constructor(scope: Construct, id: string, config: DataintegrationWorkspaceExportRequestConfig); private _areReferencesIncluded?; get areReferencesIncluded(): boolean | cdktf.IResolvable; set areReferencesIncluded(value: boolean | cdktf.IResolvable); resetAreReferencesIncluded(): void; get areReferencesIncludedInput(): boolean | cdktf.IResolvable | undefined; private _bucket?; get bucket(): string; set bucket(value: string); get bucketInput(): string | undefined; get createdBy(): string; private _errorMessages; get errorMessages(): cdktf.StringMap; private _exportedItems; get exportedItems(): DataintegrationWorkspaceExportRequestExportedItemsList; private _fileName?; get fileName(): string; set fileName(value: string); resetFileName(): void; get fileNameInput(): string | undefined; private _filters?; get filters(): string[]; set filters(value: string[]); resetFilters(): void; get filtersInput(): string[] | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _isObjectOverwriteEnabled?; get isObjectOverwriteEnabled(): boolean | cdktf.IResolvable; set isObjectOverwriteEnabled(value: boolean | cdktf.IResolvable); resetIsObjectOverwriteEnabled(): void; get isObjectOverwriteEnabledInput(): boolean | cdktf.IResolvable | undefined; get key(): string; get name(): string; private _objectKeys?; get objectKeys(): string[]; set objectKeys(value: string[]); resetObjectKeys(): void; get objectKeysInput(): string[] | undefined; private _objectStorageRegion?; get objectStorageRegion(): string; set objectStorageRegion(value: string); resetObjectStorageRegion(): void; get objectStorageRegionInput(): string | undefined; private _objectStorageTenancyId?; get objectStorageTenancyId(): string; set objectStorageTenancyId(value: string); resetObjectStorageTenancyId(): void; get objectStorageTenancyIdInput(): string | undefined; get referencedItems(): string; get status(): string; get timeEndedInMillis(): string; get timeStartedInMillis(): string; get totalExportedObjectCount(): number; private _workspaceId?; get workspaceId(): string; set workspaceId(value: string); get workspaceIdInput(): string | undefined; private _timeouts; get timeouts(): DataintegrationWorkspaceExportRequestTimeoutsOutputReference; putTimeouts(value: DataintegrationWorkspaceExportRequestTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | DataintegrationWorkspaceExportRequestTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }