Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi
oci.Database.getDbServers
Explore with Pulumi AI
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,
});
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)
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
})
}
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,
});
});
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());
}
}
variables:
testDbServers:
fn::invoke:
function: oci:Database:getDbServers
arguments:
compartmentId: ${compartmentId}
exadataInfrastructureId: ${testExadataInfrastructure.id}
displayName: ${dbServerDisplayName}
state: ${dbServerState}
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>
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]
func GetDbServers(ctx *Context, args *GetDbServersArgs, opts ...InvokeOption) (*GetDbServersResult, error)
func GetDbServersOutput(ctx *Context, args *GetDbServersOutputArgs, opts ...InvokeOption) GetDbServersResultOutput
> 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)
}
public static CompletableFuture<GetDbServersResult> getDbServers(GetDbServersArgs args, InvokeOptions options)
public static Output<GetDbServersResult> getDbServers(GetDbServersArgs args, InvokeOptions options)
fn::invoke:
function: oci:Database/getDbServers:getDbServers
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id This property is required. string - The compartment OCID.
- Exadata
Infrastructure Id This property is required. string - The OCID of the ExadataInfrastructure.
- Display
Name 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.
Db Servers Filter> - State string
- A filter to return only resources that match the given lifecycle state exactly.
- Compartment
Id This property is required. string - The compartment OCID.
- Exadata
Infrastructure Id This property is required. string - The OCID of the ExadataInfrastructure.
- Display
Name 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.
Db Servers Filter - State string
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id This property is required. String - The compartment OCID.
- exadata
Infrastructure Id This property is required. String - The OCID of the ExadataInfrastructure.
- display
Name 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.
Db Servers Filter> - state String
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id This property is required. string - The compartment OCID.
- exadata
Infrastructure Id This property is required. string - The OCID of the ExadataInfrastructure.
- display
Name 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.
Db Servers Filter[] - 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.
Get Db Servers Filter] - state str
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id This property is required. String - The compartment OCID.
- exadata
Infrastructure Id This property is required. String - The OCID of the ExadataInfrastructure.
- display
Name 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.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
getDbServers Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment.
- Db
Servers List<GetDb Servers Db Server> - The list of db_servers.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The user-friendly name for the Db server. The name does not need to be unique.
- Filters
List<Get
Db Servers Filter> - State string
- The current state of the Db server.
- Compartment
Id string - The OCID of the compartment.
- Db
Servers []GetDb Servers Db Server - The list of db_servers.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The user-friendly name for the Db server. The name does not need to be unique.
- Filters
[]Get
Db Servers Filter - State string
- The current state of the Db server.
- compartment
Id String - The OCID of the compartment.
- db
Servers List<GetDb Servers Db Server> - The list of db_servers.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The user-friendly name for the Db server. The name does not need to be unique.
- filters
List<Get
Db Servers Filter> - state String
- The current state of the Db server.
- compartment
Id string - The OCID of the compartment.
- db
Servers GetDb Servers Db Server[] - The list of db_servers.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - The user-friendly name for the Db server. The name does not need to be unique.
- filters
Get
Db Servers Filter[] - state string
- The current state of the Db server.
- compartment_
id str - The OCID of the compartment.
- db_
servers Sequence[database.Get Db Servers Db Server] - The list of db_servers.
- exadata_
infrastructure_ strid - 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.
Get Db Servers Filter] - state str
- The current state of the Db server.
- compartment
Id String - The OCID of the compartment.
- db
Servers List<Property Map> - The list of db_servers.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name 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
- Autonomous
Virtual Machine Ids This property is required. List<string> - The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
- Autonomous
Vm Cluster Ids This property is required. List<string> - The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
- Compartment
Id This property is required. string - The compartment OCID.
- Compute
Model This property is required. string - The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
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. List<string> - 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. List<GetDb Servers Db Server Db Server Patching Detail> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
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.
- Display
Name This property is required. string - 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. string - The OCID of the ExadataInfrastructure.
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.
- Lifecycle
Details This property is required. string - 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. 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.
- Time
Created This property is required. string - The date and time that the Db Server was created.
- Vm
Cluster Ids This property is required. List<string> - The OCID of the VM Clusters associated with the Db server.
- Autonomous
Virtual Machine Ids This property is required. []string - The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
- Autonomous
Vm Cluster Ids This property is required. []string - The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
- Compartment
Id This property is required. string - The compartment OCID.
- Compute
Model This property is required. string - The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
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. []string - 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. []GetDb Servers Db Server Db Server Patching Detail - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
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.
- Display
Name This property is required. string - 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. string - The OCID of the ExadataInfrastructure.
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.
- Lifecycle
Details This property is required. string - 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. 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.
- Time
Created This property is required. string - The date and time that the Db Server was created.
- Vm
Cluster Ids This property is required. []string - The OCID of the VM Clusters associated with the Db server.
- autonomous
Virtual Machine Ids This property is required. List<String> - The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
- autonomous
Vm Cluster Ids This property is required. List<String> - The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
- compartment
Id This property is required. String - The compartment OCID.
- compute
Model This property is required. String - The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
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. Integer - The number of CPU cores enabled on the Db server.
- db
Node Ids This property is required. List<String> - The OCID of the Db nodes associated with the Db server.
- db
Node Storage Size In Gbs This property is required. Integer - The allocated local node storage in GBs on the Db server.
- db
Server Patching Details This property is required. List<GetDb Servers Db Server Db Server Patching Detail> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
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.
- display
Name This property is required. String - 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. String - The OCID of the ExadataInfrastructure.
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.
- lifecycle
Details This property is required. String - Additional information about the current lifecycle state.
- max
Cpu Count This property is required. Integer - The total number of CPU cores available.
- max
Db Node Storage In Gbs This property is required. Integer - The total local node storage available in GBs.
- max
Memory In Gbs This property is required. Integer - The total memory available in GBs.
- memory
Size In Gbs 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.
- time
Created This property is required. String - The date and time that the Db Server was created.
- vm
Cluster Ids This property is required. List<String> - The OCID of the VM Clusters associated with the Db server.
- autonomous
Virtual Machine Ids This property is required. string[] - The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
- autonomous
Vm Cluster Ids This property is required. string[] - The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
- compartment
Id This property is required. string - The compartment OCID.
- compute
Model This property is required. string - The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
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. number - The number of CPU cores enabled on the Db server.
- db
Node Ids This property is required. string[] - The OCID of the Db nodes associated with the Db server.
- db
Node Storage Size In Gbs This property is required. number - The allocated local node storage in GBs on the Db server.
- db
Server Patching Details This property is required. GetDb Servers Db Server Db Server Patching Detail[] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
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.
- display
Name This property is required. string - 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. string - The OCID of the ExadataInfrastructure.
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.
- lifecycle
Details This property is required. string - Additional information about the current lifecycle state.
- max
Cpu Count This property is required. number - The total number of CPU cores available.
- max
Db Node Storage In Gbs This property is required. number - The total local node storage available in GBs.
- max
Memory In Gbs This property is required. number - The total memory available in GBs.
- memory
Size In Gbs 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.
- time
Created This property is required. string - The date and time that the Db Server was created.
- vm
Cluster Ids 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 usingcpuCoreCount
then it is an error to specifycomputeModel
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.Get Db Servers Db Server Db Server Patching Detail] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
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.
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.
- autonomous
Virtual Machine Ids This property is required. List<String> - The list of OCIDs of the Autonomous Virtual Machines associated with the Db server.
- autonomous
Vm Cluster Ids This property is required. List<String> - The list of OCIDs of the Autonomous VM Clusters associated with the Db server.
- compartment
Id This property is required. String - The compartment OCID.
- compute
Model This property is required. String - The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
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. Number - The number of CPU cores enabled on the Db server.
- db
Node Ids This property is required. List<String> - The OCID of the Db nodes associated with the Db server.
- db
Node Storage Size In Gbs This property is required. Number - The allocated local node storage in GBs on the Db server.
- db
Server Patching Details 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.
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.
- display
Name This property is required. String - 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. String - The OCID of the ExadataInfrastructure.
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.
- lifecycle
Details This property is required. String - Additional information about the current lifecycle state.
- max
Cpu Count This property is required. Number - The total number of CPU cores available.
- max
Db Node Storage In Gbs This property is required. Number - The total local node storage available in GBs.
- max
Memory In Gbs This property is required. Number - The total memory available in GBs.
- memory
Size In Gbs 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.
- time
Created This property is required. String - The date and time that the Db Server was created.
- vm
Cluster Ids This property is required. List<String> - The OCID of the VM Clusters associated with the Db server.
GetDbServersDbServerDbServerPatchingDetail
- Estimated
Patch Duration This property is required. int - Estimated time, in minutes, to patch one database server.
- Patching
Status This property is required. string - The status of the patching operation.
- Time
Patching Ended This property is required. string - The time when the patching operation ended.
- Time
Patching Started 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. string - The status of the patching operation.
- Time
Patching Ended This property is required. string - The time when the patching operation ended.
- Time
Patching Started This property is required. string - The time when the patching operation started.
- estimated
Patch Duration This property is required. Integer - Estimated time, in minutes, to patch one database server.
- patching
Status This property is required. String - The status of the patching operation.
- time
Patching Ended This property is required. String - The time when the patching operation ended.
- time
Patching Started This property is required. String - The time when the patching operation started.
- estimated
Patch Duration This property is required. number - Estimated time, in minutes, to patch one database server.
- patching
Status This property is required. string - The status of the patching operation.
- time
Patching Ended This property is required. string - The time when the patching operation ended.
- time
Patching Started 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.
- estimated
Patch Duration This property is required. Number - Estimated time, in minutes, to patch one database server.
- patching
Status This property is required. String - The status of the patching operation.
- time
Patching Ended This property is required. String - The time when the patching operation ended.
- time
Patching Started This property is required. String - The time when the patching operation started.
GetDbServersFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.