1. Packages
  2. Azure Classic
  3. API Docs
  4. oracle
  5. getDatabaseSystemVersions

We recommend using Azure Native.

Viewing docs for Azure v6.33.0
published on Monday, Feb 23, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v6.33.0
published on Monday, Feb 23, 2026 by Pulumi

    Use this data source to access information about existing Oracle Database Systems Versions.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = azure.oracle.getDatabaseSystemVersions({
        location: "eastus",
    });
    export const id = example.then(example => example.id);
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.oracle.get_database_system_versions(location="eastus")
    pulumi.export("id", example.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/oracle"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := oracle.GetDatabaseSystemVersions(ctx, &oracle.GetDatabaseSystemVersionsArgs{
    			Location: "eastus",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("id", example.Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Azure.Oracle.GetDatabaseSystemVersions.Invoke(new()
        {
            Location = "eastus",
        });
    
        return new Dictionary<string, object?>
        {
            ["id"] = example.Apply(getDatabaseSystemVersionsResult => getDatabaseSystemVersionsResult.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.oracle.OracleFunctions;
    import com.pulumi.azure.oracle.inputs.GetDatabaseSystemVersionsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = OracleFunctions.getDatabaseSystemVersions(GetDatabaseSystemVersionsArgs.builder()
                .location("eastus")
                .build());
    
            ctx.export("id", example.id());
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: azure:oracle:getDatabaseSystemVersions
          arguments:
            location: eastus
    outputs:
      id: ${example.id}
    

    API Providers

    This data source uses the following Azure API Providers:

    • Oracle.Database - 2025-09-01

    Using getDatabaseSystemVersions

    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 getDatabaseSystemVersions(args: GetDatabaseSystemVersionsArgs, opts?: InvokeOptions): Promise<GetDatabaseSystemVersionsResult>
    function getDatabaseSystemVersionsOutput(args: GetDatabaseSystemVersionsOutputArgs, opts?: InvokeOptions): Output<GetDatabaseSystemVersionsResult>
    def get_database_system_versions(database_software_image_supported: Optional[bool] = None,
                                     database_system_shape: Optional[str] = None,
                                     location: Optional[str] = None,
                                     shape_family: Optional[str] = None,
                                     storage_management: Optional[str] = None,
                                     upgrade_supported: Optional[bool] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetDatabaseSystemVersionsResult
    def get_database_system_versions_output(database_software_image_supported: Optional[pulumi.Input[bool]] = None,
                                     database_system_shape: Optional[pulumi.Input[str]] = None,
                                     location: Optional[pulumi.Input[str]] = None,
                                     shape_family: Optional[pulumi.Input[str]] = None,
                                     storage_management: Optional[pulumi.Input[str]] = None,
                                     upgrade_supported: Optional[pulumi.Input[bool]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseSystemVersionsResult]
    func GetDatabaseSystemVersions(ctx *Context, args *GetDatabaseSystemVersionsArgs, opts ...InvokeOption) (*GetDatabaseSystemVersionsResult, error)
    func GetDatabaseSystemVersionsOutput(ctx *Context, args *GetDatabaseSystemVersionsOutputArgs, opts ...InvokeOption) GetDatabaseSystemVersionsResultOutput

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

    public static class GetDatabaseSystemVersions 
    {
        public static Task<GetDatabaseSystemVersionsResult> InvokeAsync(GetDatabaseSystemVersionsArgs args, InvokeOptions? opts = null)
        public static Output<GetDatabaseSystemVersionsResult> Invoke(GetDatabaseSystemVersionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDatabaseSystemVersionsResult> getDatabaseSystemVersions(GetDatabaseSystemVersionsArgs args, InvokeOptions options)
    public static Output<GetDatabaseSystemVersionsResult> getDatabaseSystemVersions(GetDatabaseSystemVersionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: azure:oracle/getDatabaseSystemVersions:getDatabaseSystemVersions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Location string
    The Azure Region to query for the Oracle Database Systems Versions.
    DatabaseSoftwareImageSupported bool
    Whether to filter the results to the set of Oracle Database versions that are supported for the database software images.
    DatabaseSystemShape string
    If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is VM.Standard.x86.
    ShapeFamily string
    If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are EXADATA, EXADB_XS, SINGLENODE and VIRTUALMACHINE.
    StorageManagement string
    The database system storage management option. Used to list database versions available for that storage manager. The only possible value is LVM.
    UpgradeSupported bool
    Whether to filter the results to the set of database versions which are supported for upgrade.
    Location string
    The Azure Region to query for the Oracle Database Systems Versions.
    DatabaseSoftwareImageSupported bool
    Whether to filter the results to the set of Oracle Database versions that are supported for the database software images.
    DatabaseSystemShape string
    If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is VM.Standard.x86.
    ShapeFamily string
    If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are EXADATA, EXADB_XS, SINGLENODE and VIRTUALMACHINE.
    StorageManagement string
    The database system storage management option. Used to list database versions available for that storage manager. The only possible value is LVM.
    UpgradeSupported bool
    Whether to filter the results to the set of database versions which are supported for upgrade.
    location String
    The Azure Region to query for the Oracle Database Systems Versions.
    databaseSoftwareImageSupported Boolean
    Whether to filter the results to the set of Oracle Database versions that are supported for the database software images.
    databaseSystemShape String
    If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is VM.Standard.x86.
    shapeFamily String
    If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are EXADATA, EXADB_XS, SINGLENODE and VIRTUALMACHINE.
    storageManagement String
    The database system storage management option. Used to list database versions available for that storage manager. The only possible value is LVM.
    upgradeSupported Boolean
    Whether to filter the results to the set of database versions which are supported for upgrade.
    location string
    The Azure Region to query for the Oracle Database Systems Versions.
    databaseSoftwareImageSupported boolean
    Whether to filter the results to the set of Oracle Database versions that are supported for the database software images.
    databaseSystemShape string
    If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is VM.Standard.x86.
    shapeFamily string
    If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are EXADATA, EXADB_XS, SINGLENODE and VIRTUALMACHINE.
    storageManagement string
    The database system storage management option. Used to list database versions available for that storage manager. The only possible value is LVM.
    upgradeSupported boolean
    Whether to filter the results to the set of database versions which are supported for upgrade.
    location str
    The Azure Region to query for the Oracle Database Systems Versions.
    database_software_image_supported bool
    Whether to filter the results to the set of Oracle Database versions that are supported for the database software images.
    database_system_shape str
    If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is VM.Standard.x86.
    shape_family str
    If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are EXADATA, EXADB_XS, SINGLENODE and VIRTUALMACHINE.
    storage_management str
    The database system storage management option. Used to list database versions available for that storage manager. The only possible value is LVM.
    upgrade_supported bool
    Whether to filter the results to the set of database versions which are supported for upgrade.
    location String
    The Azure Region to query for the Oracle Database Systems Versions.
    databaseSoftwareImageSupported Boolean
    Whether to filter the results to the set of Oracle Database versions that are supported for the database software images.
    databaseSystemShape String
    If provided, filters the results to the set of database versions which are supported for the given shape. The only possible value is VM.Standard.x86.
    shapeFamily String
    If provided, filters the results to the set of database versions which are supported for the given shape family. Possible values are EXADATA, EXADB_XS, SINGLENODE and VIRTUALMACHINE.
    storageManagement String
    The database system storage management option. Used to list database versions available for that storage manager. The only possible value is LVM.
    upgradeSupported Boolean
    Whether to filter the results to the set of database versions which are supported for upgrade.

    getDatabaseSystemVersions Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Versions List<GetDatabaseSystemVersionsVersion>
    A versions block as defined below.
    DatabaseSoftwareImageSupported bool
    DatabaseSystemShape string
    ShapeFamily string
    StorageManagement string
    UpgradeSupported bool
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Versions []GetDatabaseSystemVersionsVersion
    A versions block as defined below.
    DatabaseSoftwareImageSupported bool
    DatabaseSystemShape string
    ShapeFamily string
    StorageManagement string
    UpgradeSupported bool
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    versions List<GetDatabaseSystemVersionsVersion>
    A versions block as defined below.
    databaseSoftwareImageSupported Boolean
    databaseSystemShape String
    shapeFamily String
    storageManagement String
    upgradeSupported Boolean
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    versions GetDatabaseSystemVersionsVersion[]
    A versions block as defined below.
    databaseSoftwareImageSupported boolean
    databaseSystemShape string
    shapeFamily string
    storageManagement string
    upgradeSupported boolean
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    versions Sequence[GetDatabaseSystemVersionsVersion]
    A versions block as defined below.
    database_software_image_supported bool
    database_system_shape str
    shape_family str
    storage_management str
    upgrade_supported bool
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    versions List<Property Map>
    A versions block as defined below.
    databaseSoftwareImageSupported Boolean
    databaseSystemShape String
    shapeFamily String
    storageManagement String
    upgradeSupported Boolean

    Supporting Types

    GetDatabaseSystemVersionsVersion

    LatestVersion bool
    Indicates if this version of the Oracle Database software is the latest version for a release.
    Name string
    The name of the Oracle Database version.
    PluggableDatabaseSupported bool
    Indicates if this version of the Oracle Database software supports pluggable databases.
    Version string
    The value of the Oracle Database version.
    LatestVersion bool
    Indicates if this version of the Oracle Database software is the latest version for a release.
    Name string
    The name of the Oracle Database version.
    PluggableDatabaseSupported bool
    Indicates if this version of the Oracle Database software supports pluggable databases.
    Version string
    The value of the Oracle Database version.
    latestVersion Boolean
    Indicates if this version of the Oracle Database software is the latest version for a release.
    name String
    The name of the Oracle Database version.
    pluggableDatabaseSupported Boolean
    Indicates if this version of the Oracle Database software supports pluggable databases.
    version String
    The value of the Oracle Database version.
    latestVersion boolean
    Indicates if this version of the Oracle Database software is the latest version for a release.
    name string
    The name of the Oracle Database version.
    pluggableDatabaseSupported boolean
    Indicates if this version of the Oracle Database software supports pluggable databases.
    version string
    The value of the Oracle Database version.
    latest_version bool
    Indicates if this version of the Oracle Database software is the latest version for a release.
    name str
    The name of the Oracle Database version.
    pluggable_database_supported bool
    Indicates if this version of the Oracle Database software supports pluggable databases.
    version str
    The value of the Oracle Database version.
    latestVersion Boolean
    Indicates if this version of the Oracle Database software is the latest version for a release.
    name String
    The name of the Oracle Database version.
    pluggableDatabaseSupported Boolean
    Indicates if this version of the Oracle Database software supports pluggable databases.
    version String
    The value of the Oracle Database version.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v6.33.0
    published on Monday, Feb 23, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.