oci.Database.DbSystemsUpgrade
Explore with Pulumi AI
This resource provides the Db Systems Upgrade resource in Oracle Cloud Infrastructure Database service.
Upgrades the operating system and grid infrastructure of the DB system.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDbSystemsUpgrade = new oci.database.DbSystemsUpgrade("test_db_systems_upgrade", {
    action: dbSystemsUpgradeAction,
    dbSystemId: testDbSystem.id,
    isSnapshotRetentionDaysForceUpdated: dbSystemsUpgradeIsSnapshotRetentionDaysForceUpdated,
    newGiVersion: dbSystemsUpgradeNewGiVersion,
    snapshotRetentionPeriodInDays: dbSystemsUpgradeSnapshotRetentionPeriodInDays,
});
import pulumi
import pulumi_oci as oci
test_db_systems_upgrade = oci.database.DbSystemsUpgrade("test_db_systems_upgrade",
    action=db_systems_upgrade_action,
    db_system_id=test_db_system["id"],
    is_snapshot_retention_days_force_updated=db_systems_upgrade_is_snapshot_retention_days_force_updated,
    new_gi_version=db_systems_upgrade_new_gi_version,
    snapshot_retention_period_in_days=db_systems_upgrade_snapshot_retention_period_in_days)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewDbSystemsUpgrade(ctx, "test_db_systems_upgrade", &database.DbSystemsUpgradeArgs{
			Action:                              pulumi.Any(dbSystemsUpgradeAction),
			DbSystemId:                          pulumi.Any(testDbSystem.Id),
			IsSnapshotRetentionDaysForceUpdated: pulumi.Any(dbSystemsUpgradeIsSnapshotRetentionDaysForceUpdated),
			NewGiVersion:                        pulumi.Any(dbSystemsUpgradeNewGiVersion),
			SnapshotRetentionPeriodInDays:       pulumi.Any(dbSystemsUpgradeSnapshotRetentionPeriodInDays),
		})
		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 testDbSystemsUpgrade = new Oci.Database.DbSystemsUpgrade("test_db_systems_upgrade", new()
    {
        Action = dbSystemsUpgradeAction,
        DbSystemId = testDbSystem.Id,
        IsSnapshotRetentionDaysForceUpdated = dbSystemsUpgradeIsSnapshotRetentionDaysForceUpdated,
        NewGiVersion = dbSystemsUpgradeNewGiVersion,
        SnapshotRetentionPeriodInDays = dbSystemsUpgradeSnapshotRetentionPeriodInDays,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DbSystemsUpgrade;
import com.pulumi.oci.Database.DbSystemsUpgradeArgs;
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) {
        var testDbSystemsUpgrade = new DbSystemsUpgrade("testDbSystemsUpgrade", DbSystemsUpgradeArgs.builder()
            .action(dbSystemsUpgradeAction)
            .dbSystemId(testDbSystem.id())
            .isSnapshotRetentionDaysForceUpdated(dbSystemsUpgradeIsSnapshotRetentionDaysForceUpdated)
            .newGiVersion(dbSystemsUpgradeNewGiVersion)
            .snapshotRetentionPeriodInDays(dbSystemsUpgradeSnapshotRetentionPeriodInDays)
            .build());
    }
}
resources:
  testDbSystemsUpgrade:
    type: oci:Database:DbSystemsUpgrade
    name: test_db_systems_upgrade
    properties:
      action: ${dbSystemsUpgradeAction}
      dbSystemId: ${testDbSystem.id}
      isSnapshotRetentionDaysForceUpdated: ${dbSystemsUpgradeIsSnapshotRetentionDaysForceUpdated}
      newGiVersion: ${dbSystemsUpgradeNewGiVersion}
      snapshotRetentionPeriodInDays: ${dbSystemsUpgradeSnapshotRetentionPeriodInDays}
Create DbSystemsUpgrade Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DbSystemsUpgrade(name: string, args: DbSystemsUpgradeArgs, opts?: CustomResourceOptions);@overload
def DbSystemsUpgrade(resource_name: str,
                     args: DbSystemsUpgradeArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def DbSystemsUpgrade(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     action: Optional[str] = None,
                     db_system_id: Optional[str] = None,
                     is_snapshot_retention_days_force_updated: Optional[bool] = None,
                     new_gi_version: Optional[str] = None,
                     new_os_version: Optional[str] = None,
                     snapshot_retention_period_in_days: Optional[int] = None)func NewDbSystemsUpgrade(ctx *Context, name string, args DbSystemsUpgradeArgs, opts ...ResourceOption) (*DbSystemsUpgrade, error)public DbSystemsUpgrade(string name, DbSystemsUpgradeArgs args, CustomResourceOptions? opts = null)
public DbSystemsUpgrade(String name, DbSystemsUpgradeArgs args)
public DbSystemsUpgrade(String name, DbSystemsUpgradeArgs args, CustomResourceOptions options)
type: oci:Database:DbSystemsUpgrade
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DbSystemsUpgradeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DbSystemsUpgradeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DbSystemsUpgradeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DbSystemsUpgradeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DbSystemsUpgradeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dbSystemsUpgradeResource = new Oci.Database.DbSystemsUpgrade("dbSystemsUpgradeResource", new()
{
    Action = "string",
    DbSystemId = "string",
    IsSnapshotRetentionDaysForceUpdated = false,
    NewGiVersion = "string",
    NewOsVersion = "string",
    SnapshotRetentionPeriodInDays = 0,
});
example, err := database.NewDbSystemsUpgrade(ctx, "dbSystemsUpgradeResource", &database.DbSystemsUpgradeArgs{
	Action:                              pulumi.String("string"),
	DbSystemId:                          pulumi.String("string"),
	IsSnapshotRetentionDaysForceUpdated: pulumi.Bool(false),
	NewGiVersion:                        pulumi.String("string"),
	NewOsVersion:                        pulumi.String("string"),
	SnapshotRetentionPeriodInDays:       pulumi.Int(0),
})
var dbSystemsUpgradeResource = new DbSystemsUpgrade("dbSystemsUpgradeResource", DbSystemsUpgradeArgs.builder()
    .action("string")
    .dbSystemId("string")
    .isSnapshotRetentionDaysForceUpdated(false)
    .newGiVersion("string")
    .newOsVersion("string")
    .snapshotRetentionPeriodInDays(0)
    .build());
db_systems_upgrade_resource = oci.database.DbSystemsUpgrade("dbSystemsUpgradeResource",
    action="string",
    db_system_id="string",
    is_snapshot_retention_days_force_updated=False,
    new_gi_version="string",
    new_os_version="string",
    snapshot_retention_period_in_days=0)
const dbSystemsUpgradeResource = new oci.database.DbSystemsUpgrade("dbSystemsUpgradeResource", {
    action: "string",
    dbSystemId: "string",
    isSnapshotRetentionDaysForceUpdated: false,
    newGiVersion: "string",
    newOsVersion: "string",
    snapshotRetentionPeriodInDays: 0,
});
type: oci:Database:DbSystemsUpgrade
properties:
    action: string
    dbSystemId: string
    isSnapshotRetentionDaysForceUpdated: false
    newGiVersion: string
    newOsVersion: string
    snapshotRetentionPeriodInDays: 0
DbSystemsUpgrade Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DbSystemsUpgrade resource accepts the following input properties:
- Action string
- The operating system upgrade action.
- DbSystem stringId 
- The DB system OCID.
- IsSnapshot boolRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- NewGi stringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- NewOs stringVersion 
- SnapshotRetention intPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Action string
- The operating system upgrade action.
- DbSystem stringId 
- The DB system OCID.
- IsSnapshot boolRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- NewGi stringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- NewOs stringVersion 
- SnapshotRetention intPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- action String
- The operating system upgrade action.
- dbSystem StringId 
- The DB system OCID.
- isSnapshot BooleanRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- newGi StringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- newOs StringVersion 
- snapshotRetention IntegerPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- action string
- The operating system upgrade action.
- dbSystem stringId 
- The DB system OCID.
- isSnapshot booleanRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- newGi stringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- newOs stringVersion 
- snapshotRetention numberPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- action str
- The operating system upgrade action.
- db_system_ strid 
- The DB system OCID.
- is_snapshot_ boolretention_ days_ force_ updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- new_gi_ strversion 
- A valid Oracle Grid Infrastructure (GI) software version.
- new_os_ strversion 
- snapshot_retention_ intperiod_ in_ days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- action String
- The operating system upgrade action.
- dbSystem StringId 
- The DB system OCID.
- isSnapshot BooleanRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- newGi StringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- newOs StringVersion 
- snapshotRetention NumberPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Outputs
All input properties are implicitly available as output properties. Additionally, the DbSystemsUpgrade resource produces the following output properties:
- AvailabilityDomain string
- The name of the availability domain that the DB system is located in.
- BackupNetwork List<string>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- ClusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- CompartmentId string
- The OCID of the compartment.
- CpuCore intCount 
- The number of CPU cores enabled on the DB system.
- DataStorage intPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- DataStorage intSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- DatabaseEdition string
- The Oracle Database edition that applies to all the databases on the DB system.
- DbSystem List<DbOptions Systems Upgrade Db System Option> 
- The DB system options.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DiskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- DisplayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- Domain string
- The domain name for the DB system.
- FaultDomains List<string>
- List of the Fault Domains in which this DB system is provisioned.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Hostname string
- The hostname for the DB system.
- Id string
- The provider-assigned unique ID for this managed resource.
- IormConfig List<DbCaches Systems Upgrade Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort int
- The port number configured for the listener on the DB system.
- MaintenanceWindows List<DbSystems Upgrade Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- NsgIds List<string>
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- PointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- RecoStorage intSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanIp List<string>Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- SourceDb stringSystem Id 
- The OCID of the DB system.
- SparseDiskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- SshPublic List<string>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- The current state of the DB system.
- 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
- The name of the availability domain that the DB system is located in.
- BackupNetwork []stringNsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- ClusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- CompartmentId string
- The OCID of the compartment.
- CpuCore intCount 
- The number of CPU cores enabled on the DB system.
- DataStorage intPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- DataStorage intSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- DatabaseEdition string
- The Oracle Database edition that applies to all the databases on the DB system.
- DbSystem []DbOptions Systems Upgrade Db System Option 
- The DB system options.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DiskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- DisplayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- Domain string
- The domain name for the DB system.
- FaultDomains []string
- List of the Fault Domains in which this DB system is provisioned.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Hostname string
- The hostname for the DB system.
- Id string
- The provider-assigned unique ID for this managed resource.
- IormConfig []DbCaches Systems Upgrade Iorm Config Cach 
- The IORM settings of the Exadata DB system.
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort int
- The port number configured for the listener on the DB system.
- MaintenanceWindows []DbSystems Upgrade Maintenance Window 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- NsgIds []string
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- PointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- RecoStorage intSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanIp []stringIds 
- The OCID of the Single Client Access Name (SCAN) 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
 
- SourceDb stringSystem Id 
- The OCID of the DB system.
- SparseDiskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- SshPublic []stringKeys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- The current state of the DB system.
- 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
- The name of the availability domain that the DB system is located in.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName String
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId String
- The OCID of the compartment.
- cpuCore IntegerCount 
- The number of CPU cores enabled on the DB system.
- dataStorage IntegerPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- dataStorage IntegerSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- databaseEdition String
- The Oracle Database edition that applies to all the databases on the DB system.
- dbSystem List<DbOptions Systems Upgrade Db System Option> 
- The DB system options.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy String
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName String
- The user-friendly name for the DB system. The name does not have to be unique.
- domain String
- The domain name for the DB system.
- faultDomains List<String>
- List of the Fault Domains in which this DB system is provisioned.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname String
- The hostname for the DB system.
- id String
- The provider-assigned unique ID for this managed resource.
- iormConfig List<DbCaches Systems Upgrade Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort Integer
- The port number configured for the listener on the DB system.
- maintenanceWindows List<DbSystems Upgrade Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Integer
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds List<String>
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- pointIn StringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- recoStorage IntegerSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- sourceDb StringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup Boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- The current state of the DB system.
- 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
- The name of the availability domain that the DB system is located in.
- backupNetwork string[]Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId string
- The OCID of the compartment.
- cpuCore numberCount 
- The number of CPU cores enabled on the DB system.
- dataStorage numberPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- dataStorage numberSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- databaseEdition string
- The Oracle Database edition that applies to all the databases on the DB system.
- dbSystem DbOptions Systems Upgrade Db System Option[] 
- The DB system options.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- domain string
- The domain name for the DB system.
- faultDomains string[]
- List of the Fault Domains in which this DB system is provisioned.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname string
- The hostname for the DB system.
- id string
- The provider-assigned unique ID for this managed resource.
- iormConfig DbCaches Systems Upgrade Iorm Config Cach[] 
- The IORM settings of the Exadata DB system.
- kmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- lastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- lastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- listenerPort number
- The port number configured for the listener on the DB system.
- maintenanceWindows DbSystems Upgrade Maintenance Window[] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- nodeCount number
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds string[]
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- pointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- recoStorage numberSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp string[]Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- sourceDb stringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- sshPublic string[]Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state string
- The current state of the DB system.
- 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
- The name of the availability domain that the DB system is located in.
- backup_network_ Sequence[str]nsg_ ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup_subnet_ strid 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster_name str
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment_id str
- The OCID of the compartment.
- cpu_core_ intcount 
- The number of CPU cores enabled on the DB system.
- data_storage_ intpercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- data_storage_ intsize_ in_ gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- database_edition str
- The Oracle Database edition that applies to all the databases on the DB system.
- db_system_ Sequence[Dboptions Systems Upgrade Db System Option] 
- The DB system options.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk_redundancy str
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display_name str
- The user-friendly name for the DB system. The name does not have to be unique.
- domain str
- The domain name for the DB system.
- fault_domains Sequence[str]
- List of the Fault Domains in which this DB system is provisioned.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname str
- The hostname for the DB system.
- id str
- The provider-assigned unique ID for this managed resource.
- iorm_config_ Sequence[Dbcaches Systems Upgrade Iorm Config Cach] 
- The IORM settings of the Exadata DB system.
- kms_key_ strid 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- last_maintenance_ strrun_ id 
- The OCID of the last maintenance run.
- last_patch_ strhistory_ entry_ id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_model str
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle_details str
- Additional information about the current lifecycle state.
- listener_port int
- The port number configured for the listener on the DB system.
- maintenance_windows Sequence[DbSystems Upgrade Maintenance Window] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- next_maintenance_ strrun_ id 
- The OCID of the next maintenance run.
- node_count int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg_ids Sequence[str]
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- point_in_ strtime_ data_ disk_ clone_ timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- reco_storage_ intsize_ in_ gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scan_dns_ strname 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan_dns_ strrecord_ id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan_ip_ Sequence[str]ids 
- The OCID of the Single Client Access Name (SCAN) 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_db_ strsystem_ id 
- The OCID of the DB system.
- sparse_diskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- ssh_public_ Sequence[str]keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state str
- The current state of the DB system.
- 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
- The name of the availability domain that the DB system is located in.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName String
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId String
- The OCID of the compartment.
- cpuCore NumberCount 
- The number of CPU cores enabled on the DB system.
- dataStorage NumberPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- dataStorage NumberSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- databaseEdition String
- The Oracle Database edition that applies to all the databases on the DB system.
- dbSystem List<Property Map>Options 
- The DB system options.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy String
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName String
- The user-friendly name for the DB system. The name does not have to be unique.
- domain String
- The domain name for the DB system.
- faultDomains List<String>
- List of the Fault Domains in which this DB system is provisioned.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname String
- The hostname for the DB system.
- id String
- The provider-assigned unique ID for this managed resource.
- iormConfig List<Property Map>Caches 
- The IORM settings of the Exadata DB system.
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort Number
- The port number configured for the listener on the DB system.
- maintenanceWindows List<Property Map>
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Number
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds List<String>
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- pointIn StringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- recoStorage NumberSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- sourceDb StringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup Boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- The current state of the DB system.
- 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.
Look up Existing DbSystemsUpgrade Resource
Get an existing DbSystemsUpgrade resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DbSystemsUpgradeState, opts?: CustomResourceOptions): DbSystemsUpgrade@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action: Optional[str] = None,
        availability_domain: Optional[str] = None,
        backup_network_nsg_ids: Optional[Sequence[str]] = None,
        backup_subnet_id: Optional[str] = None,
        cluster_name: Optional[str] = None,
        compartment_id: Optional[str] = None,
        cpu_core_count: Optional[int] = None,
        data_storage_percentage: Optional[int] = None,
        data_storage_size_in_gb: Optional[int] = None,
        database_edition: Optional[str] = None,
        db_system_id: Optional[str] = None,
        db_system_options: Optional[Sequence[DbSystemsUpgradeDbSystemOptionArgs]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        disk_redundancy: Optional[str] = None,
        display_name: Optional[str] = None,
        domain: Optional[str] = None,
        fault_domains: Optional[Sequence[str]] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        hostname: Optional[str] = None,
        iorm_config_caches: Optional[Sequence[DbSystemsUpgradeIormConfigCachArgs]] = None,
        is_snapshot_retention_days_force_updated: Optional[bool] = None,
        kms_key_id: Optional[str] = None,
        last_maintenance_run_id: Optional[str] = None,
        last_patch_history_entry_id: Optional[str] = None,
        license_model: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        listener_port: Optional[int] = None,
        maintenance_windows: Optional[Sequence[DbSystemsUpgradeMaintenanceWindowArgs]] = None,
        new_gi_version: Optional[str] = None,
        new_os_version: Optional[str] = None,
        next_maintenance_run_id: Optional[str] = None,
        node_count: Optional[int] = None,
        nsg_ids: Optional[Sequence[str]] = None,
        point_in_time_data_disk_clone_timestamp: Optional[str] = None,
        reco_storage_size_in_gb: Optional[int] = None,
        scan_dns_name: Optional[str] = None,
        scan_dns_record_id: Optional[str] = None,
        scan_ip_ids: Optional[Sequence[str]] = None,
        shape: Optional[str] = None,
        snapshot_retention_period_in_days: Optional[int] = None,
        source_db_system_id: Optional[str] = None,
        sparse_diskgroup: Optional[bool] = None,
        ssh_public_keys: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        subnet_id: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None,
        version: Optional[str] = None,
        vip_ids: Optional[Sequence[str]] = None,
        zone_id: Optional[str] = None) -> DbSystemsUpgradefunc GetDbSystemsUpgrade(ctx *Context, name string, id IDInput, state *DbSystemsUpgradeState, opts ...ResourceOption) (*DbSystemsUpgrade, error)public static DbSystemsUpgrade Get(string name, Input<string> id, DbSystemsUpgradeState? state, CustomResourceOptions? opts = null)public static DbSystemsUpgrade get(String name, Output<String> id, DbSystemsUpgradeState state, CustomResourceOptions options)resources:  _:    type: oci:Database:DbSystemsUpgrade    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action string
- The operating system upgrade action.
- AvailabilityDomain string
- The name of the availability domain that the DB system is located in.
- BackupNetwork List<string>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- ClusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- CompartmentId string
- The OCID of the compartment.
- CpuCore intCount 
- The number of CPU cores enabled on the DB system.
- DataStorage intPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- DataStorage intSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- DatabaseEdition string
- The Oracle Database edition that applies to all the databases on the DB system.
- DbSystem stringId 
- The DB system OCID.
- DbSystem List<DbOptions Systems Upgrade Db System Option> 
- The DB system options.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DiskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- DisplayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- Domain string
- The domain name for the DB system.
- FaultDomains List<string>
- List of the Fault Domains in which this DB system is provisioned.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Hostname string
- The hostname for the DB system.
- IormConfig List<DbCaches Systems Upgrade Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- IsSnapshot boolRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort int
- The port number configured for the listener on the DB system.
- MaintenanceWindows List<DbSystems Upgrade Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- NewGi stringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- NewOs stringVersion 
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- NsgIds List<string>
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- PointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- RecoStorage intSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanIp List<string>Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- SnapshotRetention intPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- SourceDb stringSystem Id 
- The OCID of the DB system.
- SparseDiskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- SshPublic List<string>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- The current state of the DB system.
- 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.
- Action string
- The operating system upgrade action.
- AvailabilityDomain string
- The name of the availability domain that the DB system is located in.
- BackupNetwork []stringNsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- BackupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- ClusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- CompartmentId string
- The OCID of the compartment.
- CpuCore intCount 
- The number of CPU cores enabled on the DB system.
- DataStorage intPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- DataStorage intSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- DatabaseEdition string
- The Oracle Database edition that applies to all the databases on the DB system.
- DbSystem stringId 
- The DB system OCID.
- DbSystem []DbOptions Systems Upgrade Db System Option Args 
- The DB system options.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DiskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- DisplayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- Domain string
- The domain name for the DB system.
- FaultDomains []string
- List of the Fault Domains in which this DB system is provisioned.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- Hostname string
- The hostname for the DB system.
- IormConfig []DbCaches Systems Upgrade Iorm Config Cach Args 
- The IORM settings of the Exadata DB system.
- IsSnapshot boolRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- LicenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListenerPort int
- The port number configured for the listener on the DB system.
- MaintenanceWindows []DbSystems Upgrade Maintenance Window Args 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- NewGi stringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- NewOs stringVersion 
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- NsgIds []string
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- PointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- RecoStorage intSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- ScanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- ScanIp []stringIds 
- The OCID of the Single Client Access Name (SCAN) 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
 
- SnapshotRetention intPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- SourceDb stringSystem Id 
- The OCID of the DB system.
- SparseDiskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- SshPublic []stringKeys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- The current state of the DB system.
- 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.
- action String
- The operating system upgrade action.
- availabilityDomain String
- The name of the availability domain that the DB system is located in.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName String
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId String
- The OCID of the compartment.
- cpuCore IntegerCount 
- The number of CPU cores enabled on the DB system.
- dataStorage IntegerPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- dataStorage IntegerSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- databaseEdition String
- The Oracle Database edition that applies to all the databases on the DB system.
- dbSystem StringId 
- The DB system OCID.
- dbSystem List<DbOptions Systems Upgrade Db System Option> 
- The DB system options.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy String
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName String
- The user-friendly name for the DB system. The name does not have to be unique.
- domain String
- The domain name for the DB system.
- faultDomains List<String>
- List of the Fault Domains in which this DB system is provisioned.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname String
- The hostname for the DB system.
- iormConfig List<DbCaches Systems Upgrade Iorm Config Cach> 
- The IORM settings of the Exadata DB system.
- isSnapshot BooleanRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort Integer
- The port number configured for the listener on the DB system.
- maintenanceWindows List<DbSystems Upgrade Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- newGi StringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- newOs StringVersion 
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Integer
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds List<String>
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- pointIn StringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- recoStorage IntegerSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- snapshotRetention IntegerPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- sourceDb StringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup Boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- The current state of the DB system.
- 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.
- action string
- The operating system upgrade action.
- availabilityDomain string
- The name of the availability domain that the DB system is located in.
- backupNetwork string[]Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet stringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName string
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId string
- The OCID of the compartment.
- cpuCore numberCount 
- The number of CPU cores enabled on the DB system.
- dataStorage numberPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- dataStorage numberSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- databaseEdition string
- The Oracle Database edition that applies to all the databases on the DB system.
- dbSystem stringId 
- The DB system OCID.
- dbSystem DbOptions Systems Upgrade Db System Option[] 
- The DB system options.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy string
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName string
- The user-friendly name for the DB system. The name does not have to be unique.
- domain string
- The domain name for the DB system.
- faultDomains string[]
- List of the Fault Domains in which this DB system is provisioned.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname string
- The hostname for the DB system.
- iormConfig DbCaches Systems Upgrade Iorm Config Cach[] 
- The IORM settings of the Exadata DB system.
- isSnapshot booleanRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- kmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- lastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- lastPatch stringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel string
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- listenerPort number
- The port number configured for the listener on the DB system.
- maintenanceWindows DbSystems Upgrade Maintenance Window[] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- newGi stringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- newOs stringVersion 
- nextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- nodeCount number
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds string[]
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- pointIn stringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- recoStorage numberSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns stringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns stringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp string[]Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- snapshotRetention numberPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- sourceDb stringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- sshPublic string[]Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state string
- The current state of the DB system.
- 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.
- action str
- The operating system upgrade action.
- availability_domain str
- The name of the availability domain that the DB system is located in.
- backup_network_ Sequence[str]nsg_ ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup_subnet_ strid 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster_name str
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment_id str
- The OCID of the compartment.
- cpu_core_ intcount 
- The number of CPU cores enabled on the DB system.
- data_storage_ intpercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- data_storage_ intsize_ in_ gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- database_edition str
- The Oracle Database edition that applies to all the databases on the DB system.
- db_system_ strid 
- The DB system OCID.
- db_system_ Sequence[Dboptions Systems Upgrade Db System Option Args] 
- The DB system options.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk_redundancy str
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display_name str
- The user-friendly name for the DB system. The name does not have to be unique.
- domain str
- The domain name for the DB system.
- fault_domains Sequence[str]
- List of the Fault Domains in which this DB system is provisioned.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname str
- The hostname for the DB system.
- iorm_config_ Sequence[Dbcaches Systems Upgrade Iorm Config Cach Args] 
- The IORM settings of the Exadata DB system.
- is_snapshot_ boolretention_ days_ force_ updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- kms_key_ strid 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- last_maintenance_ strrun_ id 
- The OCID of the last maintenance run.
- last_patch_ strhistory_ entry_ id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_model str
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle_details str
- Additional information about the current lifecycle state.
- listener_port int
- The port number configured for the listener on the DB system.
- maintenance_windows Sequence[DbSystems Upgrade Maintenance Window Args] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- new_gi_ strversion 
- A valid Oracle Grid Infrastructure (GI) software version.
- new_os_ strversion 
- next_maintenance_ strrun_ id 
- The OCID of the next maintenance run.
- node_count int
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg_ids Sequence[str]
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- point_in_ strtime_ data_ disk_ clone_ timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- reco_storage_ intsize_ in_ gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scan_dns_ strname 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan_dns_ strrecord_ id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan_ip_ Sequence[str]ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- snapshot_retention_ intperiod_ in_ days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- source_db_ strsystem_ id 
- The OCID of the DB system.
- sparse_diskgroup bool
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- ssh_public_ Sequence[str]keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state str
- The current state of the DB system.
- 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.
- action String
- The operating system upgrade action.
- availabilityDomain String
- The name of the availability domain that the DB system is located in.
- backupNetwork List<String>Nsg Ids 
- A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backupSubnet StringId 
- The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- clusterName String
- The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartmentId String
- The OCID of the compartment.
- cpuCore NumberCount 
- The number of CPU cores enabled on the DB system.
- dataStorage NumberPercentage 
- The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems.
- dataStorage NumberSize In Gb 
- The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems.
- databaseEdition String
- The Oracle Database edition that applies to all the databases on the DB system.
- dbSystem StringId 
- The DB system OCID.
- dbSystem List<Property Map>Options 
- The DB system options.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- diskRedundancy String
- The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- displayName String
- The user-friendly name for the DB system. The name does not have to be unique.
- domain String
- The domain name for the DB system.
- faultDomains List<String>
- List of the Fault Domains in which this DB system is provisioned.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- hostname String
- The hostname for the DB system.
- iormConfig List<Property Map>Caches 
- The IORM settings of the Exadata DB system.
- isSnapshot BooleanRetention Days Force Updated 
- If true, rollback time is updated even if operating system upgrade history contains errors.
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lastPatch StringHistory Entry Id 
- The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- licenseModel String
- The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listenerPort Number
- The port number configured for the listener on the DB system.
- maintenanceWindows List<Property Map>
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- newGi StringVersion 
- A valid Oracle Grid Infrastructure (GI) software version.
- newOs StringVersion 
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Number
- The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsgIds List<String>
- A list of the OCIDs of the network security groups (NSGs) that this resource 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. NsgIds restrictions:- Autonomous Databases with private access require at least 1 Network Security Group (NSG). The nsgIds array cannot be empty.
 
- pointIn StringTime Data Disk Clone Timestamp 
- The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- recoStorage NumberSize In Gb 
- The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
- scanDns StringName 
- The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanDns StringRecord Id 
- The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scanIp List<String>Ids 
- The OCID of the Single Client Access Name (SCAN) 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
 
- snapshotRetention NumberPeriod In Days 
- The retention period, in days, for the snapshot that allows you to perform a rollback of the upgrade operation. After this number of days passes, you cannot roll back the upgrade. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- sourceDb StringSystem Id 
- The OCID of the DB system.
- sparseDiskgroup Boolean
- True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured.
- sshPublic List<String>Keys 
- The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- The current state of the DB system.
- 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.
Supporting Types
DbSystemsUpgradeDbSystemOption, DbSystemsUpgradeDbSystemOptionArgs            
- 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
DbSystemsUpgradeIormConfigCach, DbSystemsUpgradeIormConfigCachArgs            
- DbPlans List<DbSystems Upgrade Iorm Config Cach Db Plan> 
- An array of IORM settings for all the database in the Exadata DB system.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is AUTO.
- State string
- The current state of the DB system.
- DbPlans []DbSystems Upgrade Iorm Config Cach Db Plan 
- An array of IORM settings for all the database in the Exadata DB system.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is AUTO.
- State string
- The current state of the DB system.
- dbPlans List<DbSystems Upgrade Iorm Config Cach Db Plan> 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is AUTO.
- state String
- The current state of the DB system.
- dbPlans DbSystems Upgrade Iorm Config Cach Db Plan[] 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- objective string
- The current value for the IORM objective. The default is AUTO.
- state string
- The current state of the DB system.
- db_plans Sequence[DbSystems Upgrade Iorm Config Cach Db Plan] 
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycle_details str
- Additional information about the current lifecycle state.
- objective str
- The current value for the IORM objective. The default is AUTO.
- state str
- The current state of the DB system.
- dbPlans List<Property Map>
- An array of IORM settings for all the database in the Exadata DB system.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is AUTO.
- state String
- The current state of the DB system.
DbSystemsUpgradeIormConfigCachDbPlan, DbSystemsUpgradeIormConfigCachDbPlanArgs                
- DbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- FlashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- DbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- FlashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- dbName String
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache StringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Integer
- The relative priority of this database.
- dbName string
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache stringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- number
- The relative priority of this database.
- db_name str
- The database name. For the default DbPlan, thedbNameisdefault.
- flash_cache_ strlimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- dbName String
- The database name. For the default DbPlan, thedbNameisdefault.
- flashCache StringLimit 
- The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Number
- The relative priority of this database.
DbSystemsUpgradeMaintenanceWindow, DbSystemsUpgradeMaintenanceWindowArgs          
- DaysOf List<DbWeeks Systems Upgrade Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- LeadTime intIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<DbSystems Upgrade Maintenance Window Month> 
- Months during the year when maintenance should be performed.
- Preference string
- The maintenance window scheduling preference.
- WeeksOf List<int>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- DaysOf []DbWeeks Systems Upgrade Maintenance Window Days Of Week 
- Days during the week when maintenance should be performed.
- HoursOf []intDays 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- LeadTime intIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]DbSystems Upgrade Maintenance Window Month 
- Months during the year when maintenance should be performed.
- Preference string
- The maintenance window scheduling preference.
- WeeksOf []intMonths 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- daysOf List<DbWeeks Systems Upgrade Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- leadTime IntegerIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
List<DbSystems Upgrade Maintenance Window Month> 
- Months during the year when maintenance should be performed.
- preference String
- The maintenance window scheduling preference.
- weeksOf List<Integer>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- daysOf DbWeeks Systems Upgrade Maintenance Window Days Of Week[] 
- Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- leadTime numberIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
DbSystems Upgrade Maintenance Window Month[] 
- Months during the year when maintenance should be performed.
- preference string
- The maintenance window scheduling preference.
- weeksOf number[]Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- days_of_ Sequence[Dbweeks Systems Upgrade Maintenance Window Days Of Week] 
- Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- lead_time_ intin_ weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[DbSystems Upgrade Maintenance Window Month] 
- Months during the year when maintenance should be performed.
- preference str
- The maintenance window scheduling preference.
- weeks_of_ Sequence[int]months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- daysOf List<Property Map>Weeks 
- Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
 
- leadTime NumberIn Weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- Months during the year when maintenance should be performed.
- preference String
- The maintenance window scheduling preference.
- weeksOf List<Number>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
DbSystemsUpgradeMaintenanceWindowDaysOfWeek, DbSystemsUpgradeMaintenanceWindowDaysOfWeekArgs                
- 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.
DbSystemsUpgradeMaintenanceWindowMonth, DbSystemsUpgradeMaintenanceWindowMonthArgs            
- 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.
Import
Import is not supported for this resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.