1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. oracledatabase
  6. getExascaleDbStorageVault
Viewing docs for Google Cloud v9.33.0
published on Wednesday, Aug 5, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.33.0
published on Wednesday, Aug 5, 2026 by Pulumi

    Get information about an ExascaleDbStorageVault.

    For more information see the API.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const my_vault = gcp.oracledatabase.getExascaleDbStorageVault({
        location: "us-east4",
        exascaleDbStorageVaultId: "vault-id",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    my_vault = gcp.oracledatabase.get_exascale_db_storage_vault(location="us-east4",
        exascale_db_storage_vault_id="vault-id")
    
    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 {
    		_, err := oracledatabase.LookupExascaleDbStorageVault(ctx, &oracledatabase.LookupExascaleDbStorageVaultArgs{
    			Location:                 "us-east4",
    			ExascaleDbStorageVaultId: "vault-id",
    		}, nil)
    		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 my_vault = Gcp.OracleDatabase.GetExascaleDbStorageVault.Invoke(new()
        {
            Location = "us-east4",
            ExascaleDbStorageVaultId = "vault-id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.oracledatabase.OracledatabaseFunctions;
    import com.pulumi.gcp.oracledatabase.inputs.GetExascaleDbStorageVaultArgs;
    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) {
            final var my-vault = OracledatabaseFunctions.getExascaleDbStorageVault(GetExascaleDbStorageVaultArgs.builder()
                .location("us-east4")
                .exascaleDbStorageVaultId("vault-id")
                .build());
    
        }
    }
    
    variables:
      my-vault:
        fn::invoke:
          function: gcp:oracledatabase:getExascaleDbStorageVault
          arguments:
            location: us-east4
            exascaleDbStorageVaultId: vault-id
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    data "gcp_oracledatabase_getexascaledbstoragevault" "my-vault" {
      location                     = "us-east4"
      exascale_db_storage_vault_id = "vault-id"
    }
    

    Using getExascaleDbStorageVault

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getExascaleDbStorageVault(args: GetExascaleDbStorageVaultArgs, opts?: InvokeOptions): Promise<GetExascaleDbStorageVaultResult>
    function getExascaleDbStorageVaultOutput(args: GetExascaleDbStorageVaultOutputArgs, opts?: InvokeOptions): Output<GetExascaleDbStorageVaultResult>
    def get_exascale_db_storage_vault(exascale_db_storage_vault_id: Optional[str] = None,
                                      location: Optional[str] = None,
                                      project: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetExascaleDbStorageVaultResult
    def get_exascale_db_storage_vault_output(exascale_db_storage_vault_id: pulumi.Input[Optional[str]] = None,
                                      location: pulumi.Input[Optional[str]] = None,
                                      project: pulumi.Input[Optional[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetExascaleDbStorageVaultResult]
    func LookupExascaleDbStorageVault(ctx *Context, args *LookupExascaleDbStorageVaultArgs, opts ...InvokeOption) (*LookupExascaleDbStorageVaultResult, error)
    func LookupExascaleDbStorageVaultOutput(ctx *Context, args *LookupExascaleDbStorageVaultOutputArgs, opts ...InvokeOption) LookupExascaleDbStorageVaultResultOutput

    > Note: This function is named LookupExascaleDbStorageVault in the Go SDK.

    public static class GetExascaleDbStorageVault 
    {
        public static Task<GetExascaleDbStorageVaultResult> InvokeAsync(GetExascaleDbStorageVaultArgs args, InvokeOptions? opts = null)
        public static Output<GetExascaleDbStorageVaultResult> Invoke(GetExascaleDbStorageVaultInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetExascaleDbStorageVaultResult> getExascaleDbStorageVault(GetExascaleDbStorageVaultArgs args, InvokeOptions options)
    public static Output<GetExascaleDbStorageVaultResult> getExascaleDbStorageVault(GetExascaleDbStorageVaultArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcp:oracledatabase/getExascaleDbStorageVault:getExascaleDbStorageVault
      arguments:
        # arguments dictionary
    data "gcp_oracledatabase_get_exascale_db_storage_vault" "name" {
        # arguments
    }

    The following arguments are supported:

    ExascaleDbStorageVaultId string
    The ID of the ExascaleDbStorageVault.
    Location string
    The location of the resource.


    Project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    ExascaleDbStorageVaultId string
    The ID of the ExascaleDbStorageVault.
    Location string
    The location of the resource.


    Project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    exascale_db_storage_vault_id string
    The ID of the ExascaleDbStorageVault.
    location string
    The location of the resource.


    project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    exascaleDbStorageVaultId String
    The ID of the ExascaleDbStorageVault.
    location String
    The location of the resource.


    project String
    The project to which the resource belongs. If it is not provided, the provider project is used.
    exascaleDbStorageVaultId string
    The ID of the ExascaleDbStorageVault.
    location string
    The location of the resource.


    project string
    The project to which the resource belongs. If it is not provided, the provider project is used.
    exascale_db_storage_vault_id str
    The ID of the ExascaleDbStorageVault.
    location str
    The location of the resource.


    project str
    The project to which the resource belongs. If it is not provided, the provider project is used.
    exascaleDbStorageVaultId String
    The ID of the ExascaleDbStorageVault.
    location String
    The location of the resource.


    project String
    The project to which the resource belongs. If it is not provided, the provider project is used.

    getExascaleDbStorageVault Result

    The following output properties are available:

    CreateTime string
    DeletionPolicy string
    DeletionProtection bool
    DisplayName string
    EffectiveLabels Dictionary<string, string>
    EntitlementId string
    ExadataInfrastructure string
    ExascaleDbStorageVaultId string
    GcpOracleZone string
    Id string
    The provider-assigned unique ID for this managed resource.
    Labels Dictionary<string, string>
    Location string
    Name string
    Properties List<GetExascaleDbStorageVaultProperty>
    PulumiLabels Dictionary<string, string>
    Project string
    CreateTime string
    DeletionPolicy string
    DeletionProtection bool
    DisplayName string
    EffectiveLabels map[string]string
    EntitlementId string
    ExadataInfrastructure string
    ExascaleDbStorageVaultId string
    GcpOracleZone string
    Id string
    The provider-assigned unique ID for this managed resource.
    Labels map[string]string
    Location string
    Name string
    Properties []GetExascaleDbStorageVaultProperty
    PulumiLabels map[string]string
    Project string
    create_time string
    deletion_policy string
    deletion_protection bool
    display_name string
    effective_labels map(string)
    entitlement_id string
    exadata_infrastructure string
    exascale_db_storage_vault_id string
    gcp_oracle_zone string
    id string
    The provider-assigned unique ID for this managed resource.
    labels map(string)
    location string
    name string
    properties list(object)
    pulumi_labels map(string)
    project string
    createTime String
    deletionPolicy String
    deletionProtection Boolean
    displayName String
    effectiveLabels Map<String,String>
    entitlementId String
    exadataInfrastructure String
    exascaleDbStorageVaultId String
    gcpOracleZone String
    id String
    The provider-assigned unique ID for this managed resource.
    labels Map<String,String>
    location String
    name String
    properties List<GetExascaleDbStorageVaultProperty>
    pulumiLabels Map<String,String>
    project String
    createTime string
    deletionPolicy string
    deletionProtection boolean
    displayName string
    effectiveLabels {[key: string]: string}
    entitlementId string
    exadataInfrastructure string
    exascaleDbStorageVaultId string
    gcpOracleZone string
    id string
    The provider-assigned unique ID for this managed resource.
    labels {[key: string]: string}
    location string
    name string
    properties GetExascaleDbStorageVaultProperty[]
    pulumiLabels {[key: string]: string}
    project string
    createTime String
    deletionPolicy String
    deletionProtection Boolean
    displayName String
    effectiveLabels Map<String>
    entitlementId String
    exadataInfrastructure String
    exascaleDbStorageVaultId String
    gcpOracleZone String
    id String
    The provider-assigned unique ID for this managed resource.
    labels Map<String>
    location String
    name String
    properties List<Property Map>
    pulumiLabels Map<String>
    project String

    Supporting Types

    GetExascaleDbStorageVaultProperty

    AdditionalFlashCachePercent int
    The size of additional flash cache in percentage of high capacity database storage.
    AttachedShapeAttributes List<string>
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    AvailableShapeAttributes List<string>
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    ExascaleDbStorageDetails List<GetExascaleDbStorageVaultPropertyExascaleDbStorageDetail>
    The storage details of the ExascaleDbStorageVault.
    OciUri string
    Deep link to the OCI console to view this resource.
    Ocid string
    The OCID for the ExascaleDbStorageVault.
    State string
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    TimeZones List<GetExascaleDbStorageVaultPropertyTimeZone>
    Represents a time zone from the IANA Time Zone Database.
    VmClusterCount int
    The number of VM clusters associated with the ExascaleDbStorageVault.
    VmClusterIds List<string>
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.
    AdditionalFlashCachePercent int
    The size of additional flash cache in percentage of high capacity database storage.
    AttachedShapeAttributes []string
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    AvailableShapeAttributes []string
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    ExascaleDbStorageDetails []GetExascaleDbStorageVaultPropertyExascaleDbStorageDetail
    The storage details of the ExascaleDbStorageVault.
    OciUri string
    Deep link to the OCI console to view this resource.
    Ocid string
    The OCID for the ExascaleDbStorageVault.
    State string
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    TimeZones []GetExascaleDbStorageVaultPropertyTimeZone
    Represents a time zone from the IANA Time Zone Database.
    VmClusterCount int
    The number of VM clusters associated with the ExascaleDbStorageVault.
    VmClusterIds []string
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.
    additional_flash_cache_percent number
    The size of additional flash cache in percentage of high capacity database storage.
    attached_shape_attributes list(string)
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    available_shape_attributes list(string)
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    exascale_db_storage_details list(object)
    The storage details of the ExascaleDbStorageVault.
    oci_uri string
    Deep link to the OCI console to view this resource.
    ocid string
    The OCID for the ExascaleDbStorageVault.
    state string
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    time_zones list(object)
    Represents a time zone from the IANA Time Zone Database.
    vm_cluster_count number
    The number of VM clusters associated with the ExascaleDbStorageVault.
    vm_cluster_ids list(string)
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.
    additionalFlashCachePercent Integer
    The size of additional flash cache in percentage of high capacity database storage.
    attachedShapeAttributes List<String>
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    availableShapeAttributes List<String>
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    exascaleDbStorageDetails List<GetExascaleDbStorageVaultPropertyExascaleDbStorageDetail>
    The storage details of the ExascaleDbStorageVault.
    ociUri String
    Deep link to the OCI console to view this resource.
    ocid String
    The OCID for the ExascaleDbStorageVault.
    state String
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    timeZones List<GetExascaleDbStorageVaultPropertyTimeZone>
    Represents a time zone from the IANA Time Zone Database.
    vmClusterCount Integer
    The number of VM clusters associated with the ExascaleDbStorageVault.
    vmClusterIds List<String>
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.
    additionalFlashCachePercent number
    The size of additional flash cache in percentage of high capacity database storage.
    attachedShapeAttributes string[]
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    availableShapeAttributes string[]
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    exascaleDbStorageDetails GetExascaleDbStorageVaultPropertyExascaleDbStorageDetail[]
    The storage details of the ExascaleDbStorageVault.
    ociUri string
    Deep link to the OCI console to view this resource.
    ocid string
    The OCID for the ExascaleDbStorageVault.
    state string
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    timeZones GetExascaleDbStorageVaultPropertyTimeZone[]
    Represents a time zone from the IANA Time Zone Database.
    vmClusterCount number
    The number of VM clusters associated with the ExascaleDbStorageVault.
    vmClusterIds string[]
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.
    additional_flash_cache_percent int
    The size of additional flash cache in percentage of high capacity database storage.
    attached_shape_attributes Sequence[str]
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    available_shape_attributes Sequence[str]
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    exascale_db_storage_details Sequence[GetExascaleDbStorageVaultPropertyExascaleDbStorageDetail]
    The storage details of the ExascaleDbStorageVault.
    oci_uri str
    Deep link to the OCI console to view this resource.
    ocid str
    The OCID for the ExascaleDbStorageVault.
    state str
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    time_zones Sequence[GetExascaleDbStorageVaultPropertyTimeZone]
    Represents a time zone from the IANA Time Zone Database.
    vm_cluster_count int
    The number of VM clusters associated with the ExascaleDbStorageVault.
    vm_cluster_ids Sequence[str]
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.
    additionalFlashCachePercent Number
    The size of additional flash cache in percentage of high capacity database storage.
    attachedShapeAttributes List<String>
    The shape attributes of the VM clusters attached to the ExascaleDbStorageVault.
    availableShapeAttributes List<String>
    The shape attributes available for the VM clusters to be attached to the ExascaleDbStorageVault.
    exascaleDbStorageDetails List<Property Map>
    The storage details of the ExascaleDbStorageVault.
    ociUri String
    Deep link to the OCI console to view this resource.
    ocid String
    The OCID for the ExascaleDbStorageVault.
    state String
    The state of the ExascaleDbStorageVault. Possible values: PROVISIONING AVAILABLE UPDATING TERMINATING TERMINATED FAILED
    timeZones List<Property Map>
    Represents a time zone from the IANA Time Zone Database.
    vmClusterCount Number
    The number of VM clusters associated with the ExascaleDbStorageVault.
    vmClusterIds List<String>
    The list of VM cluster OCIDs associated with the ExascaleDbStorageVault.

    GetExascaleDbStorageVaultPropertyExascaleDbStorageDetail

    AvailableSizeGbs int
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    TotalSizeGbs int
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).
    AvailableSizeGbs int
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    TotalSizeGbs int
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).
    available_size_gbs number
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    total_size_gbs number
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).
    availableSizeGbs Integer
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    totalSizeGbs Integer
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).
    availableSizeGbs number
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    totalSizeGbs number
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).
    available_size_gbs int
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    total_size_gbs int
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).
    availableSizeGbs Number
    The available storage capacity for the ExascaleDbStorageVault, in gigabytes (GB).
    totalSizeGbs Number
    The total storage allocation for the ExascaleDbStorageVault, in gigabytes (GB).

    GetExascaleDbStorageVaultPropertyTimeZone

    Id string
    IANA Time Zone Database time zone. For example "America/New_York".
    Version string
    IANA Time Zone Database version number. For example "2019a".
    Id string
    IANA Time Zone Database time zone. For example "America/New_York".
    Version string
    IANA Time Zone Database version number. For example "2019a".
    id string
    IANA Time Zone Database time zone. For example "America/New_York".
    version string
    IANA Time Zone Database version number. For example "2019a".
    id String
    IANA Time Zone Database time zone. For example "America/New_York".
    version String
    IANA Time Zone Database version number. For example "2019a".
    id string
    IANA Time Zone Database time zone. For example "America/New_York".
    version string
    IANA Time Zone Database version number. For example "2019a".
    id str
    IANA Time Zone Database time zone. For example "America/New_York".
    version str
    IANA Time Zone Database version number. For example "2019a".
    id String
    IANA Time Zone Database time zone. For example "America/New_York".
    version String
    IANA Time Zone Database version number. For example "2019a".

    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.33.0
    published on Wednesday, Aug 5, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial