Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Mysql.getMysqlBackups
Explore with Pulumi AI
This data source provides the list of Mysql Backups in Oracle Cloud Infrastructure MySQL Database service.
Get a list of DB System backups.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMysqlBackups = oci.Mysql.getMysqlBackups({
    compartmentId: compartmentId,
    backupId: testBackup.id,
    creationType: mysqlBackupCreationType,
    dbSystemId: testDbSystem.id,
    displayName: mysqlBackupDisplayName,
    state: mysqlBackupState,
});
import pulumi
import pulumi_oci as oci
test_mysql_backups = oci.Mysql.get_mysql_backups(compartment_id=compartment_id,
    backup_id=test_backup["id"],
    creation_type=mysql_backup_creation_type,
    db_system_id=test_db_system["id"],
    display_name=mysql_backup_display_name,
    state=mysql_backup_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/mysql"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mysql.GetMysqlBackups(ctx, &mysql.GetMysqlBackupsArgs{
			CompartmentId: compartmentId,
			BackupId:      pulumi.StringRef(testBackup.Id),
			CreationType:  pulumi.StringRef(mysqlBackupCreationType),
			DbSystemId:    pulumi.StringRef(testDbSystem.Id),
			DisplayName:   pulumi.StringRef(mysqlBackupDisplayName),
			State:         pulumi.StringRef(mysqlBackupState),
		}, 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 testMysqlBackups = Oci.Mysql.GetMysqlBackups.Invoke(new()
    {
        CompartmentId = compartmentId,
        BackupId = testBackup.Id,
        CreationType = mysqlBackupCreationType,
        DbSystemId = testDbSystem.Id,
        DisplayName = mysqlBackupDisplayName,
        State = mysqlBackupState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Mysql.MysqlFunctions;
import com.pulumi.oci.Mysql.inputs.GetMysqlBackupsArgs;
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 testMysqlBackups = MysqlFunctions.getMysqlBackups(GetMysqlBackupsArgs.builder()
            .compartmentId(compartmentId)
            .backupId(testBackup.id())
            .creationType(mysqlBackupCreationType)
            .dbSystemId(testDbSystem.id())
            .displayName(mysqlBackupDisplayName)
            .state(mysqlBackupState)
            .build());
    }
}
variables:
  testMysqlBackups:
    fn::invoke:
      function: oci:Mysql:getMysqlBackups
      arguments:
        compartmentId: ${compartmentId}
        backupId: ${testBackup.id}
        creationType: ${mysqlBackupCreationType}
        dbSystemId: ${testDbSystem.id}
        displayName: ${mysqlBackupDisplayName}
        state: ${mysqlBackupState}
Using getMysqlBackups
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 getMysqlBackups(args: GetMysqlBackupsArgs, opts?: InvokeOptions): Promise<GetMysqlBackupsResult>
function getMysqlBackupsOutput(args: GetMysqlBackupsOutputArgs, opts?: InvokeOptions): Output<GetMysqlBackupsResult>def get_mysql_backups(backup_id: Optional[str] = None,
                      compartment_id: Optional[str] = None,
                      creation_type: Optional[str] = None,
                      db_system_id: Optional[str] = None,
                      display_name: Optional[str] = None,
                      filters: Optional[Sequence[GetMysqlBackupsFilter]] = None,
                      state: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetMysqlBackupsResult
def get_mysql_backups_output(backup_id: Optional[pulumi.Input[str]] = None,
                      compartment_id: Optional[pulumi.Input[str]] = None,
                      creation_type: Optional[pulumi.Input[str]] = None,
                      db_system_id: Optional[pulumi.Input[str]] = None,
                      display_name: Optional[pulumi.Input[str]] = None,
                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMysqlBackupsFilterArgs]]]] = None,
                      state: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetMysqlBackupsResult]func GetMysqlBackups(ctx *Context, args *GetMysqlBackupsArgs, opts ...InvokeOption) (*GetMysqlBackupsResult, error)
func GetMysqlBackupsOutput(ctx *Context, args *GetMysqlBackupsOutputArgs, opts ...InvokeOption) GetMysqlBackupsResultOutput> Note: This function is named GetMysqlBackups in the Go SDK.
public static class GetMysqlBackups 
{
    public static Task<GetMysqlBackupsResult> InvokeAsync(GetMysqlBackupsArgs args, InvokeOptions? opts = null)
    public static Output<GetMysqlBackupsResult> Invoke(GetMysqlBackupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMysqlBackupsResult> getMysqlBackups(GetMysqlBackupsArgs args, InvokeOptions options)
public static Output<GetMysqlBackupsResult> getMysqlBackups(GetMysqlBackupsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Mysql/getMysqlBackups:getMysqlBackups
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- BackupId string
- Backup OCID
- CreationType string
- Backup creationType
- DbSystem stringId 
- The DB System OCID.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Filters
List<GetMysql Backups Filter> 
- State string
- Backup Lifecycle State
- CompartmentId string
- The compartment OCID.
- BackupId string
- Backup OCID
- CreationType string
- Backup creationType
- DbSystem stringId 
- The DB System OCID.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Filters
[]GetMysql Backups Filter 
- State string
- Backup Lifecycle State
- compartmentId String
- The compartment OCID.
- backupId String
- Backup OCID
- creationType String
- Backup creationType
- dbSystem StringId 
- The DB System OCID.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- filters
List<GetBackups Filter> 
- state String
- Backup Lifecycle State
- compartmentId string
- The compartment OCID.
- backupId string
- Backup OCID
- creationType string
- Backup creationType
- dbSystem stringId 
- The DB System OCID.
- displayName string
- A filter to return only the resource matching the given display name exactly.
- filters
GetMysql Backups Filter[] 
- state string
- Backup Lifecycle State
- compartment_id str
- The compartment OCID.
- backup_id str
- Backup OCID
- creation_type str
- Backup creationType
- db_system_ strid 
- The DB System OCID.
- display_name str
- A filter to return only the resource matching the given display name exactly.
- filters
Sequence[GetMysql Backups Filter] 
- state str
- Backup Lifecycle State
- compartmentId String
- The compartment OCID.
- backupId String
- Backup OCID
- creationType String
- Backup creationType
- dbSystem StringId 
- The DB System OCID.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- filters List<Property Map>
- state String
- Backup Lifecycle State
getMysqlBackups Result
The following output properties are available:
- Backups
List<GetMysql Backups Backup> 
- The list of backups.
- CompartmentId string
- The OCID of the compartment the DB System belongs in.
- Id string
- The provider-assigned unique ID for this managed resource.
- BackupId string
- CreationType string
- Indicates how the backup was created: manually, automatic, or by an Operator.
- DbSystem stringId 
- The OCID of the DB System the backup is associated with.
- DisplayName string
- A user-supplied display name for the backup.
- Filters
List<GetMysql Backups Filter> 
- State string
- The state of the backup.
- Backups
[]GetMysql Backups Backup 
- The list of backups.
- CompartmentId string
- The OCID of the compartment the DB System belongs in.
- Id string
- The provider-assigned unique ID for this managed resource.
- BackupId string
- CreationType string
- Indicates how the backup was created: manually, automatic, or by an Operator.
- DbSystem stringId 
- The OCID of the DB System the backup is associated with.
- DisplayName string
- A user-supplied display name for the backup.
- Filters
[]GetMysql Backups Filter 
- State string
- The state of the backup.
- backups
List<GetBackups Backup> 
- The list of backups.
- compartmentId String
- The OCID of the compartment the DB System belongs in.
- id String
- The provider-assigned unique ID for this managed resource.
- backupId String
- creationType String
- Indicates how the backup was created: manually, automatic, or by an Operator.
- dbSystem StringId 
- The OCID of the DB System the backup is associated with.
- displayName String
- A user-supplied display name for the backup.
- filters
List<GetBackups Filter> 
- state String
- The state of the backup.
- backups
GetMysql Backups Backup[] 
- The list of backups.
- compartmentId string
- The OCID of the compartment the DB System belongs in.
- id string
- The provider-assigned unique ID for this managed resource.
- backupId string
- creationType string
- Indicates how the backup was created: manually, automatic, or by an Operator.
- dbSystem stringId 
- The OCID of the DB System the backup is associated with.
- displayName string
- A user-supplied display name for the backup.
- filters
GetMysql Backups Filter[] 
- state string
- The state of the backup.
- backups
Sequence[GetMysql Backups Backup] 
- The list of backups.
- compartment_id str
- The OCID of the compartment the DB System belongs in.
- id str
- The provider-assigned unique ID for this managed resource.
- backup_id str
- creation_type str
- Indicates how the backup was created: manually, automatic, or by an Operator.
- db_system_ strid 
- The OCID of the DB System the backup is associated with.
- display_name str
- A user-supplied display name for the backup.
- filters
Sequence[GetMysql Backups Filter] 
- state str
- The state of the backup.
- backups List<Property Map>
- The list of backups.
- compartmentId String
- The OCID of the compartment the DB System belongs in.
- id String
- The provider-assigned unique ID for this managed resource.
- backupId String
- creationType String
- Indicates how the backup was created: manually, automatic, or by an Operator.
- dbSystem StringId 
- The OCID of the DB System the backup is associated with.
- displayName String
- A user-supplied display name for the backup.
- filters List<Property Map>
- state String
- The state of the backup.
Supporting Types
GetMysqlBackupsBackup   
- BackupSize intIn Gbs 
- The size of the backup in base-2 (IEC) gibibytes. (GiB).
- BackupType string
- The type of backup.
- CompartmentId string
- The compartment OCID.
- CreationType string
- Backup creationType
- DataStorage intSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- DbSystem stringId 
- The DB System OCID.
- DbSystem List<GetSnapshot Summaries Mysql Backups Backup Db System Snapshot Summary> 
- DbSystem List<GetSnapshots Mysql Backups Backup Db System Snapshot> 
- Snapshot of the DbSystem details at the time of the backup
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- A user-supplied description for the backup.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- OCID of the backup itself
- ImmediateSource stringBackup Id 
- The OCID of the immediate source DB system backup from which this DB system backup was copied.
- LifecycleDetails string
- Additional information about the current lifecycleState.
- MysqlVersion string
- The MySQL server version of the DB System used for backup.
- OriginalSource stringBackup Id 
- The OCID of the original source DB system backup from which this DB system backup was copied.
- RetentionIn intDays 
- Number of days to retain this backup.
- ShapeName string
- The shape of the DB System instance used for backup.
- SourceDetails List<GetMysql Backups Backup Source Detail> 
- State string
- Backup Lifecycle State
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCopy stringCreated 
- The date and time the DB system backup copy was created, as described by RFC 3339.
- TimeCreated string
- The time the backup record was created.
- TimeUpdated string
- The time at which the backup was updated.
- BackupSize intIn Gbs 
- The size of the backup in base-2 (IEC) gibibytes. (GiB).
- BackupType string
- The type of backup.
- CompartmentId string
- The compartment OCID.
- CreationType string
- Backup creationType
- DataStorage intSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- DbSystem stringId 
- The DB System OCID.
- DbSystem []GetSnapshot Summaries Mysql Backups Backup Db System Snapshot Summary 
- DbSystem []GetSnapshots Mysql Backups Backup Db System Snapshot 
- Snapshot of the DbSystem details at the time of the backup
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Description string
- A user-supplied description for the backup.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- OCID of the backup itself
- ImmediateSource stringBackup Id 
- The OCID of the immediate source DB system backup from which this DB system backup was copied.
- LifecycleDetails string
- Additional information about the current lifecycleState.
- MysqlVersion string
- The MySQL server version of the DB System used for backup.
- OriginalSource stringBackup Id 
- The OCID of the original source DB system backup from which this DB system backup was copied.
- RetentionIn intDays 
- Number of days to retain this backup.
- ShapeName string
- The shape of the DB System instance used for backup.
- SourceDetails []GetMysql Backups Backup Source Detail 
- State string
- Backup Lifecycle State
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCopy stringCreated 
- The date and time the DB system backup copy was created, as described by RFC 3339.
- TimeCreated string
- The time the backup record was created.
- TimeUpdated string
- The time at which the backup was updated.
- backupSize IntegerIn Gbs 
- The size of the backup in base-2 (IEC) gibibytes. (GiB).
- backupType String
- The type of backup.
- compartmentId String
- The compartment OCID.
- creationType String
- Backup creationType
- dataStorage IntegerSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dbSystem StringId 
- The DB System OCID.
- dbSystem List<GetSnapshot Summaries Backups Backup Db System Snapshot Summary> 
- dbSystem List<GetSnapshots Backups Backup Db System Snapshot> 
- Snapshot of the DbSystem details at the time of the backup
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- A user-supplied description for the backup.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- OCID of the backup itself
- immediateSource StringBackup Id 
- The OCID of the immediate source DB system backup from which this DB system backup was copied.
- lifecycleDetails String
- Additional information about the current lifecycleState.
- mysqlVersion String
- The MySQL server version of the DB System used for backup.
- originalSource StringBackup Id 
- The OCID of the original source DB system backup from which this DB system backup was copied.
- retentionIn IntegerDays 
- Number of days to retain this backup.
- shapeName String
- The shape of the DB System instance used for backup.
- sourceDetails List<GetBackups Backup Source Detail> 
- state String
- Backup Lifecycle State
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCopy StringCreated 
- The date and time the DB system backup copy was created, as described by RFC 3339.
- timeCreated String
- The time the backup record was created.
- timeUpdated String
- The time at which the backup was updated.
- backupSize numberIn Gbs 
- The size of the backup in base-2 (IEC) gibibytes. (GiB).
- backupType string
- The type of backup.
- compartmentId string
- The compartment OCID.
- creationType string
- Backup creationType
- dataStorage numberSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dbSystem stringId 
- The DB System OCID.
- dbSystem GetSnapshot Summaries Mysql Backups Backup Db System Snapshot Summary[] 
- dbSystem GetSnapshots Mysql Backups Backup Db System Snapshot[] 
- Snapshot of the DbSystem details at the time of the backup
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description string
- A user-supplied description for the backup.
- displayName string
- A filter to return only the resource matching the given display name exactly.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- OCID of the backup itself
- immediateSource stringBackup Id 
- The OCID of the immediate source DB system backup from which this DB system backup was copied.
- lifecycleDetails string
- Additional information about the current lifecycleState.
- mysqlVersion string
- The MySQL server version of the DB System used for backup.
- originalSource stringBackup Id 
- The OCID of the original source DB system backup from which this DB system backup was copied.
- retentionIn numberDays 
- Number of days to retain this backup.
- shapeName string
- The shape of the DB System instance used for backup.
- sourceDetails GetMysql Backups Backup Source Detail[] 
- state string
- Backup Lifecycle State
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCopy stringCreated 
- The date and time the DB system backup copy was created, as described by RFC 3339.
- timeCreated string
- The time the backup record was created.
- timeUpdated string
- The time at which the backup was updated.
- backup_size_ intin_ gbs 
- The size of the backup in base-2 (IEC) gibibytes. (GiB).
- backup_type str
- The type of backup.
- compartment_id str
- The compartment OCID.
- creation_type str
- Backup creationType
- data_storage_ intsize_ in_ gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- db_system_ strid 
- The DB System OCID.
- db_system_ Sequence[Getsnapshot_ summaries Mysql Backups Backup Db System Snapshot Summary] 
- db_system_ Sequence[Getsnapshots Mysql Backups Backup Db System Snapshot] 
- Snapshot of the DbSystem details at the time of the backup
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description str
- A user-supplied description for the backup.
- display_name str
- A filter to return only the resource matching the given display name exactly.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- OCID of the backup itself
- immediate_source_ strbackup_ id 
- The OCID of the immediate source DB system backup from which this DB system backup was copied.
- lifecycle_details str
- Additional information about the current lifecycleState.
- mysql_version str
- The MySQL server version of the DB System used for backup.
- original_source_ strbackup_ id 
- The OCID of the original source DB system backup from which this DB system backup was copied.
- retention_in_ intdays 
- Number of days to retain this backup.
- shape_name str
- The shape of the DB System instance used for backup.
- source_details Sequence[GetMysql Backups Backup Source Detail] 
- state str
- Backup Lifecycle State
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_copy_ strcreated 
- The date and time the DB system backup copy was created, as described by RFC 3339.
- time_created str
- The time the backup record was created.
- time_updated str
- The time at which the backup was updated.
- backupSize NumberIn Gbs 
- The size of the backup in base-2 (IEC) gibibytes. (GiB).
- backupType String
- The type of backup.
- compartmentId String
- The compartment OCID.
- creationType String
- Backup creationType
- dataStorage NumberSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dbSystem StringId 
- The DB System OCID.
- dbSystem List<Property Map>Snapshot Summaries 
- dbSystem List<Property Map>Snapshots 
- Snapshot of the DbSystem details at the time of the backup
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- description String
- A user-supplied description for the backup.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- OCID of the backup itself
- immediateSource StringBackup Id 
- The OCID of the immediate source DB system backup from which this DB system backup was copied.
- lifecycleDetails String
- Additional information about the current lifecycleState.
- mysqlVersion String
- The MySQL server version of the DB System used for backup.
- originalSource StringBackup Id 
- The OCID of the original source DB system backup from which this DB system backup was copied.
- retentionIn NumberDays 
- Number of days to retain this backup.
- shapeName String
- The shape of the DB System instance used for backup.
- sourceDetails List<Property Map>
- state String
- Backup Lifecycle State
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCopy StringCreated 
- The date and time the DB system backup copy was created, as described by RFC 3339.
- timeCreated String
- The time the backup record was created.
- timeUpdated String
- The time at which the backup was updated.
GetMysqlBackupsBackupDbSystemSnapshot      
- AdminUsername string
- The username for the administrative user.
- AvailabilityDomain string
- The Availability Domain where the primary DB System should be located.
- BackupPolicies List<GetMysql Backups Backup Db System Snapshot Backup Policy> 
- The Backup policy for the DB System.
- CompartmentId string
- The compartment OCID.
- ConfigurationId string
- The OCID of the Configuration to be used for Instances in this DB System.
- CrashRecovery string
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- DataStorage intSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- DataStorages List<GetMysql Backups Backup Db System Snapshot Data Storage> 
- Data Storage information.
- DatabaseManagement string
- Whether to enable monitoring via the Database Management service.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DeletionPolicies List<GetMysql Backups Backup Db System Snapshot Deletion Policy> 
- The Deletion policy for the DB System.
- Description string
- A user-supplied description for the backup.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Endpoints
List<GetMysql Backups Backup Db System Snapshot Endpoint> 
- The network endpoints available for this DB System.
- FaultDomain string
- The name of the Fault Domain the DB System is located in.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- HostnameLabel string
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- Id string
- OCID of the backup itself
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- IsHighly boolAvailable 
- Specifies if the DB System is highly available.
- Maintenances
List<GetMysql Backups Backup Db System Snapshot Maintenance> 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- MysqlVersion string
- The MySQL server version of the DB System used for backup.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ReadEndpoints List<GetMysql Backups Backup Db System Snapshot Read Endpoint> 
- The read endpoint of a DB System.
- Region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- SecureConnections List<GetMysql Backups Backup Db System Snapshot Secure Connection> 
- Secure connection configuration details.
- ShapeName string
- The shape of the DB System instance used for backup.
- SubnetId string
- The OCID of the subnet the DB System is associated with.
- AdminUsername string
- The username for the administrative user.
- AvailabilityDomain string
- The Availability Domain where the primary DB System should be located.
- BackupPolicies []GetMysql Backups Backup Db System Snapshot Backup Policy 
- The Backup policy for the DB System.
- CompartmentId string
- The compartment OCID.
- ConfigurationId string
- The OCID of the Configuration to be used for Instances in this DB System.
- CrashRecovery string
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- DataStorage intSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- DataStorages []GetMysql Backups Backup Db System Snapshot Data Storage 
- Data Storage information.
- DatabaseManagement string
- Whether to enable monitoring via the Database Management service.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DeletionPolicies []GetMysql Backups Backup Db System Snapshot Deletion Policy 
- The Deletion policy for the DB System.
- Description string
- A user-supplied description for the backup.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Endpoints
[]GetMysql Backups Backup Db System Snapshot Endpoint 
- The network endpoints available for this DB System.
- FaultDomain string
- The name of the Fault Domain the DB System is located in.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- HostnameLabel string
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- Id string
- OCID of the backup itself
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- IsHighly boolAvailable 
- Specifies if the DB System is highly available.
- Maintenances
[]GetMysql Backups Backup Db System Snapshot Maintenance 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- MysqlVersion string
- The MySQL server version of the DB System used for backup.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ReadEndpoints []GetMysql Backups Backup Db System Snapshot Read Endpoint 
- The read endpoint of a DB System.
- Region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- SecureConnections []GetMysql Backups Backup Db System Snapshot Secure Connection 
- Secure connection configuration details.
- ShapeName string
- The shape of the DB System instance used for backup.
- SubnetId string
- The OCID of the subnet the DB System is associated with.
- adminUsername String
- The username for the administrative user.
- availabilityDomain String
- The Availability Domain where the primary DB System should be located.
- backupPolicies List<GetBackups Backup Db System Snapshot Backup Policy> 
- The Backup policy for the DB System.
- compartmentId String
- The compartment OCID.
- configurationId String
- The OCID of the Configuration to be used for Instances in this DB System.
- crashRecovery String
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- dataStorage IntegerSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dataStorages List<GetBackups Backup Db System Snapshot Data Storage> 
- Data Storage information.
- databaseManagement String
- Whether to enable monitoring via the Database Management service.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletionPolicies List<GetBackups Backup Db System Snapshot Deletion Policy> 
- The Deletion policy for the DB System.
- description String
- A user-supplied description for the backup.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- endpoints
List<GetBackups Backup Db System Snapshot Endpoint> 
- The network endpoints available for this DB System.
- faultDomain String
- The name of the Fault Domain the DB System is located in.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostnameLabel String
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id String
- OCID of the backup itself
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- isHighly BooleanAvailable 
- Specifies if the DB System is highly available.
- maintenances
List<GetBackups Backup Db System Snapshot Maintenance> 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysqlVersion String
- The MySQL server version of the DB System used for backup.
- port Integer
- The port for primary endpoint of the DB System to listen on.
- portX Integer
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- readEndpoints List<GetBackups Backup Db System Snapshot Read Endpoint> 
- The read endpoint of a DB System.
- region String
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- secureConnections List<GetBackups Backup Db System Snapshot Secure Connection> 
- Secure connection configuration details.
- shapeName String
- The shape of the DB System instance used for backup.
- subnetId String
- The OCID of the subnet the DB System is associated with.
- adminUsername string
- The username for the administrative user.
- availabilityDomain string
- The Availability Domain where the primary DB System should be located.
- backupPolicies GetMysql Backups Backup Db System Snapshot Backup Policy[] 
- The Backup policy for the DB System.
- compartmentId string
- The compartment OCID.
- configurationId string
- The OCID of the Configuration to be used for Instances in this DB System.
- crashRecovery string
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- dataStorage numberSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dataStorages GetMysql Backups Backup Db System Snapshot Data Storage[] 
- Data Storage information.
- databaseManagement string
- Whether to enable monitoring via the Database Management service.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletionPolicies GetMysql Backups Backup Db System Snapshot Deletion Policy[] 
- The Deletion policy for the DB System.
- description string
- A user-supplied description for the backup.
- displayName string
- A filter to return only the resource matching the given display name exactly.
- endpoints
GetMysql Backups Backup Db System Snapshot Endpoint[] 
- The network endpoints available for this DB System.
- faultDomain string
- The name of the Fault Domain the DB System is located in.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostnameLabel string
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id string
- OCID of the backup itself
- ipAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- isHighly booleanAvailable 
- Specifies if the DB System is highly available.
- maintenances
GetMysql Backups Backup Db System Snapshot Maintenance[] 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysqlVersion string
- The MySQL server version of the DB System used for backup.
- port number
- The port for primary endpoint of the DB System to listen on.
- portX number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- readEndpoints GetMysql Backups Backup Db System Snapshot Read Endpoint[] 
- The read endpoint of a DB System.
- region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- secureConnections GetMysql Backups Backup Db System Snapshot Secure Connection[] 
- Secure connection configuration details.
- shapeName string
- The shape of the DB System instance used for backup.
- subnetId string
- The OCID of the subnet the DB System is associated with.
- admin_username str
- The username for the administrative user.
- availability_domain str
- The Availability Domain where the primary DB System should be located.
- backup_policies Sequence[GetMysql Backups Backup Db System Snapshot Backup Policy] 
- The Backup policy for the DB System.
- compartment_id str
- The compartment OCID.
- configuration_id str
- The OCID of the Configuration to be used for Instances in this DB System.
- crash_recovery str
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- data_storage_ intsize_ in_ gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- data_storages Sequence[GetMysql Backups Backup Db System Snapshot Data Storage] 
- Data Storage information.
- database_management str
- Whether to enable monitoring via the Database Management service.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletion_policies Sequence[GetMysql Backups Backup Db System Snapshot Deletion Policy] 
- The Deletion policy for the DB System.
- description str
- A user-supplied description for the backup.
- display_name str
- A filter to return only the resource matching the given display name exactly.
- endpoints
Sequence[GetMysql Backups Backup Db System Snapshot Endpoint] 
- The network endpoints available for this DB System.
- fault_domain str
- The name of the Fault Domain the DB System is located in.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostname_label str
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id str
- OCID of the backup itself
- ip_address str
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- is_highly_ boolavailable 
- Specifies if the DB System is highly available.
- maintenances
Sequence[GetMysql Backups Backup Db System Snapshot Maintenance] 
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysql_version str
- The MySQL server version of the DB System used for backup.
- port int
- The port for primary endpoint of the DB System to listen on.
- port_x int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- read_endpoints Sequence[GetMysql Backups Backup Db System Snapshot Read Endpoint] 
- The read endpoint of a DB System.
- region str
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- secure_connections Sequence[GetMysql Backups Backup Db System Snapshot Secure Connection] 
- Secure connection configuration details.
- shape_name str
- The shape of the DB System instance used for backup.
- subnet_id str
- The OCID of the subnet the DB System is associated with.
- adminUsername String
- The username for the administrative user.
- availabilityDomain String
- The Availability Domain where the primary DB System should be located.
- backupPolicies List<Property Map>
- The Backup policy for the DB System.
- compartmentId String
- The compartment OCID.
- configurationId String
- The OCID of the Configuration to be used for Instances in this DB System.
- crashRecovery String
- Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
- dataStorage NumberSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dataStorages List<Property Map>
- Data Storage information.
- databaseManagement String
- Whether to enable monitoring via the Database Management service.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- deletionPolicies List<Property Map>
- The Deletion policy for the DB System.
- description String
- A user-supplied description for the backup.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- endpoints List<Property Map>
- The network endpoints available for this DB System.
- faultDomain String
- The name of the Fault Domain the DB System is located in.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- hostnameLabel String
- The hostname for the primary endpoint of the DB System. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, "dbsystem-1" in FQDN "dbsystem-1.subnet123.vcn1.oraclevcn.com"). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
- id String
- OCID of the backup itself
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- isHighly BooleanAvailable 
- Specifies if the DB System is highly available.
- maintenances List<Property Map>
- The Maintenance Policy for the DB System or Read Replica that this model is included in.
- mysqlVersion String
- The MySQL server version of the DB System used for backup.
- port Number
- The port for primary endpoint of the DB System to listen on.
- portX Number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- readEndpoints List<Property Map>
- The read endpoint of a DB System.
- region String
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- secureConnections List<Property Map>
- Secure connection configuration details.
- shapeName String
- The shape of the DB System instance used for backup.
- subnetId String
- The OCID of the subnet the DB System is associated with.
GetMysqlBackupsBackupDbSystemSnapshotBackupPolicy        
- CopyPolicies List<GetMysql Backups Backup Db System Snapshot Backup Policy Copy Policy> 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- PitrPolicies List<GetMysql Backups Backup Db System Snapshot Backup Policy Pitr Policy> 
- The PITR policy for the DB System.
- RetentionIn intDays 
- Number of days to retain this backup.
- WindowStart stringTime 
- The start time of the maintenance window.
- CopyPolicies []GetMysql Backups Backup Db System Snapshot Backup Policy Copy Policy 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- PitrPolicies []GetMysql Backups Backup Db System Snapshot Backup Policy Pitr Policy 
- The PITR policy for the DB System.
- RetentionIn intDays 
- Number of days to retain this backup.
- WindowStart stringTime 
- The start time of the maintenance window.
- copyPolicies List<GetBackups Backup Db System Snapshot Backup Policy Copy Policy> 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- pitrPolicies List<GetBackups Backup Db System Snapshot Backup Policy Pitr Policy> 
- The PITR policy for the DB System.
- retentionIn IntegerDays 
- Number of days to retain this backup.
- windowStart StringTime 
- The start time of the maintenance window.
- copyPolicies GetMysql Backups Backup Db System Snapshot Backup Policy Copy Policy[] 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- pitrPolicies GetMysql Backups Backup Db System Snapshot Backup Policy Pitr Policy[] 
- The PITR policy for the DB System.
- retentionIn numberDays 
- Number of days to retain this backup.
- windowStart stringTime 
- The start time of the maintenance window.
- copy_policies Sequence[GetMysql Backups Backup Db System Snapshot Backup Policy Copy Policy] 
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- pitr_policies Sequence[GetMysql Backups Backup Db System Snapshot Backup Policy Pitr Policy] 
- The PITR policy for the DB System.
- retention_in_ intdays 
- Number of days to retain this backup.
- window_start_ strtime 
- The start time of the maintenance window.
- copyPolicies List<Property Map>
- List of policies of a DB system to schedule cross-region DB system backup copy.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- pitrPolicies List<Property Map>
- The PITR policy for the DB System.
- retentionIn NumberDays 
- Number of days to retain this backup.
- windowStart StringTime 
- The start time of the maintenance window.
GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyCopyPolicy          
- BackupCopy intRetention In Days 
- Number of days to retain the copied DB system backup.
- CopyTo stringRegion 
- The destination region name to which the DB system backup will be copied.
- BackupCopy intRetention In Days 
- Number of days to retain the copied DB system backup.
- CopyTo stringRegion 
- The destination region name to which the DB system backup will be copied.
- backupCopy IntegerRetention In Days 
- Number of days to retain the copied DB system backup.
- copyTo StringRegion 
- The destination region name to which the DB system backup will be copied.
- backupCopy numberRetention In Days 
- Number of days to retain the copied DB system backup.
- copyTo stringRegion 
- The destination region name to which the DB system backup will be copied.
- backup_copy_ intretention_ in_ days 
- Number of days to retain the copied DB system backup.
- copy_to_ strregion 
- The destination region name to which the DB system backup will be copied.
- backupCopy NumberRetention In Days 
- Number of days to retain the copied DB system backup.
- copyTo StringRegion 
- The destination region name to which the DB system backup will be copied.
GetMysqlBackupsBackupDbSystemSnapshotBackupPolicyPitrPolicy          
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
GetMysqlBackupsBackupDbSystemSnapshotDataStorage        
- AllocatedStorage intSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- DataStorage intSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- DataStorage intSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- IsAuto boolExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- MaxStorage intSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- AllocatedStorage intSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- DataStorage intSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- DataStorage intSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- IsAuto boolExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- MaxStorage intSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocatedStorage IntegerSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- dataStorage IntegerSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dataStorage IntegerSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- isAuto BooleanExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- maxStorage IntegerSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocatedStorage numberSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- dataStorage numberSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dataStorage numberSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- isAuto booleanExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- maxStorage numberSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocated_storage_ intsize_ in_ gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- data_storage_ intsize_ in_ gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- data_storage_ intsize_ limit_ in_ gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- is_auto_ boolexpand_ storage_ enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- max_storage_ intsize_ in_ gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
- allocatedStorage NumberSize In Gbs 
- The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
- dataStorage NumberSize In Gb 
- DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
- dataStorage NumberSize Limit In Gbs 
- The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
- isAuto BooleanExpand Storage Enabled 
- Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
- maxStorage NumberSize In Gbs 
- Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
GetMysqlBackupsBackupDbSystemSnapshotDeletionPolicy        
- AutomaticBackup stringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- FinalBackup string
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- IsDelete boolProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- AutomaticBackup stringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- FinalBackup string
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- IsDelete boolProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automaticBackup StringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- finalBackup String
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- isDelete BooleanProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automaticBackup stringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- finalBackup string
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- isDelete booleanProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automatic_backup_ strretention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- final_backup str
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- is_delete_ boolprotected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
- automaticBackup StringRetention 
- Specifies if any automatic backups created for a DB System should be retained or deleted when the DB System is deleted.
- finalBackup String
- Specifies whether or not a backup is taken when the DB System is deleted. REQUIRE_FINAL_BACKUP: a backup is taken if the DB System is deleted. SKIP_FINAL_BACKUP: a backup is not taken if the DB System is deleted.
- isDelete BooleanProtected 
- Specifies whether the DB System can be deleted. Set to true to prevent deletion, false (default) to allow.
GetMysqlBackupsBackupDbSystemSnapshotEndpoint       
- Hostname string
- The network address of the DB System.
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- Modes List<string>
- The access modes from the client that this endpoint supports.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ResourceId string
- The OCID of the resource that this endpoint is attached to.
- ResourceType string
- The type of endpoint that clients and connectors can connect to.
- Status string
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- StatusDetails string
- Additional information about the current endpoint status.
- Hostname string
- The network address of the DB System.
- IpAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- Modes []string
- The access modes from the client that this endpoint supports.
- Port int
- The port for primary endpoint of the DB System to listen on.
- PortX int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- ResourceId string
- The OCID of the resource that this endpoint is attached to.
- ResourceType string
- The type of endpoint that clients and connectors can connect to.
- Status string
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- StatusDetails string
- Additional information about the current endpoint status.
- hostname String
- The network address of the DB System.
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes List<String>
- The access modes from the client that this endpoint supports.
- port Integer
- The port for primary endpoint of the DB System to listen on.
- portX Integer
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resourceId String
- The OCID of the resource that this endpoint is attached to.
- resourceType String
- The type of endpoint that clients and connectors can connect to.
- status String
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- statusDetails String
- Additional information about the current endpoint status.
- hostname string
- The network address of the DB System.
- ipAddress string
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes string[]
- The access modes from the client that this endpoint supports.
- port number
- The port for primary endpoint of the DB System to listen on.
- portX number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resourceId string
- The OCID of the resource that this endpoint is attached to.
- resourceType string
- The type of endpoint that clients and connectors can connect to.
- status string
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- statusDetails string
- Additional information about the current endpoint status.
- hostname str
- The network address of the DB System.
- ip_address str
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes Sequence[str]
- The access modes from the client that this endpoint supports.
- port int
- The port for primary endpoint of the DB System to listen on.
- port_x int
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resource_id str
- The OCID of the resource that this endpoint is attached to.
- resource_type str
- The type of endpoint that clients and connectors can connect to.
- status str
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- status_details str
- Additional information about the current endpoint status.
- hostname String
- The network address of the DB System.
- ipAddress String
- The IP address the DB System is configured to listen on. A private IP address of the primary endpoint of the DB System. Must be an available IP address within the subnet's CIDR. This will be a "dotted-quad" style IPv4 address.
- modes List<String>
- The access modes from the client that this endpoint supports.
- port Number
- The port for primary endpoint of the DB System to listen on.
- portX Number
- The network port on which X Plugin listens for TCP/IP connections. This is the X Plugin equivalent of port.
- resourceId String
- The OCID of the resource that this endpoint is attached to.
- resourceType String
- The type of endpoint that clients and connectors can connect to.
- status String
- The state of the endpoints, as far as it can seen from the DB System. There may be some inconsistency with the actual state of the MySQL service.
- statusDetails String
- Additional information about the current endpoint status.
GetMysqlBackupsBackupDbSystemSnapshotMaintenance       
- WindowStart stringTime 
- The start time of the maintenance window.
- WindowStart stringTime 
- The start time of the maintenance window.
- windowStart StringTime 
- The start time of the maintenance window.
- windowStart stringTime 
- The start time of the maintenance window.
- window_start_ strtime 
- The start time of the maintenance window.
- windowStart StringTime 
- The start time of the maintenance window.
GetMysqlBackupsBackupDbSystemSnapshotReadEndpoint        
- ExcludeIps List<string>
- A list of IP addresses of read replicas that are excluded from serving read requests.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- ReadEndpoint stringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- ReadEndpoint stringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- ExcludeIps []string
- A list of IP addresses of read replicas that are excluded from serving read requests.
- IsEnabled bool
- Specifies if the DB System read endpoint is enabled or not.
- ReadEndpoint stringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- ReadEndpoint stringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- excludeIps List<String>
- A list of IP addresses of read replicas that are excluded from serving read requests.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- readEndpoint StringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- readEndpoint StringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- excludeIps string[]
- A list of IP addresses of read replicas that are excluded from serving read requests.
- isEnabled boolean
- Specifies if the DB System read endpoint is enabled or not.
- readEndpoint stringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- readEndpoint stringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- exclude_ips Sequence[str]
- A list of IP addresses of read replicas that are excluded from serving read requests.
- is_enabled bool
- Specifies if the DB System read endpoint is enabled or not.
- read_endpoint_ strhostname_ label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- read_endpoint_ strip_ address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
- excludeIps List<String>
- A list of IP addresses of read replicas that are excluded from serving read requests.
- isEnabled Boolean
- Specifies if the DB System read endpoint is enabled or not.
- readEndpoint StringHostname Label 
- The hostname for the read endpoint of the DB System. Used for DNS.
- readEndpoint StringIp Address 
- The IP address the DB System read endpoint is configured to listen on. A private IP address of your choice to assign to the read endpoint of the DB System. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
GetMysqlBackupsBackupDbSystemSnapshotSecureConnection        
- CertificateGeneration stringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- CertificateId string
- The OCID of the certificate to use.
- CertificateGeneration stringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- CertificateId string
- The OCID of the certificate to use.
- certificateGeneration StringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificateId String
- The OCID of the certificate to use.
- certificateGeneration stringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificateId string
- The OCID of the certificate to use.
- certificate_generation_ strtype 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificate_id str
- The OCID of the certificate to use.
- certificateGeneration StringType 
- Select whether to use MySQL Database Service-managed certificate (SYSTEM) or your own certificate (BYOC).
- certificateId String
- The OCID of the certificate to use.
GetMysqlBackupsBackupDbSystemSnapshotSummary       
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Id string
- OCID of the backup itself
- Region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- DisplayName string
- A filter to return only the resource matching the given display name exactly.
- Id string
- OCID of the backup itself
- Region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- id String
- OCID of the backup itself
- region String
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- displayName string
- A filter to return only the resource matching the given display name exactly.
- id string
- OCID of the backup itself
- region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- display_name str
- A filter to return only the resource matching the given display name exactly.
- id str
- OCID of the backup itself
- region str
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- displayName String
- A filter to return only the resource matching the given display name exactly.
- id String
- OCID of the backup itself
- region String
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
GetMysqlBackupsBackupSourceDetail     
- BackupId string
- Backup OCID
- CompartmentId string
- The compartment OCID.
- Region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- BackupId string
- Backup OCID
- CompartmentId string
- The compartment OCID.
- Region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- backupId String
- Backup OCID
- compartmentId String
- The compartment OCID.
- region String
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- backupId string
- Backup OCID
- compartmentId string
- The compartment OCID.
- region string
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- backup_id str
- Backup OCID
- compartment_id str
- The compartment OCID.
- region str
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
- backupId String
- Backup OCID
- compartmentId String
- The compartment OCID.
- region String
- The region identifier of the region where the DB system exists. For more information, please see Regions and Availability Domains.
GetMysqlBackupsFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.