rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
321 lines (320 loc) • 18.8 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DatabaseExadataInfrastructureComputeConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#activation_file DatabaseExadataInfrastructureCompute#activation_file}
*/
readonly activationFile?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#additional_compute_count_compute_managed_resource DatabaseExadataInfrastructureCompute#additional_compute_count_compute_managed_resource}
*/
readonly additionalComputeCountComputeManagedResource?: number;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#additional_compute_system_model_compute_managed_resource DatabaseExadataInfrastructureCompute#additional_compute_system_model_compute_managed_resource}
*/
readonly additionalComputeSystemModelComputeManagedResource?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#exadata_infrastructure_id DatabaseExadataInfrastructureCompute#exadata_infrastructure_id}
*/
readonly exadataInfrastructureId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#id DatabaseExadataInfrastructureCompute#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;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#timeouts DatabaseExadataInfrastructureCompute#timeouts}
*/
readonly timeouts?: DatabaseExadataInfrastructureComputeTimeouts;
}
export interface DatabaseExadataInfrastructureComputeContacts {
}
export declare function databaseExadataInfrastructureComputeContactsToTerraform(struct?: DatabaseExadataInfrastructureComputeContacts): any;
export declare function databaseExadataInfrastructureComputeContactsToHclTerraform(struct?: DatabaseExadataInfrastructureComputeContacts): any;
export declare class DatabaseExadataInfrastructureComputeContactsOutputReference 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(): DatabaseExadataInfrastructureComputeContacts | undefined;
set internalValue(value: DatabaseExadataInfrastructureComputeContacts | undefined);
get email(): string;
get isContactMosValidated(): cdktf.IResolvable;
get isPrimary(): cdktf.IResolvable;
get name(): string;
get phoneNumber(): string;
}
export declare class DatabaseExadataInfrastructureComputeContactsList 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): DatabaseExadataInfrastructureComputeContactsOutputReference;
}
export interface DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeek {
}
export declare function databaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeekToTerraform(struct?: DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeek): any;
export declare function databaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeekToHclTerraform(struct?: DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeek): any;
export declare class DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeekOutputReference 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(): DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeek | undefined;
set internalValue(value: DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeek | undefined);
get name(): string;
}
export declare class DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeekList 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): DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeekOutputReference;
}
export interface DatabaseExadataInfrastructureComputeMaintenanceWindowMonths {
}
export declare function databaseExadataInfrastructureComputeMaintenanceWindowMonthsToTerraform(struct?: DatabaseExadataInfrastructureComputeMaintenanceWindowMonths): any;
export declare function databaseExadataInfrastructureComputeMaintenanceWindowMonthsToHclTerraform(struct?: DatabaseExadataInfrastructureComputeMaintenanceWindowMonths): any;
export declare class DatabaseExadataInfrastructureComputeMaintenanceWindowMonthsOutputReference 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(): DatabaseExadataInfrastructureComputeMaintenanceWindowMonths | undefined;
set internalValue(value: DatabaseExadataInfrastructureComputeMaintenanceWindowMonths | undefined);
get name(): string;
}
export declare class DatabaseExadataInfrastructureComputeMaintenanceWindowMonthsList 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): DatabaseExadataInfrastructureComputeMaintenanceWindowMonthsOutputReference;
}
export interface DatabaseExadataInfrastructureComputeMaintenanceWindow {
}
export declare function databaseExadataInfrastructureComputeMaintenanceWindowToTerraform(struct?: DatabaseExadataInfrastructureComputeMaintenanceWindow): any;
export declare function databaseExadataInfrastructureComputeMaintenanceWindowToHclTerraform(struct?: DatabaseExadataInfrastructureComputeMaintenanceWindow): any;
export declare class DatabaseExadataInfrastructureComputeMaintenanceWindowOutputReference 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(): DatabaseExadataInfrastructureComputeMaintenanceWindow | undefined;
set internalValue(value: DatabaseExadataInfrastructureComputeMaintenanceWindow | undefined);
get customActionTimeoutInMins(): number;
private _daysOfWeek;
get daysOfWeek(): DatabaseExadataInfrastructureComputeMaintenanceWindowDaysOfWeekList;
get hoursOfDay(): number[];
get isCustomActionTimeoutEnabled(): cdktf.IResolvable;
get isMonthlyPatchingEnabled(): cdktf.IResolvable;
get leadTimeInWeeks(): number;
private _months;
get months(): DatabaseExadataInfrastructureComputeMaintenanceWindowMonthsList;
get patchingMode(): string;
get preference(): string;
get weeksOfMonth(): number[];
}
export declare class DatabaseExadataInfrastructureComputeMaintenanceWindowList 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): DatabaseExadataInfrastructureComputeMaintenanceWindowOutputReference;
}
export interface DatabaseExadataInfrastructureComputeTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#create DatabaseExadataInfrastructureCompute#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#delete DatabaseExadataInfrastructureCompute#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#update DatabaseExadataInfrastructureCompute#update}
*/
readonly update?: string;
}
export declare function databaseExadataInfrastructureComputeTimeoutsToTerraform(struct?: DatabaseExadataInfrastructureComputeTimeouts | cdktf.IResolvable): any;
export declare function databaseExadataInfrastructureComputeTimeoutsToHclTerraform(struct?: DatabaseExadataInfrastructureComputeTimeouts | cdktf.IResolvable): any;
export declare class DatabaseExadataInfrastructureComputeTimeoutsOutputReference 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(): DatabaseExadataInfrastructureComputeTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: DatabaseExadataInfrastructureComputeTimeouts | 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_exadata_infrastructure_compute oci_database_exadata_infrastructure_compute}
*/
export declare class DatabaseExadataInfrastructureCompute extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_database_exadata_infrastructure_compute";
/**
* Generates CDKTF code for importing a DatabaseExadataInfrastructureCompute 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 DatabaseExadataInfrastructureCompute to import
* @param importFromId The id of the existing DatabaseExadataInfrastructureCompute that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_exadata_infrastructure_compute#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DatabaseExadataInfrastructureCompute 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_exadata_infrastructure_compute oci_database_exadata_infrastructure_compute} 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 DatabaseExadataInfrastructureComputeConfig
*/
constructor(scope: Construct, id: string, config: DatabaseExadataInfrastructureComputeConfig);
get activatedStorageCount(): number;
private _activationFile?;
get activationFile(): string;
set activationFile(value: string);
resetActivationFile(): void;
get activationFileInput(): string | undefined;
get additionalComputeCount(): number;
private _additionalComputeCountComputeManagedResource?;
get additionalComputeCountComputeManagedResource(): number;
set additionalComputeCountComputeManagedResource(value: number);
resetAdditionalComputeCountComputeManagedResource(): void;
get additionalComputeCountComputeManagedResourceInput(): number | undefined;
get additionalComputeSystemModel(): string;
private _additionalComputeSystemModelComputeManagedResource?;
get additionalComputeSystemModelComputeManagedResource(): string;
set additionalComputeSystemModelComputeManagedResource(value: string);
resetAdditionalComputeSystemModelComputeManagedResource(): void;
get additionalComputeSystemModelComputeManagedResourceInput(): string | undefined;
get additionalStorageCount(): number;
get adminNetworkCidr(): string;
get cloudControlPlaneServer1(): string;
get cloudControlPlaneServer2(): string;
get compartmentId(): string;
get computeCount(): number;
private _contacts;
get contacts(): DatabaseExadataInfrastructureComputeContactsList;
get corporateProxy(): string;
get cpusEnabled(): number;
get createAsync(): cdktf.IResolvable;
get csiNumber(): string;
get dataStorageSizeInTbs(): number;
get dbNodeStorageSizeInGbs(): number;
get dbServerVersion(): string;
private _definedTags;
get definedTags(): cdktf.StringMap;
get displayName(): string;
get dnsServer(): string[];
private _exadataInfrastructureId?;
get exadataInfrastructureId(): string;
set exadataInfrastructureId(value: string);
get exadataInfrastructureIdInput(): string | undefined;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get gateway(): string;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get infiniBandNetworkCidr(): string;
get isCpsOfflineReportEnabled(): cdktf.IResolvable;
get lifecycleDetails(): string;
get maintenanceSloStatus(): string;
private _maintenanceWindow;
get maintenanceWindow(): DatabaseExadataInfrastructureComputeMaintenanceWindowList;
get maxCpuCount(): number;
get maxDataStorageInTbs(): number;
get maxDbNodeStorageInGbs(): number;
get maxMemoryInGbs(): number;
get memorySizeInGbs(): number;
get monthlyDbServerVersion(): string;
get netmask(): string;
get ntpServer(): string[];
get shape(): string;
get state(): string;
get storageCount(): number;
get storageServerVersion(): string;
get timeCreated(): string;
get timeZone(): string;
private _timeouts;
get timeouts(): DatabaseExadataInfrastructureComputeTimeoutsOutputReference;
putTimeouts(value: DatabaseExadataInfrastructureComputeTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | DatabaseExadataInfrastructureComputeTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}