UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

395 lines (394 loc) 20.5 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DatabaseMigrationJobConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#defined_tags DatabaseMigrationJob#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#display_name DatabaseMigrationJob#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#freeform_tags DatabaseMigrationJob#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#id DatabaseMigrationJob#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/database_migration_job#job_id DatabaseMigrationJob#job_id} */ readonly jobId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#suspend_trigger DatabaseMigrationJob#suspend_trigger} */ readonly suspendTrigger?: number; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#timeouts DatabaseMigrationJob#timeouts} */ readonly timeouts?: DatabaseMigrationJobTimeouts; } export interface DatabaseMigrationJobParameterFileVersions { } export declare function databaseMigrationJobParameterFileVersionsToTerraform(struct?: DatabaseMigrationJobParameterFileVersions): any; export declare function databaseMigrationJobParameterFileVersionsToHclTerraform(struct?: DatabaseMigrationJobParameterFileVersions): any; export declare class DatabaseMigrationJobParameterFileVersionsOutputReference 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(): DatabaseMigrationJobParameterFileVersions | undefined; set internalValue(value: DatabaseMigrationJobParameterFileVersions | undefined); private _definedTags; get definedTags(): cdktf.StringMap; get description(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get isCurrent(): cdktf.IResolvable; get isFactory(): cdktf.IResolvable; get kind(): string; get name(): string; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; } export declare class DatabaseMigrationJobParameterFileVersionsList 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): DatabaseMigrationJobParameterFileVersionsOutputReference; } export interface DatabaseMigrationJobProgressPhasesExtract { } export declare function databaseMigrationJobProgressPhasesExtractToTerraform(struct?: DatabaseMigrationJobProgressPhasesExtract): any; export declare function databaseMigrationJobProgressPhasesExtractToHclTerraform(struct?: DatabaseMigrationJobProgressPhasesExtract): any; export declare class DatabaseMigrationJobProgressPhasesExtractOutputReference 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(): DatabaseMigrationJobProgressPhasesExtract | undefined; set internalValue(value: DatabaseMigrationJobProgressPhasesExtract | undefined); get message(): string; get type(): string; } export declare class DatabaseMigrationJobProgressPhasesExtractList 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): DatabaseMigrationJobProgressPhasesExtractOutputReference; } export interface DatabaseMigrationJobProgressPhasesLogLocation { } export declare function databaseMigrationJobProgressPhasesLogLocationToTerraform(struct?: DatabaseMigrationJobProgressPhasesLogLocation): any; export declare function databaseMigrationJobProgressPhasesLogLocationToHclTerraform(struct?: DatabaseMigrationJobProgressPhasesLogLocation): any; export declare class DatabaseMigrationJobProgressPhasesLogLocationOutputReference 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(): DatabaseMigrationJobProgressPhasesLogLocation | undefined; set internalValue(value: DatabaseMigrationJobProgressPhasesLogLocation | undefined); get bucket(): string; get namespace(): string; get object(): string; } export declare class DatabaseMigrationJobProgressPhasesLogLocationList 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): DatabaseMigrationJobProgressPhasesLogLocationOutputReference; } export interface DatabaseMigrationJobProgressPhases { } export declare function databaseMigrationJobProgressPhasesToTerraform(struct?: DatabaseMigrationJobProgressPhases): any; export declare function databaseMigrationJobProgressPhasesToHclTerraform(struct?: DatabaseMigrationJobProgressPhases): any; export declare class DatabaseMigrationJobProgressPhasesOutputReference 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(): DatabaseMigrationJobProgressPhases | undefined; set internalValue(value: DatabaseMigrationJobProgressPhases | undefined); get action(): string; get durationInMs(): number; get editableParameterFiles(): string[]; private _extract; get extract(): DatabaseMigrationJobProgressPhasesExtractList; get isAdvisorReportAvailable(): cdktf.IResolvable; get isSuspendAvailable(): cdktf.IResolvable; get issue(): string; private _logLocation; get logLocation(): DatabaseMigrationJobProgressPhasesLogLocationList; get name(): string; get progress(): number; get status(): string; } export declare class DatabaseMigrationJobProgressPhasesList 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): DatabaseMigrationJobProgressPhasesOutputReference; } export interface DatabaseMigrationJobProgress { } export declare function databaseMigrationJobProgressToTerraform(struct?: DatabaseMigrationJobProgress): any; export declare function databaseMigrationJobProgressToHclTerraform(struct?: DatabaseMigrationJobProgress): any; export declare class DatabaseMigrationJobProgressOutputReference 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(): DatabaseMigrationJobProgress | undefined; set internalValue(value: DatabaseMigrationJobProgress | undefined); get currentPhase(): string; get currentStatus(): string; private _phases; get phases(): DatabaseMigrationJobProgressPhasesList; } export declare class DatabaseMigrationJobProgressList 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): DatabaseMigrationJobProgressOutputReference; } export interface DatabaseMigrationJobUnsupportedObjects { } export declare function databaseMigrationJobUnsupportedObjectsToTerraform(struct?: DatabaseMigrationJobUnsupportedObjects): any; export declare function databaseMigrationJobUnsupportedObjectsToHclTerraform(struct?: DatabaseMigrationJobUnsupportedObjects): any; export declare class DatabaseMigrationJobUnsupportedObjectsOutputReference 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(): DatabaseMigrationJobUnsupportedObjects | undefined; set internalValue(value: DatabaseMigrationJobUnsupportedObjects | undefined); get object(): string; get owner(): string; get type(): string; } export declare class DatabaseMigrationJobUnsupportedObjectsList 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): DatabaseMigrationJobUnsupportedObjectsOutputReference; } export interface DatabaseMigrationJobTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#create DatabaseMigrationJob#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#delete DatabaseMigrationJob#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#update DatabaseMigrationJob#update} */ readonly update?: string; } export declare function databaseMigrationJobTimeoutsToTerraform(struct?: DatabaseMigrationJobTimeouts | cdktf.IResolvable): any; export declare function databaseMigrationJobTimeoutsToHclTerraform(struct?: DatabaseMigrationJobTimeouts | cdktf.IResolvable): any; export declare class DatabaseMigrationJobTimeoutsOutputReference 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(): DatabaseMigrationJobTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DatabaseMigrationJobTimeouts | 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/database_migration_job oci_database_migration_job} */ export declare class DatabaseMigrationJob extends cdktf.TerraformResource { static readonly tfResourceType = "oci_database_migration_job"; /** * Generates CDKTF code for importing a DatabaseMigrationJob 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 DatabaseMigrationJob to import * @param importFromId The id of the existing DatabaseMigrationJob that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_migration_job#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DatabaseMigrationJob 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/database_migration_job oci_database_migration_job} 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 DatabaseMigrationJobConfig */ constructor(scope: Construct, id: string, config: DatabaseMigrationJobConfig); private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): 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 _jobId?; get jobId(): string; set jobId(value: string); get jobIdInput(): string | undefined; get lifecycleDetails(): string; get migrationId(): string; private _parameterFileVersions; get parameterFileVersions(): DatabaseMigrationJobParameterFileVersionsList; private _progress; get progress(): DatabaseMigrationJobProgressList; get state(): string; private _suspendTrigger?; get suspendTrigger(): number; set suspendTrigger(value: number); resetSuspendTrigger(): void; get suspendTriggerInput(): number | undefined; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; get type(): string; private _unsupportedObjects; get unsupportedObjects(): DatabaseMigrationJobUnsupportedObjectsList; private _timeouts; get timeouts(): DatabaseMigrationJobTimeoutsOutputReference; putTimeouts(value: DatabaseMigrationJobTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | DatabaseMigrationJobTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }