1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getDbSystems
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.getDbSystems

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        availabilityDomain: _var.db_system_availability_domain,
        backupId: oci_database_backup.test_backup.id,
        displayName: _var.db_system_display_name,
        state: _var.db_system_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_db_systems = oci.Database.get_db_systems(compartment_id=var["compartment_id"],
        availability_domain=var["db_system_availability_domain"],
        backup_id=oci_database_backup["test_backup"]["id"],
        display_name=var["db_system_display_name"],
        state=var["db_system_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:      _var.Compartment_id,
    			AvailabilityDomain: pulumi.StringRef(_var.Db_system_availability_domain),
    			BackupId:           pulumi.StringRef(oci_database_backup.Test_backup.Id),
    			DisplayName:        pulumi.StringRef(_var.Db_system_display_name),
    			State:              pulumi.StringRef(_var.Db_system_state),
    		}, 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 = @var.Compartment_id,
            AvailabilityDomain = @var.Db_system_availability_domain,
            BackupId = oci_database_backup.Test_backup.Id,
            DisplayName = @var.Db_system_display_name,
            State = @var.Db_system_state,
        });
    
    });
    
    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(var_.compartment_id())
                .availabilityDomain(var_.db_system_availability_domain())
                .backupId(oci_database_backup.test_backup().id())
                .displayName(var_.db_system_display_name())
                .state(var_.db_system_state())
                .build());
    
        }
    }
    
    variables:
      testDbSystems:
        fn::invoke:
          Function: oci:Database:getDbSystems
          Arguments:
            compartmentId: ${var.compartment_id}
            availabilityDomain: ${var.db_system_availability_domain}
            backupId: ${oci_database_backup.test_backup.id}
            displayName: ${var.db_system_display_name}
            state: ${var.db_system_state}
    

    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[_database.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[_database.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Database/getDbSystems:getDbSystems
      arguments:
        # arguments dictionary

    The 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<GetDbSystemsFilter>
    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 []GetDbSystemsFilter
    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<GetDbSystemsFilter>
    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 GetDbSystemsFilter[]
    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[database.GetDbSystemsFilter]
    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<GetDbSystemsDbSystem>
    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<GetDbSystemsFilter>
    State string
    The current state of the DB system.
    CompartmentId string
    The OCID of the compartment.
    DbSystems []GetDbSystemsDbSystem
    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 []GetDbSystemsFilter
    State string
    The current state of the DB system.
    compartmentId String
    The OCID of the compartment.
    dbSystems List<GetDbSystemsDbSystem>
    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<GetDbSystemsFilter>
    state String
    The current state of the DB system.
    compartmentId string
    The OCID of the compartment.
    dbSystems GetDbSystemsDbSystem[]
    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 GetDbSystemsFilter[]
    state string
    The current state of the DB system.
    compartment_id str
    The OCID of the compartment.
    db_systems Sequence[database.GetDbSystemsDbSystem]
    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[database.GetDbSystemsFilter]
    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.
    BackupNetworkNsgIds List<string>
    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.
    BackupSubnetId string
    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.
    CpuCoreCount int
    The number of CPU cores enabled on the DB system.
    DataCollectionOptions List<GetDbSystemsDbSystemDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStoragePercentage int
    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.
    DataStorageSizeInGb int
    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.
    DbHomes List<GetDbSystemsDbSystemDbHome>
    DbSystemOptions List<GetDbSystemsDbSystemDbSystemOption>
    The DB system options.
    DefinedTags Dictionary<string, object>
    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.
    FreeformTags Dictionary<string, object>
    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.
    IormConfigCaches List<GetDbSystemsDbSystemIormConfigCach>
    KmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    KmsKeyVersionId string
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastPatchHistoryEntryId string
    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.
    MaintenanceWindowDetails List<GetDbSystemsDbSystemMaintenanceWindowDetail>
    MaintenanceWindows List<GetDbSystemsDbSystemMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MemorySizeInGbs int
    Memory allocated to the DB system, in gigabytes.
    NextMaintenanceRunId string
    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.
    PointInTimeDataDiskCloneTimestamp string
    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
    RecoStorageSizeInGb int
    The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
    ScanIpIds List<string>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP 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.
    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
    SourceDbSystemId string
    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.
    SshPublicKeys List<string>
    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.
    StorageVolumePerformanceMode string
    The block storage volume performance level. Valid values are BALANCED and HIGH_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 IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP 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.
    BackupNetworkNsgIds []string
    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.
    BackupSubnetId string
    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.
    CpuCoreCount int
    The number of CPU cores enabled on the DB system.
    DataCollectionOptions []GetDbSystemsDbSystemDataCollectionOption
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStoragePercentage int
    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.
    DataStorageSizeInGb int
    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.
    DbHomes []GetDbSystemsDbSystemDbHome
    DbSystemOptions []GetDbSystemsDbSystemDbSystemOption
    The DB system options.
    DefinedTags map[string]interface{}
    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.
    FreeformTags map[string]interface{}
    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.
    IormConfigCaches []GetDbSystemsDbSystemIormConfigCach
    KmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    KmsKeyVersionId string
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastPatchHistoryEntryId string
    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.
    MaintenanceWindowDetails []GetDbSystemsDbSystemMaintenanceWindowDetail
    MaintenanceWindows []GetDbSystemsDbSystemMaintenanceWindow
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MemorySizeInGbs int
    Memory allocated to the DB system, in gigabytes.
    NextMaintenanceRunId string
    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.
    PointInTimeDataDiskCloneTimestamp string
    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
    RecoStorageSizeInGb int
    The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
    ScanIpIds []string
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP 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.
    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
    SourceDbSystemId string
    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.
    SshPublicKeys []string
    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.
    StorageVolumePerformanceMode string
    The block storage volume performance level. Valid values are BALANCED and HIGH_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 IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP 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.
    backupNetworkNsgIds List<String>
    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.
    backupSubnetId String
    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.
    cpuCoreCount Integer
    The number of CPU cores enabled on the DB system.
    dataCollectionOptions List<GetDbSystemsDbSystemDataCollectionOption>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage Integer
    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.
    dataStorageSizeInGb Integer
    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.
    dbHomes List<GetDbSystemsDbSystemDbHome>
    dbSystemOptions List<GetDbSystemsDbSystemDbSystemOption>
    The DB system options.
    definedTags Map<String,Object>
    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.
    freeformTags Map<String,Object>
    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.
    iormConfigCaches List<GetDbSystemsDbSystemIormConfigCach>
    kmsKeyId String
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kmsKeyVersionId String
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastPatchHistoryEntryId String
    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.
    maintenanceWindowDetails List<GetDbSystemsDbSystemMaintenanceWindowDetail>
    maintenanceWindows List<GetDbSystemsDbSystemMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memorySizeInGbs Integer
    Memory allocated to the DB system, in gigabytes.
    nextMaintenanceRunId String
    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.
    pointInTimeDataDiskCloneTimestamp String
    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
    recoStorageSizeInGb Integer
    The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP 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.
    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
    sourceDbSystemId String
    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.
    sshPublicKeys List<String>
    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.
    storageVolumePerformanceMode String
    The block storage volume performance level. Valid values are BALANCED and HIGH_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 IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP 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.
    backupNetworkNsgIds string[]
    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.
    backupSubnetId string
    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.
    cpuCoreCount number
    The number of CPU cores enabled on the DB system.
    dataCollectionOptions GetDbSystemsDbSystemDataCollectionOption[]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage number
    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.
    dataStorageSizeInGb number
    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.
    dbHomes GetDbSystemsDbSystemDbHome[]
    dbSystemOptions GetDbSystemsDbSystemDbSystemOption[]
    The DB system options.
    definedTags {[key: string]: any}
    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.
    freeformTags {[key: string]: any}
    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.
    iormConfigCaches GetDbSystemsDbSystemIormConfigCach[]
    kmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kmsKeyVersionId string
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lastPatchHistoryEntryId string
    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.
    maintenanceWindowDetails GetDbSystemsDbSystemMaintenanceWindowDetail[]
    maintenanceWindows GetDbSystemsDbSystemMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memorySizeInGbs number
    Memory allocated to the DB system, in gigabytes.
    nextMaintenanceRunId string
    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.
    pointInTimeDataDiskCloneTimestamp string
    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
    recoStorageSizeInGb number
    The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
    scanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scanIpIds string[]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP 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.
    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
    sourceDbSystemId string
    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.
    sshPublicKeys string[]
    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.
    storageVolumePerformanceMode string
    The block storage volume performance level. Valid values are BALANCED and HIGH_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 IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP 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_nsg_ids Sequence[str]
    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_id str
    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_count int
    The number of CPU cores enabled on the DB system.
    data_collection_options Sequence[database.GetDbSystemsDbSystemDataCollectionOption]
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_percentage int
    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_size_in_gb int
    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.
    db_homes Sequence[database.GetDbSystemsDbSystemDbHome]
    db_system_options Sequence[database.GetDbSystemsDbSystemDbSystemOption]
    The DB system options.
    defined_tags Mapping[str, Any]
    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.
    freeform_tags Mapping[str, Any]
    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_caches Sequence[database.GetDbSystemsDbSystemIormConfigCach]
    kms_key_id str
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kms_key_version_id str
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    last_patch_history_entry_id str
    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_details Sequence[database.GetDbSystemsDbSystemMaintenanceWindowDetail]
    maintenance_windows Sequence[database.GetDbSystemsDbSystemMaintenanceWindow]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memory_size_in_gbs int
    Memory allocated to the DB system, in gigabytes.
    next_maintenance_run_id str
    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_time_data_disk_clone_timestamp str
    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
    reco_storage_size_in_gb int
    The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
    scan_dns_name str
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scan_ip_ids Sequence[str]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP 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.
    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_system_id str
    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_keys Sequence[str]
    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_performance_mode str
    The block storage volume performance level. Valid values are BALANCED and HIGH_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 IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP 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.
    backupNetworkNsgIds List<String>
    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.
    backupSubnetId String
    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.
    cpuCoreCount Number
    The number of CPU cores enabled on the DB system.
    dataCollectionOptions List<Property Map>
    Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage Number
    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.
    dataStorageSizeInGb Number
    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.
    dbHomes List<Property Map>
    dbSystemOptions List<Property Map>
    The DB system options.
    definedTags Map<Any>
    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.
    freeformTags Map<Any>
    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.
    iormConfigCaches List<Property Map>
    kmsKeyId String
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kmsKeyVersionId String
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastPatchHistoryEntryId String
    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.
    maintenanceWindowDetails List<Property Map>
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memorySizeInGbs Number
    Memory allocated to the DB system, in gigabytes.
    nextMaintenanceRunId String
    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.
    pointInTimeDataDiskCloneTimestamp String
    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
    recoStorageSizeInGb Number
    The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP 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.
    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
    sourceDbSystemId String
    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.
    sshPublicKeys List<String>
    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.
    storageVolumePerformanceMode String
    The block storage volume performance level. Valid values are BALANCED and HIGH_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 IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP 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

    IsDiagnosticsEventsEnabled bool
    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 UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    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, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    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, updateCloudVmCluster or updateDbsystem API.
    IsDiagnosticsEventsEnabled bool
    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 UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    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, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    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, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    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 UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    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, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    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, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled boolean
    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 UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled boolean
    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, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled boolean
    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, updateCloudVmCluster or updateDbsystem API.
    is_diagnostics_events_enabled bool
    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 UpdateVmCluster or updateCloudVmCluster API.
    is_health_monitoring_enabled bool
    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, UpdateCloudVmCluster or updateDbsystem API.
    is_incident_logs_enabled bool
    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, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    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 UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    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, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    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, updateCloudVmCluster or updateDbsystem API.

    GetDbSystemsDbSystemDbHome

    CreateAsync bool
    DatabaseSoftwareImageId string
    Databases List<GetDbSystemsDbSystemDbHomeDatabase>
    DbHomeLocation string
    DbVersion string
    DefinedTags Dictionary<string, object>
    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.
    FreeformTags Dictionary<string, object>
    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.
    LastPatchHistoryEntryId string
    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
    DatabaseSoftwareImageId string
    Databases []GetDbSystemsDbSystemDbHomeDatabase
    DbHomeLocation string
    DbVersion string
    DefinedTags map[string]interface{}
    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.
    FreeformTags map[string]interface{}
    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.
    LastPatchHistoryEntryId string
    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
    databaseSoftwareImageId String
    databases List<GetDbSystemsDbSystemDbHome>
    dbHomeLocation String
    dbVersion String
    definedTags Map<String,Object>
    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.
    freeformTags Map<String,Object>
    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.
    lastPatchHistoryEntryId String
    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
    databaseSoftwareImageId string
    databases GetDbSystemsDbSystemDbHomeDatabase[]
    dbHomeLocation string
    dbVersion string
    definedTags {[key: string]: any}
    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.
    freeformTags {[key: string]: any}
    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.
    lastPatchHistoryEntryId string
    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_image_id str
    databases Sequence[database.GetDbSystemsDbSystemDbHomeDatabase]
    db_home_location str
    db_version str
    defined_tags Mapping[str, Any]
    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.
    freeform_tags Mapping[str, Any]
    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.
    last_patch_history_entry_id str
    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
    databaseSoftwareImageId String
    databases List<Property Map>
    dbHomeLocation String
    dbVersion String
    definedTags Map<Any>
    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.
    freeformTags Map<Any>
    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.
    lastPatchHistoryEntryId String
    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.
    BackupTdePassword string
    CharacterSet string
    ConnectionStrings List<GetDbSystemsDbSystemDbHomeDatabaseConnectionString>
    DatabaseId string
    DatabaseSoftwareImageId string
    DbBackupConfigs List<GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig>
    DbDomain string
    DbName string
    DbUniqueName string
    DbWorkload string
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, object>
    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.
    KmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    KmsKeyVersionId string
    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.
    TdeWalletPassword string
    TimeCreated string
    The date and time the DB system was created.
    TimeStampForPointInTimeRecovery string
    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.
    BackupTdePassword string
    CharacterSet string
    ConnectionStrings []GetDbSystemsDbSystemDbHomeDatabaseConnectionString
    DatabaseId string
    DatabaseSoftwareImageId string
    DbBackupConfigs []GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig
    DbDomain string
    DbName string
    DbUniqueName string
    DbWorkload string
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]interface{}
    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.
    KmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    KmsKeyVersionId string
    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.
    TdeWalletPassword string
    TimeCreated string
    The date and time the DB system was created.
    TimeStampForPointInTimeRecovery string
    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.
    backupTdePassword String
    characterSet String
    connectionStrings List<GetDbSystemsDbSystemDbHomeConnectionString>
    databaseId String
    databaseSoftwareImageId String
    dbBackupConfigs List<GetDbSystemsDbSystemDbHomeDbBackupConfig>
    dbDomain String
    dbName String
    dbUniqueName String
    dbWorkload String
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,Object>
    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.
    kmsKeyId String
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kmsKeyVersionId String
    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.
    tdeWalletPassword String
    timeCreated String
    The date and time the DB system was created.
    timeStampForPointInTimeRecovery String
    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.
    backupTdePassword string
    characterSet string
    connectionStrings GetDbSystemsDbSystemDbHomeDatabaseConnectionString[]
    databaseId string
    databaseSoftwareImageId string
    dbBackupConfigs GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig[]
    dbDomain string
    dbName string
    dbUniqueName string
    dbWorkload string
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: any}
    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.
    kmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kmsKeyVersionId string
    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.
    tdeWalletPassword string
    timeCreated string
    The date and time the DB system was created.
    timeStampForPointInTimeRecovery string
    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_password str
    character_set str
    connection_strings Sequence[database.GetDbSystemsDbSystemDbHomeDatabaseConnectionString]
    database_id str
    database_software_image_id str
    db_backup_configs Sequence[database.GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig]
    db_domain str
    db_name str
    db_unique_name str
    db_workload str
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeform_tags Mapping[str, Any]
    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_id str
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kms_key_version_id str
    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_password str
    time_created str
    The date and time the DB system was created.
    time_stamp_for_point_in_time_recovery str
    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.
    backupTdePassword String
    characterSet String
    connectionStrings List<Property Map>
    databaseId String
    databaseSoftwareImageId String
    dbBackupConfigs List<Property Map>
    dbDomain String
    dbName String
    dbUniqueName String
    dbWorkload String
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<Any>
    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.
    kmsKeyId String
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    kmsKeyVersionId String
    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.
    tdeWalletPassword String
    timeCreated String
    The date and time the DB system was created.
    timeStampForPointInTimeRecovery String
    vaultId String

    GetDbSystemsDbSystemDbHomeDatabaseConnectionString

    AllConnectionStrings Dictionary<string, object>
    CdbDefault string
    CdbIpDefault string
    AllConnectionStrings map[string]interface{}
    CdbDefault string
    CdbIpDefault string
    allConnectionStrings Map<String,Object>
    cdbDefault String
    cdbIpDefault String
    allConnectionStrings {[key: string]: any}
    cdbDefault string
    cdbIpDefault string

    GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig

    GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail

    DbrsPolicyId string
    Id string
    The OCID of the DB system.
    Type string
    DbrsPolicyId string
    Id string
    The OCID of the DB system.
    Type string
    dbrsPolicyId String
    id String
    The OCID of the DB system.
    type String
    dbrsPolicyId string
    id string
    The OCID of the DB system.
    type string
    dbrs_policy_id str
    id str
    The OCID of the DB system.
    type str
    dbrsPolicyId String
    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<GetDbSystemsDbSystemIormConfigCachDbPlan>
    DbSystemId string
    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 []GetDbSystemsDbSystemIormConfigCachDbPlan
    DbSystemId string
    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<GetDbSystemsDbSystemIormConfigCachDbPlan>
    dbSystemId String
    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 GetDbSystemsDbSystemIormConfigCachDbPlan[]
    dbSystemId string
    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[database.GetDbSystemsDbSystemIormConfigCachDbPlan]
    db_system_id str
    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>
    dbSystemId String
    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
    FlashCacheLimit string
    Share int
    DbName string
    FlashCacheLimit string
    Share int
    dbName String
    flashCacheLimit String
    share Integer
    dbName string
    flashCacheLimit string
    share number
    dbName String
    flashCacheLimit String
    share Number

    GetDbSystemsDbSystemMaintenanceWindow

    CustomActionTimeoutInMins int
    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).
    DaysOfWeeks List<GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    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
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    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<GetDbSystemsDbSystemMaintenanceWindowMonth>
    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>
    WeeksOfMonths List<int>
    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.
    CustomActionTimeoutInMins int
    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).
    DaysOfWeeks []GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    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
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    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 []GetDbSystemsDbSystemMaintenanceWindowMonth
    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
    WeeksOfMonths []int
    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.
    customActionTimeoutInMins Integer
    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).
    daysOfWeeks List<GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    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
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    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<GetDbSystemsDbSystemMaintenanceWindowMonth>
    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>
    weeksOfMonths List<Integer>
    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.
    customActionTimeoutInMins number
    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).
    daysOfWeeks GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    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
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    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 GetDbSystemsDbSystemMaintenanceWindowMonth[]
    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[]
    weeksOfMonths number[]
    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_timeout_in_mins int
    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_weeks Sequence[database.GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    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_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    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[database.GetDbSystemsDbSystemMaintenanceWindowMonth]
    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_months Sequence[int]
    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.
    customActionTimeoutInMins Number
    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).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    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
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    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>
    weeksOfMonths List<Number>
    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

    CustomActionTimeoutInMins int
    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).
    DaysOfWeeks List<GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    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
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    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<GetDbSystemsDbSystemMaintenanceWindowDetailMonth>
    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>
    WeeksOfMonths List<int>
    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.
    CustomActionTimeoutInMins int
    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).
    DaysOfWeeks []GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    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
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    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 []GetDbSystemsDbSystemMaintenanceWindowDetailMonth
    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
    WeeksOfMonths []int
    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.
    customActionTimeoutInMins Integer
    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).
    daysOfWeeks List<GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    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
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    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<GetDbSystemsDbSystemMaintenanceWindowDetailMonth>
    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>
    weeksOfMonths List<Integer>
    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.
    customActionTimeoutInMins number
    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).
    daysOfWeeks GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    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
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    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 GetDbSystemsDbSystemMaintenanceWindowDetailMonth[]
    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[]
    weeksOfMonths number[]
    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_timeout_in_mins int
    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_weeks Sequence[database.GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    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_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    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[database.GetDbSystemsDbSystemMaintenanceWindowDetailMonth]
    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_months Sequence[int]
    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.
    customActionTimeoutInMins Number
    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).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    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
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    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>
    weeksOfMonths List<Number>
    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

    Name string
    Name of the month of the year.
    Values List<string>
    Regex bool
    Name string
    Name of the month of the year.
    Values []string
    Regex bool
    name String
    Name of the month of the year.
    values List<String>
    regex Boolean
    name string
    Name of the month of the year.
    values string[]
    regex boolean
    name str
    Name of the month of the year.
    values Sequence[str]
    regex bool
    name String
    Name of the month of the year.
    values List<String>
    regex Boolean

    Package Details

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