1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getDbServers
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.Database.getDbServers

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

This data source provides the list of Db Servers in Oracle Cloud Infrastructure Database service.

Lists the Exadata DB servers in the ExadataInfrastructureId and specified compartment.

Example Usage

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

const testDbServers = oci.Database.getDbServers({
    compartmentId: compartmentId,
    exadataInfrastructureId: testExadataInfrastructure.id,
    displayName: dbServerDisplayName,
    state: dbServerState,
});
Copy
import pulumi
import pulumi_oci as oci

test_db_servers = oci.Database.get_db_servers(compartment_id=compartment_id,
    exadata_infrastructure_id=test_exadata_infrastructure["id"],
    display_name=db_server_display_name,
    state=db_server_state)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetDbServers(ctx, &database.GetDbServersArgs{
			CompartmentId:           compartmentId,
			ExadataInfrastructureId: testExadataInfrastructure.Id,
			DisplayName:             pulumi.StringRef(dbServerDisplayName),
			State:                   pulumi.StringRef(dbServerState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDbServers = Oci.Database.GetDbServers.Invoke(new()
    {
        CompartmentId = compartmentId,
        ExadataInfrastructureId = testExadataInfrastructure.Id,
        DisplayName = dbServerDisplayName,
        State = dbServerState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetDbServersArgs;
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 testDbServers = DatabaseFunctions.getDbServers(GetDbServersArgs.builder()
            .compartmentId(compartmentId)
            .exadataInfrastructureId(testExadataInfrastructure.id())
            .displayName(dbServerDisplayName)
            .state(dbServerState)
            .build());

    }
}
Copy
variables:
  testDbServers:
    fn::invoke:
      function: oci:Database:getDbServers
      arguments:
        compartmentId: ${compartmentId}
        exadataInfrastructureId: ${testExadataInfrastructure.id}
        displayName: ${dbServerDisplayName}
        state: ${dbServerState}
Copy

Using getDbServers

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 getDbServers(args: GetDbServersArgs, opts?: InvokeOptions): Promise<GetDbServersResult>
function getDbServersOutput(args: GetDbServersOutputArgs, opts?: InvokeOptions): Output<GetDbServersResult>
Copy
def get_db_servers(compartment_id: Optional[str] = None,
                   display_name: Optional[str] = None,
                   exadata_infrastructure_id: Optional[str] = None,
                   filters: Optional[Sequence[_database.GetDbServersFilter]] = None,
                   state: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetDbServersResult
def get_db_servers_output(compartment_id: Optional[pulumi.Input[str]] = None,
                   display_name: Optional[pulumi.Input[str]] = None,
                   exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
                   filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetDbServersFilterArgs]]]] = None,
                   state: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetDbServersResult]
Copy
func GetDbServers(ctx *Context, args *GetDbServersArgs, opts ...InvokeOption) (*GetDbServersResult, error)
func GetDbServersOutput(ctx *Context, args *GetDbServersOutputArgs, opts ...InvokeOption) GetDbServersResultOutput
Copy

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

public static class GetDbServers 
{
    public static Task<GetDbServersResult> InvokeAsync(GetDbServersArgs args, InvokeOptions? opts = null)
    public static Output<GetDbServersResult> Invoke(GetDbServersInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDbServersResult> getDbServers(GetDbServersArgs args, InvokeOptions options)
public static Output<GetDbServersResult> getDbServers(GetDbServersArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getDbServers:getDbServers
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The compartment OCID.
ExadataInfrastructureId This property is required. string
The OCID of the ExadataInfrastructure.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Filters Changes to this property will trigger replacement. List<GetDbServersFilter>
State string
A filter to return only resources that match the given lifecycle state exactly.
CompartmentId This property is required. string
The compartment OCID.
ExadataInfrastructureId This property is required. string
The OCID of the ExadataInfrastructure.
DisplayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
Filters Changes to this property will trigger replacement. []GetDbServersFilter
State string
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
exadataInfrastructureId This property is required. String
The OCID of the ExadataInfrastructure.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. List<GetDbServersFilter>
state String
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. string
The compartment OCID.
exadataInfrastructureId This property is required. string
The OCID of the ExadataInfrastructure.
displayName string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. GetDbServersFilter[]
state string
A filter to return only resources that match the given lifecycle state exactly.
compartment_id This property is required. str
The compartment OCID.
exadata_infrastructure_id This property is required. str
The OCID of the ExadataInfrastructure.
display_name str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. Sequence[database.GetDbServersFilter]
state str
A filter to return only resources that match the given lifecycle state exactly.
compartmentId This property is required. String
The compartment OCID.
exadataInfrastructureId This property is required. String
The OCID of the ExadataInfrastructure.
displayName String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that match the given lifecycle state exactly.

getDbServers Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
DbServers List<GetDbServersDbServer>
The list of db_servers.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the Db server. The name does not need to be unique.
Filters List<GetDbServersFilter>
State string
The current state of the Db server.
CompartmentId string
The OCID of the compartment.
DbServers []GetDbServersDbServer
The list of db_servers.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
The user-friendly name for the Db server. The name does not need to be unique.
Filters []GetDbServersFilter
State string
The current state of the Db server.
compartmentId String
The OCID of the compartment.
dbServers List<GetDbServersDbServer>
The list of db_servers.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the Db server. The name does not need to be unique.
filters List<GetDbServersFilter>
state String
The current state of the Db server.
compartmentId string
The OCID of the compartment.
dbServers GetDbServersDbServer[]
The list of db_servers.
exadataInfrastructureId string
The OCID of the Exadata infrastructure.
id string
The provider-assigned unique ID for this managed resource.
displayName string
The user-friendly name for the Db server. The name does not need to be unique.
filters GetDbServersFilter[]
state string
The current state of the Db server.
compartment_id str
The OCID of the compartment.
db_servers Sequence[database.GetDbServersDbServer]
The list of db_servers.
exadata_infrastructure_id str
The OCID of the Exadata infrastructure.
id str
The provider-assigned unique ID for this managed resource.
display_name str
The user-friendly name for the Db server. The name does not need to be unique.
filters Sequence[database.GetDbServersFilter]
state str
The current state of the Db server.
compartmentId String
The OCID of the compartment.
dbServers List<Property Map>
The list of db_servers.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
id String
The provider-assigned unique ID for this managed resource.
displayName String
The user-friendly name for the Db server. The name does not need to be unique.
filters List<Property Map>
state String
The current state of the Db server.

Supporting Types

GetDbServersDbServer

AutonomousVirtualMachineIds This property is required. List<string>
The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
AutonomousVmClusterIds This property is required. List<string>
The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
CompartmentId This property is required. string
The compartment OCID.
ComputeModel This property is required. string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
CpuCoreCount This property is required. int
The number of CPU cores enabled on the Db server.
DbNodeIds This property is required. List<string>
The OCID of the Db nodes associated with the Db server.
DbNodeStorageSizeInGbs This property is required. int
The allocated local node storage in GBs on the Db server.
DbServerPatchingDetails This property is required. List<GetDbServersDbServerDbServerPatchingDetail>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
ExadataInfrastructureId This property is required. string
The OCID of the ExadataInfrastructure.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the Exacc Db server.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaxCpuCount This property is required. int
The total number of CPU cores available.
MaxDbNodeStorageInGbs This property is required. int
The total local node storage available in GBs.
MaxMemoryInGbs This property is required. int
The total memory available in GBs.
MemorySizeInGbs This property is required. int
The allocated memory in GBs on the Db server.
Shape This property is required. string
The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeCreated This property is required. string
The date and time that the Db Server was created.
VmClusterIds This property is required. List<string>
The OCID of the VM Clusters associated with the Db server.
AutonomousVirtualMachineIds This property is required. []string
The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
AutonomousVmClusterIds This property is required. []string
The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
CompartmentId This property is required. string
The compartment OCID.
ComputeModel This property is required. string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
CpuCoreCount This property is required. int
The number of CPU cores enabled on the Db server.
DbNodeIds This property is required. []string
The OCID of the Db nodes associated with the Db server.
DbNodeStorageSizeInGbs This property is required. int
The allocated local node storage in GBs on the Db server.
DbServerPatchingDetails This property is required. []GetDbServersDbServerDbServerPatchingDetail
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
ExadataInfrastructureId This property is required. string
The OCID of the ExadataInfrastructure.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
The OCID of the Exacc Db server.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaxCpuCount This property is required. int
The total number of CPU cores available.
MaxDbNodeStorageInGbs This property is required. int
The total local node storage available in GBs.
MaxMemoryInGbs This property is required. int
The total memory available in GBs.
MemorySizeInGbs This property is required. int
The allocated memory in GBs on the Db server.
Shape This property is required. string
The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TimeCreated This property is required. string
The date and time that the Db Server was created.
VmClusterIds This property is required. []string
The OCID of the VM Clusters associated with the Db server.
autonomousVirtualMachineIds This property is required. List<String>
The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
autonomousVmClusterIds This property is required. List<String>
The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
compartmentId This property is required. String
The compartment OCID.
computeModel This property is required. String
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpuCoreCount This property is required. Integer
The number of CPU cores enabled on the Db server.
dbNodeIds This property is required. List<String>
The OCID of the Db nodes associated with the Db server.
dbNodeStorageSizeInGbs This property is required. Integer
The allocated local node storage in GBs on the Db server.
dbServerPatchingDetails This property is required. List<GetDbServersDbServerDbServerPatchingDetail>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadataInfrastructureId This property is required. String
The OCID of the ExadataInfrastructure.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the Exacc Db server.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maxCpuCount This property is required. Integer
The total number of CPU cores available.
maxDbNodeStorageInGbs This property is required. Integer
The total local node storage available in GBs.
maxMemoryInGbs This property is required. Integer
The total memory available in GBs.
memorySizeInGbs This property is required. Integer
The allocated memory in GBs on the Db server.
shape This property is required. String
The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. String
The date and time that the Db Server was created.
vmClusterIds This property is required. List<String>
The OCID of the VM Clusters associated with the Db server.
autonomousVirtualMachineIds This property is required. string[]
The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
autonomousVmClusterIds This property is required. string[]
The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
compartmentId This property is required. string
The compartment OCID.
computeModel This property is required. string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpuCoreCount This property is required. number
The number of CPU cores enabled on the Db server.
dbNodeIds This property is required. string[]
The OCID of the Db nodes associated with the Db server.
dbNodeStorageSizeInGbs This property is required. number
The allocated local node storage in GBs on the Db server.
dbServerPatchingDetails This property is required. GetDbServersDbServerDbServerPatchingDetail[]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. string
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadataInfrastructureId This property is required. string
The OCID of the ExadataInfrastructure.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. string
The OCID of the Exacc Db server.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
maxCpuCount This property is required. number
The total number of CPU cores available.
maxDbNodeStorageInGbs This property is required. number
The total local node storage available in GBs.
maxMemoryInGbs This property is required. number
The total memory available in GBs.
memorySizeInGbs This property is required. number
The allocated memory in GBs on the Db server.
shape This property is required. string
The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. string
The date and time that the Db Server was created.
vmClusterIds This property is required. string[]
The OCID of the VM Clusters associated with the Db server.
autonomous_virtual_machine_ids This property is required. Sequence[str]
The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
autonomous_vm_cluster_ids This property is required. Sequence[str]
The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
compartment_id This property is required. str
The compartment OCID.
compute_model This property is required. str
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpu_core_count This property is required. int
The number of CPU cores enabled on the Db server.
db_node_ids This property is required. Sequence[str]
The OCID of the Db nodes associated with the Db server.
db_node_storage_size_in_gbs This property is required. int
The allocated local node storage in GBs on the Db server.
db_server_patching_details This property is required. Sequence[database.GetDbServersDbServerDbServerPatchingDetail]
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name This property is required. str
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadata_infrastructure_id This property is required. str
The OCID of the ExadataInfrastructure.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. str
The OCID of the Exacc Db server.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
max_cpu_count This property is required. int
The total number of CPU cores available.
max_db_node_storage_in_gbs This property is required. int
The total local node storage available in GBs.
max_memory_in_gbs This property is required. int
The total memory available in GBs.
memory_size_in_gbs This property is required. int
The allocated memory in GBs on the Db server.
shape This property is required. str
The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
time_created This property is required. str
The date and time that the Db Server was created.
vm_cluster_ids This property is required. Sequence[str]
The OCID of the VM Clusters associated with the Db server.
autonomousVirtualMachineIds This property is required. List<String>
The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
autonomousVmClusterIds This property is required. List<String>
The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
compartmentId This property is required. String
The compartment OCID.
computeModel This property is required. String
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpuCoreCount This property is required. Number
The number of CPU cores enabled on the Db server.
dbNodeIds This property is required. List<String>
The OCID of the Db nodes associated with the Db server.
dbNodeStorageSizeInGbs This property is required. Number
The allocated local node storage in GBs on the Db server.
dbServerPatchingDetails This property is required. List<Property Map>
The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName This property is required. String
A filter to return only resources that match the entire display name given. The match is not case sensitive.
exadataInfrastructureId This property is required. String
The OCID of the ExadataInfrastructure.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
The OCID of the Exacc Db server.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maxCpuCount This property is required. Number
The total number of CPU cores available.
maxDbNodeStorageInGbs This property is required. Number
The total local node storage available in GBs.
maxMemoryInGbs This property is required. Number
The total memory available in GBs.
memorySizeInGbs This property is required. Number
The allocated memory in GBs on the Db server.
shape This property is required. String
The shape of the Db server. The shape determines the amount of CPU, storage, and memory resources available.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
timeCreated This property is required. String
The date and time that the Db Server was created.
vmClusterIds This property is required. List<String>
The OCID of the VM Clusters associated with the Db server.

GetDbServersDbServerDbServerPatchingDetail

EstimatedPatchDuration This property is required. int
Estimated time, in minutes, to patch one database server.
PatchingStatus This property is required. string
The status of the patching operation.
TimePatchingEnded This property is required. string
The time when the patching operation ended.
TimePatchingStarted This property is required. string
The time when the patching operation started.
EstimatedPatchDuration This property is required. int
Estimated time, in minutes, to patch one database server.
PatchingStatus This property is required. string
The status of the patching operation.
TimePatchingEnded This property is required. string
The time when the patching operation ended.
TimePatchingStarted This property is required. string
The time when the patching operation started.
estimatedPatchDuration This property is required. Integer
Estimated time, in minutes, to patch one database server.
patchingStatus This property is required. String
The status of the patching operation.
timePatchingEnded This property is required. String
The time when the patching operation ended.
timePatchingStarted This property is required. String
The time when the patching operation started.
estimatedPatchDuration This property is required. number
Estimated time, in minutes, to patch one database server.
patchingStatus This property is required. string
The status of the patching operation.
timePatchingEnded This property is required. string
The time when the patching operation ended.
timePatchingStarted This property is required. string
The time when the patching operation started.
estimated_patch_duration This property is required. int
Estimated time, in minutes, to patch one database server.
patching_status This property is required. str
The status of the patching operation.
time_patching_ended This property is required. str
The time when the patching operation ended.
time_patching_started This property is required. str
The time when the patching operation started.
estimatedPatchDuration This property is required. Number
Estimated time, in minutes, to patch one database server.
patchingStatus This property is required. String
The status of the patching operation.
timePatchingEnded This property is required. String
The time when the patching operation ended.
timePatchingStarted This property is required. String
The time when the patching operation started.

GetDbServersFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi