UNPKG

@cdktf/provider-aws

Version:

Prebuilt aws Provider for Terraform CDK (cdktf)

497 lines (496 loc) 28.9 kB
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OdbCloudExadataInfrastructureConfig extends cdktf.TerraformMetaArguments { /** * The name of the Availability Zone (AZ) where the Exadata infrastructure is located. Changing this will force terraform to create new resource * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#availability_zone OdbCloudExadataInfrastructure#availability_zone} */ readonly availabilityZone?: string; /** * The AZ ID of the AZ where the Exadata infrastructure is located. Changing this will force terraform to create new resource * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#availability_zone_id OdbCloudExadataInfrastructure#availability_zone_id} */ readonly availabilityZoneId: string; /** * The number of compute instances that the Exadata infrastructure is located * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#compute_count OdbCloudExadataInfrastructure#compute_count} */ readonly computeCount?: number; /** * The email addresses of contacts to receive notification from Oracle about maintenance updates for the Exadata infrastructure. Changing this will force terraform to create new resource * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#customer_contacts_to_send_to_oci OdbCloudExadataInfrastructure#customer_contacts_to_send_to_oci} */ readonly customerContactsToSendToOci?: OdbCloudExadataInfrastructureCustomerContactsToSendToOci[] | cdktf.IResolvable; /** * The database server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#database_server_type OdbCloudExadataInfrastructure#database_server_type} */ readonly databaseServerType?: string; /** * The user-friendly name for the Exadata infrastructure. Changing this will force terraform to create a new resource * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#display_name OdbCloudExadataInfrastructure#display_name} */ readonly displayName: string; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#region OdbCloudExadataInfrastructure#region} */ readonly region?: string; /** * The model name of the Exadata infrastructure. Changing this will force terraform to create new resource * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#shape OdbCloudExadataInfrastructure#shape} */ readonly shape: string; /** * TThe number of storage servers that are activated for the Exadata infrastructure * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#storage_count OdbCloudExadataInfrastructure#storage_count} */ readonly storageCount?: number; /** * The storage server model type of the Exadata infrastructure. For the list of valid model names, use the ListDbSystemShapes operation * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#storage_server_type OdbCloudExadataInfrastructure#storage_server_type} */ readonly storageServerType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#tags OdbCloudExadataInfrastructure#tags} */ readonly tags?: { [key: string]: string; }; /** * maintenance_window block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#maintenance_window OdbCloudExadataInfrastructure#maintenance_window} */ readonly maintenanceWindow?: OdbCloudExadataInfrastructureMaintenanceWindow[] | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#timeouts OdbCloudExadataInfrastructure#timeouts} */ readonly timeouts?: OdbCloudExadataInfrastructureTimeouts; } export interface OdbCloudExadataInfrastructureCustomerContactsToSendToOci { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#email OdbCloudExadataInfrastructure#email} */ readonly email?: string; } export declare function odbCloudExadataInfrastructureCustomerContactsToSendToOciToTerraform(struct?: OdbCloudExadataInfrastructureCustomerContactsToSendToOci | cdktf.IResolvable): any; export declare function odbCloudExadataInfrastructureCustomerContactsToSendToOciToHclTerraform(struct?: OdbCloudExadataInfrastructureCustomerContactsToSendToOci | cdktf.IResolvable): any; export declare class OdbCloudExadataInfrastructureCustomerContactsToSendToOciOutputReference 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(): OdbCloudExadataInfrastructureCustomerContactsToSendToOci | cdktf.IResolvable | undefined; set internalValue(value: OdbCloudExadataInfrastructureCustomerContactsToSendToOci | cdktf.IResolvable | undefined); private _email?; get email(): string; set email(value: string); resetEmail(): void; get emailInput(): string | undefined; } export declare class OdbCloudExadataInfrastructureCustomerContactsToSendToOciList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OdbCloudExadataInfrastructureCustomerContactsToSendToOci[] | 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): OdbCloudExadataInfrastructureCustomerContactsToSendToOciOutputReference; } export interface OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#name OdbCloudExadataInfrastructure#name} */ readonly name?: string; } export declare function odbCloudExadataInfrastructureMaintenanceWindowDaysOfWeekToTerraform(struct?: OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek | cdktf.IResolvable): any; export declare function odbCloudExadataInfrastructureMaintenanceWindowDaysOfWeekToHclTerraform(struct?: OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek | cdktf.IResolvable): any; export declare class OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeekOutputReference 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(): OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek | cdktf.IResolvable | undefined; set internalValue(value: OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string | undefined; } export declare class OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeekList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek[] | 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): OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeekOutputReference; } export interface OdbCloudExadataInfrastructureMaintenanceWindowMonths { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#name OdbCloudExadataInfrastructure#name} */ readonly name?: string; } export declare function odbCloudExadataInfrastructureMaintenanceWindowMonthsToTerraform(struct?: OdbCloudExadataInfrastructureMaintenanceWindowMonths | cdktf.IResolvable): any; export declare function odbCloudExadataInfrastructureMaintenanceWindowMonthsToHclTerraform(struct?: OdbCloudExadataInfrastructureMaintenanceWindowMonths | cdktf.IResolvable): any; export declare class OdbCloudExadataInfrastructureMaintenanceWindowMonthsOutputReference 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(): OdbCloudExadataInfrastructureMaintenanceWindowMonths | cdktf.IResolvable | undefined; set internalValue(value: OdbCloudExadataInfrastructureMaintenanceWindowMonths | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string | undefined; } export declare class OdbCloudExadataInfrastructureMaintenanceWindowMonthsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OdbCloudExadataInfrastructureMaintenanceWindowMonths[] | 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): OdbCloudExadataInfrastructureMaintenanceWindowMonthsOutputReference; } export interface OdbCloudExadataInfrastructureMaintenanceWindow { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#custom_action_timeout_in_mins OdbCloudExadataInfrastructure#custom_action_timeout_in_mins} */ readonly customActionTimeoutInMins: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#days_of_week OdbCloudExadataInfrastructure#days_of_week} */ readonly daysOfWeek?: OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek[] | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#hours_of_day OdbCloudExadataInfrastructure#hours_of_day} */ readonly hoursOfDay?: number[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#is_custom_action_timeout_enabled OdbCloudExadataInfrastructure#is_custom_action_timeout_enabled} */ readonly isCustomActionTimeoutEnabled: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#lead_time_in_weeks OdbCloudExadataInfrastructure#lead_time_in_weeks} */ readonly leadTimeInWeeks?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#months OdbCloudExadataInfrastructure#months} */ readonly months?: OdbCloudExadataInfrastructureMaintenanceWindowMonths[] | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#patching_mode OdbCloudExadataInfrastructure#patching_mode} */ readonly patchingMode: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#preference OdbCloudExadataInfrastructure#preference} */ readonly preference: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#weeks_of_month OdbCloudExadataInfrastructure#weeks_of_month} */ readonly weeksOfMonth?: number[]; } export declare function odbCloudExadataInfrastructureMaintenanceWindowToTerraform(struct?: OdbCloudExadataInfrastructureMaintenanceWindow | cdktf.IResolvable): any; export declare function odbCloudExadataInfrastructureMaintenanceWindowToHclTerraform(struct?: OdbCloudExadataInfrastructureMaintenanceWindow | cdktf.IResolvable): any; export declare class OdbCloudExadataInfrastructureMaintenanceWindowOutputReference 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(): OdbCloudExadataInfrastructureMaintenanceWindow | cdktf.IResolvable | undefined; set internalValue(value: OdbCloudExadataInfrastructureMaintenanceWindow | cdktf.IResolvable | undefined); private _customActionTimeoutInMins?; get customActionTimeoutInMins(): number; set customActionTimeoutInMins(value: number); get customActionTimeoutInMinsInput(): number | undefined; private _daysOfWeek; get daysOfWeek(): OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeekList; putDaysOfWeek(value: OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek[] | cdktf.IResolvable): void; resetDaysOfWeek(): void; get daysOfWeekInput(): cdktf.IResolvable | OdbCloudExadataInfrastructureMaintenanceWindowDaysOfWeek[] | undefined; private _hoursOfDay?; get hoursOfDay(): number[]; set hoursOfDay(value: number[]); resetHoursOfDay(): void; get hoursOfDayInput(): number[] | undefined; private _isCustomActionTimeoutEnabled?; get isCustomActionTimeoutEnabled(): boolean | cdktf.IResolvable; set isCustomActionTimeoutEnabled(value: boolean | cdktf.IResolvable); get isCustomActionTimeoutEnabledInput(): boolean | cdktf.IResolvable | undefined; private _leadTimeInWeeks?; get leadTimeInWeeks(): number; set leadTimeInWeeks(value: number); resetLeadTimeInWeeks(): void; get leadTimeInWeeksInput(): number | undefined; private _months; get months(): OdbCloudExadataInfrastructureMaintenanceWindowMonthsList; putMonths(value: OdbCloudExadataInfrastructureMaintenanceWindowMonths[] | cdktf.IResolvable): void; resetMonths(): void; get monthsInput(): cdktf.IResolvable | OdbCloudExadataInfrastructureMaintenanceWindowMonths[] | undefined; private _patchingMode?; get patchingMode(): string; set patchingMode(value: string); get patchingModeInput(): string | undefined; private _preference?; get preference(): string; set preference(value: string); get preferenceInput(): string | undefined; private _weeksOfMonth?; get weeksOfMonth(): number[]; set weeksOfMonth(value: number[]); resetWeeksOfMonth(): void; get weeksOfMonthInput(): number[] | undefined; } export declare class OdbCloudExadataInfrastructureMaintenanceWindowList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OdbCloudExadataInfrastructureMaintenanceWindow[] | 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): OdbCloudExadataInfrastructureMaintenanceWindowOutputReference; } export interface OdbCloudExadataInfrastructureTimeouts { /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#create OdbCloudExadataInfrastructure#create} */ readonly create?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#delete OdbCloudExadataInfrastructure#delete} */ readonly delete?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#update OdbCloudExadataInfrastructure#update} */ readonly update?: string; } export declare function odbCloudExadataInfrastructureTimeoutsToTerraform(struct?: OdbCloudExadataInfrastructureTimeouts | cdktf.IResolvable): any; export declare function odbCloudExadataInfrastructureTimeoutsToHclTerraform(struct?: OdbCloudExadataInfrastructureTimeouts | cdktf.IResolvable): any; export declare class OdbCloudExadataInfrastructureTimeoutsOutputReference 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(): OdbCloudExadataInfrastructureTimeouts | cdktf.IResolvable | undefined; set internalValue(value: OdbCloudExadataInfrastructureTimeouts | 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/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure aws_odb_cloud_exadata_infrastructure} */ export declare class OdbCloudExadataInfrastructure extends cdktf.TerraformResource { static readonly tfResourceType = "aws_odb_cloud_exadata_infrastructure"; /** * Generates CDKTF code for importing a OdbCloudExadataInfrastructure 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 OdbCloudExadataInfrastructure to import * @param importFromId The id of the existing OdbCloudExadataInfrastructure that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OdbCloudExadataInfrastructure 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/hashicorp/aws/6.25.0/docs/resources/odb_cloud_exadata_infrastructure aws_odb_cloud_exadata_infrastructure} 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 OdbCloudExadataInfrastructureConfig */ constructor(scope: Construct, id: string, config: OdbCloudExadataInfrastructureConfig); get activatedStorageCount(): number; get additionalStorageCount(): number; get arn(): string; private _availabilityZone?; get availabilityZone(): string; set availabilityZone(value: string); resetAvailabilityZone(): void; get availabilityZoneInput(): string | undefined; private _availabilityZoneId?; get availabilityZoneId(): string; set availabilityZoneId(value: string); get availabilityZoneIdInput(): string | undefined; get availableStorageSizeInGbs(): number; private _computeCount?; get computeCount(): number; set computeCount(value: number); resetComputeCount(): void; get computeCountInput(): number | undefined; get computeModel(): string; get cpuCount(): number; get createdAt(): string; private _customerContactsToSendToOci; get customerContactsToSendToOci(): OdbCloudExadataInfrastructureCustomerContactsToSendToOciList; putCustomerContactsToSendToOci(value: OdbCloudExadataInfrastructureCustomerContactsToSendToOci[] | cdktf.IResolvable): void; resetCustomerContactsToSendToOci(): void; get customerContactsToSendToOciInput(): cdktf.IResolvable | OdbCloudExadataInfrastructureCustomerContactsToSendToOci[] | undefined; get dataStorageSizeInTbs(): number; private _databaseServerType?; get databaseServerType(): string; set databaseServerType(value: string); resetDatabaseServerType(): void; get databaseServerTypeInput(): string | undefined; get dbNodeStorageSizeInGbs(): number; get dbServerVersion(): string; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; get id(): string; get lastMaintenanceRunId(): string; get maxCpuCount(): number; get maxDataStorageInTbs(): number; get maxDbNodeStorageSizeInGbs(): number; get maxMemoryInGbs(): number; get memorySizeInGbs(): number; get monthlyDbServerVersion(): string; get monthlyStorageServerVersion(): string; get nextMaintenanceRunId(): string; get ociResourceAnchorName(): string; get ociUrl(): string; get ocid(): string; get percentProgress(): number; private _region?; get region(): string; set region(value: string); resetRegion(): void; get regionInput(): string | undefined; private _shape?; get shape(): string; set shape(value: string); get shapeInput(): string | undefined; get status(): string; get statusReason(): string; private _storageCount?; get storageCount(): number; set storageCount(value: number); resetStorageCount(): void; get storageCountInput(): number | undefined; private _storageServerType?; get storageServerType(): string; set storageServerType(value: string); resetStorageServerType(): void; get storageServerTypeInput(): string | undefined; get storageServerVersion(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; } | undefined; private _tagsAll; get tagsAll(): cdktf.StringMap; get totalStorageSizeInGbs(): number; private _maintenanceWindow; get maintenanceWindow(): OdbCloudExadataInfrastructureMaintenanceWindowList; putMaintenanceWindow(value: OdbCloudExadataInfrastructureMaintenanceWindow[] | cdktf.IResolvable): void; resetMaintenanceWindow(): void; get maintenanceWindowInput(): cdktf.IResolvable | OdbCloudExadataInfrastructureMaintenanceWindow[] | undefined; private _timeouts; get timeouts(): OdbCloudExadataInfrastructureTimeoutsOutputReference; putTimeouts(value: OdbCloudExadataInfrastructureTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | OdbCloudExadataInfrastructureTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }