oci.Database.getDbSystems
Explore with Pulumi AI
This data source provides the list of Db Systems in Oracle Cloud Infrastructure Database service.
Lists the DB systems in the specified compartment. You can specify a backupId to list only the DB systems that support creating a database using this backup in this compartment.
Note: Deprecated for Exadata Cloud Service systems. Use the new resource model APIs instead.
For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs for details on converting existing Exadata DB systems to the new resource model.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDbSystems = oci.Database.getDbSystems({
    compartmentId: compartmentId,
    availabilityDomain: dbSystemAvailabilityDomain,
    backupId: testBackup.id,
    displayName: dbSystemDisplayName,
    state: dbSystemState,
});
import pulumi
import pulumi_oci as oci
test_db_systems = oci.Database.get_db_systems(compartment_id=compartment_id,
    availability_domain=db_system_availability_domain,
    backup_id=test_backup["id"],
    display_name=db_system_display_name,
    state=db_system_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.GetDbSystems(ctx, &database.GetDbSystemsArgs{
			CompartmentId:      compartmentId,
			AvailabilityDomain: pulumi.StringRef(dbSystemAvailabilityDomain),
			BackupId:           pulumi.StringRef(testBackup.Id),
			DisplayName:        pulumi.StringRef(dbSystemDisplayName),
			State:              pulumi.StringRef(dbSystemState),
		}, 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 testDbSystems = Oci.Database.GetDbSystems.Invoke(new()
    {
        CompartmentId = compartmentId,
        AvailabilityDomain = dbSystemAvailabilityDomain,
        BackupId = testBackup.Id,
        DisplayName = dbSystemDisplayName,
        State = dbSystemState,
    });
});
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.GetDbSystemsArgs;
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 testDbSystems = DatabaseFunctions.getDbSystems(GetDbSystemsArgs.builder()
            .compartmentId(compartmentId)
            .availabilityDomain(dbSystemAvailabilityDomain)
            .backupId(testBackup.id())
            .displayName(dbSystemDisplayName)
            .state(dbSystemState)
            .build());
    }
}
variables:
  testDbSystems:
    fn::invoke:
      function: oci:Database:getDbSystems
      arguments:
        compartmentId: ${compartmentId}
        availabilityDomain: ${dbSystemAvailabilityDomain}
        backupId: ${testBackup.id}
        displayName: ${dbSystemDisplayName}
        state: ${dbSystemState}
Using getDbSystems
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 getDbSystems(args: GetDbSystemsArgs, opts?: InvokeOptions): Promise<GetDbSystemsResult>
function getDbSystemsOutput(args: GetDbSystemsOutputArgs, opts?: InvokeOptions): Output<GetDbSystemsResult>def get_db_systems(availability_domain: Optional[str] = None,
                   backup_id: Optional[str] = None,
                   compartment_id: Optional[str] = None,
                   display_name: Optional[str] = None,
                   filters: Optional[Sequence[GetDbSystemsFilter]] = None,
                   state: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetDbSystemsResult
def get_db_systems_output(availability_domain: Optional[pulumi.Input[str]] = None,
                   backup_id: Optional[pulumi.Input[str]] = None,
                   compartment_id: Optional[pulumi.Input[str]] = None,
                   display_name: Optional[pulumi.Input[str]] = None,
                   filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbSystemsFilterArgs]]]] = None,
                   state: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetDbSystemsResult]func GetDbSystems(ctx *Context, args *GetDbSystemsArgs, opts ...InvokeOption) (*GetDbSystemsResult, error)
func GetDbSystemsOutput(ctx *Context, args *GetDbSystemsOutputArgs, opts ...InvokeOption) GetDbSystemsResultOutput> Note: This function is named GetDbSystems in the Go SDK.
public static class GetDbSystems 
{
    public static Task<GetDbSystemsResult> InvokeAsync(GetDbSystemsArgs args, InvokeOptions? opts = null)
    public static Output<GetDbSystemsResult> Invoke(GetDbSystemsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbSystemsResult> getDbSystems(GetDbSystemsArgs args, InvokeOptions options)
public static Output<GetDbSystemsResult> getDbSystems(GetDbSystemsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Database/getDbSystems:getDbSystems
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- BackupId string
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
List<GetDb Systems Filter> 
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- CompartmentId string
- The compartment OCID.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- BackupId string
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
[]GetDb Systems Filter 
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- compartmentId String
- The compartment OCID.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- backupId String
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
List<GetDb Systems Filter> 
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- compartmentId string
- The compartment OCID.
- availabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- backupId string
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- displayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
GetDb Systems Filter[] 
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- compartment_id str
- The compartment OCID.
- availability_domain str
- A filter to return only resources that match the given availability domain exactly.
- backup_id str
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- display_name str
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Sequence[GetDb Systems Filter] 
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- compartmentId String
- The compartment OCID.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- backupId String
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters List<Property Map>
- state String
- A filter to return only resources that match the given lifecycle state exactly.
getDbSystems Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment.
- DbSystems List<GetDb Systems Db System> 
- The list of db_systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- AvailabilityDomain string
- The name of the availability domain that the DB system is located in.
- BackupId string
- DisplayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- Filters
List<GetDb Systems Filter> 
- State string
- The current state of the DB system.
- CompartmentId string
- The OCID of the compartment.
- DbSystems []GetDb Systems Db System 
- The list of db_systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- AvailabilityDomain string
- The name of the availability domain that the DB system is located in.
- BackupId string
- DisplayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- Filters
[]GetDb Systems Filter 
- State string
- The current state of the DB system.
- compartmentId String
- The OCID of the compartment.
- dbSystems List<GetDb Systems Db System> 
- The list of db_systems.
- id String
- The provider-assigned unique ID for this managed resource.
- availabilityDomain String
- The name of the availability domain that the DB system is located in.
- backupId String
- displayName String
- The user-friendly name for the DB system. The name does not have to be unique.
- filters
List<GetDb Systems Filter> 
- state String
- The current state of the DB system.
- compartmentId string
- The OCID of the compartment.
- dbSystems GetDb Systems Db System[] 
- The list of db_systems.
- id string
- The provider-assigned unique ID for this managed resource.
- availabilityDomain string
- The name of the availability domain that the DB system is located in.
- backupId string
- displayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- filters
GetDb Systems Filter[] 
- state string
- The current state of the DB system.
- compartment_id str
- The OCID of the compartment.
- db_systems Sequence[GetDb Systems Db System] 
- The list of db_systems.
- id str
- The provider-assigned unique ID for this managed resource.
- availability_domain str
- The name of the availability domain that the DB system is located in.
- backup_id str
- display_name str
- The user-friendly name for the DB system. The name does not have to be unique.
- filters
Sequence[GetDb Systems Filter] 
- state str
- The current state of the DB system.
- compartmentId String
- The OCID of the compartment.
- dbSystems List<Property Map>
- The list of db_systems.
- id String
- The provider-assigned unique ID for this managed resource.
- availabilityDomain String
- The name of the availability domain that the DB system is located in.
- backupId String
- displayName String
- The user-friendly name for the DB system. The name does not have to be unique.
- filters List<Property Map>
- state String
- The current state of the DB system.
Supporting Types
GetDbSystemsDbSystem    
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- BackupNetwork List<string>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- ClusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- CompartmentId string
- The compartment OCID.
- CpuCore intCount 
- The number of CPU cores enabled on the DB system.
- DataCollection List<GetOptions Db Systems Db System Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage intPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- DataStorage intSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- DatabaseEdition string
- The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- DbHomes List<GetDb Systems Db System Db Home> 
- DbSystem List<GetOptions Db Systems Db System Db System Option> 
- The DB system options.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DiskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain string
- The domain name for the DB system.
- FaultDomains List<string>
- List of the Fault Domains in which this DB system is provisioned.
- 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"}
- Hostname string
- The hostname for the DB system.
- Id string
- The OCID of the DB system.
- IormConfig List<GetCaches Db Systems Db System Iorm Config Cach> 
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- KmsKey stringVersion Id 
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort int
- The port number configured for the listener on the DB system.
- MaintenanceWindow List<GetDetails Db Systems Db System Maintenance Window Detail> 
- MaintenanceWindows List<GetDb Systems Db System Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MemorySize intIn Gbs 
- Memory allocated to the DB system, in gigabytes.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- NsgIds List<string>
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- OsVersion string
- The most recent OS Patch Version applied on the DB system.
- PointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- PrivateIp string
- PrivateIp stringV6 
- RecoStorage intSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanIp List<string>Ids 
- The OCID of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- ScanIpv6ids List<string>
- The OCID of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- SecurityAttributes Dictionary<string, string>
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- Shape string
- The shape of the DB system. The shape determines resources to allocate to the DB system.- For virtual machine shapes, the number of CPU cores and memory
- For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
 
- Source string
- SourceDb stringSystem Id 
- The OCID of the DB system.
- SparseDiskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- SshPublic List<string>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- StorageVolume stringPerformance Mode 
- The block storage volume performance level. Valid values are BALANCEDandHIGH_PERFORMANCE. See Block Volume Performance for more information.
- SubnetId string
- The OCID of the subnet the DB system is associated with.
- TimeCreated string
- The date and time the DB system was created.
- TimeZone string
- The time zone of the DB system. For details, see DB System Time Zones.
- Version string
- The Oracle Database version of the DB system.
- VipIds List<string>
- The OCID of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
- Vipv6ids List<string>
- The OCID of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- ZoneId string
- The OCID of the zone the DB system is associated with.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- BackupNetwork []stringNsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- ClusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- CompartmentId string
- The compartment OCID.
- CpuCore intCount 
- The number of CPU cores enabled on the DB system.
- DataCollection []GetOptions Db Systems Db System Data Collection Option 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage intPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- DataStorage intSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- DatabaseEdition string
- The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- DbHomes []GetDb Systems Db System Db Home 
- DbSystem []GetOptions Db Systems Db System Db System Option 
- The DB system options.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DiskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain string
- The domain name for the DB system.
- FaultDomains []string
- List of the Fault Domains in which this DB system is provisioned.
- 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"}
- Hostname string
- The hostname for the DB system.
- Id string
- The OCID of the DB system.
- IormConfig []GetCaches Db Systems Db System Iorm Config Cach 
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- KmsKey stringVersion Id 
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort int
- The port number configured for the listener on the DB system.
- MaintenanceWindow []GetDetails Db Systems Db System Maintenance Window Detail 
- MaintenanceWindows []GetDb Systems Db System Maintenance Window 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MemorySize intIn Gbs 
- Memory allocated to the DB system, in gigabytes.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- NsgIds []string
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- OsVersion string
- The most recent OS Patch Version applied on the DB system.
- PointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- PrivateIp string
- PrivateIp stringV6 
- RecoStorage intSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanIp []stringIds 
- The OCID of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- ScanIpv6ids []string
- The OCID of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- SecurityAttributes map[string]string
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- Shape string
- The shape of the DB system. The shape determines resources to allocate to the DB system.- For virtual machine shapes, the number of CPU cores and memory
- For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
 
- Source string
- SourceDb stringSystem Id 
- The OCID of the DB system.
- SparseDiskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- SshPublic []stringKeys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- StorageVolume stringPerformance Mode 
- The block storage volume performance level. Valid values are BALANCEDandHIGH_PERFORMANCE. See Block Volume Performance for more information.
- SubnetId string
- The OCID of the subnet the DB system is associated with.
- TimeCreated string
- The date and time the DB system was created.
- TimeZone string
- The time zone of the DB system. For details, see DB System Time Zones.
- Version string
- The Oracle Database version of the DB system.
- VipIds []string
- The OCID of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
- Vipv6ids []string
- The OCID of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- ZoneId string
- The OCID of the zone the DB system is associated with.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName String
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId String
- The compartment OCID.
- cpuCore IntegerCount 
- The number of CPU cores enabled on the DB system.
- dataCollection List<GetOptions Db Systems Db System Data Collection Option> 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage IntegerPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- dataStorage IntegerSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- databaseEdition String
- The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- dbHomes List<GetDb Systems Db System Db Home> 
- dbSystem List<GetOptions Db Systems Db System Db System Option> 
- The DB system options.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy String
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain String
- The domain name for the DB system.
- faultDomains List<String>
- List of the Fault Domains in which this DB system is provisioned.
- 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"}
- hostname String
- The hostname for the DB system.
- id String
- The OCID of the DB system.
- iormConfig List<GetCaches Db Systems Db System Iorm Config Cach> 
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kmsKey StringVersion Id 
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort Integer
- The port number configured for the listener on the DB system.
- maintenanceWindow List<GetDetails Db Systems Db System Maintenance Window Detail> 
- maintenanceWindows List<GetDb Systems Db System Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memorySize IntegerIn Gbs 
- Memory allocated to the DB system, in gigabytes.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Integer
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds List<String>
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- osVersion String
- The most recent OS Patch Version applied on the DB system.
- pointIn StringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- privateIp String
- privateIp StringV6 
- recoStorage IntegerSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanIpv6ids List<String>
- The OCID of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- securityAttributes Map<String,String>
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape String
- The shape of the DB system. The shape determines resources to allocate to the DB system.- For virtual machine shapes, the number of CPU cores and memory
- For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
 
- source String
- sourceDb StringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup Boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- storageVolume StringPerformance Mode 
- The block storage volume performance level. Valid values are BALANCEDandHIGH_PERFORMANCE. See Block Volume Performance for more information.
- subnetId String
- The OCID of the subnet the DB system is associated with.
- timeCreated String
- The date and time the DB system was created.
- timeZone String
- The time zone of the DB system. For details, see DB System Time Zones.
- version String
- The Oracle Database version of the DB system.
- vipIds List<String>
- The OCID of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
- vipv6ids List<String>
- The OCID of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zoneId String
- The OCID of the zone the DB system is associated with.
- availabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- backupNetwork string[]Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId string
- The compartment OCID.
- cpuCore numberCount 
- The number of CPU cores enabled on the DB system.
- dataCollection GetOptions Db Systems Db System Data Collection Option[] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage numberPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- dataStorage numberSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- databaseEdition string
- The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- dbHomes GetDb Systems Db System Db Home[] 
- dbSystem GetOptions Db Systems Db System Db System Option[] 
- The DB system options.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain string
- The domain name for the DB system.
- faultDomains string[]
- List of the Fault Domains in which this DB system is provisioned.
- {[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"}
- hostname string
- The hostname for the DB system.
- id string
- The OCID of the DB system.
- iormConfig GetCaches Db Systems Db System Iorm Config Cach[] 
- kmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kmsKey stringVersion Id 
- lastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- lastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- listenerPort number
- The port number configured for the listener on the DB system.
- maintenanceWindow GetDetails Db Systems Db System Maintenance Window Detail[] 
- maintenanceWindows GetDb Systems Db System Maintenance Window[] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memorySize numberIn Gbs 
- Memory allocated to the DB system, in gigabytes.
- nextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- nodeCount number
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds string[]
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- osVersion string
- The most recent OS Patch Version applied on the DB system.
- pointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- privateIp string
- privateIp stringV6 
- recoStorage numberSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp string[]Ids 
- The OCID of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanIpv6ids string[]
- The OCID of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- securityAttributes {[key: string]: string}
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape string
- The shape of the DB system. The shape determines resources to allocate to the DB system.- For virtual machine shapes, the number of CPU cores and memory
- For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
 
- source string
- sourceDb stringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- sshPublic string[]Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- storageVolume stringPerformance Mode 
- The block storage volume performance level. Valid values are BALANCEDandHIGH_PERFORMANCE. See Block Volume Performance for more information.
- subnetId string
- The OCID of the subnet the DB system is associated with.
- timeCreated string
- The date and time the DB system was created.
- timeZone string
- The time zone of the DB system. For details, see DB System Time Zones.
- version string
- The Oracle Database version of the DB system.
- vipIds string[]
- The OCID of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
- vipv6ids string[]
- The OCID of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zoneId string
- The OCID of the zone the DB system is associated with.
- availability_domain str
- A filter to return only resources that match the given availability domain exactly.
- backup_network_ Sequence[str]nsg_ ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup_subnet_ strid 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster_name str
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment_id str
- The compartment OCID.
- cpu_core_ intcount 
- The number of CPU cores enabled on the DB system.
- data_collection_ Sequence[Getoptions Db Systems Db System Data Collection Option] 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_storage_ intpercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- data_storage_ intsize_ in_ gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- database_edition str
- The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- db_homes Sequence[GetDb Systems Db System Db Home] 
- db_system_ Sequence[Getoptions Db Systems Db System Db System Option] 
- The DB system options.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk_redundancy str
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display_name str
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain str
- The domain name for the DB system.
- fault_domains Sequence[str]
- List of the Fault Domains in which this DB system is provisioned.
- 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"}
- hostname str
- The hostname for the DB system.
- id str
- The OCID of the DB system.
- iorm_config_ Sequence[Getcaches Db Systems Db System Iorm Config Cach] 
- kms_key_ strid 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_key_ strversion_ id 
- last_maintenance_ strrun_ id 
- The OCID of the last maintenance run.
- last_patch_ strhistory_ entry_ id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_model str
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle_details str
- Additional information about the current lifecycle state.
- listener_port int
- The port number configured for the listener on the DB system.
- maintenance_window_ Sequence[Getdetails Db Systems Db System Maintenance Window Detail] 
- maintenance_windows Sequence[GetDb Systems Db System Maintenance Window] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory_size_ intin_ gbs 
- Memory allocated to the DB system, in gigabytes.
- next_maintenance_ strrun_ id 
- The OCID of the next maintenance run.
- node_count int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg_ids Sequence[str]
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- os_version str
- The most recent OS Patch Version applied on the DB system.
- point_in_ strtime_ data_ disk_ clone_ timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- private_ip str
- private_ip_ strv6 
- reco_storage_ intsize_ in_ gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scan_dns_ strname 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan_dns_ strrecord_ id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan_ip_ Sequence[str]ids 
- The OCID of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan_ipv6ids Sequence[str]
- The OCID of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- security_attributes Mapping[str, str]
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape str
- The shape of the DB system. The shape determines resources to allocate to the DB system.- For virtual machine shapes, the number of CPU cores and memory
- For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
 
- source str
- source_db_ strsystem_ id 
- The OCID of the DB system.
- sparse_diskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- ssh_public_ Sequence[str]keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- storage_volume_ strperformance_ mode 
- The block storage volume performance level. Valid values are BALANCEDandHIGH_PERFORMANCE. See Block Volume Performance for more information.
- subnet_id str
- The OCID of the subnet the DB system is associated with.
- time_created str
- The date and time the DB system was created.
- time_zone str
- The time zone of the DB system. For details, see DB System Time Zones.
- version str
- The Oracle Database version of the DB system.
- vip_ids Sequence[str]
- The OCID of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
- vipv6ids Sequence[str]
- The OCID of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone_id str
- The OCID of the zone the DB system is associated with.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName String
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId String
- The compartment OCID.
- cpuCore NumberCount 
- The number of CPU cores enabled on the DB system.
- dataCollection List<Property Map>Options 
- Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage NumberPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- dataStorage NumberSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- databaseEdition String
- The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
- dbHomes List<Property Map>
- dbSystem List<Property Map>Options 
- The DB system options.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy String
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain String
- The domain name for the DB system.
- faultDomains List<String>
- List of the Fault Domains in which this DB system is provisioned.
- 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"}
- hostname String
- The hostname for the DB system.
- id String
- The OCID of the DB system.
- iormConfig List<Property Map>Caches 
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kmsKey StringVersion Id 
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort Number
- The port number configured for the listener on the DB system.
- maintenanceWindow List<Property Map>Details 
- maintenanceWindows List<Property Map>
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memorySize NumberIn Gbs 
- Memory allocated to the DB system, in gigabytes.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Number
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds List<String>
- The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
 
- osVersion String
- The most recent OS Patch Version applied on the DB system.
- pointIn StringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- privateIp String
- privateIp StringV6 
- recoStorage NumberSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scanIpv6ids List<String>
- The OCID of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- securityAttributes Map<String>
- Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}
- shape String
- The shape of the DB system. The shape determines resources to allocate to the DB system.- For virtual machine shapes, the number of CPU cores and memory
- For bare metal and Exadata shapes, the number of CPU cores, storage, and memory
 
- source String
- sourceDb StringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup Boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- storageVolume StringPerformance Mode 
- The block storage volume performance level. Valid values are BALANCEDandHIGH_PERFORMANCE. See Block Volume Performance for more information.
- subnetId String
- The OCID of the subnet the DB system is associated with.
- timeCreated String
- The date and time the DB system was created.
- timeZone String
- The time zone of the DB system. For details, see DB System Time Zones.
- version String
- The Oracle Database version of the DB system.
- vipIds List<String>
- The OCID of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
- vipv6ids List<String>
- The OCID of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zoneId String
- The OCID of the zone the DB system is associated with.
GetDbSystemsDbSystemDataCollectionOption       
- IsDiagnostics boolEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- IsDiagnostics boolEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics booleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth booleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident booleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- is_diagnostics_ boolevents_ enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- is_health_ boolmonitoring_ enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- is_incident_ boollogs_ enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster,updateCloudVmClusterorupdateDbsystemAPI.
GetDbSystemsDbSystemDbHome      
- CreateAsync bool
- DatabaseSoftware stringImage Id 
- Databases
List<GetDb Systems Db System Db Home Database> 
- DbHome stringLocation 
- DbVersion string
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- 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 string
- The OCID of the DB system.
- IsUnified boolAuditing Enabled 
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- TimeCreated string
- The date and time the DB system was created.
- CreateAsync bool
- DatabaseSoftware stringImage Id 
- Databases
[]GetDb Systems Db System Db Home Database 
- DbHome stringLocation 
- DbVersion string
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- 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 string
- The OCID of the DB system.
- IsUnified boolAuditing Enabled 
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- TimeCreated string
- The date and time the DB system was created.
- createAsync Boolean
- databaseSoftware StringImage Id 
- databases
List<GetDb Systems Db System Db Home> 
- dbHome StringLocation 
- dbVersion String
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- 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 String
- The OCID of the DB system.
- isUnified BooleanAuditing Enabled 
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- timeCreated String
- The date and time the DB system was created.
- createAsync boolean
- databaseSoftware stringImage Id 
- databases
GetDb Systems Db System Db Home Database[] 
- dbHome stringLocation 
- dbVersion string
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName string
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- {[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 string
- The OCID of the DB system.
- isUnified booleanAuditing Enabled 
- lastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- timeCreated string
- The date and time the DB system was created.
- create_async bool
- database_software_ strimage_ id 
- databases
Sequence[GetDb Systems Db System Db Home Database] 
- db_home_ strlocation 
- db_version str
- 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 str
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- 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 str
- The OCID of the DB system.
- is_unified_ boolauditing_ enabled 
- last_patch_ strhistory_ entry_ id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle_details str
- Additional information about the current lifecycle state.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- time_created str
- The date and time the DB system was created.
- createAsync Boolean
- databaseSoftware StringImage Id 
- databases List<Property Map>
- dbHome StringLocation 
- dbVersion String
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
- 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 String
- The OCID of the DB system.
- isUnified BooleanAuditing Enabled 
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- timeCreated String
- The date and time the DB system was created.
GetDbSystemsDbSystemDbHomeDatabase       
- AdminPassword string
- BackupId string
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- BackupTde stringPassword 
- CharacterSet string
- ConnectionStrings List<GetDb Systems Db System Db Home Database Connection String> 
- DatabaseId string
- DatabaseSoftware stringImage Id 
- DbBackup List<GetConfigs Db Systems Db System Db Home Database Db Backup Config> 
- DbDomain string
- DbName string
- DbUnique stringName 
- DbWorkload string
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 string
- The OCID of the DB system.
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- KmsKey stringVersion Id 
- LifecycleDetails string
- Additional information about the current lifecycle state.
- NcharacterSet string
- PdbName string
- PluggableDatabases List<string>
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- TdeWallet stringPassword 
- TimeCreated string
- The date and time the DB system was created.
- TimeStamp stringFor Point In Time Recovery 
- VaultId string
- AdminPassword string
- BackupId string
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- BackupTde stringPassword 
- CharacterSet string
- ConnectionStrings []GetDb Systems Db System Db Home Database Connection String 
- DatabaseId string
- DatabaseSoftware stringImage Id 
- DbBackup []GetConfigs Db Systems Db System Db Home Database Db Backup Config 
- DbDomain string
- DbName string
- DbUnique stringName 
- DbWorkload string
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 string
- The OCID of the DB system.
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- KmsKey stringVersion Id 
- LifecycleDetails string
- Additional information about the current lifecycle state.
- NcharacterSet string
- PdbName string
- PluggableDatabases []string
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- TdeWallet stringPassword 
- TimeCreated string
- The date and time the DB system was created.
- TimeStamp stringFor Point In Time Recovery 
- VaultId string
- adminPassword String
- backupId String
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backupTde StringPassword 
- characterSet String
- connectionStrings List<GetDb Systems Db System Db Home Connection String> 
- databaseId String
- databaseSoftware StringImage Id 
- dbBackup List<GetConfigs Db Systems Db System Db Home Db Backup Config> 
- dbDomain String
- dbName String
- dbUnique StringName 
- dbWorkload String
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 String
- The OCID of the DB system.
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kmsKey StringVersion Id 
- lifecycleDetails String
- Additional information about the current lifecycle state.
- ncharacterSet String
- pdbName String
- pluggableDatabases List<String>
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- tdeWallet StringPassword 
- timeCreated String
- The date and time the DB system was created.
- timeStamp StringFor Point In Time Recovery 
- vaultId String
- adminPassword string
- backupId string
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backupTde stringPassword 
- characterSet string
- connectionStrings GetDb Systems Db System Db Home Database Connection String[] 
- databaseId string
- databaseSoftware stringImage Id 
- dbBackup GetConfigs Db Systems Db System Db Home Database Db Backup Config[] 
- dbDomain string
- dbName string
- dbUnique stringName 
- dbWorkload string
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[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 string
- The OCID of the DB system.
- kmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kmsKey stringVersion Id 
- lifecycleDetails string
- Additional information about the current lifecycle state.
- ncharacterSet string
- pdbName string
- pluggableDatabases string[]
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- tdeWallet stringPassword 
- timeCreated string
- The date and time the DB system was created.
- timeStamp stringFor Point In Time Recovery 
- vaultId string
- admin_password str
- backup_id str
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backup_tde_ strpassword 
- character_set str
- connection_strings Sequence[GetDb Systems Db System Db Home Database Connection String] 
- database_id str
- database_software_ strimage_ id 
- db_backup_ Sequence[Getconfigs Db Systems Db System Db Home Database Db Backup Config] 
- db_domain str
- db_name str
- db_unique_ strname 
- db_workload str
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 str
- The OCID of the DB system.
- kms_key_ strid 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_key_ strversion_ id 
- lifecycle_details str
- Additional information about the current lifecycle state.
- ncharacter_set str
- pdb_name str
- pluggable_databases Sequence[str]
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- tde_wallet_ strpassword 
- time_created str
- The date and time the DB system was created.
- time_stamp_ strfor_ point_ in_ time_ recovery 
- vault_id str
- adminPassword String
- backupId String
- The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backupTde StringPassword 
- characterSet String
- connectionStrings List<Property Map>
- databaseId String
- databaseSoftware StringImage Id 
- dbBackup List<Property Map>Configs 
- dbDomain String
- dbName String
- dbUnique StringName 
- dbWorkload String
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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 String
- The OCID of the DB system.
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kmsKey StringVersion Id 
- lifecycleDetails String
- Additional information about the current lifecycle state.
- ncharacterSet String
- pdbName String
- pluggableDatabases List<String>
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- tdeWallet StringPassword 
- timeCreated String
- The date and time the DB system was created.
- timeStamp StringFor Point In Time Recovery 
- vaultId String
GetDbSystemsDbSystemDbHomeDatabaseConnectionString         
- AllConnection Dictionary<string, string>Strings 
- CdbDefault string
- CdbIp stringDefault 
- AllConnection map[string]stringStrings 
- CdbDefault string
- CdbIp stringDefault 
- allConnection Map<String,String>Strings 
- cdbDefault String
- cdbIp StringDefault 
- allConnection {[key: string]: string}Strings 
- cdbDefault string
- cdbIp stringDefault 
- all_connection_ Mapping[str, str]strings 
- cdb_default str
- cdb_ip_ strdefault 
- allConnection Map<String>Strings 
- cdbDefault String
- cdbIp StringDefault 
GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig          
- autoBackup BooleanEnabled 
- autoBackup StringWindow 
- autoFull StringBackup Day 
- autoFull StringBackup Window 
- backupDeletion StringPolicy 
- backupDestination List<Property Map>Details 
- recoveryWindow NumberIn Days 
- runImmediate BooleanFull Backup 
GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail             
- DbrsPolicy stringId 
- Id string
- The OCID of the DB system.
- Type string
- DbrsPolicy stringId 
- Id string
- The OCID of the DB system.
- Type string
- dbrsPolicy StringId 
- id String
- The OCID of the DB system.
- type String
- dbrsPolicy stringId 
- id string
- The OCID of the DB system.
- type string
- dbrs_policy_ strid 
- id str
- The OCID of the DB system.
- type str
- dbrsPolicy StringId 
- id String
- The OCID of the DB system.
- type String
GetDbSystemsDbSystemDbSystemOption       
- StorageManagement string
- The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- StorageManagement string
- The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- storageManagement String
- The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- storageManagement string
- The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- storage_management str
- The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- storageManagement String
- The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
GetDbSystemsDbSystemIormConfigCach       
- DbPlans List<GetDb Systems Db System Iorm Config Cach Db Plan> 
- DbSystem stringId 
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- DbPlans []GetDb Systems Db System Iorm Config Cach Db Plan 
- DbSystem stringId 
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- dbPlans List<GetDb Systems Db System Iorm Config Cach Db Plan> 
- dbSystem StringId 
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- dbPlans GetDb Systems Db System Iorm Config Cach Db Plan[] 
- dbSystem stringId 
- lifecycleDetails string
- Additional information about the current lifecycle state.
- objective string
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- db_plans Sequence[GetDb Systems Db System Iorm Config Cach Db Plan] 
- db_system_ strid 
- lifecycle_details str
- Additional information about the current lifecycle state.
- objective str
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- dbPlans List<Property Map>
- dbSystem StringId 
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- state String
- A filter to return only resources that match the given lifecycle state exactly.
GetDbSystemsDbSystemIormConfigCachDbPlan         
- DbName string
- FlashCache stringLimit 
- int
- DbName string
- FlashCache stringLimit 
- int
- dbName String
- flashCache StringLimit 
- Integer
- dbName string
- flashCache stringLimit 
- number
- db_name str
- flash_cache_ strlimit 
- int
- dbName String
- flashCache StringLimit 
- Number
GetDbSystemsDbSystemMaintenanceWindow      
- CustomAction intTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- DaysOf List<GetWeeks Db Systems Db System Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<GetDb Systems Db System Maintenance Window Month> 
- Months during the year when maintenance should be performed.
- PatchingMode string
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- SkipRus List<bool>
- WeeksOf List<int>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- CustomAction intTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- DaysOf []GetWeeks Db Systems Db System Maintenance Window Days Of Week 
- Days during the week when maintenance should be performed.
- HoursOf []intDays 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]GetDb Systems Db System Maintenance Window Month 
- Months during the year when maintenance should be performed.
- PatchingMode string
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- SkipRus []bool
- WeeksOf []intMonths 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- customAction IntegerTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- daysOf List<GetWeeks Db Systems Db System Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime IntegerIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<GetDb Systems Db System Maintenance Window Month> 
- Months during the year when maintenance should be performed.
- patchingMode String
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Integer>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- customAction numberTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- daysOf GetWeeks Db Systems Db System Maintenance Window Days Of Week[] 
- Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- isCustom booleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly booleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime numberIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
GetDb Systems Db System Maintenance Window Month[] 
- Months during the year when maintenance should be performed.
- patchingMode string
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference string
- The maintenance window scheduling preference.
- skipRus boolean[]
- weeksOf number[]Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_action_ inttimeout_ in_ mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_of_ Sequence[Getweeks Db Systems Db System Maintenance Window Days Of Week] 
- Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- is_custom_ boolaction_ timeout_ enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_monthly_ boolpatching_ enabled 
- If true, enables the monthly patching option.
- lead_time_ intin_ weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[GetDb Systems Db System Maintenance Window Month] 
- Months during the year when maintenance should be performed.
- patching_mode str
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference str
- The maintenance window scheduling preference.
- skip_rus Sequence[bool]
- weeks_of_ Sequence[int]months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- customAction NumberTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- daysOf List<Property Map>Weeks 
- Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime NumberIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- Months during the year when maintenance should be performed.
- patchingMode String
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Number>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek         
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsDbSystemMaintenanceWindowDetail       
- CustomAction intTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- DaysOf List<GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week> 
- Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<GetDb Systems Db System Maintenance Window Detail Month> 
- Months during the year when maintenance should be performed.
- PatchingMode string
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- SkipRus List<bool>
- WeeksOf List<int>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- CustomAction intTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- DaysOf []GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week 
- Days during the week when maintenance should be performed.
- HoursOf []intDays 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]GetDb Systems Db System Maintenance Window Detail Month 
- Months during the year when maintenance should be performed.
- PatchingMode string
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- SkipRus []bool
- WeeksOf []intMonths 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- customAction IntegerTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- daysOf List<GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week> 
- Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime IntegerIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<GetDb Systems Db System Maintenance Window Detail Month> 
- Months during the year when maintenance should be performed.
- patchingMode String
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Integer>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- customAction numberTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- daysOf GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week[] 
- Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- isCustom booleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly booleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime numberIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
GetDb Systems Db System Maintenance Window Detail Month[] 
- Months during the year when maintenance should be performed.
- patchingMode string
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference string
- The maintenance window scheduling preference.
- skipRus boolean[]
- weeksOf number[]Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_action_ inttimeout_ in_ mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_of_ Sequence[Getweeks Db Systems Db System Maintenance Window Detail Days Of Week] 
- Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- is_custom_ boolaction_ timeout_ enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_monthly_ boolpatching_ enabled 
- If true, enables the monthly patching option.
- lead_time_ intin_ weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[GetDb Systems Db System Maintenance Window Detail Month] 
- Months during the year when maintenance should be performed.
- patching_mode str
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference str
- The maintenance window scheduling preference.
- skip_rus Sequence[bool]
- weeks_of_ Sequence[int]months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- customAction NumberTimeout In Mins 
- Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- daysOf List<Property Map>Weeks 
- Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime NumberIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- Months during the year when maintenance should be performed.
- patchingMode String
- Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Number>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek          
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsDbSystemMaintenanceWindowDetailMonth        
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsDbSystemMaintenanceWindowMonth       
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.