1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. ExadataInfrastructureCompute
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Database.ExadataInfrastructureCompute

Explore with Pulumi AI

This data source provides details about a specific Exadata Infrastructure compute managed resource in Oracle Cloud Infrastructure Database service.

Gets information about the specified Exadata infrastructure. Applies to Exadata Cloud@Customer instances only. To get information on an Exadata Cloud Service infrastructure resource, use the GetCloudExadataInfrastructure operation.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testExadataInfrastructure = oci.Database.getExadataInfrastructure({
    exadataInfrastructureId: testExadataInfrastructureOciDatabaseExadataInfrastructure.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_exadata_infrastructure = oci.Database.get_exadata_infrastructure(exadata_infrastructure_id=test_exadata_infrastructure_oci_database_exadata_infrastructure["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetExadataInfrastructure(ctx, &database.GetExadataInfrastructureArgs{
			ExadataInfrastructureId: testExadataInfrastructureOciDatabaseExadataInfrastructure.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testExadataInfrastructure = Oci.Database.GetExadataInfrastructure.Invoke(new()
    {
        ExadataInfrastructureId = testExadataInfrastructureOciDatabaseExadataInfrastructure.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetExadataInfrastructureArgs;
import java.util.List;
import java.util.ArrayList;
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) {
        final var testExadataInfrastructure = DatabaseFunctions.getExadataInfrastructure(GetExadataInfrastructureArgs.builder()
            .exadataInfrastructureId(testExadataInfrastructureOciDatabaseExadataInfrastructure.id())
            .build());

    }
}
Copy
variables:
  testExadataInfrastructure:
    fn::invoke:
      function: oci:Database:getExadataInfrastructure
      arguments:
        exadataInfrastructureId: ${testExadataInfrastructureOciDatabaseExadataInfrastructure.id}
Copy

Create ExadataInfrastructureCompute Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ExadataInfrastructureCompute(name: string, args: ExadataInfrastructureComputeArgs, opts?: CustomResourceOptions);
@overload
def ExadataInfrastructureCompute(resource_name: str,
                                 args: ExadataInfrastructureComputeArgs,
                                 opts: Optional[ResourceOptions] = None)

@overload
def ExadataInfrastructureCompute(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 exadata_infrastructure_id: Optional[str] = None,
                                 activation_file: Optional[str] = None,
                                 additional_compute_count_compute_managed_resource: Optional[int] = None,
                                 additional_compute_system_model_compute_managed_resource: Optional[str] = None)
func NewExadataInfrastructureCompute(ctx *Context, name string, args ExadataInfrastructureComputeArgs, opts ...ResourceOption) (*ExadataInfrastructureCompute, error)
public ExadataInfrastructureCompute(string name, ExadataInfrastructureComputeArgs args, CustomResourceOptions? opts = null)
public ExadataInfrastructureCompute(String name, ExadataInfrastructureComputeArgs args)
public ExadataInfrastructureCompute(String name, ExadataInfrastructureComputeArgs args, CustomResourceOptions options)
type: oci:Database:ExadataInfrastructureCompute
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ExadataInfrastructureComputeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ExadataInfrastructureComputeArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ExadataInfrastructureComputeArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ExadataInfrastructureComputeArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ExadataInfrastructureComputeArgs
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 exadataInfrastructureComputeResource = new Oci.Database.ExadataInfrastructureCompute("exadataInfrastructureComputeResource", new()
{
    ExadataInfrastructureId = "string",
    ActivationFile = "string",
    AdditionalComputeCountComputeManagedResource = 0,
    AdditionalComputeSystemModelComputeManagedResource = "string",
});
Copy
example, err := Database.NewExadataInfrastructureCompute(ctx, "exadataInfrastructureComputeResource", &Database.ExadataInfrastructureComputeArgs{
	ExadataInfrastructureId:                            pulumi.String("string"),
	ActivationFile:                                     pulumi.String("string"),
	AdditionalComputeCountComputeManagedResource:       pulumi.Int(0),
	AdditionalComputeSystemModelComputeManagedResource: pulumi.String("string"),
})
Copy
var exadataInfrastructureComputeResource = new ExadataInfrastructureCompute("exadataInfrastructureComputeResource", ExadataInfrastructureComputeArgs.builder()
    .exadataInfrastructureId("string")
    .activationFile("string")
    .additionalComputeCountComputeManagedResource(0)
    .additionalComputeSystemModelComputeManagedResource("string")
    .build());
Copy
exadata_infrastructure_compute_resource = oci.database.ExadataInfrastructureCompute("exadataInfrastructureComputeResource",
    exadata_infrastructure_id="string",
    activation_file="string",
    additional_compute_count_compute_managed_resource=0,
    additional_compute_system_model_compute_managed_resource="string")
Copy
const exadataInfrastructureComputeResource = new oci.database.ExadataInfrastructureCompute("exadataInfrastructureComputeResource", {
    exadataInfrastructureId: "string",
    activationFile: "string",
    additionalComputeCountComputeManagedResource: 0,
    additionalComputeSystemModelComputeManagedResource: "string",
});
Copy
type: oci:Database:ExadataInfrastructureCompute
properties:
    activationFile: string
    additionalComputeCountComputeManagedResource: 0
    additionalComputeSystemModelComputeManagedResource: string
    exadataInfrastructureId: string
Copy

ExadataInfrastructureCompute 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 ExadataInfrastructureCompute resource accepts the following input properties:

ExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
string
The Exadata infrastructure OCID.
ActivationFile string
AdditionalComputeCountComputeManagedResource int
AdditionalComputeSystemModelComputeManagedResource string
ExadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
string
The Exadata infrastructure OCID.
ActivationFile string
AdditionalComputeCountComputeManagedResource int
AdditionalComputeSystemModelComputeManagedResource string
exadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
String
The Exadata infrastructure OCID.
activationFile String
additionalComputeCountComputeManagedResource Integer
additionalComputeSystemModelComputeManagedResource String
exadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
string
The Exadata infrastructure OCID.
activationFile string
additionalComputeCountComputeManagedResource number
additionalComputeSystemModelComputeManagedResource string
exadata_infrastructure_id
This property is required.
Changes to this property will trigger replacement.
str
The Exadata infrastructure OCID.
activation_file str
additional_compute_count_compute_managed_resource int
additional_compute_system_model_compute_managed_resource str
exadataInfrastructureId
This property is required.
Changes to this property will trigger replacement.
String
The Exadata infrastructure OCID.
activationFile String
additionalComputeCountComputeManagedResource Number
additionalComputeSystemModelComputeManagedResource String

Outputs

All input properties are implicitly available as output properties. Additionally, the ExadataInfrastructureCompute resource produces the following output properties:

ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalComputeCount int
The number of additional compute servers for the Exadata infrastructure.
AdditionalComputeSystemModel string
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AdminNetworkCidr string
The CIDR block for the Exadata administration network.
CloudControlPlaneServer1 string
The IP address for the first control plane server.
CloudControlPlaneServer2 string
The IP address for the second control plane server.
CompartmentId string
The OCID of the compartment.
ComputeCount int
The number of compute servers for the Exadata infrastructure.
Contacts List<ExadataInfrastructureComputeContact>
The list of contacts for the Exadata infrastructure.
CorporateProxy string
The corporate network proxy for access to the control plane network.
CpusEnabled int
The number of enabled CPU cores.
CreateAsync bool
CsiNumber string
The CSI Number of the Exadata infrastructure.
DataStorageSizeInTbs double
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the Exadata infrastructure.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
DnsServers List<string>
The list of DNS server IP addresses. Maximum of 3 allowed.
FreeformTags Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Gateway string
The gateway for the control plane network.
Id string
The provider-assigned unique ID for this managed resource.
InfiniBandNetworkCidr string
The CIDR block for the Exadata InfiniBand interconnect.
IsCpsOfflineReportEnabled bool
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
LifecycleDetails string
Additional information about the current lifecycle state.
MaintenanceSloStatus string
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
MaintenanceWindows List<ExadataInfrastructureComputeMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs double
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
Netmask string
The netmask for the control plane network.
NtpServers List<string>
The list of NTP server IP addresses. Maximum of 3 allowed.
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
State string
The current lifecycle state of the Exadata infrastructure.
StorageCount int
The number of Exadata storage servers for the Exadata infrastructure.
StorageServerVersion string
The software version of the storage servers (cells) in the Exadata infrastructure.
TimeCreated string
The date and time the Exadata infrastructure was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
AdditionalComputeCount int
The number of additional compute servers for the Exadata infrastructure.
AdditionalComputeSystemModel string
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AdminNetworkCidr string
The CIDR block for the Exadata administration network.
CloudControlPlaneServer1 string
The IP address for the first control plane server.
CloudControlPlaneServer2 string
The IP address for the second control plane server.
CompartmentId string
The OCID of the compartment.
ComputeCount int
The number of compute servers for the Exadata infrastructure.
Contacts []ExadataInfrastructureComputeContact
The list of contacts for the Exadata infrastructure.
CorporateProxy string
The corporate network proxy for access to the control plane network.
CpusEnabled int
The number of enabled CPU cores.
CreateAsync bool
CsiNumber string
The CSI Number of the Exadata infrastructure.
DataStorageSizeInTbs float64
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the Exadata infrastructure.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
DnsServers []string
The list of DNS server IP addresses. Maximum of 3 allowed.
FreeformTags map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Gateway string
The gateway for the control plane network.
Id string
The provider-assigned unique ID for this managed resource.
InfiniBandNetworkCidr string
The CIDR block for the Exadata InfiniBand interconnect.
IsCpsOfflineReportEnabled bool
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
LifecycleDetails string
Additional information about the current lifecycle state.
MaintenanceSloStatus string
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
MaintenanceWindows []ExadataInfrastructureComputeMaintenanceWindow
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs float64
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
Netmask string
The netmask for the control plane network.
NtpServers []string
The list of NTP server IP addresses. Maximum of 3 allowed.
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
State string
The current lifecycle state of the Exadata infrastructure.
StorageCount int
The number of Exadata storage servers for the Exadata infrastructure.
StorageServerVersion string
The software version of the storage servers (cells) in the Exadata infrastructure.
TimeCreated string
The date and time the Exadata infrastructure was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activatedStorageCount Integer
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalComputeCount Integer
The number of additional compute servers for the Exadata infrastructure.
additionalComputeSystemModel String
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additionalStorageCount Integer
The requested number of additional storage servers for the Exadata infrastructure.
adminNetworkCidr String
The CIDR block for the Exadata administration network.
cloudControlPlaneServer1 String
The IP address for the first control plane server.
cloudControlPlaneServer2 String
The IP address for the second control plane server.
compartmentId String
The OCID of the compartment.
computeCount Integer
The number of compute servers for the Exadata infrastructure.
contacts List<ExadataInfrastructureComputeContact>
The list of contacts for the Exadata infrastructure.
corporateProxy String
The corporate network proxy for access to the control plane network.
cpusEnabled Integer
The number of enabled CPU cores.
createAsync Boolean
csiNumber String
The CSI Number of the Exadata infrastructure.
dataStorageSizeInTbs Double
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Integer
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the Exadata infrastructure.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dnsServers List<String>
The list of DNS server IP addresses. Maximum of 3 allowed.
freeformTags Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway String
The gateway for the control plane network.
id String
The provider-assigned unique ID for this managed resource.
infiniBandNetworkCidr String
The CIDR block for the Exadata InfiniBand interconnect.
isCpsOfflineReportEnabled Boolean
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycleDetails String
Additional information about the current lifecycle state.
maintenanceSloStatus String
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenanceWindows List<ExadataInfrastructureComputeMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount Integer
The total number of CPU cores available.
maxDataStorageInTbs Double
The total available DATA disk group size.
maxDbNodeStorageInGbs Integer
The total local node storage available in GBs.
maxMemoryInGbs Integer
The total memory available in GBs.
memorySizeInGbs Integer
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask String
The netmask for the control plane network.
ntpServers List<String>
The list of NTP server IP addresses. Maximum of 3 allowed.
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state String
The current lifecycle state of the Exadata infrastructure.
storageCount Integer
The number of Exadata storage servers for the Exadata infrastructure.
storageServerVersion String
The software version of the storage servers (cells) in the Exadata infrastructure.
timeCreated String
The date and time the Exadata infrastructure was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activatedStorageCount number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalComputeCount number
The number of additional compute servers for the Exadata infrastructure.
additionalComputeSystemModel string
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additionalStorageCount number
The requested number of additional storage servers for the Exadata infrastructure.
adminNetworkCidr string
The CIDR block for the Exadata administration network.
cloudControlPlaneServer1 string
The IP address for the first control plane server.
cloudControlPlaneServer2 string
The IP address for the second control plane server.
compartmentId string
The OCID of the compartment.
computeCount number
The number of compute servers for the Exadata infrastructure.
contacts ExadataInfrastructureComputeContact[]
The list of contacts for the Exadata infrastructure.
corporateProxy string
The corporate network proxy for access to the control plane network.
cpusEnabled number
The number of enabled CPU cores.
createAsync boolean
csiNumber string
The CSI Number of the Exadata infrastructure.
dataStorageSizeInTbs number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs number
The local node storage allocated in GBs.
dbServerVersion string
The software version of the database servers (dom0) in the Exadata infrastructure.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dnsServers string[]
The list of DNS server IP addresses. Maximum of 3 allowed.
freeformTags {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway string
The gateway for the control plane network.
id string
The provider-assigned unique ID for this managed resource.
infiniBandNetworkCidr string
The CIDR block for the Exadata InfiniBand interconnect.
isCpsOfflineReportEnabled boolean
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycleDetails string
Additional information about the current lifecycle state.
maintenanceSloStatus string
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenanceWindows ExadataInfrastructureComputeMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount number
The total number of CPU cores available.
maxDataStorageInTbs number
The total available DATA disk group size.
maxDbNodeStorageInGbs number
The total local node storage available in GBs.
maxMemoryInGbs number
The total memory available in GBs.
memorySizeInGbs number
The memory allocated in GBs.
monthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask string
The netmask for the control plane network.
ntpServers string[]
The list of NTP server IP addresses. Maximum of 3 allowed.
shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state string
The current lifecycle state of the Exadata infrastructure.
storageCount number
The number of Exadata storage servers for the Exadata infrastructure.
storageServerVersion string
The software version of the storage servers (cells) in the Exadata infrastructure.
timeCreated string
The date and time the Exadata infrastructure was created.
timeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activated_storage_count int
The requested number of additional storage servers activated for the Exadata infrastructure.
additional_compute_count int
The number of additional compute servers for the Exadata infrastructure.
additional_compute_system_model str
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additional_storage_count int
The requested number of additional storage servers for the Exadata infrastructure.
admin_network_cidr str
The CIDR block for the Exadata administration network.
cloud_control_plane_server1 str
The IP address for the first control plane server.
cloud_control_plane_server2 str
The IP address for the second control plane server.
compartment_id str
The OCID of the compartment.
compute_count int
The number of compute servers for the Exadata infrastructure.
contacts Sequence[database.ExadataInfrastructureComputeContact]
The list of contacts for the Exadata infrastructure.
corporate_proxy str
The corporate network proxy for access to the control plane network.
cpus_enabled int
The number of enabled CPU cores.
create_async bool
csi_number str
The CSI Number of the Exadata infrastructure.
data_storage_size_in_tbs float
Size, in terabytes, of the DATA disk group.
db_node_storage_size_in_gbs int
The local node storage allocated in GBs.
db_server_version str
The software version of the database servers (dom0) in the Exadata infrastructure.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name str
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dns_servers Sequence[str]
The list of DNS server IP addresses. Maximum of 3 allowed.
freeform_tags Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway str
The gateway for the control plane network.
id str
The provider-assigned unique ID for this managed resource.
infini_band_network_cidr str
The CIDR block for the Exadata InfiniBand interconnect.
is_cps_offline_report_enabled bool
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycle_details str
Additional information about the current lifecycle state.
maintenance_slo_status str
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenance_windows Sequence[database.ExadataInfrastructureComputeMaintenanceWindow]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
max_cpu_count int
The total number of CPU cores available.
max_data_storage_in_tbs float
The total available DATA disk group size.
max_db_node_storage_in_gbs int
The total local node storage available in GBs.
max_memory_in_gbs int
The total memory available in GBs.
memory_size_in_gbs int
The memory allocated in GBs.
monthly_db_server_version str
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask str
The netmask for the control plane network.
ntp_servers Sequence[str]
The list of NTP server IP addresses. Maximum of 3 allowed.
shape str
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state str
The current lifecycle state of the Exadata infrastructure.
storage_count int
The number of Exadata storage servers for the Exadata infrastructure.
storage_server_version str
The software version of the storage servers (cells) in the Exadata infrastructure.
time_created str
The date and time the Exadata infrastructure was created.
time_zone str
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activatedStorageCount Number
The requested number of additional storage servers activated for the Exadata infrastructure.
additionalComputeCount Number
The number of additional compute servers for the Exadata infrastructure.
additionalComputeSystemModel String
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additionalStorageCount Number
The requested number of additional storage servers for the Exadata infrastructure.
adminNetworkCidr String
The CIDR block for the Exadata administration network.
cloudControlPlaneServer1 String
The IP address for the first control plane server.
cloudControlPlaneServer2 String
The IP address for the second control plane server.
compartmentId String
The OCID of the compartment.
computeCount Number
The number of compute servers for the Exadata infrastructure.
contacts List<Property Map>
The list of contacts for the Exadata infrastructure.
corporateProxy String
The corporate network proxy for access to the control plane network.
cpusEnabled Number
The number of enabled CPU cores.
createAsync Boolean
csiNumber String
The CSI Number of the Exadata infrastructure.
dataStorageSizeInTbs Number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Number
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the Exadata infrastructure.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dnsServers List<String>
The list of DNS server IP addresses. Maximum of 3 allowed.
freeformTags Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway String
The gateway for the control plane network.
id String
The provider-assigned unique ID for this managed resource.
infiniBandNetworkCidr String
The CIDR block for the Exadata InfiniBand interconnect.
isCpsOfflineReportEnabled Boolean
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycleDetails String
Additional information about the current lifecycle state.
maintenanceSloStatus String
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenanceWindows List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount Number
The total number of CPU cores available.
maxDataStorageInTbs Number
The total available DATA disk group size.
maxDbNodeStorageInGbs Number
The total local node storage available in GBs.
maxMemoryInGbs Number
The total memory available in GBs.
memorySizeInGbs Number
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask String
The netmask for the control plane network.
ntpServers List<String>
The list of NTP server IP addresses. Maximum of 3 allowed.
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state String
The current lifecycle state of the Exadata infrastructure.
storageCount Number
The number of Exadata storage servers for the Exadata infrastructure.
storageServerVersion String
The software version of the storage servers (cells) in the Exadata infrastructure.
timeCreated String
The date and time the Exadata infrastructure was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.

Look up Existing ExadataInfrastructureCompute Resource

Get an existing ExadataInfrastructureCompute 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?: ExadataInfrastructureComputeState, opts?: CustomResourceOptions): ExadataInfrastructureCompute
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        activated_storage_count: Optional[int] = None,
        activation_file: Optional[str] = None,
        additional_compute_count: Optional[int] = None,
        additional_compute_count_compute_managed_resource: Optional[int] = None,
        additional_compute_system_model: Optional[str] = None,
        additional_compute_system_model_compute_managed_resource: Optional[str] = None,
        additional_storage_count: Optional[int] = None,
        admin_network_cidr: Optional[str] = None,
        cloud_control_plane_server1: Optional[str] = None,
        cloud_control_plane_server2: Optional[str] = None,
        compartment_id: Optional[str] = None,
        compute_count: Optional[int] = None,
        contacts: Optional[Sequence[_database.ExadataInfrastructureComputeContactArgs]] = None,
        corporate_proxy: Optional[str] = None,
        cpus_enabled: Optional[int] = None,
        create_async: Optional[bool] = None,
        csi_number: Optional[str] = None,
        data_storage_size_in_tbs: Optional[float] = None,
        db_node_storage_size_in_gbs: Optional[int] = None,
        db_server_version: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        dns_servers: Optional[Sequence[str]] = None,
        exadata_infrastructure_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        gateway: Optional[str] = None,
        infini_band_network_cidr: Optional[str] = None,
        is_cps_offline_report_enabled: Optional[bool] = None,
        lifecycle_details: Optional[str] = None,
        maintenance_slo_status: Optional[str] = None,
        maintenance_windows: Optional[Sequence[_database.ExadataInfrastructureComputeMaintenanceWindowArgs]] = None,
        max_cpu_count: Optional[int] = None,
        max_data_storage_in_tbs: Optional[float] = None,
        max_db_node_storage_in_gbs: Optional[int] = None,
        max_memory_in_gbs: Optional[int] = None,
        memory_size_in_gbs: Optional[int] = None,
        monthly_db_server_version: Optional[str] = None,
        netmask: Optional[str] = None,
        ntp_servers: Optional[Sequence[str]] = None,
        shape: Optional[str] = None,
        state: Optional[str] = None,
        storage_count: Optional[int] = None,
        storage_server_version: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None) -> ExadataInfrastructureCompute
func GetExadataInfrastructureCompute(ctx *Context, name string, id IDInput, state *ExadataInfrastructureComputeState, opts ...ResourceOption) (*ExadataInfrastructureCompute, error)
public static ExadataInfrastructureCompute Get(string name, Input<string> id, ExadataInfrastructureComputeState? state, CustomResourceOptions? opts = null)
public static ExadataInfrastructureCompute get(String name, Output<String> id, ExadataInfrastructureComputeState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:ExadataInfrastructureCompute    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
ActivationFile string
AdditionalComputeCount int
The number of additional compute servers for the Exadata infrastructure.
AdditionalComputeCountComputeManagedResource int
AdditionalComputeSystemModel string
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
AdditionalComputeSystemModelComputeManagedResource string
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AdminNetworkCidr string
The CIDR block for the Exadata administration network.
CloudControlPlaneServer1 string
The IP address for the first control plane server.
CloudControlPlaneServer2 string
The IP address for the second control plane server.
CompartmentId string
The OCID of the compartment.
ComputeCount int
The number of compute servers for the Exadata infrastructure.
Contacts List<ExadataInfrastructureComputeContact>
The list of contacts for the Exadata infrastructure.
CorporateProxy string
The corporate network proxy for access to the control plane network.
CpusEnabled int
The number of enabled CPU cores.
CreateAsync bool
CsiNumber string
The CSI Number of the Exadata infrastructure.
DataStorageSizeInTbs double
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the Exadata infrastructure.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
DnsServers List<string>
The list of DNS server IP addresses. Maximum of 3 allowed.
ExadataInfrastructureId Changes to this property will trigger replacement. string
The Exadata infrastructure OCID.
FreeformTags Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Gateway string
The gateway for the control plane network.
InfiniBandNetworkCidr string
The CIDR block for the Exadata InfiniBand interconnect.
IsCpsOfflineReportEnabled bool
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
LifecycleDetails string
Additional information about the current lifecycle state.
MaintenanceSloStatus string
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
MaintenanceWindows List<ExadataInfrastructureComputeMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs double
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
Netmask string
The netmask for the control plane network.
NtpServers List<string>
The list of NTP server IP addresses. Maximum of 3 allowed.
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
State string
The current lifecycle state of the Exadata infrastructure.
StorageCount int
The number of Exadata storage servers for the Exadata infrastructure.
StorageServerVersion string
The software version of the storage servers (cells) in the Exadata infrastructure.
TimeCreated string
The date and time the Exadata infrastructure was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
ActivatedStorageCount int
The requested number of additional storage servers activated for the Exadata infrastructure.
ActivationFile string
AdditionalComputeCount int
The number of additional compute servers for the Exadata infrastructure.
AdditionalComputeCountComputeManagedResource int
AdditionalComputeSystemModel string
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
AdditionalComputeSystemModelComputeManagedResource string
AdditionalStorageCount int
The requested number of additional storage servers for the Exadata infrastructure.
AdminNetworkCidr string
The CIDR block for the Exadata administration network.
CloudControlPlaneServer1 string
The IP address for the first control plane server.
CloudControlPlaneServer2 string
The IP address for the second control plane server.
CompartmentId string
The OCID of the compartment.
ComputeCount int
The number of compute servers for the Exadata infrastructure.
Contacts []ExadataInfrastructureComputeContactArgs
The list of contacts for the Exadata infrastructure.
CorporateProxy string
The corporate network proxy for access to the control plane network.
CpusEnabled int
The number of enabled CPU cores.
CreateAsync bool
CsiNumber string
The CSI Number of the Exadata infrastructure.
DataStorageSizeInTbs float64
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServerVersion string
The software version of the database servers (dom0) in the Exadata infrastructure.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
DnsServers []string
The list of DNS server IP addresses. Maximum of 3 allowed.
ExadataInfrastructureId Changes to this property will trigger replacement. string
The Exadata infrastructure OCID.
FreeformTags map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Gateway string
The gateway for the control plane network.
InfiniBandNetworkCidr string
The CIDR block for the Exadata InfiniBand interconnect.
IsCpsOfflineReportEnabled bool
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
LifecycleDetails string
Additional information about the current lifecycle state.
MaintenanceSloStatus string
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
MaintenanceWindows []ExadataInfrastructureComputeMaintenanceWindowArgs
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
MaxCpuCount int
The total number of CPU cores available.
MaxDataStorageInTbs float64
The total available DATA disk group size.
MaxDbNodeStorageInGbs int
The total local node storage available in GBs.
MaxMemoryInGbs int
The total memory available in GBs.
MemorySizeInGbs int
The memory allocated in GBs.
MonthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
Netmask string
The netmask for the control plane network.
NtpServers []string
The list of NTP server IP addresses. Maximum of 3 allowed.
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
State string
The current lifecycle state of the Exadata infrastructure.
StorageCount int
The number of Exadata storage servers for the Exadata infrastructure.
StorageServerVersion string
The software version of the storage servers (cells) in the Exadata infrastructure.
TimeCreated string
The date and time the Exadata infrastructure was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activatedStorageCount Integer
The requested number of additional storage servers activated for the Exadata infrastructure.
activationFile String
additionalComputeCount Integer
The number of additional compute servers for the Exadata infrastructure.
additionalComputeCountComputeManagedResource Integer
additionalComputeSystemModel String
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additionalComputeSystemModelComputeManagedResource String
additionalStorageCount Integer
The requested number of additional storage servers for the Exadata infrastructure.
adminNetworkCidr String
The CIDR block for the Exadata administration network.
cloudControlPlaneServer1 String
The IP address for the first control plane server.
cloudControlPlaneServer2 String
The IP address for the second control plane server.
compartmentId String
The OCID of the compartment.
computeCount Integer
The number of compute servers for the Exadata infrastructure.
contacts List<ExadataInfrastructureComputeContact>
The list of contacts for the Exadata infrastructure.
corporateProxy String
The corporate network proxy for access to the control plane network.
cpusEnabled Integer
The number of enabled CPU cores.
createAsync Boolean
csiNumber String
The CSI Number of the Exadata infrastructure.
dataStorageSizeInTbs Double
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Integer
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the Exadata infrastructure.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dnsServers List<String>
The list of DNS server IP addresses. Maximum of 3 allowed.
exadataInfrastructureId Changes to this property will trigger replacement. String
The Exadata infrastructure OCID.
freeformTags Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway String
The gateway for the control plane network.
infiniBandNetworkCidr String
The CIDR block for the Exadata InfiniBand interconnect.
isCpsOfflineReportEnabled Boolean
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycleDetails String
Additional information about the current lifecycle state.
maintenanceSloStatus String
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenanceWindows List<ExadataInfrastructureComputeMaintenanceWindow>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount Integer
The total number of CPU cores available.
maxDataStorageInTbs Double
The total available DATA disk group size.
maxDbNodeStorageInGbs Integer
The total local node storage available in GBs.
maxMemoryInGbs Integer
The total memory available in GBs.
memorySizeInGbs Integer
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask String
The netmask for the control plane network.
ntpServers List<String>
The list of NTP server IP addresses. Maximum of 3 allowed.
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state String
The current lifecycle state of the Exadata infrastructure.
storageCount Integer
The number of Exadata storage servers for the Exadata infrastructure.
storageServerVersion String
The software version of the storage servers (cells) in the Exadata infrastructure.
timeCreated String
The date and time the Exadata infrastructure was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activatedStorageCount number
The requested number of additional storage servers activated for the Exadata infrastructure.
activationFile string
additionalComputeCount number
The number of additional compute servers for the Exadata infrastructure.
additionalComputeCountComputeManagedResource number
additionalComputeSystemModel string
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additionalComputeSystemModelComputeManagedResource string
additionalStorageCount number
The requested number of additional storage servers for the Exadata infrastructure.
adminNetworkCidr string
The CIDR block for the Exadata administration network.
cloudControlPlaneServer1 string
The IP address for the first control plane server.
cloudControlPlaneServer2 string
The IP address for the second control plane server.
compartmentId string
The OCID of the compartment.
computeCount number
The number of compute servers for the Exadata infrastructure.
contacts ExadataInfrastructureComputeContact[]
The list of contacts for the Exadata infrastructure.
corporateProxy string
The corporate network proxy for access to the control plane network.
cpusEnabled number
The number of enabled CPU cores.
createAsync boolean
csiNumber string
The CSI Number of the Exadata infrastructure.
dataStorageSizeInTbs number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs number
The local node storage allocated in GBs.
dbServerVersion string
The software version of the database servers (dom0) in the Exadata infrastructure.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dnsServers string[]
The list of DNS server IP addresses. Maximum of 3 allowed.
exadataInfrastructureId Changes to this property will trigger replacement. string
The Exadata infrastructure OCID.
freeformTags {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway string
The gateway for the control plane network.
infiniBandNetworkCidr string
The CIDR block for the Exadata InfiniBand interconnect.
isCpsOfflineReportEnabled boolean
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycleDetails string
Additional information about the current lifecycle state.
maintenanceSloStatus string
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenanceWindows ExadataInfrastructureComputeMaintenanceWindow[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount number
The total number of CPU cores available.
maxDataStorageInTbs number
The total available DATA disk group size.
maxDbNodeStorageInGbs number
The total local node storage available in GBs.
maxMemoryInGbs number
The total memory available in GBs.
memorySizeInGbs number
The memory allocated in GBs.
monthlyDbServerVersion string
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask string
The netmask for the control plane network.
ntpServers string[]
The list of NTP server IP addresses. Maximum of 3 allowed.
shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state string
The current lifecycle state of the Exadata infrastructure.
storageCount number
The number of Exadata storage servers for the Exadata infrastructure.
storageServerVersion string
The software version of the storage servers (cells) in the Exadata infrastructure.
timeCreated string
The date and time the Exadata infrastructure was created.
timeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activated_storage_count int
The requested number of additional storage servers activated for the Exadata infrastructure.
activation_file str
additional_compute_count int
The number of additional compute servers for the Exadata infrastructure.
additional_compute_count_compute_managed_resource int
additional_compute_system_model str
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additional_compute_system_model_compute_managed_resource str
additional_storage_count int
The requested number of additional storage servers for the Exadata infrastructure.
admin_network_cidr str
The CIDR block for the Exadata administration network.
cloud_control_plane_server1 str
The IP address for the first control plane server.
cloud_control_plane_server2 str
The IP address for the second control plane server.
compartment_id str
The OCID of the compartment.
compute_count int
The number of compute servers for the Exadata infrastructure.
contacts Sequence[database.ExadataInfrastructureComputeContactArgs]
The list of contacts for the Exadata infrastructure.
corporate_proxy str
The corporate network proxy for access to the control plane network.
cpus_enabled int
The number of enabled CPU cores.
create_async bool
csi_number str
The CSI Number of the Exadata infrastructure.
data_storage_size_in_tbs float
Size, in terabytes, of the DATA disk group.
db_node_storage_size_in_gbs int
The local node storage allocated in GBs.
db_server_version str
The software version of the database servers (dom0) in the Exadata infrastructure.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name str
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dns_servers Sequence[str]
The list of DNS server IP addresses. Maximum of 3 allowed.
exadata_infrastructure_id Changes to this property will trigger replacement. str
The Exadata infrastructure OCID.
freeform_tags Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway str
The gateway for the control plane network.
infini_band_network_cidr str
The CIDR block for the Exadata InfiniBand interconnect.
is_cps_offline_report_enabled bool
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycle_details str
Additional information about the current lifecycle state.
maintenance_slo_status str
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenance_windows Sequence[database.ExadataInfrastructureComputeMaintenanceWindowArgs]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
max_cpu_count int
The total number of CPU cores available.
max_data_storage_in_tbs float
The total available DATA disk group size.
max_db_node_storage_in_gbs int
The total local node storage available in GBs.
max_memory_in_gbs int
The total memory available in GBs.
memory_size_in_gbs int
The memory allocated in GBs.
monthly_db_server_version str
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask str
The netmask for the control plane network.
ntp_servers Sequence[str]
The list of NTP server IP addresses. Maximum of 3 allowed.
shape str
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state str
The current lifecycle state of the Exadata infrastructure.
storage_count int
The number of Exadata storage servers for the Exadata infrastructure.
storage_server_version str
The software version of the storage servers (cells) in the Exadata infrastructure.
time_created str
The date and time the Exadata infrastructure was created.
time_zone str
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
activatedStorageCount Number
The requested number of additional storage servers activated for the Exadata infrastructure.
activationFile String
additionalComputeCount Number
The number of additional compute servers for the Exadata infrastructure.
additionalComputeCountComputeManagedResource Number
additionalComputeSystemModel String
Oracle Exadata System Model specification. The system model determines the amount of compute or storage server resources available for use. For more information, please see [System and Shape Configuration Options] (https://docs.oracle.com/en/engineered-systems/exadata-cloud-at-customer/ecccm/ecc-system-config-options.html#GUID-9E090174-5C57-4EB1-9243-B470F9F10D6B)
additionalComputeSystemModelComputeManagedResource String
additionalStorageCount Number
The requested number of additional storage servers for the Exadata infrastructure.
adminNetworkCidr String
The CIDR block for the Exadata administration network.
cloudControlPlaneServer1 String
The IP address for the first control plane server.
cloudControlPlaneServer2 String
The IP address for the second control plane server.
compartmentId String
The OCID of the compartment.
computeCount Number
The number of compute servers for the Exadata infrastructure.
contacts List<Property Map>
The list of contacts for the Exadata infrastructure.
corporateProxy String
The corporate network proxy for access to the control plane network.
cpusEnabled Number
The number of enabled CPU cores.
createAsync Boolean
csiNumber String
The CSI Number of the Exadata infrastructure.
dataStorageSizeInTbs Number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Number
The local node storage allocated in GBs.
dbServerVersion String
The software version of the database servers (dom0) in the Exadata infrastructure.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer infrastructure. The name does not need to be unique.
dnsServers List<String>
The list of DNS server IP addresses. Maximum of 3 allowed.
exadataInfrastructureId Changes to this property will trigger replacement. String
The Exadata infrastructure OCID.
freeformTags Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gateway String
The gateway for the control plane network.
infiniBandNetworkCidr String
The CIDR block for the Exadata InfiniBand interconnect.
isCpsOfflineReportEnabled Boolean
Indicates whether cps offline diagnostic report is enabled for this Exadata infrastructure. This will allow a customer to quickly check status themselves and fix problems on their end, saving time and frustration for both Oracle and the customer when they find the CPS in a disconnected state.You can enable offline diagnostic report during Exadata infrastructure provisioning. You can also disable or enable it at any time using the UpdateExadatainfrastructure API.
lifecycleDetails String
Additional information about the current lifecycle state.
maintenanceSloStatus String
A field to capture ‘Maintenance SLO Status’ for the Exadata infrastructure with values ‘OK’, ‘DEGRADED’. Default is ‘OK’ when the infrastructure is provisioned.
maintenanceWindows List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
maxCpuCount Number
The total number of CPU cores available.
maxDataStorageInTbs Number
The total available DATA disk group size.
maxDbNodeStorageInGbs Number
The total local node storage available in GBs.
maxMemoryInGbs Number
The total memory available in GBs.
memorySizeInGbs Number
The memory allocated in GBs.
monthlyDbServerVersion String
The monthly software version of the database servers (dom0) in the Exadata infrastructure.
netmask String
The netmask for the control plane network.
ntpServers List<String>
The list of NTP server IP addresses. Maximum of 3 allowed.
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
state String
The current lifecycle state of the Exadata infrastructure.
storageCount Number
The number of Exadata storage servers for the Exadata infrastructure.
storageServerVersion String
The software version of the storage servers (cells) in the Exadata infrastructure.
timeCreated String
The date and time the Exadata infrastructure was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.

Supporting Types

ExadataInfrastructureComputeContact
, ExadataInfrastructureComputeContactArgs

Email string
The email for the Exadata Infrastructure contact.
IsContactMosValidated bool
If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.
IsPrimary bool
If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.
Name string
Name of the month of the year.
PhoneNumber string
The phone number for the Exadata Infrastructure contact.
Email string
The email for the Exadata Infrastructure contact.
IsContactMosValidated bool
If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.
IsPrimary bool
If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.
Name string
Name of the month of the year.
PhoneNumber string
The phone number for the Exadata Infrastructure contact.
email String
The email for the Exadata Infrastructure contact.
isContactMosValidated Boolean
If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.
isPrimary Boolean
If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.
name String
Name of the month of the year.
phoneNumber String
The phone number for the Exadata Infrastructure contact.
email string
The email for the Exadata Infrastructure contact.
isContactMosValidated boolean
If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.
isPrimary boolean
If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.
name string
Name of the month of the year.
phoneNumber string
The phone number for the Exadata Infrastructure contact.
email str
The email for the Exadata Infrastructure contact.
is_contact_mos_validated bool
If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.
is_primary bool
If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.
name str
Name of the month of the year.
phone_number str
The phone number for the Exadata Infrastructure contact.
email String
The email for the Exadata Infrastructure contact.
isContactMosValidated Boolean
If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.
isPrimary Boolean
If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.
name String
Name of the month of the year.
phoneNumber String
The phone number for the Exadata Infrastructure contact.

ExadataInfrastructureComputeMaintenanceWindow
, ExadataInfrastructureComputeMaintenanceWindowArgs

CustomActionTimeoutInMins int
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
DaysOfWeeks List<ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek>
Days during the week when maintenance should be performed.
HoursOfDays List<int>
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
IsCustomActionTimeoutEnabled bool
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
If true, enables the monthly patching option.
LeadTimeInWeeks int
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<ExadataInfrastructureComputeMaintenanceWindowMonth>
Months during the year when maintenance should be performed.
PatchingMode string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
Preference string
The maintenance window scheduling preference.
WeeksOfMonths List<int>
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.
CustomActionTimeoutInMins int
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
DaysOfWeeks []ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek
Days during the week when maintenance should be performed.
HoursOfDays []int
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
IsCustomActionTimeoutEnabled bool
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
IsMonthlyPatchingEnabled bool
If true, enables the monthly patching option.
LeadTimeInWeeks int
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 []ExadataInfrastructureComputeMaintenanceWindowMonth
Months during the year when maintenance should be performed.
PatchingMode string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
Preference string
The maintenance window scheduling preference.
WeeksOfMonths []int
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.
customActionTimeoutInMins Integer
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
daysOfWeeks List<ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek>
Days during the week when maintenance should be performed.
hoursOfDays List<Integer>
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
isCustomActionTimeoutEnabled Boolean
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
If true, enables the monthly patching option.
leadTimeInWeeks Integer
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<ExadataInfrastructureComputeMaintenanceWindowMonth>
Months during the year when maintenance should be performed.
patchingMode String
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference String
The maintenance window scheduling preference.
weeksOfMonths List<Integer>
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.
customActionTimeoutInMins number
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
daysOfWeeks ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek[]
Days during the week when maintenance should be performed.
hoursOfDays number[]
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
isCustomActionTimeoutEnabled boolean
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled boolean
If true, enables the monthly patching option.
leadTimeInWeeks number
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 ExadataInfrastructureComputeMaintenanceWindowMonth[]
Months during the year when maintenance should be performed.
patchingMode string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference string
The maintenance window scheduling preference.
weeksOfMonths number[]
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_timeout_in_mins int
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
days_of_weeks Sequence[database.ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek]
Days during the week when maintenance should be performed.
hours_of_days Sequence[int]
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_action_timeout_enabled bool
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
is_monthly_patching_enabled bool
If true, enables the monthly patching option.
lead_time_in_weeks int
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[database.ExadataInfrastructureComputeMaintenanceWindowMonth]
Months during the year when maintenance should be performed.
patching_mode str
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference str
The maintenance window scheduling preference.
weeks_of_months Sequence[int]
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.
customActionTimeoutInMins Number
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
daysOfWeeks List<Property Map>
Days during the week when maintenance should be performed.
hoursOfDays List<Number>
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
isCustomActionTimeoutEnabled Boolean
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
isMonthlyPatchingEnabled Boolean
If true, enables the monthly patching option.
leadTimeInWeeks Number
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<Property Map>
Months during the year when maintenance should be performed.
patchingMode String
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
preference String
The maintenance window scheduling preference.
weeksOfMonths List<Number>
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.

ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek
, ExadataInfrastructureComputeMaintenanceWindowDaysOfWeekArgs

Name string
Name of the month of the year.
Name string
Name of the month of the year.
name String
Name of the month of the year.
name string
Name of the month of the year.
name str
Name of the month of the year.
name String
Name of the month of the year.

ExadataInfrastructureComputeMaintenanceWindowMonth
, ExadataInfrastructureComputeMaintenanceWindowMonthArgs

Name string
Name of the month of the year.
Name string
Name of the month of the year.
name String
Name of the month of the year.
name string
Name of the month of the year.
name str
Name of the month of the year.
name String
Name of the month of the year.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.