oci.Database.getDbSystems
Explore with Pulumi AI
This data source provides the list of Db Systems in Oracle Cloud Infrastructure Database service.
Lists the DB systems in the specified compartment. You can specify a backupId
to list only the DB systems that support creating a database using this backup in this compartment.
Note: Deprecated for Exadata Cloud Service systems. Use the new resource model APIs instead.
For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs for details on converting existing Exadata DB systems to the new resource model.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDbSystems = oci.Database.getDbSystems({
compartmentId: compartmentId,
availabilityDomain: dbSystemAvailabilityDomain,
backupId: testBackup.id,
displayName: dbSystemDisplayName,
state: dbSystemState,
});
import pulumi
import pulumi_oci as oci
test_db_systems = oci.Database.get_db_systems(compartment_id=compartment_id,
availability_domain=db_system_availability_domain,
backup_id=test_backup["id"],
display_name=db_system_display_name,
state=db_system_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.GetDbSystems(ctx, &database.GetDbSystemsArgs{
CompartmentId: compartmentId,
AvailabilityDomain: pulumi.StringRef(dbSystemAvailabilityDomain),
BackupId: pulumi.StringRef(testBackup.Id),
DisplayName: pulumi.StringRef(dbSystemDisplayName),
State: pulumi.StringRef(dbSystemState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDbSystems = Oci.Database.GetDbSystems.Invoke(new()
{
CompartmentId = compartmentId,
AvailabilityDomain = dbSystemAvailabilityDomain,
BackupId = testBackup.Id,
DisplayName = dbSystemDisplayName,
State = dbSystemState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetDbSystemsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testDbSystems = DatabaseFunctions.getDbSystems(GetDbSystemsArgs.builder()
.compartmentId(compartmentId)
.availabilityDomain(dbSystemAvailabilityDomain)
.backupId(testBackup.id())
.displayName(dbSystemDisplayName)
.state(dbSystemState)
.build());
}
}
variables:
testDbSystems:
fn::invoke:
Function: oci:Database:getDbSystems
Arguments:
compartmentId: ${compartmentId}
availabilityDomain: ${dbSystemAvailabilityDomain}
backupId: ${testBackup.id}
displayName: ${dbSystemDisplayName}
state: ${dbSystemState}
Using getDbSystems
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDbSystems(args: GetDbSystemsArgs, opts?: InvokeOptions): Promise<GetDbSystemsResult>
function getDbSystemsOutput(args: GetDbSystemsOutputArgs, opts?: InvokeOptions): Output<GetDbSystemsResult>
def get_db_systems(availability_domain: Optional[str] = None,
backup_id: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_database.GetDbSystemsFilter]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbSystemsResult
def get_db_systems_output(availability_domain: Optional[pulumi.Input[str]] = None,
backup_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetDbSystemsFilterArgs]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbSystemsResult]
func GetDbSystems(ctx *Context, args *GetDbSystemsArgs, opts ...InvokeOption) (*GetDbSystemsResult, error)
func GetDbSystemsOutput(ctx *Context, args *GetDbSystemsOutputArgs, opts ...InvokeOption) GetDbSystemsResultOutput
> Note: This function is named GetDbSystems
in the Go SDK.
public static class GetDbSystems
{
public static Task<GetDbSystemsResult> InvokeAsync(GetDbSystemsArgs args, InvokeOptions? opts = null)
public static Output<GetDbSystemsResult> Invoke(GetDbSystemsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDbSystemsResult> getDbSystems(GetDbSystemsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Database/getDbSystems:getDbSystems
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The compartment OCID.
- Availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- Backup
Id string - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
List<Get
Db Systems Filter> - State string
- A filter to return only resources that match the given lifecycle state exactly.
- Compartment
Id string - The compartment OCID.
- Availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- Backup
Id string - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
[]Get
Db Systems Filter - State string
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id String - The compartment OCID.
- availability
Domain String - A filter to return only resources that match the given availability domain exactly.
- backup
Id String - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
List<Get
Db Systems Filter> - state String
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id string - The compartment OCID.
- availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- backup
Id string - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Get
Db Systems Filter[] - state string
- A filter to return only resources that match the given lifecycle state exactly.
- compartment_
id str - The compartment OCID.
- availability_
domain str - A filter to return only resources that match the given availability domain exactly.
- backup_
id str - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Sequence[database.
Get Db Systems Filter] - state str
- A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id String - The compartment OCID.
- availability
Domain String - A filter to return only resources that match the given availability domain exactly.
- backup
Id String - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters List<Property Map>
- state String
- A filter to return only resources that match the given lifecycle state exactly.
getDbSystems Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment.
- Db
Systems List<GetDb Systems Db System> - The list of db_systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- Availability
Domain string - The name of the availability domain that the DB system is located in.
- Backup
Id string - Display
Name string - The user-friendly name for the DB system. The name does not have to be unique.
- Filters
List<Get
Db Systems Filter> - State string
- The current state of the DB system.
- Compartment
Id string - The OCID of the compartment.
- Db
Systems []GetDb Systems Db System - The list of db_systems.
- Id string
- The provider-assigned unique ID for this managed resource.
- Availability
Domain string - The name of the availability domain that the DB system is located in.
- Backup
Id string - Display
Name string - The user-friendly name for the DB system. The name does not have to be unique.
- Filters
[]Get
Db Systems Filter - State string
- The current state of the DB system.
- compartment
Id String - The OCID of the compartment.
- db
Systems List<GetDb Systems Db System> - The list of db_systems.
- id String
- The provider-assigned unique ID for this managed resource.
- availability
Domain String - The name of the availability domain that the DB system is located in.
- backup
Id String - display
Name String - The user-friendly name for the DB system. The name does not have to be unique.
- filters
List<Get
Db Systems Filter> - state String
- The current state of the DB system.
- compartment
Id string - The OCID of the compartment.
- db
Systems GetDb Systems Db System[] - The list of db_systems.
- id string
- The provider-assigned unique ID for this managed resource.
- availability
Domain string - The name of the availability domain that the DB system is located in.
- backup
Id string - display
Name string - The user-friendly name for the DB system. The name does not have to be unique.
- filters
Get
Db Systems Filter[] - state string
- The current state of the DB system.
- compartment_
id str - The OCID of the compartment.
- db_
systems Sequence[database.Get Db Systems Db System] - The list of db_systems.
- id str
- The provider-assigned unique ID for this managed resource.
- availability_
domain str - The name of the availability domain that the DB system is located in.
- backup_
id str - display_
name str - The user-friendly name for the DB system. The name does not have to be unique.
- filters
Sequence[database.
Get Db Systems Filter] - state str
- The current state of the DB system.
- compartment
Id String - The OCID of the compartment.
- db
Systems List<Property Map> - The list of db_systems.
- id String
- The provider-assigned unique ID for this managed resource.
- availability
Domain String - The name of the availability domain that the DB system is located in.
- backup
Id String - display
Name String - The user-friendly name for the DB system. The name does not have to be unique.
- filters List<Property Map>
- state String
- The current state of the DB system.
Supporting Types
GetDbSystemsDbSystem
- Availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- Backup
Network 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.
- Backup
Subnet stringId - The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- Cluster
Name 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.
- Compartment
Id string - The compartment OCID.
- Cpu
Core intCount - The number of CPU cores enabled on the DB system.
- Data
Collection List<GetOptions Db Systems Db System Data Collection Option> - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage intPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- Data
Storage intSize In Gb - The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- Database
Edition string - The Oracle Database edition that applies to all the databases on the DB system.
- Db
Homes List<GetDb Systems Db System Db Home> - Db
System List<GetOptions Db Systems Db System Db System Option> - The DB system options.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Disk
Redundancy string - The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain string
- The domain name for the DB system.
- Fault
Domains List<string> - List of the Fault Domains in which this DB system is provisioned.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Hostname string
- The hostname for the DB system.
- Id string
- The OCID of the DB system.
- Iorm
Config List<GetCaches Db Systems Db System Iorm Config Cach> - Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port int - The port number configured for the listener on the DB system.
- Maintenance
Window List<GetDetails Db Systems Db System Maintenance Window Detail> - Maintenance
Windows List<GetDb Systems Db System Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Memory
Size intIn Gbs - Memory allocated to the DB system, in gigabytes.
- Next
Maintenance stringRun 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 List<string> - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Os
Version string - The most recent OS Patch Version applied on the DB system.
- Point
In 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.
- Private
Ip string - 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 stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- Scan
Ip 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
- Source string
- Source
Db stringSystem Id - The OCID of the DB system.
- Sparse
Diskgroup bool - True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- Ssh
Public List<string>Keys - The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Storage
Volume stringPerformance Mode - The block storage volume performance level. Valid values are
BALANCED
andHIGH_PERFORMANCE
. See Block Volume Performance for more information. - Subnet
Id string - The OCID of the subnet the DB system is associated with.
- Time
Created string - The date and time the DB system was created.
- Time
Zone 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.
- Vip
Ids 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.
- Zone
Id string - The OCID of the zone the DB system is associated with.
- Availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- Backup
Network []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.
- Backup
Subnet stringId - The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- Cluster
Name 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.
- Compartment
Id string - The compartment OCID.
- Cpu
Core intCount - The number of CPU cores enabled on the DB system.
- Data
Collection []GetOptions Db Systems Db System Data Collection Option - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage intPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- Data
Storage intSize In Gb - The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- Database
Edition string - The Oracle Database edition that applies to all the databases on the DB system.
- Db
Homes []GetDb Systems Db System Db Home - Db
System []GetOptions Db Systems Db System Db System Option - The DB system options.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Disk
Redundancy string - The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Domain string
- The domain name for the DB system.
- Fault
Domains []string - List of the Fault Domains in which this DB system is provisioned.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Hostname string
- The hostname for the DB system.
- Id string
- The OCID of the DB system.
- Iorm
Config []GetCaches Db Systems Db System Iorm Config Cach - Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - Last
Maintenance stringRun Id - The OCID of the last maintenance run.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port int - The port number configured for the listener on the DB system.
- Maintenance
Window []GetDetails Db Systems Db System Maintenance Window Detail - Maintenance
Windows []GetDb Systems Db System Maintenance Window - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- Memory
Size intIn Gbs - Memory allocated to the DB system, in gigabytes.
- Next
Maintenance stringRun 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 []string - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Os
Version string - The most recent OS Patch Version applied on the DB system.
- Point
In 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.
- Private
Ip string - 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 stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- Scan
Ip []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
- Source string
- Source
Db stringSystem Id - The OCID of the DB system.
- Sparse
Diskgroup bool - True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- Ssh
Public []stringKeys - The public key portion of one or more key pairs used for SSH access to the DB system.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Storage
Volume stringPerformance Mode - The block storage volume performance level. Valid values are
BALANCED
andHIGH_PERFORMANCE
. See Block Volume Performance for more information. - Subnet
Id string - The OCID of the subnet the DB system is associated with.
- Time
Created string - The date and time the DB system was created.
- Time
Zone 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.
- Vip
Ids []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.
- Zone
Id string - The OCID of the zone the DB system is associated with.
- availability
Domain String - A filter to return only resources that match the given availability domain exactly.
- backup
Network 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.
- backup
Subnet StringId - The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster
Name 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.
- compartment
Id String - The compartment OCID.
- cpu
Core IntegerCount - The number of CPU cores enabled on the DB system.
- data
Collection List<GetOptions Db Systems Db System Data Collection Option> - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage IntegerPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- data
Storage IntegerSize In Gb - The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- database
Edition String - The Oracle Database edition that applies to all the databases on the DB system.
- db
Homes List<GetDb Systems Db System Db Home> - db
System List<GetOptions Db Systems Db System Db System Option> - The DB system options.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk
Redundancy String - The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain String
- The domain name for the DB system.
- fault
Domains List<String> - List of the Fault Domains in which this DB system is provisioned.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname String
- The hostname for the DB system.
- id String
- The OCID of the DB system.
- iorm
Config List<GetCaches Db Systems Db System Iorm Config Cach> - kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - last
Maintenance StringRun Id - The OCID of the last maintenance run.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port Integer - The port number configured for the listener on the DB system.
- maintenance
Window List<GetDetails Db Systems Db System Maintenance Window Detail> - maintenance
Windows List<GetDb Systems Db System Maintenance Window> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory
Size IntegerIn Gbs - Memory allocated to the DB system, in gigabytes.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- node
Count Integer - The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg
Ids List<String> - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- os
Version String - The most recent OS Patch Version applied on the DB system.
- point
In 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.
- private
Ip String - reco
Storage 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.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan
Ip 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
- source String
- source
Db StringSystem Id - The OCID of the DB system.
- sparse
Diskgroup Boolean - True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- ssh
Public List<String>Keys - The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- storage
Volume StringPerformance Mode - The block storage volume performance level. Valid values are
BALANCED
andHIGH_PERFORMANCE
. See Block Volume Performance for more information. - subnet
Id String - The OCID of the subnet the DB system is associated with.
- time
Created String - The date and time the DB system was created.
- time
Zone 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.
- vip
Ids 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.
- zone
Id String - The OCID of the zone the DB system is associated with.
- availability
Domain string - A filter to return only resources that match the given availability domain exactly.
- backup
Network 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.
- backup
Subnet stringId - The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster
Name 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.
- compartment
Id string - The compartment OCID.
- cpu
Core numberCount - The number of CPU cores enabled on the DB system.
- data
Collection GetOptions Db Systems Db System Data Collection Option[] - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage numberPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- data
Storage numberSize In Gb - The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- database
Edition string - The Oracle Database edition that applies to all the databases on the DB system.
- db
Homes GetDb Systems Db System Db Home[] - db
System GetOptions Db Systems Db System Db System Option[] - The DB system options.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk
Redundancy string - The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain string
- The domain name for the DB system.
- fault
Domains string[] - List of the Fault Domains in which this DB system is provisioned.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname string
- The hostname for the DB system.
- id string
- The OCID of the DB system.
- iorm
Config GetCaches Db Systems Db System Iorm Config Cach[] - kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key stringVersion Id - last
Maintenance stringRun Id - The OCID of the last maintenance run.
- last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model string - The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle
Details string - Additional information about the current lifecycle state.
- listener
Port number - The port number configured for the listener on the DB system.
- maintenance
Window GetDetails Db Systems Db System Maintenance Window Detail[] - maintenance
Windows GetDb Systems Db System Maintenance Window[] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory
Size numberIn Gbs - Memory allocated to the DB system, in gigabytes.
- next
Maintenance stringRun Id - The OCID of the next maintenance run.
- node
Count number - The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg
Ids string[] - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- os
Version string - The most recent OS Patch Version applied on the DB system.
- point
In 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.
- private
Ip string - reco
Storage 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.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan
Ip 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
- source string
- source
Db stringSystem Id - The OCID of the DB system.
- sparse
Diskgroup boolean - True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- ssh
Public string[]Keys - The public key portion of one or more key pairs used for SSH access to the DB system.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- storage
Volume stringPerformance Mode - The block storage volume performance level. Valid values are
BALANCED
andHIGH_PERFORMANCE
. See Block Volume Performance for more information. - subnet
Id string - The OCID of the subnet the DB system is associated with.
- time
Created string - The date and time the DB system was created.
- time
Zone 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.
- vip
Ids 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.
- zone
Id string - The OCID of the zone the DB system is associated with.
- availability_
domain str - A filter to return only resources that match the given availability domain exactly.
- backup_
network_ Sequence[str]nsg_ ids - A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup_
subnet_ strid - The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster_
name str - The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment_
id str - The compartment OCID.
- cpu_
core_ intcount - The number of CPU cores enabled on the DB system.
- data_
collection_ Sequence[database.options Get Db Systems Db System Data Collection Option] - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_
storage_ intpercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- data_
storage_ intsize_ in_ gb - The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- database_
edition str - The Oracle Database edition that applies to all the databases on the DB system.
- db_
homes Sequence[database.Get Db Systems Db System Db Home] - db_
system_ Sequence[database.options Get Db Systems Db System Db System Option] - The DB system options.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk_
redundancy str - The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain str
- The domain name for the DB system.
- fault_
domains Sequence[str] - List of the Fault Domains in which this DB system is provisioned.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname str
- The hostname for the DB system.
- id str
- The OCID of the DB system.
- iorm_
config_ Sequence[database.caches Get Db Systems Db System Iorm Config Cach] - kms_
key_ strid - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_
key_ strversion_ id - last_
maintenance_ strrun_ id - The OCID of the last maintenance run.
- last_
patch_ strhistory_ entry_ id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_
model str - The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle_
details str - Additional information about the current lifecycle state.
- listener_
port int - The port number configured for the listener on the DB system.
- maintenance_
window_ Sequence[database.details Get Db Systems Db System Maintenance Window Detail] - maintenance_
windows Sequence[database.Get Db Systems Db System Maintenance Window] - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory_
size_ intin_ gbs - Memory allocated to the DB system, in gigabytes.
- next_
maintenance_ strrun_ id - The OCID of the next maintenance run.
- node_
count int - The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg_
ids Sequence[str] - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- os_
version str - The most recent OS Patch Version applied on the DB system.
- point_
in_ strtime_ data_ disk_ clone_ timestamp - The point in time for a cloned database system when the data disks were cloned from the source database system, as described in RFC 3339.
- private_
ip str - 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 str
- source_
db_ strsystem_ id - The OCID of the DB system.
- sparse_
diskgroup bool - True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- ssh_
public_ Sequence[str]keys - The public key portion of one or more key pairs used for SSH access to the DB system.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- storage_
volume_ strperformance_ mode - The block storage volume performance level. Valid values are
BALANCED
andHIGH_PERFORMANCE
. See Block Volume Performance for more information. - subnet_
id str - The OCID of the subnet the DB system is associated with.
- time_
created str - The date and time the DB system was created.
- time_
zone str - The time zone of the DB system. For details, see DB System Time Zones.
- version str
- The Oracle Database version of the DB system.
- vip_
ids Sequence[str] - The OCID of the virtual IP (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone_
id str - The OCID of the zone the DB system is associated with.
- availability
Domain String - A filter to return only resources that match the given availability domain exactly.
- backup
Network 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.
- backup
Subnet StringId - The OCID of the backup network subnet the DB system is associated with. Applicable only to Exadata DB systems.
- cluster
Name 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.
- compartment
Id String - The compartment OCID.
- cpu
Core NumberCount - The number of CPU cores enabled on the DB system.
- data
Collection List<Property Map>Options - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage NumberPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
- data
Storage NumberSize In Gb - The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
- database
Edition String - The Oracle Database edition that applies to all the databases on the DB system.
- db
Homes List<Property Map> - db
System 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.
- disk
Redundancy String - The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- domain String
- The domain name for the DB system.
- fault
Domains List<String> - List of the Fault Domains in which this DB system is provisioned.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- hostname String
- The hostname for the DB system.
- id String
- The OCID of the DB system.
- iorm
Config List<Property Map>Caches - kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - last
Maintenance StringRun Id - The OCID of the last maintenance run.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - The Oracle license model that applies to all the databases on the DB system. The default is LICENSE_INCLUDED.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port Number - The port number configured for the listener on the DB system.
- maintenance
Window List<Property Map>Details - maintenance
Windows List<Property Map> - The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory
Size NumberIn Gbs - Memory allocated to the DB system, in gigabytes.
- next
Maintenance StringRun Id - The OCID of the next maintenance run.
- node
Count Number - The number of nodes in the DB system. For RAC DB systems, the value is greater than 1.
- nsg
Ids List<String> - The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- os
Version String - The most recent OS Patch Version applied on the DB system.
- point
In 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.
- private
Ip String - reco
Storage 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.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the DB system.
- scan
Ip 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
- source String
- source
Db StringSystem Id - The OCID of the DB system.
- sparse
Diskgroup Boolean - True, if Sparse Diskgroup is configured for Exadata dbsystem, False, if Sparse diskgroup was not configured. Only applied for Exadata shape.
- ssh
Public List<String>Keys - The public key portion of one or more key pairs used for SSH access to the DB system.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- storage
Volume StringPerformance Mode - The block storage volume performance level. Valid values are
BALANCED
andHIGH_PERFORMANCE
. See Block Volume Performance for more information. - subnet
Id String - The OCID of the subnet the DB system is associated with.
- time
Created String - The date and time the DB system was created.
- time
Zone 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.
- vip
Ids 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.
- zone
Id String - The OCID of the zone the DB system is associated with.
GetDbSystemsDbSystemDataCollectionOption
- Is
Diagnostics boolEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - Is
Health boolMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - Is
Incident boolLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- Is
Diagnostics boolEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - Is
Health boolMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - Is
Incident boolLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics BooleanEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health BooleanMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident BooleanLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics booleanEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health booleanMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident booleanLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is_
diagnostics_ boolevents_ enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is_
health_ boolmonitoring_ enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is_
incident_ boollogs_ enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics BooleanEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health BooleanMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident BooleanLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
GetDbSystemsDbSystemDbHome
- Create
Async bool - Database
Software stringImage Id - Databases
List<Get
Db Systems Db System Db Home Database> - Db
Home stringLocation - Db
Version string - Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the DB system.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Time
Created string - The date and time the DB system was created.
- Create
Async bool - Database
Software stringImage Id - Databases
[]Get
Db Systems Db System Db Home Database - Db
Home stringLocation - Db
Version string - map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the DB system.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Time
Created string - The date and time the DB system was created.
- create
Async Boolean - database
Software StringImage Id - databases
List<Get
Db Systems Db System Db Home> - db
Home StringLocation - db
Version String - Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the DB system.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- time
Created String - The date and time the DB system was created.
- create
Async boolean - database
Software stringImage Id - databases
Get
Db Systems Db System Db Home Database[] - db
Home stringLocation - db
Version string - {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id string
- The OCID of the DB system.
- last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle
Details string - Additional information about the current lifecycle state.
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- time
Created string - The date and time the DB system was created.
- create_
async bool - database_
software_ strimage_ id - databases
Sequence[database.
Get Db Systems Db System Db Home Database] - db_
home_ strlocation - db_
version str - Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name str - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id str
- The OCID of the DB system.
- last_
patch_ strhistory_ entry_ id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle_
details str - Additional information about the current lifecycle state.
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- time_
created str - The date and time the DB system was created.
- create
Async Boolean - database
Software StringImage Id - databases List<Property Map>
- db
Home StringLocation - db
Version String - Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the DB system.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- time
Created String - The date and time the DB system was created.
GetDbSystemsDbSystemDbHomeDatabase
- Admin
Password string - Backup
Id string - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- Backup
Tde stringPassword - Character
Set string - Connection
Strings List<GetDb Systems Db System Db Home Database Connection String> - Database
Id string - Database
Software stringImage Id - Db
Backup List<GetConfigs Db Systems Db System Db Home Database Db Backup Config> - Db
Domain string - Db
Name string - Db
Unique stringName - Db
Workload string - Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the DB system.
- Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - Lifecycle
Details string - Additional information about the current lifecycle state.
- Ncharacter
Set string - Pdb
Name string - Pluggable
Databases List<string> - State string
- A filter to return only resources that match the given lifecycle state exactly.
- Tde
Wallet stringPassword - Time
Created string - The date and time the DB system was created.
- Time
Stamp stringFor Point In Time Recovery - Vault
Id string
- Admin
Password string - Backup
Id string - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- Backup
Tde stringPassword - Character
Set string - Connection
Strings []GetDb Systems Db System Db Home Database Connection String - Database
Id string - Database
Software stringImage Id - Db
Backup []GetConfigs Db Systems Db System Db Home Database Db Backup Config - Db
Domain string - Db
Name string - Db
Unique stringName - Db
Workload string - map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the DB system.
- Kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringVersion Id - Lifecycle
Details string - Additional information about the current lifecycle state.
- Ncharacter
Set string - Pdb
Name string - Pluggable
Databases []string - State string
- A filter to return only resources that match the given lifecycle state exactly.
- Tde
Wallet stringPassword - Time
Created string - The date and time the DB system was created.
- Time
Stamp stringFor Point In Time Recovery - Vault
Id string
- admin
Password String - backup
Id String - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backup
Tde StringPassword - character
Set String - connection
Strings List<GetDb Systems Db System Db Home Connection String> - database
Id String - database
Software StringImage Id - db
Backup List<GetConfigs Db Systems Db System Db Home Db Backup Config> - db
Domain String - db
Name String - db
Unique StringName - db
Workload String - Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the DB system.
- kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - lifecycle
Details String - Additional information about the current lifecycle state.
- ncharacter
Set String - pdb
Name String - pluggable
Databases List<String> - state String
- A filter to return only resources that match the given lifecycle state exactly.
- tde
Wallet StringPassword - time
Created String - The date and time the DB system was created.
- time
Stamp StringFor Point In Time Recovery - vault
Id String
- admin
Password string - backup
Id string - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backup
Tde stringPassword - character
Set string - connection
Strings GetDb Systems Db System Db Home Database Connection String[] - database
Id string - database
Software stringImage Id - db
Backup GetConfigs Db Systems Db System Db Home Database Db Backup Config[] - db
Domain string - db
Name string - db
Unique stringName - db
Workload string - {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id string
- The OCID of the DB system.
- kms
Key stringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key stringVersion Id - lifecycle
Details string - Additional information about the current lifecycle state.
- ncharacter
Set string - pdb
Name string - pluggable
Databases string[] - state string
- A filter to return only resources that match the given lifecycle state exactly.
- tde
Wallet stringPassword - time
Created string - The date and time the DB system was created.
- time
Stamp stringFor Point In Time Recovery - vault
Id string
- admin_
password str - backup_
id str - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backup_
tde_ strpassword - character_
set str - connection_
strings Sequence[database.Get Db Systems Db System Db Home Database Connection String] - database_
id str - database_
software_ strimage_ id - db_
backup_ Sequence[database.configs Get Db Systems Db System Db Home Database Db Backup Config] - db_
domain str - db_
name str - db_
unique_ strname - db_
workload str - Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id str
- The OCID of the DB system.
- kms_
key_ strid - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_
key_ strversion_ id - lifecycle_
details str - Additional information about the current lifecycle state.
- ncharacter_
set str - pdb_
name str - pluggable_
databases Sequence[str] - state str
- A filter to return only resources that match the given lifecycle state exactly.
- tde_
wallet_ strpassword - time_
created str - The date and time the DB system was created.
- time_
stamp_ strfor_ point_ in_ time_ recovery - vault_
id str
- admin
Password String - backup
Id String - The OCID of the backup. Specify a backupId to list only the DB systems or DB homes that support creating a database using this backup in this compartment.
- backup
Tde StringPassword - character
Set String - connection
Strings List<Property Map> - database
Id String - database
Software StringImage Id - db
Backup List<Property Map>Configs - db
Domain String - db
Name String - db
Unique StringName - db
Workload String - Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the DB system.
- kms
Key StringId - The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringVersion Id - lifecycle
Details String - Additional information about the current lifecycle state.
- ncharacter
Set String - pdb
Name String - pluggable
Databases List<String> - state String
- A filter to return only resources that match the given lifecycle state exactly.
- tde
Wallet StringPassword - time
Created String - The date and time the DB system was created.
- time
Stamp StringFor Point In Time Recovery - vault
Id String
GetDbSystemsDbSystemDbHomeDatabaseConnectionString
- All
Connection Dictionary<string, string>Strings - Cdb
Default string - Cdb
Ip stringDefault
- All
Connection map[string]stringStrings - Cdb
Default string - Cdb
Ip stringDefault
- all
Connection Map<String,String>Strings - cdb
Default String - cdb
Ip StringDefault
- all
Connection {[key: string]: string}Strings - cdb
Default string - cdb
Ip stringDefault
- all_
connection_ Mapping[str, str]strings - cdb_
default str - cdb_
ip_ strdefault
- all
Connection Map<String>Strings - cdb
Default String - cdb
Ip StringDefault
GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfig
- auto
Backup BooleanEnabled - auto
Backup StringWindow - auto
Full StringBackup Day - auto
Full StringBackup Window - backup
Deletion StringPolicy - backup
Destination List<Property Map>Details - recovery
Window NumberIn Days - run
Immediate BooleanFull Backup
GetDbSystemsDbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetail
- Dbrs
Policy stringId - Id string
- The OCID of the DB system.
- Type string
- Dbrs
Policy stringId - Id string
- The OCID of the DB system.
- Type string
- dbrs
Policy StringId - id String
- The OCID of the DB system.
- type String
- dbrs
Policy stringId - id string
- The OCID of the DB system.
- type string
- dbrs_
policy_ strid - id str
- The OCID of the DB system.
- type str
- dbrs
Policy StringId - id String
- The OCID of the DB system.
- type String
GetDbSystemsDbSystemDbSystemOption
- Storage
Management string - The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- Storage
Management string - The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- storage
Management String - The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
- storage
Management 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
- storage
Management String - The storage option used in DB system. ASM - Automatic storage management LVM - Logical Volume management
GetDbSystemsDbSystemIormConfigCach
- Db
Plans List<GetDb Systems Db System Iorm Config Cach Db Plan> - Db
System stringId - Lifecycle
Details string - Additional information about the current lifecycle state.
- Objective string
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- Db
Plans []GetDb Systems Db System Iorm Config Cach Db Plan - Db
System stringId - Lifecycle
Details string - Additional information about the current lifecycle state.
- Objective string
- State string
- A filter to return only resources that match the given lifecycle state exactly.
- db
Plans List<GetDb Systems Db System Iorm Config Cach Db Plan> - db
System StringId - lifecycle
Details String - Additional information about the current lifecycle state.
- objective String
- state String
- A filter to return only resources that match the given lifecycle state exactly.
- db
Plans GetDb Systems Db System Iorm Config Cach Db Plan[] - db
System stringId - lifecycle
Details string - Additional information about the current lifecycle state.
- objective string
- state string
- A filter to return only resources that match the given lifecycle state exactly.
- db_
plans Sequence[database.Get Db Systems Db System Iorm Config Cach Db Plan] - db_
system_ strid - lifecycle_
details str - Additional information about the current lifecycle state.
- objective str
- state str
- A filter to return only resources that match the given lifecycle state exactly.
- db
Plans List<Property Map> - db
System StringId - lifecycle
Details String - Additional information about the current lifecycle state.
- objective String
- state String
- A filter to return only resources that match the given lifecycle state exactly.
GetDbSystemsDbSystemIormConfigCachDbPlan
- Db
Name string - Flash
Cache stringLimit - int
- Db
Name string - Flash
Cache stringLimit - int
- db
Name String - flash
Cache StringLimit - Integer
- db
Name string - flash
Cache stringLimit - number
- db_
name str - flash_
cache_ strlimit - int
- db
Name String - flash
Cache StringLimit - Number
GetDbSystemsDbSystemMaintenanceWindow
- Custom
Action intTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of List<GetWeeks Db Systems Db System Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- Hours
Of 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
- Is
Custom boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<Get
Db Systems Db System Maintenance Window Month> - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus List<bool> - Weeks
Of 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.
- Custom
Action intTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of []GetWeeks Db Systems Db System Maintenance Window Days Of Week - Days during the week when maintenance should be performed.
- Hours
Of []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
- Is
Custom boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]Get
Db Systems Db System Maintenance Window Month - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus []bool - Weeks
Of []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.
- custom
Action IntegerTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<GetWeeks Db Systems Db System Maintenance Window Days Of Week> - Days during the week when maintenance should be performed.
- hours
Of 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
- is
Custom BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time 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<Get
Db Systems Db System Maintenance Window Month> - Months during the year when maintenance should be performed.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of 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.
- custom
Action numberTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of GetWeeks Db Systems Db System Maintenance Window Days Of Week[] - Days during the week when maintenance should be performed.
- hours
Of 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
- is
Custom booleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly booleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time 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
Get
Db Systems Db System Maintenance Window Month[] - Months during the year when maintenance should be performed.
- patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference string
- The maintenance window scheduling preference.
- skip
Rus boolean[] - weeks
Of number[]Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_
action_ inttimeout_ in_ mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ Sequence[database.weeks Get Db Systems Db System Maintenance Window Days Of Week] - Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is_
custom_ boolaction_ timeout_ enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ boolpatching_ enabled - If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[database.
Get Db Systems Db System Maintenance Window Month] - Months during the year when maintenance should be performed.
- patching_
mode str - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference str
- The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - weeks_
of_ Sequence[int]months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action NumberTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<Property Map>Weeks - Days during the week when maintenance should be performed.
- hours
Of 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
- is
Custom BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time 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.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Number>Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
GetDbSystemsDbSystemMaintenanceWindowDaysOfWeek
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsDbSystemMaintenanceWindowDetail
- Custom
Action intTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of List<GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week> - Days during the week when maintenance should be performed.
- Hours
Of 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
- Is
Custom boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
List<Get
Db Systems Db System Maintenance Window Detail Month> - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus List<bool> - Weeks
Of 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.
- Custom
Action intTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- Days
Of []GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week - Days during the week when maintenance should be performed.
- Hours
Of []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
- Is
Custom boolAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- Is
Monthly boolPatching Enabled - If true, enables the monthly patching option.
- Lead
Time intIn Weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- Months
[]Get
Db Systems Db System Maintenance Window Detail Month - Months during the year when maintenance should be performed.
- Patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- Preference string
- The maintenance window scheduling preference.
- Skip
Rus []bool - Weeks
Of []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.
- custom
Action IntegerTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week> - Days during the week when maintenance should be performed.
- hours
Of 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
- is
Custom BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time 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<Get
Db Systems Db System Maintenance Window Detail Month> - Months during the year when maintenance should be performed.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of 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.
- custom
Action numberTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of GetWeeks Db Systems Db System Maintenance Window Detail Days Of Week[] - Days during the week when maintenance should be performed.
- hours
Of 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
- is
Custom booleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly booleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time 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
Get
Db Systems Db System Maintenance Window Detail Month[] - Months during the year when maintenance should be performed.
- patching
Mode string - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference string
- The maintenance window scheduling preference.
- skip
Rus boolean[] - weeks
Of number[]Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom_
action_ inttimeout_ in_ mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days_
of_ Sequence[database.weeks Get Db Systems Db System Maintenance Window Detail Days Of Week] - Days during the week when maintenance should be performed.
- hours_
of_ Sequence[int]days - The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are
- 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
- is_
custom_ boolaction_ timeout_ enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_
monthly_ boolpatching_ enabled - If true, enables the monthly patching option.
- lead_
time_ intin_ weeks - Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[database.
Get Db Systems Db System Maintenance Window Detail Month] - Months during the year when maintenance should be performed.
- patching_
mode str - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference str
- The maintenance window scheduling preference.
- skip_
rus Sequence[bool] - weeks_
of_ Sequence[int]months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
- custom
Action NumberTimeout In Mins - Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
- days
Of List<Property Map>Weeks - Days during the week when maintenance should be performed.
- hours
Of 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
- is
Custom BooleanAction Timeout Enabled - If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is
Monthly BooleanPatching Enabled - If true, enables the monthly patching option.
- lead
Time 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.
- patching
Mode String - Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
- preference String
- The maintenance window scheduling preference.
- skip
Rus List<Boolean> - weeks
Of List<Number>Months - Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
GetDbSystemsDbSystemMaintenanceWindowDetailDaysOfWeek
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsDbSystemMaintenanceWindowDetailMonth
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsDbSystemMaintenanceWindowMonth
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
GetDbSystemsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.