published on Wednesday, Jul 15, 2026 by Pulumi
published on Wednesday, Jul 15, 2026 by Pulumi
This resource provides the Infrastructure resource in Oracle Cloud Infrastructure Datacc service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/datacc
Create a Database Infrastructure using the specified details.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInfrastructure = new oci.oci.DataccInfrastructure("test_infrastructure", {
cloudControlPlaneServer1: infrastructureCloudControlPlaneServer1,
cloudControlPlaneServer2: infrastructureCloudControlPlaneServer2,
compartmentId: compartmentId,
displayName: infrastructureDisplayName,
dnsServers: infrastructureDnsServers,
gateway: infrastructureGateway,
netmask: infrastructureNetmask,
ntpServers: infrastructureNtpServers,
shape: infrastructureShape,
systemModel: infrastructureSystemModel,
acfsFileSystemStorageInGbs: infrastructureAcfsFileSystemStorageInGbs,
adminNetworkcidr: infrastructureAdminNetworkcidr,
backupNetworkBondingInterface: infrastructureBackupNetworkBondingInterface,
backupNetworkBondingMode: infrastructureBackupNetworkBondingMode,
clientNetworkBondingInterface: infrastructureClientNetworkBondingInterface,
clientNetworkBondingMode: infrastructureClientNetworkBondingMode,
contacts: [{
email: infrastructureContactsEmail,
isPrimary: infrastructureContactsIsPrimary === "true",
name: infrastructureContactsName,
isContactMosValidated: infrastructureContactsIsContactMosValidated === "true",
phoneNumber: infrastructureContactsPhoneNumber,
}],
corporateProxy: infrastructureCorporateProxy,
cpsNetworkBondingInterface: infrastructureCpsNetworkBondingInterface,
cpsNetworkBondingMode: infrastructureCpsNetworkBondingMode,
dataDiskPercentage: Number(infrastructureDataDiskPercentage),
definedTags: {
"foo-namespace.bar-key": "value",
},
description: infrastructureDescription,
freeformTags: {
"bar-key": "value",
},
maintenanceWindow: {
customActionTimeoutInMins: Number(infrastructureMaintenanceWindowCustomActionTimeoutInMins),
daysOfWeeks: infrastructureMaintenanceWindowDaysOfWeek,
hoursOfDays: infrastructureMaintenanceWindowHoursOfDay,
isCustomActionTimeoutEnabled: infrastructureMaintenanceWindowIsCustomActionTimeoutEnabled === "true",
isMonthlyPatchingEnabled: infrastructureMaintenanceWindowIsMonthlyPatchingEnabled === "true",
leadTimeInWeeks: Number(infrastructureMaintenanceWindowLeadTimeInWeeks),
months: infrastructureMaintenanceWindowMonths,
patchingMode: infrastructureMaintenanceWindowPatchingMode,
preference: infrastructureMaintenanceWindowPreference,
weeksOfMonths: infrastructureMaintenanceWindowWeeksOfMonth,
},
vlanId: testVlan.id,
});
import pulumi
import pulumi_oci as oci
test_infrastructure = oci.oci.DataccInfrastructure("test_infrastructure",
cloud_control_plane_server1=infrastructure_cloud_control_plane_server1,
cloud_control_plane_server2=infrastructure_cloud_control_plane_server2,
compartment_id=compartment_id,
display_name=infrastructure_display_name,
dns_servers=infrastructure_dns_servers,
gateway=infrastructure_gateway,
netmask=infrastructure_netmask,
ntp_servers=infrastructure_ntp_servers,
shape=infrastructure_shape,
system_model=infrastructure_system_model,
acfs_file_system_storage_in_gbs=infrastructure_acfs_file_system_storage_in_gbs,
admin_networkcidr=infrastructure_admin_networkcidr,
backup_network_bonding_interface=infrastructure_backup_network_bonding_interface,
backup_network_bonding_mode=infrastructure_backup_network_bonding_mode,
client_network_bonding_interface=infrastructure_client_network_bonding_interface,
client_network_bonding_mode=infrastructure_client_network_bonding_mode,
contacts=[{
"email": infrastructure_contacts_email,
"is_primary": infrastructure_contacts_is_primary == "true",
"name": infrastructure_contacts_name,
"is_contact_mos_validated": infrastructure_contacts_is_contact_mos_validated == "true",
"phone_number": infrastructure_contacts_phone_number,
}],
corporate_proxy=infrastructure_corporate_proxy,
cps_network_bonding_interface=infrastructure_cps_network_bonding_interface,
cps_network_bonding_mode=infrastructure_cps_network_bonding_mode,
data_disk_percentage=int(infrastructure_data_disk_percentage),
defined_tags={
"foo-namespace.bar-key": "value",
},
description=infrastructure_description,
freeform_tags={
"bar-key": "value",
},
maintenance_window={
"custom_action_timeout_in_mins": int(infrastructure_maintenance_window_custom_action_timeout_in_mins),
"days_of_weeks": infrastructure_maintenance_window_days_of_week,
"hours_of_days": infrastructure_maintenance_window_hours_of_day,
"is_custom_action_timeout_enabled": infrastructure_maintenance_window_is_custom_action_timeout_enabled == "true",
"is_monthly_patching_enabled": infrastructure_maintenance_window_is_monthly_patching_enabled == "true",
"lead_time_in_weeks": int(infrastructure_maintenance_window_lead_time_in_weeks),
"months": infrastructure_maintenance_window_months,
"patching_mode": infrastructure_maintenance_window_patching_mode,
"preference": infrastructure_maintenance_window_preference,
"weeks_of_months": infrastructure_maintenance_window_weeks_of_month,
},
vlan_id=test_vlan["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.NewDataccInfrastructure(ctx, "test_infrastructure", &oci.DataccInfrastructureArgs{
CloudControlPlaneServer1: pulumi.Any(infrastructureCloudControlPlaneServer1),
CloudControlPlaneServer2: pulumi.Any(infrastructureCloudControlPlaneServer2),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(infrastructureDisplayName),
DnsServers: pulumi.Any(infrastructureDnsServers),
Gateway: pulumi.Any(infrastructureGateway),
Netmask: pulumi.Any(infrastructureNetmask),
NtpServers: pulumi.Any(infrastructureNtpServers),
Shape: pulumi.Any(infrastructureShape),
SystemModel: pulumi.Any(infrastructureSystemModel),
AcfsFileSystemStorageInGbs: pulumi.Any(infrastructureAcfsFileSystemStorageInGbs),
AdminNetworkcidr: pulumi.Any(infrastructureAdminNetworkcidr),
BackupNetworkBondingInterface: pulumi.Any(infrastructureBackupNetworkBondingInterface),
BackupNetworkBondingMode: pulumi.Any(infrastructureBackupNetworkBondingMode),
ClientNetworkBondingInterface: pulumi.Any(infrastructureClientNetworkBondingInterface),
ClientNetworkBondingMode: pulumi.Any(infrastructureClientNetworkBondingMode),
Contacts: oci.DataccInfrastructureContactArray{
&oci.DataccInfrastructureContactArgs{
Email: pulumi.Any(infrastructureContactsEmail),
IsPrimary: pulumi.Any(infrastructureContactsIsPrimary),
Name: pulumi.Any(infrastructureContactsName),
IsContactMosValidated: pulumi.Any(infrastructureContactsIsContactMosValidated),
PhoneNumber: pulumi.Any(infrastructureContactsPhoneNumber),
},
},
CorporateProxy: pulumi.Any(infrastructureCorporateProxy),
CpsNetworkBondingInterface: pulumi.Any(infrastructureCpsNetworkBondingInterface),
CpsNetworkBondingMode: pulumi.Any(infrastructureCpsNetworkBondingMode),
DataDiskPercentage: pulumi.Any(infrastructureDataDiskPercentage),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
Description: pulumi.Any(infrastructureDescription),
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
MaintenanceWindow: &oci.DataccInfrastructureMaintenanceWindowArgs{
CustomActionTimeoutInMins: pulumi.Any(infrastructureMaintenanceWindowCustomActionTimeoutInMins),
DaysOfWeeks: pulumi.Any(infrastructureMaintenanceWindowDaysOfWeek),
HoursOfDays: pulumi.Any(infrastructureMaintenanceWindowHoursOfDay),
IsCustomActionTimeoutEnabled: pulumi.Any(infrastructureMaintenanceWindowIsCustomActionTimeoutEnabled),
IsMonthlyPatchingEnabled: pulumi.Any(infrastructureMaintenanceWindowIsMonthlyPatchingEnabled),
LeadTimeInWeeks: pulumi.Any(infrastructureMaintenanceWindowLeadTimeInWeeks),
Months: pulumi.Any(infrastructureMaintenanceWindowMonths),
PatchingMode: pulumi.Any(infrastructureMaintenanceWindowPatchingMode),
Preference: pulumi.Any(infrastructureMaintenanceWindowPreference),
WeeksOfMonths: pulumi.Any(infrastructureMaintenanceWindowWeeksOfMonth),
},
VlanId: pulumi.Any(testVlan.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testInfrastructure = new Oci.Oci.DataccInfrastructure("test_infrastructure", new()
{
CloudControlPlaneServer1 = infrastructureCloudControlPlaneServer1,
CloudControlPlaneServer2 = infrastructureCloudControlPlaneServer2,
CompartmentId = compartmentId,
DisplayName = infrastructureDisplayName,
DnsServers = infrastructureDnsServers,
Gateway = infrastructureGateway,
Netmask = infrastructureNetmask,
NtpServers = infrastructureNtpServers,
Shape = infrastructureShape,
SystemModel = infrastructureSystemModel,
AcfsFileSystemStorageInGbs = infrastructureAcfsFileSystemStorageInGbs,
AdminNetworkcidr = infrastructureAdminNetworkcidr,
BackupNetworkBondingInterface = infrastructureBackupNetworkBondingInterface,
BackupNetworkBondingMode = infrastructureBackupNetworkBondingMode,
ClientNetworkBondingInterface = infrastructureClientNetworkBondingInterface,
ClientNetworkBondingMode = infrastructureClientNetworkBondingMode,
Contacts = new[]
{
new Oci.Oci.Inputs.DataccInfrastructureContactArgs
{
Email = infrastructureContactsEmail,
IsPrimary = infrastructureContactsIsPrimary,
Name = infrastructureContactsName,
IsContactMosValidated = infrastructureContactsIsContactMosValidated,
PhoneNumber = infrastructureContactsPhoneNumber,
},
},
CorporateProxy = infrastructureCorporateProxy,
CpsNetworkBondingInterface = infrastructureCpsNetworkBondingInterface,
CpsNetworkBondingMode = infrastructureCpsNetworkBondingMode,
DataDiskPercentage = infrastructureDataDiskPercentage,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = infrastructureDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
MaintenanceWindow = new Oci.Oci.Inputs.DataccInfrastructureMaintenanceWindowArgs
{
CustomActionTimeoutInMins = infrastructureMaintenanceWindowCustomActionTimeoutInMins,
DaysOfWeeks = infrastructureMaintenanceWindowDaysOfWeek,
HoursOfDays = infrastructureMaintenanceWindowHoursOfDay,
IsCustomActionTimeoutEnabled = infrastructureMaintenanceWindowIsCustomActionTimeoutEnabled,
IsMonthlyPatchingEnabled = infrastructureMaintenanceWindowIsMonthlyPatchingEnabled,
LeadTimeInWeeks = infrastructureMaintenanceWindowLeadTimeInWeeks,
Months = infrastructureMaintenanceWindowMonths,
PatchingMode = infrastructureMaintenanceWindowPatchingMode,
Preference = infrastructureMaintenanceWindowPreference,
WeeksOfMonths = infrastructureMaintenanceWindowWeeksOfMonth,
},
VlanId = testVlan.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.DataccInfrastructure;
import com.pulumi.oci.oci.DataccInfrastructureArgs;
import com.pulumi.oci.oci.inputs.DataccInfrastructureContactArgs;
import com.pulumi.oci.oci.inputs.DataccInfrastructureMaintenanceWindowArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testInfrastructure = new DataccInfrastructure("testInfrastructure", DataccInfrastructureArgs.builder()
.cloudControlPlaneServer1(infrastructureCloudControlPlaneServer1)
.cloudControlPlaneServer2(infrastructureCloudControlPlaneServer2)
.compartmentId(compartmentId)
.displayName(infrastructureDisplayName)
.dnsServers(infrastructureDnsServers)
.gateway(infrastructureGateway)
.netmask(infrastructureNetmask)
.ntpServers(infrastructureNtpServers)
.shape(infrastructureShape)
.systemModel(infrastructureSystemModel)
.acfsFileSystemStorageInGbs(infrastructureAcfsFileSystemStorageInGbs)
.adminNetworkcidr(infrastructureAdminNetworkcidr)
.backupNetworkBondingInterface(infrastructureBackupNetworkBondingInterface)
.backupNetworkBondingMode(infrastructureBackupNetworkBondingMode)
.clientNetworkBondingInterface(infrastructureClientNetworkBondingInterface)
.clientNetworkBondingMode(infrastructureClientNetworkBondingMode)
.contacts(DataccInfrastructureContactArgs.builder()
.email(infrastructureContactsEmail)
.isPrimary(infrastructureContactsIsPrimary)
.name(infrastructureContactsName)
.isContactMosValidated(infrastructureContactsIsContactMosValidated)
.phoneNumber(infrastructureContactsPhoneNumber)
.build())
.corporateProxy(infrastructureCorporateProxy)
.cpsNetworkBondingInterface(infrastructureCpsNetworkBondingInterface)
.cpsNetworkBondingMode(infrastructureCpsNetworkBondingMode)
.dataDiskPercentage(infrastructureDataDiskPercentage)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(infrastructureDescription)
.freeformTags(Map.of("bar-key", "value"))
.maintenanceWindow(DataccInfrastructureMaintenanceWindowArgs.builder()
.customActionTimeoutInMins(infrastructureMaintenanceWindowCustomActionTimeoutInMins)
.daysOfWeeks(infrastructureMaintenanceWindowDaysOfWeek)
.hoursOfDays(infrastructureMaintenanceWindowHoursOfDay)
.isCustomActionTimeoutEnabled(infrastructureMaintenanceWindowIsCustomActionTimeoutEnabled)
.isMonthlyPatchingEnabled(infrastructureMaintenanceWindowIsMonthlyPatchingEnabled)
.leadTimeInWeeks(infrastructureMaintenanceWindowLeadTimeInWeeks)
.months(infrastructureMaintenanceWindowMonths)
.patchingMode(infrastructureMaintenanceWindowPatchingMode)
.preference(infrastructureMaintenanceWindowPreference)
.weeksOfMonths(infrastructureMaintenanceWindowWeeksOfMonth)
.build())
.vlanId(testVlan.id())
.build());
}
}
resources:
testInfrastructure:
type: oci:oci:DataccInfrastructure
name: test_infrastructure
properties:
cloudControlPlaneServer1: ${infrastructureCloudControlPlaneServer1}
cloudControlPlaneServer2: ${infrastructureCloudControlPlaneServer2}
compartmentId: ${compartmentId}
displayName: ${infrastructureDisplayName}
dnsServers: ${infrastructureDnsServers}
gateway: ${infrastructureGateway}
netmask: ${infrastructureNetmask}
ntpServers: ${infrastructureNtpServers}
shape: ${infrastructureShape}
systemModel: ${infrastructureSystemModel}
acfsFileSystemStorageInGbs: ${infrastructureAcfsFileSystemStorageInGbs}
adminNetworkcidr: ${infrastructureAdminNetworkcidr}
backupNetworkBondingInterface: ${infrastructureBackupNetworkBondingInterface}
backupNetworkBondingMode: ${infrastructureBackupNetworkBondingMode}
clientNetworkBondingInterface: ${infrastructureClientNetworkBondingInterface}
clientNetworkBondingMode: ${infrastructureClientNetworkBondingMode}
contacts:
- email: ${infrastructureContactsEmail}
isPrimary: ${infrastructureContactsIsPrimary}
name: ${infrastructureContactsName}
isContactMosValidated: ${infrastructureContactsIsContactMosValidated}
phoneNumber: ${infrastructureContactsPhoneNumber}
corporateProxy: ${infrastructureCorporateProxy}
cpsNetworkBondingInterface: ${infrastructureCpsNetworkBondingInterface}
cpsNetworkBondingMode: ${infrastructureCpsNetworkBondingMode}
dataDiskPercentage: ${infrastructureDataDiskPercentage}
definedTags:
foo-namespace.bar-key: value
description: ${infrastructureDescription}
freeformTags:
bar-key: value
maintenanceWindow:
customActionTimeoutInMins: ${infrastructureMaintenanceWindowCustomActionTimeoutInMins}
daysOfWeeks: ${infrastructureMaintenanceWindowDaysOfWeek}
hoursOfDays: ${infrastructureMaintenanceWindowHoursOfDay}
isCustomActionTimeoutEnabled: ${infrastructureMaintenanceWindowIsCustomActionTimeoutEnabled}
isMonthlyPatchingEnabled: ${infrastructureMaintenanceWindowIsMonthlyPatchingEnabled}
leadTimeInWeeks: ${infrastructureMaintenanceWindowLeadTimeInWeeks}
months: ${infrastructureMaintenanceWindowMonths}
patchingMode: ${infrastructureMaintenanceWindowPatchingMode}
preference: ${infrastructureMaintenanceWindowPreference}
weeksOfMonths: ${infrastructureMaintenanceWindowWeeksOfMonth}
vlanId: ${testVlan.id}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
resource "oci_oci_dataccinfrastructure" "test_infrastructure" {
cloud_control_plane_server1 = infrastructureCloudControlPlaneServer1
cloud_control_plane_server2 = infrastructureCloudControlPlaneServer2
compartment_id = compartmentId
display_name = infrastructureDisplayName
dns_servers = infrastructureDnsServers
gateway = infrastructureGateway
netmask = infrastructureNetmask
ntp_servers = infrastructureNtpServers
shape = infrastructureShape
system_model = infrastructureSystemModel
acfs_file_system_storage_in_gbs = infrastructureAcfsFileSystemStorageInGbs
admin_networkcidr = infrastructureAdminNetworkcidr
backup_network_bonding_interface = infrastructureBackupNetworkBondingInterface
backup_network_bonding_mode = infrastructureBackupNetworkBondingMode
client_network_bonding_interface = infrastructureClientNetworkBondingInterface
client_network_bonding_mode = infrastructureClientNetworkBondingMode
contacts {
email = infrastructureContactsEmail
is_primary = infrastructureContactsIsPrimary
name = infrastructureContactsName
is_contact_mos_validated = infrastructureContactsIsContactMosValidated
phone_number = infrastructureContactsPhoneNumber
}
#Required
#Optional
corporate_proxy = infrastructureCorporateProxy
cps_network_bonding_interface = infrastructureCpsNetworkBondingInterface
cps_network_bonding_mode = infrastructureCpsNetworkBondingMode
data_disk_percentage = infrastructureDataDiskPercentage
defined_tags = {
"foo-namespace.bar-key" = "value"
}
description = infrastructureDescription
freeform_tags = {
"bar-key" = "value"
}
maintenance_window = {
custom_action_timeout_in_mins = infrastructureMaintenanceWindowCustomActionTimeoutInMins
days_of_weeks = infrastructureMaintenanceWindowDaysOfWeek
hours_of_days = infrastructureMaintenanceWindowHoursOfDay
is_custom_action_timeout_enabled = infrastructureMaintenanceWindowIsCustomActionTimeoutEnabled
is_monthly_patching_enabled = infrastructureMaintenanceWindowIsMonthlyPatchingEnabled
lead_time_in_weeks = infrastructureMaintenanceWindowLeadTimeInWeeks
months = infrastructureMaintenanceWindowMonths
patching_mode = infrastructureMaintenanceWindowPatchingMode
preference = infrastructureMaintenanceWindowPreference
weeks_of_months = infrastructureMaintenanceWindowWeeksOfMonth
}
#Optional
vlan_id = testVlan.id
}
Create DataccInfrastructure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataccInfrastructure(name: string, args: DataccInfrastructureArgs, opts?: CustomResourceOptions);@overload
def DataccInfrastructure(resource_name: str,
args: DataccInfrastructureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DataccInfrastructure(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
system_model: Optional[str] = None,
shape: Optional[str] = None,
ntp_servers: Optional[Sequence[str]] = None,
netmask: Optional[str] = None,
gateway: Optional[str] = None,
cloud_control_plane_server1: Optional[str] = None,
cloud_control_plane_server2: Optional[str] = None,
compartment_id: Optional[str] = None,
dns_servers: Optional[Sequence[str]] = None,
cps_network_bonding_mode: Optional[str] = None,
client_network_bonding_mode: Optional[str] = None,
acfs_file_system_storage_in_gbs: Optional[float] = None,
data_disk_percentage: Optional[int] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
corporate_proxy: Optional[str] = None,
contacts: Optional[Sequence[DataccInfrastructureContactArgs]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
cps_network_bonding_interface: Optional[str] = None,
maintenance_window: Optional[DataccInfrastructureMaintenanceWindowArgs] = None,
client_network_bonding_interface: Optional[str] = None,
backup_network_bonding_mode: Optional[str] = None,
scale_storage_trigger: Optional[int] = None,
backup_network_bonding_interface: Optional[str] = None,
admin_networkcidr: Optional[str] = None,
vlan_id: Optional[str] = None)func NewDataccInfrastructure(ctx *Context, name string, args DataccInfrastructureArgs, opts ...ResourceOption) (*DataccInfrastructure, error)public DataccInfrastructure(string name, DataccInfrastructureArgs args, CustomResourceOptions? opts = null)
public DataccInfrastructure(String name, DataccInfrastructureArgs args)
public DataccInfrastructure(String name, DataccInfrastructureArgs args, CustomResourceOptions options)
type: oci:oci:DataccInfrastructure
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "oci_oci_datacc_infrastructure" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args DataccInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DataccInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DataccInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataccInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataccInfrastructureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dataccInfrastructureResource = new Oci.Oci.DataccInfrastructure("dataccInfrastructureResource", new()
{
DisplayName = "string",
SystemModel = "string",
Shape = "string",
NtpServers = new[]
{
"string",
},
Netmask = "string",
Gateway = "string",
CloudControlPlaneServer1 = "string",
CloudControlPlaneServer2 = "string",
CompartmentId = "string",
DnsServers = new[]
{
"string",
},
CpsNetworkBondingMode = "string",
ClientNetworkBondingMode = "string",
AcfsFileSystemStorageInGbs = 0,
DataDiskPercentage = 0,
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
CorporateProxy = "string",
Contacts = new[]
{
new Oci.Oci.Inputs.DataccInfrastructureContactArgs
{
Email = "string",
IsPrimary = false,
Name = "string",
IsContactMosValidated = false,
PhoneNumber = "string",
},
},
FreeformTags =
{
{ "string", "string" },
},
CpsNetworkBondingInterface = "string",
MaintenanceWindow = new Oci.Oci.Inputs.DataccInfrastructureMaintenanceWindowArgs
{
CustomActionTimeoutInMins = 0,
DaysOfWeeks = new[]
{
"string",
},
HoursOfDays = new[]
{
0,
},
IsCustomActionTimeoutEnabled = false,
IsMonthlyPatchingEnabled = false,
LeadTimeInWeeks = 0,
Months = new[]
{
"string",
},
PatchingMode = "string",
Preference = "string",
WeeksOfMonths = new[]
{
0,
},
},
ClientNetworkBondingInterface = "string",
BackupNetworkBondingMode = "string",
ScaleStorageTrigger = 0,
BackupNetworkBondingInterface = "string",
AdminNetworkcidr = "string",
VlanId = "string",
});
example, err := oci.NewDataccInfrastructure(ctx, "dataccInfrastructureResource", &oci.DataccInfrastructureArgs{
DisplayName: pulumi.String("string"),
SystemModel: pulumi.String("string"),
Shape: pulumi.String("string"),
NtpServers: pulumi.StringArray{
pulumi.String("string"),
},
Netmask: pulumi.String("string"),
Gateway: pulumi.String("string"),
CloudControlPlaneServer1: pulumi.String("string"),
CloudControlPlaneServer2: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DnsServers: pulumi.StringArray{
pulumi.String("string"),
},
CpsNetworkBondingMode: pulumi.String("string"),
ClientNetworkBondingMode: pulumi.String("string"),
AcfsFileSystemStorageInGbs: pulumi.Float64(0),
DataDiskPercentage: pulumi.Int(0),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
CorporateProxy: pulumi.String("string"),
Contacts: oci.DataccInfrastructureContactArray{
&oci.DataccInfrastructureContactArgs{
Email: pulumi.String("string"),
IsPrimary: pulumi.Bool(false),
Name: pulumi.String("string"),
IsContactMosValidated: pulumi.Bool(false),
PhoneNumber: pulumi.String("string"),
},
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
CpsNetworkBondingInterface: pulumi.String("string"),
MaintenanceWindow: &oci.DataccInfrastructureMaintenanceWindowArgs{
CustomActionTimeoutInMins: pulumi.Int(0),
DaysOfWeeks: pulumi.StringArray{
pulumi.String("string"),
},
HoursOfDays: pulumi.IntArray{
pulumi.Int(0),
},
IsCustomActionTimeoutEnabled: pulumi.Bool(false),
IsMonthlyPatchingEnabled: pulumi.Bool(false),
LeadTimeInWeeks: pulumi.Int(0),
Months: pulumi.StringArray{
pulumi.String("string"),
},
PatchingMode: pulumi.String("string"),
Preference: pulumi.String("string"),
WeeksOfMonths: pulumi.IntArray{
pulumi.Int(0),
},
},
ClientNetworkBondingInterface: pulumi.String("string"),
BackupNetworkBondingMode: pulumi.String("string"),
ScaleStorageTrigger: pulumi.Int(0),
BackupNetworkBondingInterface: pulumi.String("string"),
AdminNetworkcidr: pulumi.String("string"),
VlanId: pulumi.String("string"),
})
resource "oci_oci_datacc_infrastructure" "dataccInfrastructureResource" {
lifecycle {
create_before_destroy = true
}
display_name = "string"
system_model = "string"
shape = "string"
ntp_servers = ["string"]
netmask = "string"
gateway = "string"
cloud_control_plane_server1 = "string"
cloud_control_plane_server2 = "string"
compartment_id = "string"
dns_servers = ["string"]
cps_network_bonding_mode = "string"
client_network_bonding_mode = "string"
acfs_file_system_storage_in_gbs = 0
data_disk_percentage = 0
defined_tags = {
"string" = "string"
}
description = "string"
corporate_proxy = "string"
contacts {
email = "string"
is_primary = false
name = "string"
is_contact_mos_validated = false
phone_number = "string"
}
freeform_tags = {
"string" = "string"
}
cps_network_bonding_interface = "string"
maintenance_window = {
custom_action_timeout_in_mins = 0
days_of_weeks = ["string"]
hours_of_days = [0]
is_custom_action_timeout_enabled = false
is_monthly_patching_enabled = false
lead_time_in_weeks = 0
months = ["string"]
patching_mode = "string"
preference = "string"
weeks_of_months = [0]
}
client_network_bonding_interface = "string"
backup_network_bonding_mode = "string"
scale_storage_trigger = 0
backup_network_bonding_interface = "string"
admin_networkcidr = "string"
vlan_id = "string"
}
var dataccInfrastructureResource = new DataccInfrastructure("dataccInfrastructureResource", DataccInfrastructureArgs.builder()
.displayName("string")
.systemModel("string")
.shape("string")
.ntpServers("string")
.netmask("string")
.gateway("string")
.cloudControlPlaneServer1("string")
.cloudControlPlaneServer2("string")
.compartmentId("string")
.dnsServers("string")
.cpsNetworkBondingMode("string")
.clientNetworkBondingMode("string")
.acfsFileSystemStorageInGbs(0.0)
.dataDiskPercentage(0)
.definedTags(Map.of("string", "string"))
.description("string")
.corporateProxy("string")
.contacts(DataccInfrastructureContactArgs.builder()
.email("string")
.isPrimary(false)
.name("string")
.isContactMosValidated(false)
.phoneNumber("string")
.build())
.freeformTags(Map.of("string", "string"))
.cpsNetworkBondingInterface("string")
.maintenanceWindow(DataccInfrastructureMaintenanceWindowArgs.builder()
.customActionTimeoutInMins(0)
.daysOfWeeks("string")
.hoursOfDays(0)
.isCustomActionTimeoutEnabled(false)
.isMonthlyPatchingEnabled(false)
.leadTimeInWeeks(0)
.months("string")
.patchingMode("string")
.preference("string")
.weeksOfMonths(0)
.build())
.clientNetworkBondingInterface("string")
.backupNetworkBondingMode("string")
.scaleStorageTrigger(0)
.backupNetworkBondingInterface("string")
.adminNetworkcidr("string")
.vlanId("string")
.build());
datacc_infrastructure_resource = oci.oci.DataccInfrastructure("dataccInfrastructureResource",
display_name="string",
system_model="string",
shape="string",
ntp_servers=["string"],
netmask="string",
gateway="string",
cloud_control_plane_server1="string",
cloud_control_plane_server2="string",
compartment_id="string",
dns_servers=["string"],
cps_network_bonding_mode="string",
client_network_bonding_mode="string",
acfs_file_system_storage_in_gbs=float(0),
data_disk_percentage=0,
defined_tags={
"string": "string",
},
description="string",
corporate_proxy="string",
contacts=[{
"email": "string",
"is_primary": False,
"name": "string",
"is_contact_mos_validated": False,
"phone_number": "string",
}],
freeform_tags={
"string": "string",
},
cps_network_bonding_interface="string",
maintenance_window={
"custom_action_timeout_in_mins": 0,
"days_of_weeks": ["string"],
"hours_of_days": [0],
"is_custom_action_timeout_enabled": False,
"is_monthly_patching_enabled": False,
"lead_time_in_weeks": 0,
"months": ["string"],
"patching_mode": "string",
"preference": "string",
"weeks_of_months": [0],
},
client_network_bonding_interface="string",
backup_network_bonding_mode="string",
scale_storage_trigger=0,
backup_network_bonding_interface="string",
admin_networkcidr="string",
vlan_id="string")
const dataccInfrastructureResource = new oci.oci.DataccInfrastructure("dataccInfrastructureResource", {
displayName: "string",
systemModel: "string",
shape: "string",
ntpServers: ["string"],
netmask: "string",
gateway: "string",
cloudControlPlaneServer1: "string",
cloudControlPlaneServer2: "string",
compartmentId: "string",
dnsServers: ["string"],
cpsNetworkBondingMode: "string",
clientNetworkBondingMode: "string",
acfsFileSystemStorageInGbs: 0,
dataDiskPercentage: 0,
definedTags: {
string: "string",
},
description: "string",
corporateProxy: "string",
contacts: [{
email: "string",
isPrimary: false,
name: "string",
isContactMosValidated: false,
phoneNumber: "string",
}],
freeformTags: {
string: "string",
},
cpsNetworkBondingInterface: "string",
maintenanceWindow: {
customActionTimeoutInMins: 0,
daysOfWeeks: ["string"],
hoursOfDays: [0],
isCustomActionTimeoutEnabled: false,
isMonthlyPatchingEnabled: false,
leadTimeInWeeks: 0,
months: ["string"],
patchingMode: "string",
preference: "string",
weeksOfMonths: [0],
},
clientNetworkBondingInterface: "string",
backupNetworkBondingMode: "string",
scaleStorageTrigger: 0,
backupNetworkBondingInterface: "string",
adminNetworkcidr: "string",
vlanId: "string",
});
type: oci:oci:DataccInfrastructure
properties:
acfsFileSystemStorageInGbs: 0
adminNetworkcidr: string
backupNetworkBondingInterface: string
backupNetworkBondingMode: string
clientNetworkBondingInterface: string
clientNetworkBondingMode: string
cloudControlPlaneServer1: string
cloudControlPlaneServer2: string
compartmentId: string
contacts:
- email: string
isContactMosValidated: false
isPrimary: false
name: string
phoneNumber: string
corporateProxy: string
cpsNetworkBondingInterface: string
cpsNetworkBondingMode: string
dataDiskPercentage: 0
definedTags:
string: string
description: string
displayName: string
dnsServers:
- string
freeformTags:
string: string
gateway: string
maintenanceWindow:
customActionTimeoutInMins: 0
daysOfWeeks:
- string
hoursOfDays:
- 0
isCustomActionTimeoutEnabled: false
isMonthlyPatchingEnabled: false
leadTimeInWeeks: 0
months:
- string
patchingMode: string
preference: string
weeksOfMonths:
- 0
netmask: string
ntpServers:
- string
scaleStorageTrigger: 0
shape: string
systemModel: string
vlanId: string
DataccInfrastructure Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DataccInfrastructure resource accepts the following input properties:
- Cloud
Control stringPlane Server1 - (Updatable) The IP address for the first control plane server.
- Cloud
Control stringPlane Server2 - (Updatable) The IP address for the second control plane server.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- Dns
Servers List<string> - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- Gateway string
- (Updatable) The gateway for the control plane network.
- Netmask string
- (Updatable) The netmask for the control plane network.
- Ntp
Servers List<string> - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- Shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- System
Model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- Acfs
File doubleSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- Admin
Networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- Backup
Network stringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- Backup
Network stringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- Client
Network stringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- Client
Network stringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- Contacts
List<Datacc
Infrastructure Contact> - (Updatable) The list of contacts for the Database Infrastructure.
- Corporate
Proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- Cps
Network stringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- Cps
Network stringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- Data
Disk intPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- (Updatable) Database Infrastructure description.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - Maintenance
Window DataccInfrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Scale
Storage intTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Vlan
Id string - (Updatable) The CPS network VLAN ID.
- Cloud
Control stringPlane Server1 - (Updatable) The IP address for the first control plane server.
- Cloud
Control stringPlane Server2 - (Updatable) The IP address for the second control plane server.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- Dns
Servers []string - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- Gateway string
- (Updatable) The gateway for the control plane network.
- Netmask string
- (Updatable) The netmask for the control plane network.
- Ntp
Servers []string - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- Shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- System
Model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- Acfs
File float64System Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- Admin
Networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- Backup
Network stringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- Backup
Network stringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- Client
Network stringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- Client
Network stringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- Contacts
[]Datacc
Infrastructure Contact Args - (Updatable) The list of contacts for the Database Infrastructure.
- Corporate
Proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- Cps
Network stringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- Cps
Network stringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- Data
Disk intPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- (Updatable) Database Infrastructure description.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - Maintenance
Window DataccInfrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Scale
Storage intTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Vlan
Id string - (Updatable) The CPS network VLAN ID.
- cloud_
control_ stringplane_ server1 - (Updatable) The IP address for the first control plane server.
- cloud_
control_ stringplane_ server2 - (Updatable) The IP address for the second control plane server.
- compartment_
id string - (Updatable) The OCID of the compartment.
- display_
name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns_
servers list(string) - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- gateway string
- (Updatable) The gateway for the control plane network.
- netmask string
- (Updatable) The netmask for the control plane network.
- ntp_
servers list(string) - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- system_
model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- acfs_
file_ numbersystem_ storage_ in_ gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- admin_
networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup_
network_ stringbonding_ interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup_
network_ stringbonding_ mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client_
network_ stringbonding_ interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client_
network_ stringbonding_ mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- contacts list(object)
- (Updatable) The list of contacts for the Database Infrastructure.
- corporate_
proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps_
network_ stringbonding_ interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps_
network_ stringbonding_ mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data_
disk_ numberpercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- map(string)
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description string
- (Updatable) Database Infrastructure description.
- map(string)
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - maintenance_
window object - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- scale_
storage_ numbertrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vlan_
id string - (Updatable) The CPS network VLAN ID.
- cloud
Control StringPlane Server1 - (Updatable) The IP address for the first control plane server.
- cloud
Control StringPlane Server2 - (Updatable) The IP address for the second control plane server.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns
Servers List<String> - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- gateway String
- (Updatable) The gateway for the control plane network.
- netmask String
- (Updatable) The netmask for the control plane network.
- ntp
Servers List<String> - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- shape String
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- system
Model String - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- acfs
File DoubleSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- admin
Networkcidr String - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup
Network StringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup
Network StringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client
Network StringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client
Network StringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- contacts
List<Datacc
Infrastructure Contact> - (Updatable) The list of contacts for the Database Infrastructure.
- corporate
Proxy String - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps
Network StringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps
Network StringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data
Disk IntegerPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- (Updatable) Database Infrastructure description.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - maintenance
Window DataccInfrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- scale
Storage IntegerTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vlan
Id String - (Updatable) The CPS network VLAN ID.
- cloud
Control stringPlane Server1 - (Updatable) The IP address for the first control plane server.
- cloud
Control stringPlane Server2 - (Updatable) The IP address for the second control plane server.
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns
Servers string[] - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- gateway string
- (Updatable) The gateway for the control plane network.
- netmask string
- (Updatable) The netmask for the control plane network.
- ntp
Servers string[] - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- system
Model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- acfs
File numberSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- admin
Networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup
Network stringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup
Network stringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client
Network stringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client
Network stringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- contacts
Datacc
Infrastructure Contact[] - (Updatable) The list of contacts for the Database Infrastructure.
- corporate
Proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps
Network stringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps
Network stringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data
Disk numberPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description string
- (Updatable) Database Infrastructure description.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - maintenance
Window DataccInfrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- scale
Storage numberTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vlan
Id string - (Updatable) The CPS network VLAN ID.
- cloud_
control_ strplane_ server1 - (Updatable) The IP address for the first control plane server.
- cloud_
control_ strplane_ server2 - (Updatable) The IP address for the second control plane server.
- compartment_
id str - (Updatable) The OCID of the compartment.
- display_
name str - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns_
servers Sequence[str] - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- gateway str
- (Updatable) The gateway for the control plane network.
- netmask str
- (Updatable) The netmask for the control plane network.
- ntp_
servers Sequence[str] - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- shape str
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- system_
model str - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- acfs_
file_ floatsystem_ storage_ in_ gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- admin_
networkcidr str - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup_
network_ strbonding_ interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup_
network_ strbonding_ mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client_
network_ strbonding_ interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client_
network_ strbonding_ mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- contacts
Sequence[Datacc
Infrastructure Contact Args] - (Updatable) The list of contacts for the Database Infrastructure.
- corporate_
proxy str - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps_
network_ strbonding_ interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps_
network_ strbonding_ mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data_
disk_ intpercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description str
- (Updatable) Database Infrastructure description.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - maintenance_
window DataccInfrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- scale_
storage_ inttrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vlan_
id str - (Updatable) The CPS network VLAN ID.
- cloud
Control StringPlane Server1 - (Updatable) The IP address for the first control plane server.
- cloud
Control StringPlane Server2 - (Updatable) The IP address for the second control plane server.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns
Servers List<String> - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- gateway String
- (Updatable) The gateway for the control plane network.
- netmask String
- (Updatable) The netmask for the control plane network.
- ntp
Servers List<String> - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- shape String
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- system
Model String - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- acfs
File NumberSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- admin
Networkcidr String - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup
Network StringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup
Network StringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client
Network StringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client
Network StringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- contacts List<Property Map>
- (Updatable) The list of contacts for the Database Infrastructure.
- corporate
Proxy String - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps
Network StringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps
Network StringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data
Disk NumberPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- (Updatable) Database Infrastructure description.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - maintenance
Window Property Map - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- scale
Storage NumberTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vlan
Id String - (Updatable) The CPS network VLAN ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataccInfrastructure resource produces the following output properties:
- Acfs
File doubleSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- Compute
Capacities List<DataccInfrastructure Compute Capacity> - Capacity details of the Database Infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Lifecycle state details of the Database Infrastructure.
- Network
Adapter stringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- Rack
Serial stringNumber - The serial number for the Database Infrastructure.
- Reco
Disk intPercentage - Percentage of disk space assigned for RECO disk group.
- Servers
List<Datacc
Infrastructure Server> - A list of Database Infrastructure nodes.
- Ssd
Configuration stringRequested - SSD configuration requested for the infrastructure.
- State string
- The current state of the Database Infrastructure.
- Storage
Capacities List<DataccInfrastructure Storage Capacity> - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- Subscription
Plan stringNumber - The unique identifier for the subscription plan number.
- System
Storage List<DataccCapacities Infrastructure System Storage Capacity> - Capacity details of different storage types.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- Time
Created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- Time
Last stringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- Time
Updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- Time
Validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- Version string
- The version of the system software on the Database Infrastructure.
- Acfs
File float64System Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- Compute
Capacities []DataccInfrastructure Compute Capacity - Capacity details of the Database Infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Lifecycle state details of the Database Infrastructure.
- Network
Adapter stringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- Rack
Serial stringNumber - The serial number for the Database Infrastructure.
- Reco
Disk intPercentage - Percentage of disk space assigned for RECO disk group.
- Servers
[]Datacc
Infrastructure Server - A list of Database Infrastructure nodes.
- Ssd
Configuration stringRequested - SSD configuration requested for the infrastructure.
- State string
- The current state of the Database Infrastructure.
- Storage
Capacities []DataccInfrastructure Storage Capacity - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- Subscription
Plan stringNumber - The unique identifier for the subscription plan number.
- System
Storage []DataccCapacities Infrastructure System Storage Capacity - Capacity details of different storage types.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- Time
Created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- Time
Last stringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- Time
Updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- Time
Validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- Version string
- The version of the system software on the Database Infrastructure.
- acfs_
file_ numbersystem_ used_ storage_ in_ gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- compute_
capacities list(object) - Capacity details of the Database Infrastructure.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle_
state_ stringdetails - Lifecycle state details of the Database Infrastructure.
- network_
adapter_ stringconfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- rack_
serial_ stringnumber - The serial number for the Database Infrastructure.
- reco_
disk_ numberpercentage - Percentage of disk space assigned for RECO disk group.
- servers list(object)
- A list of Database Infrastructure nodes.
- ssd_
configuration_ stringrequested - SSD configuration requested for the infrastructure.
- state string
- The current state of the Database Infrastructure.
- storage_
capacities list(object) - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription_
plan_ stringnumber - The unique identifier for the subscription plan number.
- system_
storage_ list(object)capacities - Capacity details of different storage types.
- map(string)
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time_
created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time_
last_ stringstate_ updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time_
updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time_
validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version string
- The version of the system software on the Database Infrastructure.
- acfs
File DoubleSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- compute
Capacities List<DataccInfrastructure Compute Capacity> - Capacity details of the Database Infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Lifecycle state details of the Database Infrastructure.
- network
Adapter StringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- rack
Serial StringNumber - The serial number for the Database Infrastructure.
- reco
Disk IntegerPercentage - Percentage of disk space assigned for RECO disk group.
- servers
List<Datacc
Infrastructure Server> - A list of Database Infrastructure nodes.
- ssd
Configuration StringRequested - SSD configuration requested for the infrastructure.
- state String
- The current state of the Database Infrastructure.
- storage
Capacities List<DataccInfrastructure Storage Capacity> - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription
Plan StringNumber - The unique identifier for the subscription plan number.
- system
Storage List<DataccCapacities Infrastructure System Storage Capacity> - Capacity details of different storage types.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Activated String - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time
Created String - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time
Last StringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time
Updated String - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time
Validated String - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version String
- The version of the system software on the Database Infrastructure.
- acfs
File numberSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- compute
Capacities DataccInfrastructure Compute Capacity[] - Capacity details of the Database Infrastructure.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
State stringDetails - Lifecycle state details of the Database Infrastructure.
- network
Adapter stringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- rack
Serial stringNumber - The serial number for the Database Infrastructure.
- reco
Disk numberPercentage - Percentage of disk space assigned for RECO disk group.
- servers
Datacc
Infrastructure Server[] - A list of Database Infrastructure nodes.
- ssd
Configuration stringRequested - SSD configuration requested for the infrastructure.
- state string
- The current state of the Database Infrastructure.
- storage
Capacities DataccInfrastructure Storage Capacity[] - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription
Plan stringNumber - The unique identifier for the subscription plan number.
- system
Storage DataccCapacities Infrastructure System Storage Capacity[] - Capacity details of different storage types.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time
Created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time
Last stringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time
Updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time
Validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version string
- The version of the system software on the Database Infrastructure.
- acfs_
file_ floatsystem_ used_ storage_ in_ gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- compute_
capacities Sequence[DataccInfrastructure Compute Capacity] - Capacity details of the Database Infrastructure.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
state_ strdetails - Lifecycle state details of the Database Infrastructure.
- network_
adapter_ strconfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- rack_
serial_ strnumber - The serial number for the Database Infrastructure.
- reco_
disk_ intpercentage - Percentage of disk space assigned for RECO disk group.
- servers
Sequence[Datacc
Infrastructure Server] - A list of Database Infrastructure nodes.
- ssd_
configuration_ strrequested - SSD configuration requested for the infrastructure.
- state str
- The current state of the Database Infrastructure.
- storage_
capacities Sequence[DataccInfrastructure Storage Capacity] - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription_
plan_ strnumber - The unique identifier for the subscription plan number.
- system_
storage_ Sequence[Datacccapacities Infrastructure System Storage Capacity] - Capacity details of different storage types.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
activated str - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time_
created str - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time_
last_ strstate_ updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time_
updated str - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time_
validated str - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version str
- The version of the system software on the Database Infrastructure.
- acfs
File NumberSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- compute
Capacities List<Property Map> - Capacity details of the Database Infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Lifecycle state details of the Database Infrastructure.
- network
Adapter StringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- rack
Serial StringNumber - The serial number for the Database Infrastructure.
- reco
Disk NumberPercentage - Percentage of disk space assigned for RECO disk group.
- servers List<Property Map>
- A list of Database Infrastructure nodes.
- ssd
Configuration StringRequested - SSD configuration requested for the infrastructure.
- state String
- The current state of the Database Infrastructure.
- storage
Capacities List<Property Map> - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription
Plan StringNumber - The unique identifier for the subscription plan number.
- system
Storage List<Property Map>Capacities - Capacity details of different storage types.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Activated String - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time
Created String - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time
Last StringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time
Updated String - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time
Validated String - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version String
- The version of the system software on the Database Infrastructure.
Look up Existing DataccInfrastructure Resource
Get an existing DataccInfrastructure resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DataccInfrastructureState, opts?: CustomResourceOptions): DataccInfrastructure@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
acfs_file_system_storage_in_gbs: Optional[float] = None,
acfs_file_system_used_storage_in_gbs: Optional[float] = None,
admin_networkcidr: Optional[str] = None,
backup_network_bonding_interface: Optional[str] = None,
backup_network_bonding_mode: Optional[str] = None,
client_network_bonding_interface: Optional[str] = None,
client_network_bonding_mode: Optional[str] = None,
cloud_control_plane_server1: Optional[str] = None,
cloud_control_plane_server2: Optional[str] = None,
compartment_id: Optional[str] = None,
compute_capacities: Optional[Sequence[DataccInfrastructureComputeCapacityArgs]] = None,
contacts: Optional[Sequence[DataccInfrastructureContactArgs]] = None,
corporate_proxy: Optional[str] = None,
cps_network_bonding_interface: Optional[str] = None,
cps_network_bonding_mode: Optional[str] = None,
data_disk_percentage: Optional[int] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
dns_servers: Optional[Sequence[str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
gateway: Optional[str] = None,
lifecycle_state_details: Optional[str] = None,
maintenance_window: Optional[DataccInfrastructureMaintenanceWindowArgs] = None,
netmask: Optional[str] = None,
network_adapter_configuration: Optional[str] = None,
ntp_servers: Optional[Sequence[str]] = None,
rack_serial_number: Optional[str] = None,
reco_disk_percentage: Optional[int] = None,
scale_storage_trigger: Optional[int] = None,
servers: Optional[Sequence[DataccInfrastructureServerArgs]] = None,
shape: Optional[str] = None,
ssd_configuration_requested: Optional[str] = None,
state: Optional[str] = None,
storage_capacities: Optional[Sequence[DataccInfrastructureStorageCapacityArgs]] = None,
subscription_plan_number: Optional[str] = None,
system_model: Optional[str] = None,
system_storage_capacities: Optional[Sequence[DataccInfrastructureSystemStorageCapacityArgs]] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_activated: Optional[str] = None,
time_created: Optional[str] = None,
time_last_state_updated: Optional[str] = None,
time_updated: Optional[str] = None,
time_validated: Optional[str] = None,
version: Optional[str] = None,
vlan_id: Optional[str] = None) -> DataccInfrastructurefunc GetDataccInfrastructure(ctx *Context, name string, id IDInput, state *DataccInfrastructureState, opts ...ResourceOption) (*DataccInfrastructure, error)public static DataccInfrastructure Get(string name, Input<string> id, DataccInfrastructureState? state, CustomResourceOptions? opts = null)public static DataccInfrastructure get(String name, Output<String> id, DataccInfrastructureState state, CustomResourceOptions options)resources: _: type: oci:oci:DataccInfrastructure get: id: ${id}import {
to = oci_oci_datacc_infrastructure.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Acfs
File doubleSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- Acfs
File doubleSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- Admin
Networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- Backup
Network stringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- Backup
Network stringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- Client
Network stringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- Client
Network stringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- Cloud
Control stringPlane Server1 - (Updatable) The IP address for the first control plane server.
- Cloud
Control stringPlane Server2 - (Updatable) The IP address for the second control plane server.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Capacities List<DataccInfrastructure Compute Capacity> - Capacity details of the Database Infrastructure.
- Contacts
List<Datacc
Infrastructure Contact> - (Updatable) The list of contacts for the Database Infrastructure.
- Corporate
Proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- Cps
Network stringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- Cps
Network stringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- Data
Disk intPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- (Updatable) Database Infrastructure description.
- Display
Name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- Dns
Servers List<string> - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - Gateway string
- (Updatable) The gateway for the control plane network.
- Lifecycle
State stringDetails - Lifecycle state details of the Database Infrastructure.
- Maintenance
Window DataccInfrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Netmask string
- (Updatable) The netmask for the control plane network.
- Network
Adapter stringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- Ntp
Servers List<string> - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- Rack
Serial stringNumber - The serial number for the Database Infrastructure.
- Reco
Disk intPercentage - Percentage of disk space assigned for RECO disk group.
- Scale
Storage intTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Servers
List<Datacc
Infrastructure Server> - A list of Database Infrastructure nodes.
- Shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssd
Configuration stringRequested - SSD configuration requested for the infrastructure.
- State string
- The current state of the Database Infrastructure.
- Storage
Capacities List<DataccInfrastructure Storage Capacity> - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- Subscription
Plan stringNumber - The unique identifier for the subscription plan number.
- System
Model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- System
Storage List<DataccCapacities Infrastructure System Storage Capacity> - Capacity details of different storage types.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- Time
Created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- Time
Last stringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- Time
Updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- Time
Validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- Version string
- The version of the system software on the Database Infrastructure.
- Vlan
Id string - (Updatable) The CPS network VLAN ID.
- Acfs
File float64System Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- Acfs
File float64System Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- Admin
Networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- Backup
Network stringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- Backup
Network stringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- Client
Network stringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- Client
Network stringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- Cloud
Control stringPlane Server1 - (Updatable) The IP address for the first control plane server.
- Cloud
Control stringPlane Server2 - (Updatable) The IP address for the second control plane server.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Capacities []DataccInfrastructure Compute Capacity Args - Capacity details of the Database Infrastructure.
- Contacts
[]Datacc
Infrastructure Contact Args - (Updatable) The list of contacts for the Database Infrastructure.
- Corporate
Proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- Cps
Network stringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- Cps
Network stringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- Data
Disk intPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- (Updatable) Database Infrastructure description.
- Display
Name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- Dns
Servers []string - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - Gateway string
- (Updatable) The gateway for the control plane network.
- Lifecycle
State stringDetails - Lifecycle state details of the Database Infrastructure.
- Maintenance
Window DataccInfrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Netmask string
- (Updatable) The netmask for the control plane network.
- Network
Adapter stringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- Ntp
Servers []string - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- Rack
Serial stringNumber - The serial number for the Database Infrastructure.
- Reco
Disk intPercentage - Percentage of disk space assigned for RECO disk group.
- Scale
Storage intTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Servers
[]Datacc
Infrastructure Server Args - A list of Database Infrastructure nodes.
- Shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssd
Configuration stringRequested - SSD configuration requested for the infrastructure.
- State string
- The current state of the Database Infrastructure.
- Storage
Capacities []DataccInfrastructure Storage Capacity Args - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- Subscription
Plan stringNumber - The unique identifier for the subscription plan number.
- System
Model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- System
Storage []DataccCapacities Infrastructure System Storage Capacity Args - Capacity details of different storage types.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- Time
Created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- Time
Last stringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- Time
Updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- Time
Validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- Version string
- The version of the system software on the Database Infrastructure.
- Vlan
Id string - (Updatable) The CPS network VLAN ID.
- acfs_
file_ numbersystem_ storage_ in_ gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- acfs_
file_ numbersystem_ used_ storage_ in_ gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- admin_
networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup_
network_ stringbonding_ interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup_
network_ stringbonding_ mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client_
network_ stringbonding_ interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client_
network_ stringbonding_ mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- cloud_
control_ stringplane_ server1 - (Updatable) The IP address for the first control plane server.
- cloud_
control_ stringplane_ server2 - (Updatable) The IP address for the second control plane server.
- compartment_
id string - (Updatable) The OCID of the compartment.
- compute_
capacities list(object) - Capacity details of the Database Infrastructure.
- contacts list(object)
- (Updatable) The list of contacts for the Database Infrastructure.
- corporate_
proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps_
network_ stringbonding_ interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps_
network_ stringbonding_ mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data_
disk_ numberpercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- map(string)
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description string
- (Updatable) Database Infrastructure description.
- display_
name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns_
servers list(string) - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- map(string)
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - gateway string
- (Updatable) The gateway for the control plane network.
- lifecycle_
state_ stringdetails - Lifecycle state details of the Database Infrastructure.
- maintenance_
window object - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- netmask string
- (Updatable) The netmask for the control plane network.
- network_
adapter_ stringconfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- ntp_
servers list(string) - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- rack_
serial_ stringnumber - The serial number for the Database Infrastructure.
- reco_
disk_ numberpercentage - Percentage of disk space assigned for RECO disk group.
- scale_
storage_ numbertrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- servers list(object)
- A list of Database Infrastructure nodes.
- shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssd_
configuration_ stringrequested - SSD configuration requested for the infrastructure.
- state string
- The current state of the Database Infrastructure.
- storage_
capacities list(object) - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription_
plan_ stringnumber - The unique identifier for the subscription plan number.
- system_
model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- system_
storage_ list(object)capacities - Capacity details of different storage types.
- map(string)
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time_
created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time_
last_ stringstate_ updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time_
updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time_
validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version string
- The version of the system software on the Database Infrastructure.
- vlan_
id string - (Updatable) The CPS network VLAN ID.
- acfs
File DoubleSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- acfs
File DoubleSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- admin
Networkcidr String - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup
Network StringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup
Network StringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client
Network StringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client
Network StringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- cloud
Control StringPlane Server1 - (Updatable) The IP address for the first control plane server.
- cloud
Control StringPlane Server2 - (Updatable) The IP address for the second control plane server.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Capacities List<DataccInfrastructure Compute Capacity> - Capacity details of the Database Infrastructure.
- contacts
List<Datacc
Infrastructure Contact> - (Updatable) The list of contacts for the Database Infrastructure.
- corporate
Proxy String - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps
Network StringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps
Network StringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data
Disk IntegerPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- (Updatable) Database Infrastructure description.
- display
Name String - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns
Servers List<String> - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - gateway String
- (Updatable) The gateway for the control plane network.
- lifecycle
State StringDetails - Lifecycle state details of the Database Infrastructure.
- maintenance
Window DataccInfrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- netmask String
- (Updatable) The netmask for the control plane network.
- network
Adapter StringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- ntp
Servers List<String> - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- rack
Serial StringNumber - The serial number for the Database Infrastructure.
- reco
Disk IntegerPercentage - Percentage of disk space assigned for RECO disk group.
- scale
Storage IntegerTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- servers
List<Datacc
Infrastructure Server> - A list of Database Infrastructure nodes.
- shape String
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssd
Configuration StringRequested - SSD configuration requested for the infrastructure.
- state String
- The current state of the Database Infrastructure.
- storage
Capacities List<DataccInfrastructure Storage Capacity> - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription
Plan StringNumber - The unique identifier for the subscription plan number.
- system
Model String - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- system
Storage List<DataccCapacities Infrastructure System Storage Capacity> - Capacity details of different storage types.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Activated String - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time
Created String - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time
Last StringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time
Updated String - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time
Validated String - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version String
- The version of the system software on the Database Infrastructure.
- vlan
Id String - (Updatable) The CPS network VLAN ID.
- acfs
File numberSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- acfs
File numberSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- admin
Networkcidr string - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup
Network stringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup
Network stringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client
Network stringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client
Network stringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- cloud
Control stringPlane Server1 - (Updatable) The IP address for the first control plane server.
- cloud
Control stringPlane Server2 - (Updatable) The IP address for the second control plane server.
- compartment
Id string - (Updatable) The OCID of the compartment.
- compute
Capacities DataccInfrastructure Compute Capacity[] - Capacity details of the Database Infrastructure.
- contacts
Datacc
Infrastructure Contact[] - (Updatable) The list of contacts for the Database Infrastructure.
- corporate
Proxy string - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps
Network stringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps
Network stringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data
Disk numberPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description string
- (Updatable) Database Infrastructure description.
- display
Name string - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns
Servers string[] - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - gateway string
- (Updatable) The gateway for the control plane network.
- lifecycle
State stringDetails - Lifecycle state details of the Database Infrastructure.
- maintenance
Window DataccInfrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- netmask string
- (Updatable) The netmask for the control plane network.
- network
Adapter stringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- ntp
Servers string[] - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- rack
Serial stringNumber - The serial number for the Database Infrastructure.
- reco
Disk numberPercentage - Percentage of disk space assigned for RECO disk group.
- scale
Storage numberTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- servers
Datacc
Infrastructure Server[] - A list of Database Infrastructure nodes.
- shape string
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssd
Configuration stringRequested - SSD configuration requested for the infrastructure.
- state string
- The current state of the Database Infrastructure.
- storage
Capacities DataccInfrastructure Storage Capacity[] - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription
Plan stringNumber - The unique identifier for the subscription plan number.
- system
Model string - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- system
Storage DataccCapacities Infrastructure System Storage Capacity[] - Capacity details of different storage types.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Activated string - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time
Created string - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time
Last stringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time
Updated string - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time
Validated string - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version string
- The version of the system software on the Database Infrastructure.
- vlan
Id string - (Updatable) The CPS network VLAN ID.
- acfs_
file_ floatsystem_ storage_ in_ gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- acfs_
file_ floatsystem_ used_ storage_ in_ gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- admin_
networkcidr str - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup_
network_ strbonding_ interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup_
network_ strbonding_ mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client_
network_ strbonding_ interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client_
network_ strbonding_ mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- cloud_
control_ strplane_ server1 - (Updatable) The IP address for the first control plane server.
- cloud_
control_ strplane_ server2 - (Updatable) The IP address for the second control plane server.
- compartment_
id str - (Updatable) The OCID of the compartment.
- compute_
capacities Sequence[DataccInfrastructure Compute Capacity Args] - Capacity details of the Database Infrastructure.
- contacts
Sequence[Datacc
Infrastructure Contact Args] - (Updatable) The list of contacts for the Database Infrastructure.
- corporate_
proxy str - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps_
network_ strbonding_ interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps_
network_ strbonding_ mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data_
disk_ intpercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description str
- (Updatable) Database Infrastructure description.
- display_
name str - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns_
servers Sequence[str] - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - gateway str
- (Updatable) The gateway for the control plane network.
- lifecycle_
state_ strdetails - Lifecycle state details of the Database Infrastructure.
- maintenance_
window DataccInfrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- netmask str
- (Updatable) The netmask for the control plane network.
- network_
adapter_ strconfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- ntp_
servers Sequence[str] - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- rack_
serial_ strnumber - The serial number for the Database Infrastructure.
- reco_
disk_ intpercentage - Percentage of disk space assigned for RECO disk group.
- scale_
storage_ inttrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- servers
Sequence[Datacc
Infrastructure Server Args] - A list of Database Infrastructure nodes.
- shape str
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssd_
configuration_ strrequested - SSD configuration requested for the infrastructure.
- state str
- The current state of the Database Infrastructure.
- storage_
capacities Sequence[DataccInfrastructure Storage Capacity Args] - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription_
plan_ strnumber - The unique identifier for the subscription plan number.
- system_
model str - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- system_
storage_ Sequence[Datacccapacities Infrastructure System Storage Capacity Args] - Capacity details of different storage types.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
activated str - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time_
created str - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time_
last_ strstate_ updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time_
updated str - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time_
validated str - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version str
- The version of the system software on the Database Infrastructure.
- vlan_
id str - (Updatable) The CPS network VLAN ID.
- acfs
File NumberSystem Storage In Gbs - (Updatable) The amount of storage (in GB) in the DATA disk group that is reserved for creating local storage for VM Clusters and application VMs.
- acfs
File NumberSystem Used Storage In Gbs - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs. This attribute is deprecated and will be removed in a subsequent release. Please read from systemStorageCapacity instead.
- admin
Networkcidr String - (Updatable) The CIDR block for the system network. The system network is a private network in Database Infrastructure and is not connected to your corporate network. The system network is used for storage (ASM) traffic, high-performance interconnect traffic and administration of infrastructure components.
- backup
Network StringBonding Interface - (Updatable) The network bonding interface for backup network for the Database Infrastructure.
- backup
Network StringBonding Mode - (Updatable) The network bonding mode for Backup networks for the Database Infrastructure.
- client
Network StringBonding Interface - (Updatable) The network bonding interface for client network for the Database Infrastructure.
- client
Network StringBonding Mode - (Updatable) The network bonding mode for Client networks for the Database Infrastructure.
- cloud
Control StringPlane Server1 - (Updatable) The IP address for the first control plane server.
- cloud
Control StringPlane Server2 - (Updatable) The IP address for the second control plane server.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Capacities List<Property Map> - Capacity details of the Database Infrastructure.
- contacts List<Property Map>
- (Updatable) The list of contacts for the Database Infrastructure.
- corporate
Proxy String - (Updatable) The corporate network proxy for access to the control plane network. Oracle recommends using an HTTPS proxy when possible for enhanced security.
- cps
Network StringBonding Interface - (Updatable) The network bonding interface for CPS network for the Database Infrastructure.
- cps
Network StringBonding Mode - (Updatable) The network bonding mode for CPS networks for the Database Infrastructure.
- data
Disk NumberPercentage - (Updatable) Percentage of disk space assigned for DATA disk group. Remaining disk space will get assiged to RECO disk group
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- (Updatable) Database Infrastructure description.
- display
Name String - (Updatable) The user-friendly name for the Database Infrastructure. The name does not need to be unique.
- dns
Servers List<String> - (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example:
{"bar-key": "value"} - gateway String
- (Updatable) The gateway for the control plane network.
- lifecycle
State StringDetails - Lifecycle state details of the Database Infrastructure.
- maintenance
Window Property Map - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- netmask String
- (Updatable) The netmask for the control plane network.
- network
Adapter StringConfiguration - The network adapter, transceiver and cable configuration for the client and backup networks.
- ntp
Servers List<String> - (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
- rack
Serial StringNumber - The serial number for the Database Infrastructure.
- reco
Disk NumberPercentage - Percentage of disk space assigned for RECO disk group.
- scale
Storage NumberTrigger (Updatable) An optional property when incremented triggers Scale Storage. Could be set to any integer value.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- servers List<Property Map>
- A list of Database Infrastructure nodes.
- shape String
- (Updatable) The shape of the Database Infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssd
Configuration StringRequested - SSD configuration requested for the infrastructure.
- state String
- The current state of the Database Infrastructure.
- storage
Capacities List<Property Map> - Capacity details of the Storage disk group. This attribute is deprecated and will be removed in a subsequent release. Please use systemStorageCapacity instead.
- subscription
Plan StringNumber - The unique identifier for the subscription plan number.
- system
Model String - (Updatable) Database Infrastructure System Model specification. The system model determines the model of the Database Infrastructure hardware to be used.
- system
Storage List<Property Map>Capacities - Capacity details of different storage types.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Activated String - The time, in RFC3339 format, when the Database Infrastructure was activated.
- time
Created String - The time that the Database Infrastructure cluster was created. An RFC3339 formatted datetime string.
- time
Last StringState Updated - The time, in RFC3339 format, when the lifecycle state was last updated.
- time
Updated String - The time that the Database Infrastructure was last updated. An RFC3339 formatted datetime string.
- time
Validated String - The time, in RFC3339 format, when the Database Infrastructure network was validated.
- version String
- The version of the system software on the Database Infrastructure.
- vlan
Id String - (Updatable) The CPS network VLAN ID.
Supporting Types
DataccInfrastructureComputeCapacity, DataccInfrastructureComputeCapacityArgs
- Allocated
Cores int - Total CPU cores count allocated..
- Available
Cores int - Total available CPU cores count.
- Available
Memory stringIn Gbs - Available memory, in gigabytes (GB).
- Reserved
Cores int - Total Reserved CPU cores count.
- Reserved
Memory stringIn Gbs - Reserved memory, in gigabytes (GB).
- Total
Cores int - Total CPU cores count.
- Total
Memory stringIn Gbs - Total memory allocated, in gigabytes (GB).
- Used
Memory stringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- Allocated
Cores int - Total CPU cores count allocated..
- Available
Cores int - Total available CPU cores count.
- Available
Memory stringIn Gbs - Available memory, in gigabytes (GB).
- Reserved
Cores int - Total Reserved CPU cores count.
- Reserved
Memory stringIn Gbs - Reserved memory, in gigabytes (GB).
- Total
Cores int - Total CPU cores count.
- Total
Memory stringIn Gbs - Total memory allocated, in gigabytes (GB).
- Used
Memory stringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated_
cores number - Total CPU cores count allocated..
- available_
cores number - Total available CPU cores count.
- available_
memory_ stringin_ gbs - Available memory, in gigabytes (GB).
- reserved_
cores number - Total Reserved CPU cores count.
- reserved_
memory_ stringin_ gbs - Reserved memory, in gigabytes (GB).
- total_
cores number - Total CPU cores count.
- total_
memory_ stringin_ gbs - Total memory allocated, in gigabytes (GB).
- used_
memory_ stringin_ gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated
Cores Integer - Total CPU cores count allocated..
- available
Cores Integer - Total available CPU cores count.
- available
Memory StringIn Gbs - Available memory, in gigabytes (GB).
- reserved
Cores Integer - Total Reserved CPU cores count.
- reserved
Memory StringIn Gbs - Reserved memory, in gigabytes (GB).
- total
Cores Integer - Total CPU cores count.
- total
Memory StringIn Gbs - Total memory allocated, in gigabytes (GB).
- used
Memory StringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated
Cores number - Total CPU cores count allocated..
- available
Cores number - Total available CPU cores count.
- available
Memory stringIn Gbs - Available memory, in gigabytes (GB).
- reserved
Cores number - Total Reserved CPU cores count.
- reserved
Memory stringIn Gbs - Reserved memory, in gigabytes (GB).
- total
Cores number - Total CPU cores count.
- total
Memory stringIn Gbs - Total memory allocated, in gigabytes (GB).
- used
Memory stringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated_
cores int - Total CPU cores count allocated..
- available_
cores int - Total available CPU cores count.
- available_
memory_ strin_ gbs - Available memory, in gigabytes (GB).
- reserved_
cores int - Total Reserved CPU cores count.
- reserved_
memory_ strin_ gbs - Reserved memory, in gigabytes (GB).
- total_
cores int - Total CPU cores count.
- total_
memory_ strin_ gbs - Total memory allocated, in gigabytes (GB).
- used_
memory_ strin_ gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated
Cores Number - Total CPU cores count allocated..
- available
Cores Number - Total available CPU cores count.
- available
Memory StringIn Gbs - Available memory, in gigabytes (GB).
- reserved
Cores Number - Total Reserved CPU cores count.
- reserved
Memory StringIn Gbs - Reserved memory, in gigabytes (GB).
- total
Cores Number - Total CPU cores count.
- total
Memory StringIn Gbs - Total memory allocated, in gigabytes (GB).
- used
Memory StringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
DataccInfrastructureContact, DataccInfrastructureContactArgs
- Email string
- (Updatable) The email for the Database Infrastructure contact.
- Is
Primary bool - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - Name string
- (Updatable) The name of the Database Infrastructure contact.
- Is
Contact boolMos Validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - Phone
Number string - (Updatable) The phone number for the Database Infrastructure contact.
- Email string
- (Updatable) The email for the Database Infrastructure contact.
- Is
Primary bool - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - Name string
- (Updatable) The name of the Database Infrastructure contact.
- Is
Contact boolMos Validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - Phone
Number string - (Updatable) The phone number for the Database Infrastructure contact.
- email string
- (Updatable) The email for the Database Infrastructure contact.
- is_
primary bool - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - name string
- (Updatable) The name of the Database Infrastructure contact.
- is_
contact_ boolmos_ validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - phone_
number string - (Updatable) The phone number for the Database Infrastructure contact.
- email String
- (Updatable) The email for the Database Infrastructure contact.
- is
Primary Boolean - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - name String
- (Updatable) The name of the Database Infrastructure contact.
- is
Contact BooleanMos Validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - phone
Number String - (Updatable) The phone number for the Database Infrastructure contact.
- email string
- (Updatable) The email for the Database Infrastructure contact.
- is
Primary boolean - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - name string
- (Updatable) The name of the Database Infrastructure contact.
- is
Contact booleanMos Validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - phone
Number string - (Updatable) The phone number for the Database Infrastructure contact.
- email str
- (Updatable) The email for the Database Infrastructure contact.
- is_
primary bool - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - name str
- (Updatable) The name of the Database Infrastructure contact.
- is_
contact_ boolmos_ validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - phone_
number str - (Updatable) The phone number for the Database Infrastructure contact.
- email String
- (Updatable) The email for the Database Infrastructure contact.
- is
Primary Boolean - (Updatable) If
true, this Database Infrastructure contact is a primary contact. Iffalse, this Database Infrastructure is a secondary contact. - name String
- (Updatable) The name of the Database Infrastructure contact.
- is
Contact BooleanMos Validated - (Updatable) If
true, this Database Infrastructure contact is a valid My Oracle Support (MOS) contact. Iffalse, this Database Infrastructure contact is not a valid MOS contact. - phone
Number String - (Updatable) The phone number for the Database Infrastructure contact.
DataccInfrastructureMaintenanceWindow, DataccInfrastructureMaintenanceWindowArgs
- Custom
Action intTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of List<string>Weeks - (Updatable) Days during the week when maintenance should be performed.
- Hours
Of List<int>Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- Is
Custom boolAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- Is
Monthly boolPatching Enabled - (Updatable) If true, enables the monthly patching option.
- Lead
Time intIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months List<string>
- (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Weeks
Of List<int>Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- Custom
Action intTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of []stringWeeks - (Updatable) Days during the week when maintenance should be performed.
- Hours
Of []intDays - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- Is
Custom boolAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- Is
Monthly boolPatching Enabled - (Updatable) If true, enables the monthly patching option.
- Lead
Time intIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months []string
- (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Weeks
Of []intMonths - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_
action_ numbertimeout_ in_ mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ list(string)weeks - (Updatable) Days during the week when maintenance should be performed.
- hours_
of_ list(number)days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is_
custom_ boolaction_ timeout_ enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- is_
monthly_ boolpatching_ enabled - (Updatable) If true, enables the monthly patching option.
- lead_
time_ numberin_ weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months list(string)
- (Updatable) Months during the year when maintenance should be performed.
- patching_
mode string - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- preference string
- (Updatable) The maintenance window scheduling preference.
- weeks_
of_ list(number)months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action IntegerTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<String>Weeks - (Updatable) Days during the week when maintenance should be performed.
- hours
Of List<Integer>Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom BooleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- is
Monthly BooleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time IntegerIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<String>
- (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- weeks
Of List<Integer>Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action numberTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of string[]Weeks - (Updatable) Days during the week when maintenance should be performed.
- hours
Of number[]Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom booleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- is
Monthly booleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time numberIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months string[]
- (Updatable) Months during the year when maintenance should be performed.
- patching
Mode string - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- preference string
- (Updatable) The maintenance window scheduling preference.
- weeks
Of number[]Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_
action_ inttimeout_ in_ mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ Sequence[str]weeks - (Updatable) Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is_
custom_ boolaction_ timeout_ enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- is_
monthly_ boolpatching_ enabled - (Updatable) If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months Sequence[str]
- (Updatable) Months during the year when maintenance should be performed.
- patching_
mode str - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- preference str
- (Updatable) The maintenance window scheduling preference.
- weeks_
of_ Sequence[int]months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action NumberTimeout In Mins - (Updatable) Determines the amount of time the system will wait before the start of each Database Infrastructure server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<String>Weeks - (Updatable) Days during the week when maintenance should be performed.
- hours
Of List<Number>Days - (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is
Custom BooleanAction Timeout Enabled - (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between Database Infrastructure server patching operations.
- is
Monthly BooleanPatching Enabled - (Updatable) If true, enables the monthly patching option.
- lead
Time NumberIn Weeks - (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<String>
- (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String - (Updatable) Cloud Database Infrastructure node patching method. IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Database Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- weeks
Of List<Number>Months - (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week.For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
DataccInfrastructureServer, DataccInfrastructureServerArgs
- Base
Vm intCount - Number of database virtual machines hosted on the server.
- Compute
Capacities List<DataccInfrastructure Server Compute Capacity> - Capacity details of the Database Infrastructure.
- Id string
- The OCID of the Oracle Data Server of Infrastructure.
- Ilom
Ip stringAddress - Database Infrastructure Server ILOM IP address.
- Ilom
Name string - Database Infrastructure Server ILOM name.
- Instance
Vm intCount - Number of instances hosted on the server.
- Server
Ip stringAddress - Database Infrastructure Server IP address.
- Server
Name string - Database Infrastructure Server name.
- State string
- The current state of the Database Infrastructure.
- Base
Vm intCount - Number of database virtual machines hosted on the server.
- Compute
Capacities []DataccInfrastructure Server Compute Capacity - Capacity details of the Database Infrastructure.
- Id string
- The OCID of the Oracle Data Server of Infrastructure.
- Ilom
Ip stringAddress - Database Infrastructure Server ILOM IP address.
- Ilom
Name string - Database Infrastructure Server ILOM name.
- Instance
Vm intCount - Number of instances hosted on the server.
- Server
Ip stringAddress - Database Infrastructure Server IP address.
- Server
Name string - Database Infrastructure Server name.
- State string
- The current state of the Database Infrastructure.
- base_
vm_ numbercount - Number of database virtual machines hosted on the server.
- compute_
capacities list(object) - Capacity details of the Database Infrastructure.
- id string
- The OCID of the Oracle Data Server of Infrastructure.
- ilom_
ip_ stringaddress - Database Infrastructure Server ILOM IP address.
- ilom_
name string - Database Infrastructure Server ILOM name.
- instance_
vm_ numbercount - Number of instances hosted on the server.
- server_
ip_ stringaddress - Database Infrastructure Server IP address.
- server_
name string - Database Infrastructure Server name.
- state string
- The current state of the Database Infrastructure.
- base
Vm IntegerCount - Number of database virtual machines hosted on the server.
- compute
Capacities List<DataccInfrastructure Server Compute Capacity> - Capacity details of the Database Infrastructure.
- id String
- The OCID of the Oracle Data Server of Infrastructure.
- ilom
Ip StringAddress - Database Infrastructure Server ILOM IP address.
- ilom
Name String - Database Infrastructure Server ILOM name.
- instance
Vm IntegerCount - Number of instances hosted on the server.
- server
Ip StringAddress - Database Infrastructure Server IP address.
- server
Name String - Database Infrastructure Server name.
- state String
- The current state of the Database Infrastructure.
- base
Vm numberCount - Number of database virtual machines hosted on the server.
- compute
Capacities DataccInfrastructure Server Compute Capacity[] - Capacity details of the Database Infrastructure.
- id string
- The OCID of the Oracle Data Server of Infrastructure.
- ilom
Ip stringAddress - Database Infrastructure Server ILOM IP address.
- ilom
Name string - Database Infrastructure Server ILOM name.
- instance
Vm numberCount - Number of instances hosted on the server.
- server
Ip stringAddress - Database Infrastructure Server IP address.
- server
Name string - Database Infrastructure Server name.
- state string
- The current state of the Database Infrastructure.
- base_
vm_ intcount - Number of database virtual machines hosted on the server.
- compute_
capacities Sequence[DataccInfrastructure Server Compute Capacity] - Capacity details of the Database Infrastructure.
- id str
- The OCID of the Oracle Data Server of Infrastructure.
- ilom_
ip_ straddress - Database Infrastructure Server ILOM IP address.
- ilom_
name str - Database Infrastructure Server ILOM name.
- instance_
vm_ intcount - Number of instances hosted on the server.
- server_
ip_ straddress - Database Infrastructure Server IP address.
- server_
name str - Database Infrastructure Server name.
- state str
- The current state of the Database Infrastructure.
- base
Vm NumberCount - Number of database virtual machines hosted on the server.
- compute
Capacities List<Property Map> - Capacity details of the Database Infrastructure.
- id String
- The OCID of the Oracle Data Server of Infrastructure.
- ilom
Ip StringAddress - Database Infrastructure Server ILOM IP address.
- ilom
Name String - Database Infrastructure Server ILOM name.
- instance
Vm NumberCount - Number of instances hosted on the server.
- server
Ip StringAddress - Database Infrastructure Server IP address.
- server
Name String - Database Infrastructure Server name.
- state String
- The current state of the Database Infrastructure.
DataccInfrastructureServerComputeCapacity, DataccInfrastructureServerComputeCapacityArgs
- Allocated
Cores int - Total CPU cores count allocated..
- Available
Cores int - Total available CPU cores count.
- Available
Memory stringIn Gbs - Available memory, in gigabytes (GB).
- Reserved
Cores int - Total Reserved CPU cores count.
- Reserved
Memory stringIn Gbs - Reserved memory, in gigabytes (GB).
- Total
Cores int - Total CPU cores count.
- Total
Memory stringIn Gbs - Total memory allocated, in gigabytes (GB).
- Used
Memory stringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- Allocated
Cores int - Total CPU cores count allocated..
- Available
Cores int - Total available CPU cores count.
- Available
Memory stringIn Gbs - Available memory, in gigabytes (GB).
- Reserved
Cores int - Total Reserved CPU cores count.
- Reserved
Memory stringIn Gbs - Reserved memory, in gigabytes (GB).
- Total
Cores int - Total CPU cores count.
- Total
Memory stringIn Gbs - Total memory allocated, in gigabytes (GB).
- Used
Memory stringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated_
cores number - Total CPU cores count allocated..
- available_
cores number - Total available CPU cores count.
- available_
memory_ stringin_ gbs - Available memory, in gigabytes (GB).
- reserved_
cores number - Total Reserved CPU cores count.
- reserved_
memory_ stringin_ gbs - Reserved memory, in gigabytes (GB).
- total_
cores number - Total CPU cores count.
- total_
memory_ stringin_ gbs - Total memory allocated, in gigabytes (GB).
- used_
memory_ stringin_ gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated
Cores Integer - Total CPU cores count allocated..
- available
Cores Integer - Total available CPU cores count.
- available
Memory StringIn Gbs - Available memory, in gigabytes (GB).
- reserved
Cores Integer - Total Reserved CPU cores count.
- reserved
Memory StringIn Gbs - Reserved memory, in gigabytes (GB).
- total
Cores Integer - Total CPU cores count.
- total
Memory StringIn Gbs - Total memory allocated, in gigabytes (GB).
- used
Memory StringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated
Cores number - Total CPU cores count allocated..
- available
Cores number - Total available CPU cores count.
- available
Memory stringIn Gbs - Available memory, in gigabytes (GB).
- reserved
Cores number - Total Reserved CPU cores count.
- reserved
Memory stringIn Gbs - Reserved memory, in gigabytes (GB).
- total
Cores number - Total CPU cores count.
- total
Memory stringIn Gbs - Total memory allocated, in gigabytes (GB).
- used
Memory stringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated_
cores int - Total CPU cores count allocated..
- available_
cores int - Total available CPU cores count.
- available_
memory_ strin_ gbs - Available memory, in gigabytes (GB).
- reserved_
cores int - Total Reserved CPU cores count.
- reserved_
memory_ strin_ gbs - Reserved memory, in gigabytes (GB).
- total_
cores int - Total CPU cores count.
- total_
memory_ strin_ gbs - Total memory allocated, in gigabytes (GB).
- used_
memory_ strin_ gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
- allocated
Cores Number - Total CPU cores count allocated..
- available
Cores Number - Total available CPU cores count.
- available
Memory StringIn Gbs - Available memory, in gigabytes (GB).
- reserved
Cores Number - Total Reserved CPU cores count.
- reserved
Memory StringIn Gbs - Reserved memory, in gigabytes (GB).
- total
Cores Number - Total CPU cores count.
- total
Memory StringIn Gbs - Total memory allocated, in gigabytes (GB).
- used
Memory StringIn Gbs - Memory allocated to Oracle database virtual machine cluster or Instance, in gigabytes (GB).
DataccInfrastructureStorageCapacity, DataccInfrastructureStorageCapacityArgs
- Disk
Group string - Disk group name.
- Logical
Free stringSpace In Gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- Phy
Free stringSpace In Gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- Phy
Reserved stringSpace In Gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- Phy
Total stringSpace In Gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- Storage
Disk stringRedundancy - The Disk redundancy for Database Infrastructure storage.
- Disk
Group string - Disk group name.
- Logical
Free stringSpace In Gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- Phy
Free stringSpace In Gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- Phy
Reserved stringSpace In Gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- Phy
Total stringSpace In Gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- Storage
Disk stringRedundancy - The Disk redundancy for Database Infrastructure storage.
- disk_
group string - Disk group name.
- logical_
free_ stringspace_ in_ gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy_
free_ stringspace_ in_ gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy_
reserved_ stringspace_ in_ gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- phy_
total_ stringspace_ in_ gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- storage_
disk_ stringredundancy - The Disk redundancy for Database Infrastructure storage.
- disk
Group String - Disk group name.
- logical
Free StringSpace In Gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy
Free StringSpace In Gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy
Reserved StringSpace In Gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- phy
Total StringSpace In Gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- storage
Disk StringRedundancy - The Disk redundancy for Database Infrastructure storage.
- disk
Group string - Disk group name.
- logical
Free stringSpace In Gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy
Free stringSpace In Gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy
Reserved stringSpace In Gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- phy
Total stringSpace In Gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- storage
Disk stringRedundancy - The Disk redundancy for Database Infrastructure storage.
- disk_
group str - Disk group name.
- logical_
free_ strspace_ in_ gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy_
free_ strspace_ in_ gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy_
reserved_ strspace_ in_ gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- phy_
total_ strspace_ in_ gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- storage_
disk_ strredundancy - The Disk redundancy for Database Infrastructure storage.
- disk
Group String - Disk group name.
- logical
Free StringSpace In Gbs - The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy
Free StringSpace In Gbs - The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).
- phy
Reserved StringSpace In Gbs - The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).
- phy
Total StringSpace In Gbs - The total amount of physical disk space available in a disk group, in gigabytes (GB).
- storage
Disk StringRedundancy - The Disk redundancy for Database Infrastructure storage.
DataccInfrastructureSystemStorageCapacity, DataccInfrastructureSystemStorageCapacityArgs
- Acfs
List<Datacc
Infrastructure System Storage Capacity Acf> - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- Disk
Groups List<DataccInfrastructure System Storage Capacity Disk Group> - List of storage disk group capacity details.
- Acfs
[]Datacc
Infrastructure System Storage Capacity Acf - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- Disk
Groups []DataccInfrastructure System Storage Capacity Disk Group - List of storage disk group capacity details.
- acfs list(object)
- The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- disk_
groups list(object) - List of storage disk group capacity details.
- acfs
List<Datacc
Infrastructure System Storage Capacity Acf> - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- disk
Groups List<DataccInfrastructure System Storage Capacity Disk Group> - List of storage disk group capacity details.
- acfs
Datacc
Infrastructure System Storage Capacity Acf[] - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- disk
Groups DataccInfrastructure System Storage Capacity Disk Group[] - List of storage disk group capacity details.
- acfs
Sequence[Datacc
Infrastructure System Storage Capacity Acf] - The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- disk_
groups Sequence[DataccInfrastructure System Storage Capacity Disk Group] - List of storage disk group capacity details.
- acfs List<Property Map>
- The amount of storage (in GB) in the DATA disk group that is currently utilized for creating local storage for VM Clusters and application VMs.
- disk
Groups List<Property Map> - List of storage disk group capacity details.
DataccInfrastructureSystemStorageCapacityAcf, DataccInfrastructureSystemStorageCapacityAcfArgs
- Free
Space doubleIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- Total
Space doubleIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
- Free
Space float64In Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- Total
Space float64In Gbs - The total amount of logical disk space available, in gigabytes (GB).
- free_
space_ numberin_ gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- total_
space_ numberin_ gbs - The total amount of logical disk space available, in gigabytes (GB).
- free
Space DoubleIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- total
Space DoubleIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
- free
Space numberIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- total
Space numberIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
- free_
space_ floatin_ gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- total_
space_ floatin_ gbs - The total amount of logical disk space available, in gigabytes (GB).
- free
Space NumberIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- total
Space NumberIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
DataccInfrastructureSystemStorageCapacityDiskGroup, DataccInfrastructureSystemStorageCapacityDiskGroupArgs
- Free
Space doubleIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- Reserved
Space doubleIn Gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- Storage
Type string - The storage type for the Cloud Database Infrastructure.
- Total
Space doubleIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
- Free
Space float64In Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- Reserved
Space float64In Gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- Storage
Type string - The storage type for the Cloud Database Infrastructure.
- Total
Space float64In Gbs - The total amount of logical disk space available, in gigabytes (GB).
- free_
space_ numberin_ gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- reserved_
space_ numberin_ gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- storage_
type string - The storage type for the Cloud Database Infrastructure.
- total_
space_ numberin_ gbs - The total amount of logical disk space available, in gigabytes (GB).
- free
Space DoubleIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- reserved
Space DoubleIn Gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- storage
Type String - The storage type for the Cloud Database Infrastructure.
- total
Space DoubleIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
- free
Space numberIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- reserved
Space numberIn Gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- storage
Type string - The storage type for the Cloud Database Infrastructure.
- total
Space numberIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
- free_
space_ floatin_ gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- reserved_
space_ floatin_ gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- storage_
type str - The storage type for the Cloud Database Infrastructure.
- total_
space_ floatin_ gbs - The total amount of logical disk space available, in gigabytes (GB).
- free
Space NumberIn Gbs - The total amount of logical disk space that is currently available for use, in gigabytes (GB).
- reserved
Space NumberIn Gbs - The total amount of logical disk space that is reserved for system use, in gigabytes (GB).
- storage
Type String - The storage type for the Cloud Database Infrastructure.
- total
Space NumberIn Gbs - The total amount of logical disk space available, in gigabytes (GB).
Import
Infrastructures can be imported using the id, e.g.
$ pulumi import oci:oci/dataccInfrastructure:DataccInfrastructure test_infrastructure "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Wednesday, Jul 15, 2026 by Pulumi