1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. oracledatabase
  6. CloudExadataInfrastructureExascaleConfig
Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi

    A resource to configure Exascale storage on an Oracle Cloud Exadata Infrastructure.

    Note: Oracle Database @ Google Cloud does not support deconfiguring Exascale storage on an Exadata Infrastructure. Deleting this resource from Terraform state will only remove it from Terraform management; it will not delete or reset the Exascale configuration on the actual Exadata Infrastructure.

    Example Usage

    Oracledatabase Cloud Exadata Infrastructure Exascale Config Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const infra = new gcp.oracledatabase.CloudExadataInfrastructure("infra", {
        cloudExadataInfrastructureId: "my-infra",
        displayName: "my-infra displayname",
        location: "us-east4",
        project: "my-project",
        properties: {
            shape: "Exadata.X9M",
            computeCount: 2,
            storageCount: 3,
        },
        deletionProtection: true,
    });
    const myExascaleConfig = new gcp.oracledatabase.CloudExadataInfrastructureExascaleConfig("my_exascale_config", {
        cloudExadataInfrastructure: infra.cloudExadataInfrastructureId,
        location: "us-east4",
        project: "my-project",
        totalStorageSizeGb: 10240,
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    infra = gcp.oracledatabase.CloudExadataInfrastructure("infra",
        cloud_exadata_infrastructure_id="my-infra",
        display_name="my-infra displayname",
        location="us-east4",
        project="my-project",
        properties={
            "shape": "Exadata.X9M",
            "compute_count": 2,
            "storage_count": 3,
        },
        deletion_protection=True)
    my_exascale_config = gcp.oracledatabase.CloudExadataInfrastructureExascaleConfig("my_exascale_config",
        cloud_exadata_infrastructure=infra.cloud_exadata_infrastructure_id,
        location="us-east4",
        project="my-project",
        total_storage_size_gb=10240)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/oracledatabase"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		infra, err := oracledatabase.NewCloudExadataInfrastructure(ctx, "infra", &oracledatabase.CloudExadataInfrastructureArgs{
    			CloudExadataInfrastructureId: pulumi.String("my-infra"),
    			DisplayName:                  pulumi.String("my-infra displayname"),
    			Location:                     pulumi.String("us-east4"),
    			Project:                      pulumi.String("my-project"),
    			Properties: &oracledatabase.CloudExadataInfrastructurePropertiesArgs{
    				Shape:        pulumi.String("Exadata.X9M"),
    				ComputeCount: pulumi.Int(2),
    				StorageCount: pulumi.Int(3),
    			},
    			DeletionProtection: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = oracledatabase.NewCloudExadataInfrastructureExascaleConfig(ctx, "my_exascale_config", &oracledatabase.CloudExadataInfrastructureExascaleConfigArgs{
    			CloudExadataInfrastructure: infra.CloudExadataInfrastructureId,
    			Location:                   pulumi.String("us-east4"),
    			Project:                    pulumi.String("my-project"),
    			TotalStorageSizeGb:         pulumi.Int(10240),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var infra = new Gcp.OracleDatabase.CloudExadataInfrastructure("infra", new()
        {
            CloudExadataInfrastructureId = "my-infra",
            DisplayName = "my-infra displayname",
            Location = "us-east4",
            Project = "my-project",
            Properties = new Gcp.OracleDatabase.Inputs.CloudExadataInfrastructurePropertiesArgs
            {
                Shape = "Exadata.X9M",
                ComputeCount = 2,
                StorageCount = 3,
            },
            DeletionProtection = true,
        });
    
        var myExascaleConfig = new Gcp.OracleDatabase.CloudExadataInfrastructureExascaleConfig("my_exascale_config", new()
        {
            CloudExadataInfrastructure = infra.CloudExadataInfrastructureId,
            Location = "us-east4",
            Project = "my-project",
            TotalStorageSizeGb = 10240,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.oracledatabase.CloudExadataInfrastructure;
    import com.pulumi.gcp.oracledatabase.CloudExadataInfrastructureArgs;
    import com.pulumi.gcp.oracledatabase.inputs.CloudExadataInfrastructurePropertiesArgs;
    import com.pulumi.gcp.oracledatabase.CloudExadataInfrastructureExascaleConfig;
    import com.pulumi.gcp.oracledatabase.CloudExadataInfrastructureExascaleConfigArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var infra = new CloudExadataInfrastructure("infra", CloudExadataInfrastructureArgs.builder()
                .cloudExadataInfrastructureId("my-infra")
                .displayName("my-infra displayname")
                .location("us-east4")
                .project("my-project")
                .properties(CloudExadataInfrastructurePropertiesArgs.builder()
                    .shape("Exadata.X9M")
                    .computeCount(2)
                    .storageCount(3)
                    .build())
                .deletionProtection(true)
                .build());
    
            var myExascaleConfig = new CloudExadataInfrastructureExascaleConfig("myExascaleConfig", CloudExadataInfrastructureExascaleConfigArgs.builder()
                .cloudExadataInfrastructure(infra.cloudExadataInfrastructureId())
                .location("us-east4")
                .project("my-project")
                .totalStorageSizeGb(10240)
                .build());
    
        }
    }
    
    resources:
      infra:
        type: gcp:oracledatabase:CloudExadataInfrastructure
        properties:
          cloudExadataInfrastructureId: my-infra
          displayName: my-infra displayname
          location: us-east4
          project: my-project
          properties:
            shape: Exadata.X9M
            computeCount: '2'
            storageCount: '3'
          deletionProtection: 'true'
      myExascaleConfig:
        type: gcp:oracledatabase:CloudExadataInfrastructureExascaleConfig
        name: my_exascale_config
        properties:
          cloudExadataInfrastructure: ${infra.cloudExadataInfrastructureId}
          location: us-east4
          project: my-project
          totalStorageSizeGb: 10240
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    resource "gcp_oracledatabase_cloudexadatainfrastructure" "infra" {
      cloud_exadata_infrastructure_id = "my-infra"
      display_name                    = "my-infra displayname"
      location                        = "us-east4"
      project                         = "my-project"
      properties = {
        shape         = "Exadata.X9M"
        compute_count = "2"
        storage_count = "3"
      }
      deletion_protection = "true"
    }
    resource "gcp_oracledatabase_cloudexadatainfrastructureexascaleconfig" "my_exascale_config" {
      cloud_exadata_infrastructure = gcp_oracledatabase_cloudexadatainfrastructure.infra.cloud_exadata_infrastructure_id
      location                     = "us-east4"
      project                      = "my-project"
      total_storage_size_gb        = 10240
    }
    

    Create CloudExadataInfrastructureExascaleConfig Resource

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

    Constructor syntax

    new CloudExadataInfrastructureExascaleConfig(name: string, args: CloudExadataInfrastructureExascaleConfigArgs, opts?: CustomResourceOptions);
    @overload
    def CloudExadataInfrastructureExascaleConfig(resource_name: str,
                                                 args: CloudExadataInfrastructureExascaleConfigArgs,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudExadataInfrastructureExascaleConfig(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 cloud_exadata_infrastructure: Optional[str] = None,
                                                 location: Optional[str] = None,
                                                 total_storage_size_gb: Optional[int] = None,
                                                 deletion_policy: Optional[str] = None,
                                                 project: Optional[str] = None)
    func NewCloudExadataInfrastructureExascaleConfig(ctx *Context, name string, args CloudExadataInfrastructureExascaleConfigArgs, opts ...ResourceOption) (*CloudExadataInfrastructureExascaleConfig, error)
    public CloudExadataInfrastructureExascaleConfig(string name, CloudExadataInfrastructureExascaleConfigArgs args, CustomResourceOptions? opts = null)
    public CloudExadataInfrastructureExascaleConfig(String name, CloudExadataInfrastructureExascaleConfigArgs args)
    public CloudExadataInfrastructureExascaleConfig(String name, CloudExadataInfrastructureExascaleConfigArgs args, CustomResourceOptions options)
    
    type: gcp:oracledatabase:CloudExadataInfrastructureExascaleConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "gcp_oracledatabase_cloud_exadata_infrastructure_exascale_config" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CloudExadataInfrastructureExascaleConfigArgs
    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 CloudExadataInfrastructureExascaleConfigArgs
    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 CloudExadataInfrastructureExascaleConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudExadataInfrastructureExascaleConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudExadataInfrastructureExascaleConfigArgs
    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 cloudExadataInfrastructureExascaleConfigResource = new Gcp.OracleDatabase.CloudExadataInfrastructureExascaleConfig("cloudExadataInfrastructureExascaleConfigResource", new()
    {
        CloudExadataInfrastructure = "string",
        Location = "string",
        TotalStorageSizeGb = 0,
        DeletionPolicy = "string",
        Project = "string",
    });
    
    example, err := oracledatabase.NewCloudExadataInfrastructureExascaleConfig(ctx, "cloudExadataInfrastructureExascaleConfigResource", &oracledatabase.CloudExadataInfrastructureExascaleConfigArgs{
    	CloudExadataInfrastructure: pulumi.String("string"),
    	Location:                   pulumi.String("string"),
    	TotalStorageSizeGb:         pulumi.Int(0),
    	DeletionPolicy:             pulumi.String("string"),
    	Project:                    pulumi.String("string"),
    })
    
    resource "gcp_oracledatabase_cloud_exadata_infrastructure_exascale_config" "cloudExadataInfrastructureExascaleConfigResource" {
      lifecycle {
        create_before_destroy = true
      }
      cloud_exadata_infrastructure = "string"
      location                     = "string"
      total_storage_size_gb        = 0
      deletion_policy              = "string"
      project                      = "string"
    }
    
    var cloudExadataInfrastructureExascaleConfigResource = new CloudExadataInfrastructureExascaleConfig("cloudExadataInfrastructureExascaleConfigResource", CloudExadataInfrastructureExascaleConfigArgs.builder()
        .cloudExadataInfrastructure("string")
        .location("string")
        .totalStorageSizeGb(0)
        .deletionPolicy("string")
        .project("string")
        .build());
    
    cloud_exadata_infrastructure_exascale_config_resource = gcp.oracledatabase.CloudExadataInfrastructureExascaleConfig("cloudExadataInfrastructureExascaleConfigResource",
        cloud_exadata_infrastructure="string",
        location="string",
        total_storage_size_gb=0,
        deletion_policy="string",
        project="string")
    
    const cloudExadataInfrastructureExascaleConfigResource = new gcp.oracledatabase.CloudExadataInfrastructureExascaleConfig("cloudExadataInfrastructureExascaleConfigResource", {
        cloudExadataInfrastructure: "string",
        location: "string",
        totalStorageSizeGb: 0,
        deletionPolicy: "string",
        project: "string",
    });
    
    type: gcp:oracledatabase:CloudExadataInfrastructureExascaleConfig
    properties:
        cloudExadataInfrastructure: string
        deletionPolicy: string
        location: string
        project: string
        totalStorageSizeGb: 0
    

    CloudExadataInfrastructureExascaleConfig Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CloudExadataInfrastructureExascaleConfig resource accepts the following input properties:

    CloudExadataInfrastructure string
    A reference to CloudExadataInfrastructure resource
    Location string
    (Required)
    TotalStorageSizeGb int
    The total storage to be allocated to Exascale in GBs.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    CloudExadataInfrastructure string
    A reference to CloudExadataInfrastructure resource
    Location string
    (Required)
    TotalStorageSizeGb int
    The total storage to be allocated to Exascale in GBs.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    cloud_exadata_infrastructure string
    A reference to CloudExadataInfrastructure resource
    location string
    (Required)
    total_storage_size_gb number
    The total storage to be allocated to Exascale in GBs.
    deletion_policy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    cloudExadataInfrastructure String
    A reference to CloudExadataInfrastructure resource
    location String
    (Required)
    totalStorageSizeGb Integer
    The total storage to be allocated to Exascale in GBs.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    cloudExadataInfrastructure string
    A reference to CloudExadataInfrastructure resource
    location string
    (Required)
    totalStorageSizeGb number
    The total storage to be allocated to Exascale in GBs.
    deletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    cloud_exadata_infrastructure str
    A reference to CloudExadataInfrastructure resource
    location str
    (Required)
    total_storage_size_gb int
    The total storage to be allocated to Exascale in GBs.
    deletion_policy str
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    cloudExadataInfrastructure String
    A reference to CloudExadataInfrastructure resource
    location String
    (Required)
    totalStorageSizeGb Number
    The total storage to be allocated to Exascale in GBs.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CloudExadataInfrastructureExascaleConfig Resource

    Get an existing CloudExadataInfrastructureExascaleConfig 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?: CloudExadataInfrastructureExascaleConfigState, opts?: CustomResourceOptions): CloudExadataInfrastructureExascaleConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_exadata_infrastructure: Optional[str] = None,
            deletion_policy: Optional[str] = None,
            location: Optional[str] = None,
            project: Optional[str] = None,
            total_storage_size_gb: Optional[int] = None) -> CloudExadataInfrastructureExascaleConfig
    func GetCloudExadataInfrastructureExascaleConfig(ctx *Context, name string, id IDInput, state *CloudExadataInfrastructureExascaleConfigState, opts ...ResourceOption) (*CloudExadataInfrastructureExascaleConfig, error)
    public static CloudExadataInfrastructureExascaleConfig Get(string name, Input<string> id, CloudExadataInfrastructureExascaleConfigState? state, CustomResourceOptions? opts = null)
    public static CloudExadataInfrastructureExascaleConfig get(String name, Output<String> id, CloudExadataInfrastructureExascaleConfigState state, CustomResourceOptions options)
    resources:  _:    type: gcp:oracledatabase:CloudExadataInfrastructureExascaleConfig    get:      id: ${id}
    import {
      to = gcp_oracledatabase_cloud_exadata_infrastructure_exascale_config.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CloudExadataInfrastructure string
    A reference to CloudExadataInfrastructure resource
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Location string
    (Required)
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    TotalStorageSizeGb int
    The total storage to be allocated to Exascale in GBs.
    CloudExadataInfrastructure string
    A reference to CloudExadataInfrastructure resource
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Location string
    (Required)
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    TotalStorageSizeGb int
    The total storage to be allocated to Exascale in GBs.
    cloud_exadata_infrastructure string
    A reference to CloudExadataInfrastructure resource
    deletion_policy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    location string
    (Required)
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    total_storage_size_gb number
    The total storage to be allocated to Exascale in GBs.
    cloudExadataInfrastructure String
    A reference to CloudExadataInfrastructure resource
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    location String
    (Required)
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    totalStorageSizeGb Integer
    The total storage to be allocated to Exascale in GBs.
    cloudExadataInfrastructure string
    A reference to CloudExadataInfrastructure resource
    deletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    location string
    (Required)
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    totalStorageSizeGb number
    The total storage to be allocated to Exascale in GBs.
    cloud_exadata_infrastructure str
    A reference to CloudExadataInfrastructure resource
    deletion_policy str
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    location str
    (Required)
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    total_storage_size_gb int
    The total storage to be allocated to Exascale in GBs.
    cloudExadataInfrastructure String
    A reference to CloudExadataInfrastructure resource
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    location String
    (Required)
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    totalStorageSizeGb Number
    The total storage to be allocated to Exascale in GBs.

    Import

    CloudExadataInfrastructureExascaleConfig can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/cloudExadataInfrastructures/{{cloud_exadata_infrastructure}}
    • {{project}}/{{location}}/{{cloud_exadata_infrastructure}}
    • {{location}}/{{cloud_exadata_infrastructure}}

    When using the pulumi import command, CloudExadataInfrastructureExascaleConfig can be imported using one of the formats above. For example:

    $ pulumi import gcp:oracledatabase/cloudExadataInfrastructureExascaleConfig:CloudExadataInfrastructureExascaleConfig default projects/{{project}}/locations/{{location}}/cloudExadataInfrastructures/{{cloud_exadata_infrastructure}}
    $ pulumi import gcp:oracledatabase/cloudExadataInfrastructureExascaleConfig:CloudExadataInfrastructureExascaleConfig default {{project}}/{{location}}/{{cloud_exadata_infrastructure}}
    $ pulumi import gcp:oracledatabase/cloudExadataInfrastructureExascaleConfig:CloudExadataInfrastructureExascaleConfig default {{location}}/{{cloud_exadata_infrastructure}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Viewing docs for Google Cloud v9.30.0
    published on Monday, Jul 13, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial