oci.Database.CloudExadataInfrastructure
Explore with Pulumi AI
This resource provides the Cloud Exadata Infrastructure resource in Oracle Cloud Infrastructure Database service.
Creates a cloud Exadata infrastructure resource. This resource is used to create either an Exadata Cloud Service instance or an Autonomous Database on dedicated Exadata infrastructure.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCloudExadataInfrastructure = new oci.database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", {
availabilityDomain: cloudExadataInfrastructureAvailabilityDomain,
compartmentId: compartmentId,
displayName: cloudExadataInfrastructureDisplayName,
shape: cloudExadataInfrastructureShape,
clusterPlacementGroupId: cloudExadataInfrastructureClusterPlacementGroupId,
computeCount: cloudExadataInfrastructureComputeCount,
customerContacts: [{
email: cloudExadataInfrastructureCustomerContactsEmail,
}],
definedTags: cloudExadataInfrastructureDefinedTags,
freeformTags: {
Department: "Finance",
},
maintenanceWindow: {
customActionTimeoutInMins: cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins,
daysOfWeeks: [{
name: cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName,
}],
hoursOfDays: cloudExadataInfrastructureMaintenanceWindowHoursOfDay,
isCustomActionTimeoutEnabled: cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled,
isMonthlyPatchingEnabled: cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled,
leadTimeInWeeks: cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks,
months: [{
name: cloudExadataInfrastructureMaintenanceWindowMonthsName,
}],
patchingMode: cloudExadataInfrastructureMaintenanceWindowPatchingMode,
preference: cloudExadataInfrastructureMaintenanceWindowPreference,
weeksOfMonths: cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth,
},
storageCount: cloudExadataInfrastructureStorageCount,
subscriptionId: tenantSubscriptionId,
});
import pulumi
import pulumi_oci as oci
test_cloud_exadata_infrastructure = oci.database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure",
availability_domain=cloud_exadata_infrastructure_availability_domain,
compartment_id=compartment_id,
display_name=cloud_exadata_infrastructure_display_name,
shape=cloud_exadata_infrastructure_shape,
cluster_placement_group_id=cloud_exadata_infrastructure_cluster_placement_group_id,
compute_count=cloud_exadata_infrastructure_compute_count,
customer_contacts=[{
"email": cloud_exadata_infrastructure_customer_contacts_email,
}],
defined_tags=cloud_exadata_infrastructure_defined_tags,
freeform_tags={
"Department": "Finance",
},
maintenance_window={
"custom_action_timeout_in_mins": cloud_exadata_infrastructure_maintenance_window_custom_action_timeout_in_mins,
"days_of_weeks": [{
"name": cloud_exadata_infrastructure_maintenance_window_days_of_week_name,
}],
"hours_of_days": cloud_exadata_infrastructure_maintenance_window_hours_of_day,
"is_custom_action_timeout_enabled": cloud_exadata_infrastructure_maintenance_window_is_custom_action_timeout_enabled,
"is_monthly_patching_enabled": cloud_exadata_infrastructure_maintenance_window_is_monthly_patching_enabled,
"lead_time_in_weeks": cloud_exadata_infrastructure_maintenance_window_lead_time_in_weeks,
"months": [{
"name": cloud_exadata_infrastructure_maintenance_window_months_name,
}],
"patching_mode": cloud_exadata_infrastructure_maintenance_window_patching_mode,
"preference": cloud_exadata_infrastructure_maintenance_window_preference,
"weeks_of_months": cloud_exadata_infrastructure_maintenance_window_weeks_of_month,
},
storage_count=cloud_exadata_infrastructure_storage_count,
subscription_id=tenant_subscription_id)
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.NewCloudExadataInfrastructure(ctx, "test_cloud_exadata_infrastructure", &Database.CloudExadataInfrastructureArgs{
AvailabilityDomain: pulumi.Any(cloudExadataInfrastructureAvailabilityDomain),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(cloudExadataInfrastructureDisplayName),
Shape: pulumi.Any(cloudExadataInfrastructureShape),
ClusterPlacementGroupId: pulumi.Any(cloudExadataInfrastructureClusterPlacementGroupId),
ComputeCount: pulumi.Any(cloudExadataInfrastructureComputeCount),
CustomerContacts: database.CloudExadataInfrastructureCustomerContactArray{
&database.CloudExadataInfrastructureCustomerContactArgs{
Email: pulumi.Any(cloudExadataInfrastructureCustomerContactsEmail),
},
},
DefinedTags: pulumi.Any(cloudExadataInfrastructureDefinedTags),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
MaintenanceWindow: &database.CloudExadataInfrastructureMaintenanceWindowArgs{
CustomActionTimeoutInMins: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins),
DaysOfWeeks: database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArray{
&database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs{
Name: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName),
},
},
HoursOfDays: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowHoursOfDay),
IsCustomActionTimeoutEnabled: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled),
IsMonthlyPatchingEnabled: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled),
LeadTimeInWeeks: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks),
Months: database.CloudExadataInfrastructureMaintenanceWindowMonthArray{
&database.CloudExadataInfrastructureMaintenanceWindowMonthArgs{
Name: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowMonthsName),
},
},
PatchingMode: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowPatchingMode),
Preference: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowPreference),
WeeksOfMonths: pulumi.Any(cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth),
},
StorageCount: pulumi.Any(cloudExadataInfrastructureStorageCount),
SubscriptionId: pulumi.Any(tenantSubscriptionId),
})
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 testCloudExadataInfrastructure = new Oci.Database.CloudExadataInfrastructure("test_cloud_exadata_infrastructure", new()
{
AvailabilityDomain = cloudExadataInfrastructureAvailabilityDomain,
CompartmentId = compartmentId,
DisplayName = cloudExadataInfrastructureDisplayName,
Shape = cloudExadataInfrastructureShape,
ClusterPlacementGroupId = cloudExadataInfrastructureClusterPlacementGroupId,
ComputeCount = cloudExadataInfrastructureComputeCount,
CustomerContacts = new[]
{
new Oci.Database.Inputs.CloudExadataInfrastructureCustomerContactArgs
{
Email = cloudExadataInfrastructureCustomerContactsEmail,
},
},
DefinedTags = cloudExadataInfrastructureDefinedTags,
FreeformTags =
{
{ "Department", "Finance" },
},
MaintenanceWindow = new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowArgs
{
CustomActionTimeoutInMins = cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
{
Name = cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName,
},
},
HoursOfDays = cloudExadataInfrastructureMaintenanceWindowHoursOfDay,
IsCustomActionTimeoutEnabled = cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled,
IsMonthlyPatchingEnabled = cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled,
LeadTimeInWeeks = cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks,
Months = new[]
{
new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowMonthArgs
{
Name = cloudExadataInfrastructureMaintenanceWindowMonthsName,
},
},
PatchingMode = cloudExadataInfrastructureMaintenanceWindowPatchingMode,
Preference = cloudExadataInfrastructureMaintenanceWindowPreference,
WeeksOfMonths = cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth,
},
StorageCount = cloudExadataInfrastructureStorageCount,
SubscriptionId = tenantSubscriptionId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.CloudExadataInfrastructure;
import com.pulumi.oci.Database.CloudExadataInfrastructureArgs;
import com.pulumi.oci.Database.inputs.CloudExadataInfrastructureCustomerContactArgs;
import com.pulumi.oci.Database.inputs.CloudExadataInfrastructureMaintenanceWindowArgs;
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) {
var testCloudExadataInfrastructure = new CloudExadataInfrastructure("testCloudExadataInfrastructure", CloudExadataInfrastructureArgs.builder()
.availabilityDomain(cloudExadataInfrastructureAvailabilityDomain)
.compartmentId(compartmentId)
.displayName(cloudExadataInfrastructureDisplayName)
.shape(cloudExadataInfrastructureShape)
.clusterPlacementGroupId(cloudExadataInfrastructureClusterPlacementGroupId)
.computeCount(cloudExadataInfrastructureComputeCount)
.customerContacts(CloudExadataInfrastructureCustomerContactArgs.builder()
.email(cloudExadataInfrastructureCustomerContactsEmail)
.build())
.definedTags(cloudExadataInfrastructureDefinedTags)
.freeformTags(Map.of("Department", "Finance"))
.maintenanceWindow(CloudExadataInfrastructureMaintenanceWindowArgs.builder()
.customActionTimeoutInMins(cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins)
.daysOfWeeks(CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs.builder()
.name(cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName)
.build())
.hoursOfDays(cloudExadataInfrastructureMaintenanceWindowHoursOfDay)
.isCustomActionTimeoutEnabled(cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled)
.isMonthlyPatchingEnabled(cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled)
.leadTimeInWeeks(cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks)
.months(CloudExadataInfrastructureMaintenanceWindowMonthArgs.builder()
.name(cloudExadataInfrastructureMaintenanceWindowMonthsName)
.build())
.patchingMode(cloudExadataInfrastructureMaintenanceWindowPatchingMode)
.preference(cloudExadataInfrastructureMaintenanceWindowPreference)
.weeksOfMonths(cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth)
.build())
.storageCount(cloudExadataInfrastructureStorageCount)
.subscriptionId(tenantSubscriptionId)
.build());
}
}
resources:
testCloudExadataInfrastructure:
type: oci:Database:CloudExadataInfrastructure
name: test_cloud_exadata_infrastructure
properties:
availabilityDomain: ${cloudExadataInfrastructureAvailabilityDomain}
compartmentId: ${compartmentId}
displayName: ${cloudExadataInfrastructureDisplayName}
shape: ${cloudExadataInfrastructureShape}
clusterPlacementGroupId: ${cloudExadataInfrastructureClusterPlacementGroupId}
computeCount: ${cloudExadataInfrastructureComputeCount}
customerContacts:
- email: ${cloudExadataInfrastructureCustomerContactsEmail}
definedTags: ${cloudExadataInfrastructureDefinedTags}
freeformTags:
Department: Finance
maintenanceWindow:
customActionTimeoutInMins: ${cloudExadataInfrastructureMaintenanceWindowCustomActionTimeoutInMins}
daysOfWeeks:
- name: ${cloudExadataInfrastructureMaintenanceWindowDaysOfWeekName}
hoursOfDays: ${cloudExadataInfrastructureMaintenanceWindowHoursOfDay}
isCustomActionTimeoutEnabled: ${cloudExadataInfrastructureMaintenanceWindowIsCustomActionTimeoutEnabled}
isMonthlyPatchingEnabled: ${cloudExadataInfrastructureMaintenanceWindowIsMonthlyPatchingEnabled}
leadTimeInWeeks: ${cloudExadataInfrastructureMaintenanceWindowLeadTimeInWeeks}
months:
- name: ${cloudExadataInfrastructureMaintenanceWindowMonthsName}
patchingMode: ${cloudExadataInfrastructureMaintenanceWindowPatchingMode}
preference: ${cloudExadataInfrastructureMaintenanceWindowPreference}
weeksOfMonths: ${cloudExadataInfrastructureMaintenanceWindowWeeksOfMonth}
storageCount: ${cloudExadataInfrastructureStorageCount}
subscriptionId: ${tenantSubscriptionId}
Create CloudExadataInfrastructure Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudExadataInfrastructure(name: string, args: CloudExadataInfrastructureArgs, opts?: CustomResourceOptions);
@overload
def CloudExadataInfrastructure(resource_name: str,
args: CloudExadataInfrastructureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudExadataInfrastructure(resource_name: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
shape: Optional[str] = None,
cluster_placement_group_id: Optional[str] = None,
compute_count: Optional[int] = None,
customer_contacts: Optional[Sequence[_database.CloudExadataInfrastructureCustomerContactArgs]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
maintenance_window: Optional[_database.CloudExadataInfrastructureMaintenanceWindowArgs] = None,
storage_count: Optional[int] = None,
subscription_id: Optional[str] = None)
func NewCloudExadataInfrastructure(ctx *Context, name string, args CloudExadataInfrastructureArgs, opts ...ResourceOption) (*CloudExadataInfrastructure, error)
public CloudExadataInfrastructure(string name, CloudExadataInfrastructureArgs args, CustomResourceOptions? opts = null)
public CloudExadataInfrastructure(String name, CloudExadataInfrastructureArgs args)
public CloudExadataInfrastructure(String name, CloudExadataInfrastructureArgs args, CustomResourceOptions options)
type: oci:Database:CloudExadataInfrastructure
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CloudExadataInfrastructureArgs
- 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 CloudExadataInfrastructureArgs
- 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 CloudExadataInfrastructureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudExadataInfrastructureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudExadataInfrastructureArgs
- 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 cloudExadataInfrastructureResource = new Oci.Database.CloudExadataInfrastructure("cloudExadataInfrastructureResource", new()
{
AvailabilityDomain = "string",
CompartmentId = "string",
DisplayName = "string",
Shape = "string",
ClusterPlacementGroupId = "string",
ComputeCount = 0,
CustomerContacts = new[]
{
new Oci.Database.Inputs.CloudExadataInfrastructureCustomerContactArgs
{
Email = "string",
},
},
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
MaintenanceWindow = new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowArgs
{
CustomActionTimeoutInMins = 0,
DaysOfWeeks = new[]
{
new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
{
Name = "string",
},
},
HoursOfDays = new[]
{
0,
},
IsCustomActionTimeoutEnabled = false,
IsMonthlyPatchingEnabled = false,
LeadTimeInWeeks = 0,
Months = new[]
{
new Oci.Database.Inputs.CloudExadataInfrastructureMaintenanceWindowMonthArgs
{
Name = "string",
},
},
PatchingMode = "string",
Preference = "string",
SkipRus = new[]
{
false,
},
WeeksOfMonths = new[]
{
0,
},
},
StorageCount = 0,
SubscriptionId = "string",
});
example, err := Database.NewCloudExadataInfrastructure(ctx, "cloudExadataInfrastructureResource", &Database.CloudExadataInfrastructureArgs{
AvailabilityDomain: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Shape: pulumi.String("string"),
ClusterPlacementGroupId: pulumi.String("string"),
ComputeCount: pulumi.Int(0),
CustomerContacts: database.CloudExadataInfrastructureCustomerContactArray{
&database.CloudExadataInfrastructureCustomerContactArgs{
Email: pulumi.String("string"),
},
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaintenanceWindow: &database.CloudExadataInfrastructureMaintenanceWindowArgs{
CustomActionTimeoutInMins: pulumi.Int(0),
DaysOfWeeks: database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArray{
&database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs{
Name: pulumi.String("string"),
},
},
HoursOfDays: pulumi.IntArray{
pulumi.Int(0),
},
IsCustomActionTimeoutEnabled: pulumi.Bool(false),
IsMonthlyPatchingEnabled: pulumi.Bool(false),
LeadTimeInWeeks: pulumi.Int(0),
Months: database.CloudExadataInfrastructureMaintenanceWindowMonthArray{
&database.CloudExadataInfrastructureMaintenanceWindowMonthArgs{
Name: pulumi.String("string"),
},
},
PatchingMode: pulumi.String("string"),
Preference: pulumi.String("string"),
SkipRus: pulumi.BoolArray{
pulumi.Bool(false),
},
WeeksOfMonths: pulumi.IntArray{
pulumi.Int(0),
},
},
StorageCount: pulumi.Int(0),
SubscriptionId: pulumi.String("string"),
})
var cloudExadataInfrastructureResource = new CloudExadataInfrastructure("cloudExadataInfrastructureResource", CloudExadataInfrastructureArgs.builder()
.availabilityDomain("string")
.compartmentId("string")
.displayName("string")
.shape("string")
.clusterPlacementGroupId("string")
.computeCount(0)
.customerContacts(CloudExadataInfrastructureCustomerContactArgs.builder()
.email("string")
.build())
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.maintenanceWindow(CloudExadataInfrastructureMaintenanceWindowArgs.builder()
.customActionTimeoutInMins(0)
.daysOfWeeks(CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs.builder()
.name("string")
.build())
.hoursOfDays(0)
.isCustomActionTimeoutEnabled(false)
.isMonthlyPatchingEnabled(false)
.leadTimeInWeeks(0)
.months(CloudExadataInfrastructureMaintenanceWindowMonthArgs.builder()
.name("string")
.build())
.patchingMode("string")
.preference("string")
.skipRus(false)
.weeksOfMonths(0)
.build())
.storageCount(0)
.subscriptionId("string")
.build());
cloud_exadata_infrastructure_resource = oci.database.CloudExadataInfrastructure("cloudExadataInfrastructureResource",
availability_domain="string",
compartment_id="string",
display_name="string",
shape="string",
cluster_placement_group_id="string",
compute_count=0,
customer_contacts=[oci.database.CloudExadataInfrastructureCustomerContactArgs(
email="string",
)],
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
},
maintenance_window=oci.database.CloudExadataInfrastructureMaintenanceWindowArgs(
custom_action_timeout_in_mins=0,
days_of_weeks=[oci.database.CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs(
name="string",
)],
hours_of_days=[0],
is_custom_action_timeout_enabled=False,
is_monthly_patching_enabled=False,
lead_time_in_weeks=0,
months=[oci.database.CloudExadataInfrastructureMaintenanceWindowMonthArgs(
name="string",
)],
patching_mode="string",
preference="string",
skip_rus=[False],
weeks_of_months=[0],
),
storage_count=0,
subscription_id="string")
const cloudExadataInfrastructureResource = new oci.database.CloudExadataInfrastructure("cloudExadataInfrastructureResource", {
availabilityDomain: "string",
compartmentId: "string",
displayName: "string",
shape: "string",
clusterPlacementGroupId: "string",
computeCount: 0,
customerContacts: [{
email: "string",
}],
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
maintenanceWindow: {
customActionTimeoutInMins: 0,
daysOfWeeks: [{
name: "string",
}],
hoursOfDays: [0],
isCustomActionTimeoutEnabled: false,
isMonthlyPatchingEnabled: false,
leadTimeInWeeks: 0,
months: [{
name: "string",
}],
patchingMode: "string",
preference: "string",
skipRus: [false],
weeksOfMonths: [0],
},
storageCount: 0,
subscriptionId: "string",
});
type: oci:Database:CloudExadataInfrastructure
properties:
availabilityDomain: string
clusterPlacementGroupId: string
compartmentId: string
computeCount: 0
customerContacts:
- email: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
maintenanceWindow:
customActionTimeoutInMins: 0
daysOfWeeks:
- name: string
hoursOfDays:
- 0
isCustomActionTimeoutEnabled: false
isMonthlyPatchingEnabled: false
leadTimeInWeeks: 0
months:
- name: string
patchingMode: string
preference: string
skipRus:
- false
weeksOfMonths:
- 0
shape: string
storageCount: 0
subscriptionId: string
CloudExadataInfrastructure Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The CloudExadataInfrastructure resource accepts the following input properties:
- Availability
Domain string - The availability domain where the cloud Exadata infrastructure is located.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- Shape string
- The shape of the cloud Exadata infrastructure resource.
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- Compute
Count int - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- Customer
Contacts List<CloudExadata Infrastructure Customer Contact> - (Updatable) Customer contacts.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
- (Updatable) 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"}
- Maintenance
Window CloudExadata Infrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Storage
Count int - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- Subscription
Id string The OCID of the subscription with which resource needs to be associated with.
** 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
- Availability
Domain string - The availability domain where the cloud Exadata infrastructure is located.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- Shape string
- The shape of the cloud Exadata infrastructure resource.
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- Compute
Count int - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- Customer
Contacts []CloudExadata Infrastructure Customer Contact Args - (Updatable) Customer contacts.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
- (Updatable) 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"}
- Maintenance
Window CloudExadata Infrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Storage
Count int - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- Subscription
Id string The OCID of the subscription with which resource needs to be associated with.
** 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
- availability
Domain String - The availability domain where the cloud Exadata infrastructure is located.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- shape String
- The shape of the cloud Exadata infrastructure resource.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compute
Count Integer - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- customer
Contacts List<CloudExadata Infrastructure Customer Contact> - (Updatable) Customer contacts.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
- (Updatable) 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"}
- maintenance
Window CloudExadata Infrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- storage
Count Integer - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- subscription
Id String The OCID of the subscription with which resource needs to be associated with.
** 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
- availability
Domain string - The availability domain where the cloud Exadata infrastructure is located.
- compartment
Id string - (Updatable) The OCID of the compartment.
- display
Name string - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- shape string
- The shape of the cloud Exadata infrastructure resource.
- cluster
Placement stringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compute
Count number - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- customer
Contacts CloudExadata Infrastructure Customer Contact[] - (Updatable) Customer contacts.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
- (Updatable) 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"}
- maintenance
Window CloudExadata Infrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- storage
Count number - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- subscription
Id string The OCID of the subscription with which resource needs to be associated with.
** 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
- availability_
domain str - The availability domain where the cloud Exadata infrastructure is located.
- compartment_
id str - (Updatable) The OCID of the compartment.
- display_
name str - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- shape str
- The shape of the cloud Exadata infrastructure resource.
- cluster_
placement_ strgroup_ id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compute_
count int - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- customer_
contacts Sequence[database.Cloud Exadata Infrastructure Customer Contact Args] - (Updatable) Customer contacts.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
- (Updatable) 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"}
- maintenance_
window database.Cloud Exadata Infrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- storage_
count int - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- subscription_
id str The OCID of the subscription with which resource needs to be associated with.
** 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
- availability
Domain String - The availability domain where the cloud Exadata infrastructure is located.
- compartment
Id String - (Updatable) The OCID of the compartment.
- display
Name String - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- shape String
- The shape of the cloud Exadata infrastructure resource.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compute
Count Number - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- customer
Contacts List<Property Map> - (Updatable) Customer contacts.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
- (Updatable) 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"}
- maintenance
Window Property Map - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- storage
Count Number - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- subscription
Id String The OCID of the subscription with which resource needs to be associated with.
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudExadataInfrastructure resource produces the following output properties:
- Activated
Storage intCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- Additional
Storage intCount - The requested number of additional storage servers for the Exadata infrastructure.
- Available
Storage intSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- Cpu
Count int - The total number of CPU cores allocated.
- Data
Storage doubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Server stringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Defined
File List<CloudSystem Configurations Exadata Infrastructure Defined File System Configuration> - Details of the file system configuration of the Exadata infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Max
Cpu intCount - The total number of CPU cores available.
- Max
Data doubleStorage In Tbs - The total available DATA disk group size.
- Max
Db intNode Storage In Gbs - The total local node storage available in GBs.
- Max
Memory intIn Gbs - The total memory available in GBs.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Monthly
Db stringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Monthly
Storage stringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- State string
- The current lifecycle state of the cloud Exadata infrastructure resource.
- Storage
Server stringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the cloud Exadata infrastructure resource was created.
- Total
Storage intSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- Activated
Storage intCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- Additional
Storage intCount - The requested number of additional storage servers for the Exadata infrastructure.
- Available
Storage intSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- Cpu
Count int - The total number of CPU cores allocated.
- Data
Storage float64Size In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Server stringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Defined
File []CloudSystem Configurations Exadata Infrastructure Defined File System Configuration - Details of the file system configuration of the Exadata infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Max
Cpu intCount - The total number of CPU cores available.
- Max
Data float64Storage In Tbs - The total available DATA disk group size.
- Max
Db intNode Storage In Gbs - The total local node storage available in GBs.
- Max
Memory intIn Gbs - The total memory available in GBs.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Monthly
Db stringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Monthly
Storage stringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- State string
- The current lifecycle state of the cloud Exadata infrastructure resource.
- Storage
Server stringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the cloud Exadata infrastructure resource was created.
- Total
Storage intSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated
Storage IntegerCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional
Storage IntegerCount - The requested number of additional storage servers for the Exadata infrastructure.
- available
Storage IntegerSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cpu
Count Integer - The total number of CPU cores allocated.
- data
Storage DoubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- db
Server StringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined
File List<CloudSystem Configurations Exadata Infrastructure Defined File System Configuration> - Details of the file system configuration of the Exadata infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- lifecycle
Details String - Additional information about the current lifecycle state.
- max
Cpu IntegerCount - The total number of CPU cores available.
- max
Data DoubleStorage In Tbs - The total available DATA disk group size.
- max
Db IntegerNode Storage In Gbs - The total local node storage available in GBs.
- max
Memory IntegerIn Gbs - The total memory available in GBs.
- memory
Size IntegerIn Gbs - The memory allocated in GBs.
- monthly
Db StringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly
Storage StringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- state String
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage
Server StringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the cloud Exadata infrastructure resource was created.
- total
Storage IntegerSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated
Storage numberCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional
Storage numberCount - The requested number of additional storage servers for the Exadata infrastructure.
- available
Storage numberSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cpu
Count number - The total number of CPU cores allocated.
- data
Storage numberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Server stringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined
File CloudSystem Configurations Exadata Infrastructure Defined File System Configuration[] - Details of the file system configuration of the Exadata infrastructure.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Maintenance stringRun Id - The OCID of the last maintenance run.
- lifecycle
Details string - Additional information about the current lifecycle state.
- max
Cpu numberCount - The total number of CPU cores available.
- max
Data numberStorage In Tbs - The total available DATA disk group size.
- max
Db numberNode Storage In Gbs - The total local node storage available in GBs.
- max
Memory numberIn Gbs - The total memory available in GBs.
- memory
Size numberIn Gbs - The memory allocated in GBs.
- monthly
Db stringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly
Storage stringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- state string
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage
Server stringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time the cloud Exadata infrastructure resource was created.
- total
Storage numberSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated_
storage_ intcount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional_
storage_ intcount - The requested number of additional storage servers for the Exadata infrastructure.
- available_
storage_ intsize_ in_ gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cpu_
count int - The total number of CPU cores allocated.
- data_
storage_ floatsize_ in_ tbs - Size, in terabytes, of the DATA disk group.
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- db_
server_ strversion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined_
file_ Sequence[database.system_ configurations Cloud Exadata Infrastructure Defined File System Configuration] - Details of the file system configuration of the Exadata infrastructure.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- lifecycle_
details str - Additional information about the current lifecycle state.
- max_
cpu_ intcount - The total number of CPU cores available.
- max_
data_ floatstorage_ in_ tbs - The total available DATA disk group size.
- max_
db_ intnode_ storage_ in_ gbs - The total local node storage available in GBs.
- max_
memory_ intin_ gbs - The total memory available in GBs.
- memory_
size_ intin_ gbs - The memory allocated in GBs.
- monthly_
db_ strserver_ version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly_
storage_ strserver_ version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- state str
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage_
server_ strversion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
created str - The date and time the cloud Exadata infrastructure resource was created.
- total_
storage_ intsize_ in_ gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated
Storage NumberCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional
Storage NumberCount - The requested number of additional storage servers for the Exadata infrastructure.
- available
Storage NumberSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cpu
Count Number - The total number of CPU cores allocated.
- data
Storage NumberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Server StringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined
File List<Property Map>System Configurations - Details of the file system configuration of the Exadata infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- lifecycle
Details String - Additional information about the current lifecycle state.
- max
Cpu NumberCount - The total number of CPU cores available.
- max
Data NumberStorage In Tbs - The total available DATA disk group size.
- max
Db NumberNode Storage In Gbs - The total local node storage available in GBs.
- max
Memory NumberIn Gbs - The total memory available in GBs.
- memory
Size NumberIn Gbs - The memory allocated in GBs.
- monthly
Db StringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly
Storage StringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- state String
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage
Server StringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the cloud Exadata infrastructure resource was created.
- total
Storage NumberSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
Look up Existing CloudExadataInfrastructure Resource
Get an existing CloudExadataInfrastructure 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?: CloudExadataInfrastructureState, opts?: CustomResourceOptions): CloudExadataInfrastructure
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
activated_storage_count: Optional[int] = None,
additional_storage_count: Optional[int] = None,
availability_domain: Optional[str] = None,
available_storage_size_in_gbs: Optional[int] = None,
cluster_placement_group_id: Optional[str] = None,
compartment_id: Optional[str] = None,
compute_count: Optional[int] = None,
cpu_count: Optional[int] = None,
customer_contacts: Optional[Sequence[_database.CloudExadataInfrastructureCustomerContactArgs]] = 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_file_system_configurations: Optional[Sequence[_database.CloudExadataInfrastructureDefinedFileSystemConfigurationArgs]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
last_maintenance_run_id: Optional[str] = None,
lifecycle_details: Optional[str] = None,
maintenance_window: Optional[_database.CloudExadataInfrastructureMaintenanceWindowArgs] = 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,
monthly_storage_server_version: Optional[str] = None,
next_maintenance_run_id: Optional[str] = None,
shape: Optional[str] = None,
state: Optional[str] = None,
storage_count: Optional[int] = None,
storage_server_version: Optional[str] = None,
subscription_id: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
total_storage_size_in_gbs: Optional[int] = None) -> CloudExadataInfrastructure
func GetCloudExadataInfrastructure(ctx *Context, name string, id IDInput, state *CloudExadataInfrastructureState, opts ...ResourceOption) (*CloudExadataInfrastructure, error)
public static CloudExadataInfrastructure Get(string name, Input<string> id, CloudExadataInfrastructureState? state, CustomResourceOptions? opts = null)
public static CloudExadataInfrastructure get(String name, Output<String> id, CloudExadataInfrastructureState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Activated
Storage intCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- Additional
Storage intCount - The requested number of additional storage servers for the Exadata infrastructure.
- Availability
Domain string - The availability domain where the cloud Exadata infrastructure is located.
- Available
Storage intSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Count int - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- Cpu
Count int - The total number of CPU cores allocated.
- Customer
Contacts List<CloudExadata Infrastructure Customer Contact> - (Updatable) Customer contacts.
- Data
Storage doubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Server stringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Defined
File List<CloudSystem Configurations Exadata Infrastructure Defined File System Configuration> - Details of the file system configuration of the Exadata infrastructure.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- Dictionary<string, string>
- (Updatable) 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"}
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Window CloudExadata Infrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Max
Cpu intCount - The total number of CPU cores available.
- Max
Data doubleStorage In Tbs - The total available DATA disk group size.
- Max
Db intNode Storage In Gbs - The total local node storage available in GBs.
- Max
Memory intIn Gbs - The total memory available in GBs.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Monthly
Db stringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Monthly
Storage stringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Shape string
- The shape of the cloud Exadata infrastructure resource.
- State string
- The current lifecycle state of the cloud Exadata infrastructure resource.
- Storage
Count int - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- Storage
Server stringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Subscription
Id string The OCID of the subscription with which resource needs to be associated with.
** 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
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the cloud Exadata infrastructure resource was created.
- Total
Storage intSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- Activated
Storage intCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- Additional
Storage intCount - The requested number of additional storage servers for the Exadata infrastructure.
- Availability
Domain string - The availability domain where the cloud Exadata infrastructure is located.
- Available
Storage intSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Count int - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- Cpu
Count int - The total number of CPU cores allocated.
- Customer
Contacts []CloudExadata Infrastructure Customer Contact Args - (Updatable) Customer contacts.
- Data
Storage float64Size In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Server stringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Defined
File []CloudSystem Configurations Exadata Infrastructure Defined File System Configuration Args - Details of the file system configuration of the Exadata infrastructure.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- map[string]string
- (Updatable) 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"}
- Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Maintenance
Window CloudExadata Infrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Max
Cpu intCount - The total number of CPU cores available.
- Max
Data float64Storage In Tbs - The total available DATA disk group size.
- Max
Db intNode Storage In Gbs - The total local node storage available in GBs.
- Max
Memory intIn Gbs - The total memory available in GBs.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Monthly
Db stringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- Monthly
Storage stringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Next
Maintenance stringRun Id - The OCID of the next maintenance run.
- Shape string
- The shape of the cloud Exadata infrastructure resource.
- State string
- The current lifecycle state of the cloud Exadata infrastructure resource.
- Storage
Count int - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- Storage
Server stringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- Subscription
Id string The OCID of the subscription with which resource needs to be associated with.
** 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
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the cloud Exadata infrastructure resource was created.
- Total
Storage intSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated
Storage IntegerCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional
Storage IntegerCount - The requested number of additional storage servers for the Exadata infrastructure.
- availability
Domain String - The availability domain where the cloud Exadata infrastructure is located.
- available
Storage IntegerSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Count Integer - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- cpu
Count Integer - The total number of CPU cores allocated.
- customer
Contacts List<CloudExadata Infrastructure Customer Contact> - (Updatable) Customer contacts.
- data
Storage DoubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- db
Server StringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined
File List<CloudSystem Configurations Exadata Infrastructure Defined File System Configuration> - Details of the file system configuration of the Exadata infrastructure.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- Map<String,String>
- (Updatable) 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"}
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Window CloudExadata Infrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Cpu IntegerCount - The total number of CPU cores available.
- max
Data DoubleStorage In Tbs - The total available DATA disk group size.
- max
Db IntegerNode Storage In Gbs - The total local node storage available in GBs.
- max
Memory IntegerIn Gbs - The total memory available in GBs.
- memory
Size IntegerIn Gbs - The memory allocated in GBs.
- monthly
Db StringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly
Storage StringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- shape String
- The shape of the cloud Exadata infrastructure resource.
- state String
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage
Count Integer - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- storage
Server StringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- subscription
Id String The OCID of the subscription with which resource needs to be associated with.
** 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
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the cloud Exadata infrastructure resource was created.
- total
Storage IntegerSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated
Storage numberCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional
Storage numberCount - The requested number of additional storage servers for the Exadata infrastructure.
- availability
Domain string - The availability domain where the cloud Exadata infrastructure is located.
- available
Storage numberSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cluster
Placement stringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compartment
Id string - (Updatable) The OCID of the compartment.
- compute
Count number - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- cpu
Count number - The total number of CPU cores allocated.
- customer
Contacts CloudExadata Infrastructure Customer Contact[] - (Updatable) Customer contacts.
- data
Storage numberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Server stringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined
File CloudSystem Configurations Exadata Infrastructure Defined File System Configuration[] - Details of the file system configuration of the Exadata infrastructure.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- {[key: string]: string}
- (Updatable) 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"}
- last
Maintenance stringRun Id - The OCID of the last maintenance run.
- lifecycle
Details string - Additional information about the current lifecycle state.
- maintenance
Window CloudExadata Infrastructure Maintenance Window - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Cpu numberCount - The total number of CPU cores available.
- max
Data numberStorage In Tbs - The total available DATA disk group size.
- max
Db numberNode Storage In Gbs - The total local node storage available in GBs.
- max
Memory numberIn Gbs - The total memory available in GBs.
- memory
Size numberIn Gbs - The memory allocated in GBs.
- monthly
Db stringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly
Storage stringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- shape string
- The shape of the cloud Exadata infrastructure resource.
- state string
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage
Count number - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- storage
Server stringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- subscription
Id string The OCID of the subscription with which resource needs to be associated with.
** 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
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time the cloud Exadata infrastructure resource was created.
- total
Storage numberSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated_
storage_ intcount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional_
storage_ intcount - The requested number of additional storage servers for the Exadata infrastructure.
- availability_
domain str - The availability domain where the cloud Exadata infrastructure is located.
- available_
storage_ intsize_ in_ gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cluster_
placement_ strgroup_ id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compartment_
id str - (Updatable) The OCID of the compartment.
- compute_
count int - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- cpu_
count int - The total number of CPU cores allocated.
- customer_
contacts Sequence[database.Cloud Exadata Infrastructure Customer Contact Args] - (Updatable) Customer contacts.
- data_
storage_ floatsize_ in_ tbs - Size, in terabytes, of the DATA disk group.
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- db_
server_ strversion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined_
file_ Sequence[database.system_ configurations Cloud Exadata Infrastructure Defined File System Configuration Args] - Details of the file system configuration of the Exadata infrastructure.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name str - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- Mapping[str, str]
- (Updatable) 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"}
- last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- lifecycle_
details str - Additional information about the current lifecycle state.
- maintenance_
window database.Cloud Exadata Infrastructure Maintenance Window Args - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max_
cpu_ intcount - The total number of CPU cores available.
- max_
data_ floatstorage_ in_ tbs - The total available DATA disk group size.
- max_
db_ intnode_ storage_ in_ gbs - The total local node storage available in GBs.
- max_
memory_ intin_ gbs - The total memory available in GBs.
- memory_
size_ intin_ gbs - The memory allocated in GBs.
- monthly_
db_ strserver_ version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly_
storage_ strserver_ version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- shape str
- The shape of the cloud Exadata infrastructure resource.
- state str
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage_
count int - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- storage_
server_ strversion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- subscription_
id str The OCID of the subscription with which resource needs to be associated with.
** 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
created str - The date and time the cloud Exadata infrastructure resource was created.
- total_
storage_ intsize_ in_ gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- activated
Storage NumberCount - The requested number of additional storage servers activated for the Exadata infrastructure.
- additional
Storage NumberCount - The requested number of additional storage servers for the Exadata infrastructure.
- availability
Domain String - The availability domain where the cloud Exadata infrastructure is located.
- available
Storage NumberSize In Gbs - The available storage can be allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the Exadata Infrastructure.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Count Number - (Updatable) The number of compute servers for the cloud Exadata infrastructure.
- cpu
Count Number - The total number of CPU cores allocated.
- customer
Contacts List<Property Map> - (Updatable) Customer contacts.
- data
Storage NumberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Server StringVersion - The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- defined
File List<Property Map>System Configurations - Details of the file system configuration of the Exadata infrastructure.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - (Updatable) The user-friendly name for the cloud Exadata infrastructure resource. The name does not need to be unique.
- Map<String>
- (Updatable) 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"}
- last
Maintenance StringRun Id - The OCID of the last maintenance run.
- lifecycle
Details String - Additional information about the current lifecycle state.
- maintenance
Window Property Map - (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max
Cpu NumberCount - The total number of CPU cores available.
- max
Data NumberStorage In Tbs - The total available DATA disk group size.
- max
Db NumberNode Storage In Gbs - The total local node storage available in GBs.
- max
Memory NumberIn Gbs - The total memory available in GBs.
- memory
Size NumberIn Gbs - The memory allocated in GBs.
- monthly
Db StringServer Version - The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
- monthly
Storage StringServer Version - The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- shape String
- The shape of the cloud Exadata infrastructure resource.
- state String
- The current lifecycle state of the cloud Exadata infrastructure resource.
- storage
Count Number - (Updatable) The number of storage servers for the cloud Exadata infrastructure.
- storage
Server StringVersion - The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
- subscription
Id String The OCID of the subscription with which resource needs to be associated with.
** 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
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the cloud Exadata infrastructure resource was created.
- total
Storage NumberSize In Gbs - The total storage allocated to the cloud Exadata infrastructure resource, in gigabytes (GB).
Supporting Types
CloudExadataInfrastructureCustomerContact, CloudExadataInfrastructureCustomerContactArgs
- Email string
- (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
- Email string
- (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
- email String
- (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
- email string
- (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
- email str
- (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
- email String
- (Updatable) The email address used by Oracle to send notifications regarding databases and infrastructure.
CloudExadataInfrastructureDefinedFileSystemConfiguration, CloudExadataInfrastructureDefinedFileSystemConfigurationArgs
- Is
Backup boolPartition - If true, the file system is used to create a backup prior to Exadata VM OS update.
- Is
Resizable bool - If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
- Min
Size intGb - The minimum size of file system.
- Mount
Point string - The mount point of file system.
- Is
Backup boolPartition - If true, the file system is used to create a backup prior to Exadata VM OS update.
- Is
Resizable bool - If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
- Min
Size intGb - The minimum size of file system.
- Mount
Point string - The mount point of file system.
- is
Backup BooleanPartition - If true, the file system is used to create a backup prior to Exadata VM OS update.
- is
Resizable Boolean - If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
- min
Size IntegerGb - The minimum size of file system.
- mount
Point String - The mount point of file system.
- is
Backup booleanPartition - If true, the file system is used to create a backup prior to Exadata VM OS update.
- is
Resizable boolean - If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
- min
Size numberGb - The minimum size of file system.
- mount
Point string - The mount point of file system.
- is_
backup_ boolpartition - If true, the file system is used to create a backup prior to Exadata VM OS update.
- is_
resizable bool - If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
- min_
size_ intgb - The minimum size of file system.
- mount_
point str - The mount point of file system.
- is
Backup BooleanPartition - If true, the file system is used to create a backup prior to Exadata VM OS update.
- is
Resizable Boolean - If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
- min
Size NumberGb - The minimum size of file system.
- mount
Point String - The mount point of file system.
CloudExadataInfrastructureMaintenanceWindow, CloudExadataInfrastructureMaintenanceWindowArgs
- Custom
Action intTimeout In Mins - (Updatable) 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 List<CloudWeeks Exadata Infrastructure Maintenance Window Days Of Week> - (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 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<Cloud
Exadata Infrastructure Maintenance Window Month> - (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Skip
Rus List<bool> - 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 server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of []CloudWeeks Exadata Infrastructure Maintenance Window Days Of Week - (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 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
[]Cloud
Exadata Infrastructure Maintenance Window Month - (Updatable) Months during the year when maintenance should be performed.
- Patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- Preference string
- (Updatable) The maintenance window scheduling preference.
- Skip
Rus []bool - 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 IntegerTimeout In Mins - (Updatable) 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 List<CloudWeeks Exadata Infrastructure Maintenance Window Days Of Week> - (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 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<Cloud
Exadata Infrastructure Maintenance Window Month> - (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- skip
Rus List<Boolean> - 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 server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of CloudWeeks Exadata Infrastructure Maintenance Window Days Of Week[] - (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 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
Cloud
Exadata Infrastructure Maintenance Window Month[] - (Updatable) Months during the year when maintenance should be performed.
- patching
Mode string (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference string
- (Updatable) The maintenance window scheduling preference.
- skip
Rus boolean[] - 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 server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ Sequence[database.weeks Cloud Exadata Infrastructure Maintenance Window Days Of Week] - (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 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[database.
Cloud Exadata Infrastructure Maintenance Window Month] - (Updatable) Months during the year when maintenance should be performed.
- patching_
mode str (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference str
- (Updatable) The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - 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 server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<Property Map>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 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<Property Map>
- (Updatable) Months during the year when maintenance should be performed.
- patching
Mode String (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.
- preference String
- (Updatable) The maintenance window scheduling preference.
- skip
Rus List<Boolean> - 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.
CloudExadataInfrastructureMaintenanceWindowDaysOfWeek, CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs
- Name string
- (Updatable) Name of the day of the week.
- Name string
- (Updatable) Name of the day of the week.
- name String
- (Updatable) Name of the day of the week.
- name string
- (Updatable) Name of the day of the week.
- name str
- (Updatable) Name of the day of the week.
- name String
- (Updatable) Name of the day of the week.
CloudExadataInfrastructureMaintenanceWindowMonth, CloudExadataInfrastructureMaintenanceWindowMonthArgs
- Name string
- (Updatable) Name of the month of the year.
- Name string
- (Updatable) Name of the month of the year.
- name String
- (Updatable) Name of the month of the year.
- name string
- (Updatable) Name of the month of the year.
- name str
- (Updatable) Name of the month of the year.
- name String
- (Updatable) Name of the month of the year.
Import
CloudExadataInfrastructures can be imported using the id
, e.g.
$ pulumi import oci:Database/cloudExadataInfrastructure:CloudExadataInfrastructure test_cloud_exadata_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
oci
Terraform Provider.