UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

637 lines (636 loc) 33.8 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MysqlMysqlBackupConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#backup_type MysqlMysqlBackup#backup_type} */ readonly backupType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#compartment_id MysqlMysqlBackup#compartment_id} */ readonly compartmentId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#db_system_id MysqlMysqlBackup#db_system_id} */ readonly dbSystemId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#defined_tags MysqlMysqlBackup#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#description MysqlMysqlBackup#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#display_name MysqlMysqlBackup#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#freeform_tags MysqlMysqlBackup#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#id MysqlMysqlBackup#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/mysql_mysql_backup#retention_in_days MysqlMysqlBackup#retention_in_days} */ readonly retentionInDays?: number; /** * db_system_snapshot_summary block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#db_system_snapshot_summary MysqlMysqlBackup#db_system_snapshot_summary} */ readonly dbSystemSnapshotSummary?: MysqlMysqlBackupDbSystemSnapshotSummary[] | cdktf.IResolvable; /** * source_details block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#source_details MysqlMysqlBackup#source_details} */ readonly sourceDetails?: MysqlMysqlBackupSourceDetails; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#timeouts MysqlMysqlBackup#timeouts} */ readonly timeouts?: MysqlMysqlBackupTimeouts; } export interface MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy { } export declare function mysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy): any; export declare function mysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy): any; export declare class MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicy | undefined); get isEnabled(): cdktf.IResolvable; } export declare class MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyList 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): MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotBackupPolicy { } export declare function mysqlMysqlBackupDbSystemSnapshotBackupPolicyToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotBackupPolicy): any; export declare function mysqlMysqlBackupDbSystemSnapshotBackupPolicyToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotBackupPolicy): any; export declare class MysqlMysqlBackupDbSystemSnapshotBackupPolicyOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotBackupPolicy | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotBackupPolicy | undefined); private _definedTags; get definedTags(): cdktf.StringMap; private _freeformTags; get freeformTags(): cdktf.StringMap; get isEnabled(): cdktf.IResolvable; private _pitrPolicy; get pitrPolicy(): MysqlMysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyList; get retentionInDays(): number; get windowStartTime(): string; } export declare class MysqlMysqlBackupDbSystemSnapshotBackupPolicyList 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): MysqlMysqlBackupDbSystemSnapshotBackupPolicyOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotDataStorage { } export declare function mysqlMysqlBackupDbSystemSnapshotDataStorageToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotDataStorage): any; export declare function mysqlMysqlBackupDbSystemSnapshotDataStorageToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotDataStorage): any; export declare class MysqlMysqlBackupDbSystemSnapshotDataStorageOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotDataStorage | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotDataStorage | undefined); get allocatedStorageSizeInGbs(): number; get dataStorageSizeInGb(): number; get dataStorageSizeLimitInGbs(): number; get isAutoExpandStorageEnabled(): cdktf.IResolvable; get maxStorageSizeInGbs(): number; } export declare class MysqlMysqlBackupDbSystemSnapshotDataStorageList 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): MysqlMysqlBackupDbSystemSnapshotDataStorageOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotDeletionPolicy { } export declare function mysqlMysqlBackupDbSystemSnapshotDeletionPolicyToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotDeletionPolicy): any; export declare function mysqlMysqlBackupDbSystemSnapshotDeletionPolicyToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotDeletionPolicy): any; export declare class MysqlMysqlBackupDbSystemSnapshotDeletionPolicyOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotDeletionPolicy | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotDeletionPolicy | undefined); get automaticBackupRetention(): string; get finalBackup(): string; get isDeleteProtected(): cdktf.IResolvable; } export declare class MysqlMysqlBackupDbSystemSnapshotDeletionPolicyList 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): MysqlMysqlBackupDbSystemSnapshotDeletionPolicyOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotEndpoints { } export declare function mysqlMysqlBackupDbSystemSnapshotEndpointsToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotEndpoints): any; export declare function mysqlMysqlBackupDbSystemSnapshotEndpointsToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotEndpoints): any; export declare class MysqlMysqlBackupDbSystemSnapshotEndpointsOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotEndpoints | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotEndpoints | undefined); get hostname(): string; get ipAddress(): string; get modes(): string[]; get port(): number; get portX(): number; get resourceId(): string; get resourceType(): string; get status(): string; get statusDetails(): string; } export declare class MysqlMysqlBackupDbSystemSnapshotEndpointsList 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): MysqlMysqlBackupDbSystemSnapshotEndpointsOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotMaintenance { } export declare function mysqlMysqlBackupDbSystemSnapshotMaintenanceToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotMaintenance): any; export declare function mysqlMysqlBackupDbSystemSnapshotMaintenanceToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotMaintenance): any; export declare class MysqlMysqlBackupDbSystemSnapshotMaintenanceOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotMaintenance | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotMaintenance | undefined); get windowStartTime(): string; } export declare class MysqlMysqlBackupDbSystemSnapshotMaintenanceList 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): MysqlMysqlBackupDbSystemSnapshotMaintenanceOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotSecureConnections { } export declare function mysqlMysqlBackupDbSystemSnapshotSecureConnectionsToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotSecureConnections): any; export declare function mysqlMysqlBackupDbSystemSnapshotSecureConnectionsToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotSecureConnections): any; export declare class MysqlMysqlBackupDbSystemSnapshotSecureConnectionsOutputReference 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(): MysqlMysqlBackupDbSystemSnapshotSecureConnections | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotSecureConnections | undefined); get certificateGenerationType(): string; get certificateId(): string; } export declare class MysqlMysqlBackupDbSystemSnapshotSecureConnectionsList 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): MysqlMysqlBackupDbSystemSnapshotSecureConnectionsOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshot { } export declare function mysqlMysqlBackupDbSystemSnapshotToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshot): any; export declare function mysqlMysqlBackupDbSystemSnapshotToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshot): any; export declare class MysqlMysqlBackupDbSystemSnapshotOutputReference 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(): MysqlMysqlBackupDbSystemSnapshot | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshot | undefined); get adminUsername(): string; get availabilityDomain(): string; private _backupPolicy; get backupPolicy(): MysqlMysqlBackupDbSystemSnapshotBackupPolicyList; get compartmentId(): string; get configurationId(): string; get crashRecovery(): string; private _dataStorage; get dataStorage(): MysqlMysqlBackupDbSystemSnapshotDataStorageList; get dataStorageSizeInGb(): number; get databaseManagement(): string; private _definedTags; get definedTags(): cdktf.StringMap; private _deletionPolicy; get deletionPolicy(): MysqlMysqlBackupDbSystemSnapshotDeletionPolicyList; get description(): string; get displayName(): string; private _endpoints; get endpoints(): MysqlMysqlBackupDbSystemSnapshotEndpointsList; get faultDomain(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get hostnameLabel(): string; get id(): string; get ipAddress(): string; get isHighlyAvailable(): cdktf.IResolvable; private _maintenance; get maintenance(): MysqlMysqlBackupDbSystemSnapshotMaintenanceList; get mysqlVersion(): string; get port(): number; get portX(): number; get region(): string; private _secureConnections; get secureConnections(): MysqlMysqlBackupDbSystemSnapshotSecureConnectionsList; get shapeName(): string; get subnetId(): string; } export declare class MysqlMysqlBackupDbSystemSnapshotList 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): MysqlMysqlBackupDbSystemSnapshotOutputReference; } export interface MysqlMysqlBackupDbSystemSnapshotSummary { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#display_name MysqlMysqlBackup#display_name} */ readonly displayName?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#id MysqlMysqlBackup#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/mysql_mysql_backup#region MysqlMysqlBackup#region} */ readonly region?: string; } export declare function mysqlMysqlBackupDbSystemSnapshotSummaryToTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotSummary | cdktf.IResolvable): any; export declare function mysqlMysqlBackupDbSystemSnapshotSummaryToHclTerraform(struct?: MysqlMysqlBackupDbSystemSnapshotSummary | cdktf.IResolvable): any; export declare class MysqlMysqlBackupDbSystemSnapshotSummaryOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): MysqlMysqlBackupDbSystemSnapshotSummary | cdktf.IResolvable | undefined; set internalValue(value: MysqlMysqlBackupDbSystemSnapshotSummary | cdktf.IResolvable | undefined); private _displayName?; get displayName(): string; set displayName(value: string); resetDisplayName(): void; get displayNameInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _region?; get region(): string; set region(value: string); resetRegion(): void; get regionInput(): string | undefined; } export declare class MysqlMysqlBackupDbSystemSnapshotSummaryList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: MysqlMysqlBackupDbSystemSnapshotSummary[] | cdktf.IResolvable; /** * @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): MysqlMysqlBackupDbSystemSnapshotSummaryOutputReference; } export interface MysqlMysqlBackupSourceDetails { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#backup_id MysqlMysqlBackup#backup_id} */ readonly backupId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#compartment_id MysqlMysqlBackup#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#region MysqlMysqlBackup#region} */ readonly region: string; } export declare function mysqlMysqlBackupSourceDetailsToTerraform(struct?: MysqlMysqlBackupSourceDetailsOutputReference | MysqlMysqlBackupSourceDetails): any; export declare function mysqlMysqlBackupSourceDetailsToHclTerraform(struct?: MysqlMysqlBackupSourceDetailsOutputReference | MysqlMysqlBackupSourceDetails): any; export declare class MysqlMysqlBackupSourceDetailsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): MysqlMysqlBackupSourceDetails | undefined; set internalValue(value: MysqlMysqlBackupSourceDetails | undefined); private _backupId?; get backupId(): string; set backupId(value: string); get backupIdInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _region?; get region(): string; set region(value: string); get regionInput(): string | undefined; } export interface MysqlMysqlBackupTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#create MysqlMysqlBackup#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#delete MysqlMysqlBackup#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#update MysqlMysqlBackup#update} */ readonly update?: string; } export declare function mysqlMysqlBackupTimeoutsToTerraform(struct?: MysqlMysqlBackupTimeouts | cdktf.IResolvable): any; export declare function mysqlMysqlBackupTimeoutsToHclTerraform(struct?: MysqlMysqlBackupTimeouts | cdktf.IResolvable): any; export declare class MysqlMysqlBackupTimeoutsOutputReference 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(): MysqlMysqlBackupTimeouts | cdktf.IResolvable | undefined; set internalValue(value: MysqlMysqlBackupTimeouts | 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/mysql_mysql_backup oci_mysql_mysql_backup} */ export declare class MysqlMysqlBackup extends cdktf.TerraformResource { static readonly tfResourceType = "oci_mysql_mysql_backup"; /** * Generates CDKTF code for importing a MysqlMysqlBackup 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 MysqlMysqlBackup to import * @param importFromId The id of the existing MysqlMysqlBackup that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/mysql_mysql_backup#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MysqlMysqlBackup 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/mysql_mysql_backup oci_mysql_mysql_backup} 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 MysqlMysqlBackupConfig = {} */ constructor(scope: Construct, id: string, config?: MysqlMysqlBackupConfig); get backupSizeInGbs(): number; private _backupType?; get backupType(): string; set backupType(value: string); resetBackupType(): void; get backupTypeInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); resetCompartmentId(): void; get compartmentIdInput(): string | undefined; get creationType(): string; get dataStorageSizeInGb(): number; private _dbSystemId?; get dbSystemId(): string; set dbSystemId(value: string); resetDbSystemId(): void; get dbSystemIdInput(): string | undefined; private _dbSystemSnapshot; get dbSystemSnapshot(): MysqlMysqlBackupDbSystemSnapshotList; 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); 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; get immediateSourceBackupId(): string; get lifecycleDetails(): string; get mysqlVersion(): string; get originalSourceBackupId(): string; private _retentionInDays?; get retentionInDays(): number; set retentionInDays(value: number); resetRetentionInDays(): void; get retentionInDaysInput(): number | undefined; get shapeName(): string; get state(): string; get timeCopyCreated(): string; get timeCreated(): string; get timeUpdated(): string; private _dbSystemSnapshotSummary; get dbSystemSnapshotSummary(): MysqlMysqlBackupDbSystemSnapshotSummaryList; putDbSystemSnapshotSummary(value: MysqlMysqlBackupDbSystemSnapshotSummary[] | cdktf.IResolvable): void; resetDbSystemSnapshotSummary(): void; get dbSystemSnapshotSummaryInput(): cdktf.IResolvable | MysqlMysqlBackupDbSystemSnapshotSummary[] | undefined; private _sourceDetails; get sourceDetails(): MysqlMysqlBackupSourceDetailsOutputReference; putSourceDetails(value: MysqlMysqlBackupSourceDetails): void; resetSourceDetails(): void; get sourceDetailsInput(): MysqlMysqlBackupSourceDetails | undefined; private _timeouts; get timeouts(): MysqlMysqlBackupTimeoutsOutputReference; putTimeouts(value: MysqlMysqlBackupTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | MysqlMysqlBackupTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }