oci.Database.AutonomousContainerDatabaseDataguardAssociation
Explore with Pulumi AI
This resource provides the Autonomous Container Database Dataguard Association resource in Oracle Cloud Infrastructure Database service.
Create a new Autonomous Data Guard association. An Autonomous Data Guard association represents the replication relationship between the specified Autonomous Container database and a peer Autonomous Container database. For more information, see Using Oracle Data Guard.
All Oracle Cloud Infrastructure resources, including Data Guard associations, get an Oracle-assigned, unique ID called an Oracle Cloud Identifier (OCID). When you create a resource, you can find its OCID in the response. You can also retrieve a resource’s OCID by using a List API operation on that resource type, or by viewing the resource in the Console. For more information, see Resource Identifiers.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousContainerDatabaseDataguardAssociation = new oci.database.AutonomousContainerDatabaseDataguardAssociation("test_autonomous_container_database_dataguard_association", {
autonomousContainerDatabaseId: testAutonomousContainerDatabase.id,
peerAutonomousContainerDatabaseDisplayName: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseDisplayName,
protectionMode: autonomousContainerDatabaseDataguardAssociationProtectionMode,
fastStartFailOverLagLimitInSeconds: autonomousContainerDatabaseDataguardAssociationFastStartFailOverLagLimitInSeconds,
isAutomaticFailoverEnabled: autonomousContainerDatabaseDataguardAssociationIsAutomaticFailoverEnabled,
peerAutonomousContainerDatabaseBackupConfig: {
backupDestinationDetails: [{
type: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsType,
dbrsPolicyId: testPolicy.id,
id: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsId,
internetProxy: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsInternetProxy,
vpcPassword: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcPassword,
vpcUser: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcUser,
}],
recoveryWindowInDays: autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigRecoveryWindowInDays,
},
peerAutonomousContainerDatabaseCompartmentId: testCompartment.id,
peerAutonomousVmClusterId: testAutonomousVmCluster.id,
peerCloudAutonomousVmClusterId: testCloudAutonomousVmCluster.id,
peerDbUniqueName: autonomousContainerDatabaseDataguardAssociationPeerDbUniqueName,
standbyMaintenanceBufferInDays: autonomousContainerDatabaseDataguardAssociationStandbyMaintenanceBufferInDays,
});
import pulumi
import pulumi_oci as oci
test_autonomous_container_database_dataguard_association = oci.database.AutonomousContainerDatabaseDataguardAssociation("test_autonomous_container_database_dataguard_association",
autonomous_container_database_id=test_autonomous_container_database["id"],
peer_autonomous_container_database_display_name=autonomous_container_database_dataguard_association_peer_autonomous_container_database_display_name,
protection_mode=autonomous_container_database_dataguard_association_protection_mode,
fast_start_fail_over_lag_limit_in_seconds=autonomous_container_database_dataguard_association_fast_start_fail_over_lag_limit_in_seconds,
is_automatic_failover_enabled=autonomous_container_database_dataguard_association_is_automatic_failover_enabled,
peer_autonomous_container_database_backup_config={
"backup_destination_details": [{
"type": autonomous_container_database_dataguard_association_peer_autonomous_container_database_backup_config_backup_destination_details_type,
"dbrs_policy_id": test_policy["id"],
"id": autonomous_container_database_dataguard_association_peer_autonomous_container_database_backup_config_backup_destination_details_id,
"internet_proxy": autonomous_container_database_dataguard_association_peer_autonomous_container_database_backup_config_backup_destination_details_internet_proxy,
"vpc_password": autonomous_container_database_dataguard_association_peer_autonomous_container_database_backup_config_backup_destination_details_vpc_password,
"vpc_user": autonomous_container_database_dataguard_association_peer_autonomous_container_database_backup_config_backup_destination_details_vpc_user,
}],
"recovery_window_in_days": autonomous_container_database_dataguard_association_peer_autonomous_container_database_backup_config_recovery_window_in_days,
},
peer_autonomous_container_database_compartment_id=test_compartment["id"],
peer_autonomous_vm_cluster_id=test_autonomous_vm_cluster["id"],
peer_cloud_autonomous_vm_cluster_id=test_cloud_autonomous_vm_cluster["id"],
peer_db_unique_name=autonomous_container_database_dataguard_association_peer_db_unique_name,
standby_maintenance_buffer_in_days=autonomous_container_database_dataguard_association_standby_maintenance_buffer_in_days)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.NewAutonomousContainerDatabaseDataguardAssociation(ctx, "test_autonomous_container_database_dataguard_association", &Database.AutonomousContainerDatabaseDataguardAssociationArgs{
AutonomousContainerDatabaseId: pulumi.Any(testAutonomousContainerDatabase.Id),
PeerAutonomousContainerDatabaseDisplayName: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseDisplayName),
ProtectionMode: pulumi.Any(autonomousContainerDatabaseDataguardAssociationProtectionMode),
FastStartFailOverLagLimitInSeconds: pulumi.Any(autonomousContainerDatabaseDataguardAssociationFastStartFailOverLagLimitInSeconds),
IsAutomaticFailoverEnabled: pulumi.Any(autonomousContainerDatabaseDataguardAssociationIsAutomaticFailoverEnabled),
PeerAutonomousContainerDatabaseBackupConfig: &database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs{
BackupDestinationDetails: database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArray{
&database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs{
Type: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsType),
DbrsPolicyId: pulumi.Any(testPolicy.Id),
Id: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsId),
InternetProxy: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsInternetProxy),
VpcPassword: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcPassword),
VpcUser: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcUser),
},
},
RecoveryWindowInDays: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigRecoveryWindowInDays),
},
PeerAutonomousContainerDatabaseCompartmentId: pulumi.Any(testCompartment.Id),
PeerAutonomousVmClusterId: pulumi.Any(testAutonomousVmCluster.Id),
PeerCloudAutonomousVmClusterId: pulumi.Any(testCloudAutonomousVmCluster.Id),
PeerDbUniqueName: pulumi.Any(autonomousContainerDatabaseDataguardAssociationPeerDbUniqueName),
StandbyMaintenanceBufferInDays: pulumi.Any(autonomousContainerDatabaseDataguardAssociationStandbyMaintenanceBufferInDays),
})
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 testAutonomousContainerDatabaseDataguardAssociation = new Oci.Database.AutonomousContainerDatabaseDataguardAssociation("test_autonomous_container_database_dataguard_association", new()
{
AutonomousContainerDatabaseId = testAutonomousContainerDatabase.Id,
PeerAutonomousContainerDatabaseDisplayName = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseDisplayName,
ProtectionMode = autonomousContainerDatabaseDataguardAssociationProtectionMode,
FastStartFailOverLagLimitInSeconds = autonomousContainerDatabaseDataguardAssociationFastStartFailOverLagLimitInSeconds,
IsAutomaticFailoverEnabled = autonomousContainerDatabaseDataguardAssociationIsAutomaticFailoverEnabled,
PeerAutonomousContainerDatabaseBackupConfig = new Oci.Database.Inputs.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs
{
BackupDestinationDetails = new[]
{
new Oci.Database.Inputs.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs
{
Type = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsType,
DbrsPolicyId = testPolicy.Id,
Id = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsId,
InternetProxy = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsInternetProxy,
VpcPassword = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcPassword,
VpcUser = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcUser,
},
},
RecoveryWindowInDays = autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigRecoveryWindowInDays,
},
PeerAutonomousContainerDatabaseCompartmentId = testCompartment.Id,
PeerAutonomousVmClusterId = testAutonomousVmCluster.Id,
PeerCloudAutonomousVmClusterId = testCloudAutonomousVmCluster.Id,
PeerDbUniqueName = autonomousContainerDatabaseDataguardAssociationPeerDbUniqueName,
StandbyMaintenanceBufferInDays = autonomousContainerDatabaseDataguardAssociationStandbyMaintenanceBufferInDays,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.AutonomousContainerDatabaseDataguardAssociation;
import com.pulumi.oci.Database.AutonomousContainerDatabaseDataguardAssociationArgs;
import com.pulumi.oci.Database.inputs.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testAutonomousContainerDatabaseDataguardAssociation = new AutonomousContainerDatabaseDataguardAssociation("testAutonomousContainerDatabaseDataguardAssociation", AutonomousContainerDatabaseDataguardAssociationArgs.builder()
.autonomousContainerDatabaseId(testAutonomousContainerDatabase.id())
.peerAutonomousContainerDatabaseDisplayName(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseDisplayName)
.protectionMode(autonomousContainerDatabaseDataguardAssociationProtectionMode)
.fastStartFailOverLagLimitInSeconds(autonomousContainerDatabaseDataguardAssociationFastStartFailOverLagLimitInSeconds)
.isAutomaticFailoverEnabled(autonomousContainerDatabaseDataguardAssociationIsAutomaticFailoverEnabled)
.peerAutonomousContainerDatabaseBackupConfig(AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs.builder()
.backupDestinationDetails(AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs.builder()
.type(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsType)
.dbrsPolicyId(testPolicy.id())
.id(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsId)
.internetProxy(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsInternetProxy)
.vpcPassword(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcPassword)
.vpcUser(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcUser)
.build())
.recoveryWindowInDays(autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigRecoveryWindowInDays)
.build())
.peerAutonomousContainerDatabaseCompartmentId(testCompartment.id())
.peerAutonomousVmClusterId(testAutonomousVmCluster.id())
.peerCloudAutonomousVmClusterId(testCloudAutonomousVmCluster.id())
.peerDbUniqueName(autonomousContainerDatabaseDataguardAssociationPeerDbUniqueName)
.standbyMaintenanceBufferInDays(autonomousContainerDatabaseDataguardAssociationStandbyMaintenanceBufferInDays)
.build());
}
}
resources:
testAutonomousContainerDatabaseDataguardAssociation:
type: oci:Database:AutonomousContainerDatabaseDataguardAssociation
name: test_autonomous_container_database_dataguard_association
properties:
autonomousContainerDatabaseId: ${testAutonomousContainerDatabase.id}
peerAutonomousContainerDatabaseDisplayName: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseDisplayName}
protectionMode: ${autonomousContainerDatabaseDataguardAssociationProtectionMode}
fastStartFailOverLagLimitInSeconds: ${autonomousContainerDatabaseDataguardAssociationFastStartFailOverLagLimitInSeconds}
isAutomaticFailoverEnabled: ${autonomousContainerDatabaseDataguardAssociationIsAutomaticFailoverEnabled}
peerAutonomousContainerDatabaseBackupConfig:
backupDestinationDetails:
- type: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsType}
dbrsPolicyId: ${testPolicy.id}
id: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsId}
internetProxy: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsInternetProxy}
vpcPassword: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcPassword}
vpcUser: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailsVpcUser}
recoveryWindowInDays: ${autonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigRecoveryWindowInDays}
peerAutonomousContainerDatabaseCompartmentId: ${testCompartment.id}
peerAutonomousVmClusterId: ${testAutonomousVmCluster.id}
peerCloudAutonomousVmClusterId: ${testCloudAutonomousVmCluster.id}
peerDbUniqueName: ${autonomousContainerDatabaseDataguardAssociationPeerDbUniqueName}
standbyMaintenanceBufferInDays: ${autonomousContainerDatabaseDataguardAssociationStandbyMaintenanceBufferInDays}
Create AutonomousContainerDatabaseDataguardAssociation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutonomousContainerDatabaseDataguardAssociation(name: string, args: AutonomousContainerDatabaseDataguardAssociationArgs, opts?: CustomResourceOptions);
@overload
def AutonomousContainerDatabaseDataguardAssociation(resource_name: str,
args: AutonomousContainerDatabaseDataguardAssociationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AutonomousContainerDatabaseDataguardAssociation(resource_name: str,
opts: Optional[ResourceOptions] = None,
autonomous_container_database_id: Optional[str] = None,
peer_autonomous_container_database_display_name: Optional[str] = None,
protection_mode: Optional[str] = None,
autonomous_container_database_dataguard_association_id: Optional[str] = None,
fast_start_fail_over_lag_limit_in_seconds: Optional[int] = None,
is_automatic_failover_enabled: Optional[bool] = None,
peer_autonomous_container_database_backup_config: Optional[_database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs] = None,
peer_autonomous_container_database_compartment_id: Optional[str] = None,
peer_autonomous_vm_cluster_id: Optional[str] = None,
peer_cloud_autonomous_vm_cluster_id: Optional[str] = None,
peer_db_unique_name: Optional[str] = None,
standby_maintenance_buffer_in_days: Optional[int] = None)
func NewAutonomousContainerDatabaseDataguardAssociation(ctx *Context, name string, args AutonomousContainerDatabaseDataguardAssociationArgs, opts ...ResourceOption) (*AutonomousContainerDatabaseDataguardAssociation, error)
public AutonomousContainerDatabaseDataguardAssociation(string name, AutonomousContainerDatabaseDataguardAssociationArgs args, CustomResourceOptions? opts = null)
public AutonomousContainerDatabaseDataguardAssociation(String name, AutonomousContainerDatabaseDataguardAssociationArgs args)
public AutonomousContainerDatabaseDataguardAssociation(String name, AutonomousContainerDatabaseDataguardAssociationArgs args, CustomResourceOptions options)
type: oci:Database:AutonomousContainerDatabaseDataguardAssociation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AutonomousContainerDatabaseDataguardAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AutonomousContainerDatabaseDataguardAssociationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AutonomousContainerDatabaseDataguardAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutonomousContainerDatabaseDataguardAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutonomousContainerDatabaseDataguardAssociationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var autonomousContainerDatabaseDataguardAssociationResource = new Oci.Database.AutonomousContainerDatabaseDataguardAssociation("autonomousContainerDatabaseDataguardAssociationResource", new()
{
AutonomousContainerDatabaseId = "string",
PeerAutonomousContainerDatabaseDisplayName = "string",
ProtectionMode = "string",
AutonomousContainerDatabaseDataguardAssociationId = "string",
FastStartFailOverLagLimitInSeconds = 0,
IsAutomaticFailoverEnabled = false,
PeerAutonomousContainerDatabaseBackupConfig = new Oci.Database.Inputs.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs
{
BackupDestinationDetails = new[]
{
new Oci.Database.Inputs.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs
{
Type = "string",
DbrsPolicyId = "string",
Id = "string",
InternetProxy = "string",
VpcPassword = "string",
VpcUser = "string",
},
},
RecoveryWindowInDays = 0,
},
PeerAutonomousContainerDatabaseCompartmentId = "string",
PeerAutonomousVmClusterId = "string",
PeerCloudAutonomousVmClusterId = "string",
PeerDbUniqueName = "string",
StandbyMaintenanceBufferInDays = 0,
});
example, err := Database.NewAutonomousContainerDatabaseDataguardAssociation(ctx, "autonomousContainerDatabaseDataguardAssociationResource", &Database.AutonomousContainerDatabaseDataguardAssociationArgs{
AutonomousContainerDatabaseId: pulumi.String("string"),
PeerAutonomousContainerDatabaseDisplayName: pulumi.String("string"),
ProtectionMode: pulumi.String("string"),
AutonomousContainerDatabaseDataguardAssociationId: pulumi.String("string"),
FastStartFailOverLagLimitInSeconds: pulumi.Int(0),
IsAutomaticFailoverEnabled: pulumi.Bool(false),
PeerAutonomousContainerDatabaseBackupConfig: &database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs{
BackupDestinationDetails: database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArray{
&database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs{
Type: pulumi.String("string"),
DbrsPolicyId: pulumi.String("string"),
Id: pulumi.String("string"),
InternetProxy: pulumi.String("string"),
VpcPassword: pulumi.String("string"),
VpcUser: pulumi.String("string"),
},
},
RecoveryWindowInDays: pulumi.Int(0),
},
PeerAutonomousContainerDatabaseCompartmentId: pulumi.String("string"),
PeerAutonomousVmClusterId: pulumi.String("string"),
PeerCloudAutonomousVmClusterId: pulumi.String("string"),
PeerDbUniqueName: pulumi.String("string"),
StandbyMaintenanceBufferInDays: pulumi.Int(0),
})
var autonomousContainerDatabaseDataguardAssociationResource = new AutonomousContainerDatabaseDataguardAssociation("autonomousContainerDatabaseDataguardAssociationResource", AutonomousContainerDatabaseDataguardAssociationArgs.builder()
.autonomousContainerDatabaseId("string")
.peerAutonomousContainerDatabaseDisplayName("string")
.protectionMode("string")
.autonomousContainerDatabaseDataguardAssociationId("string")
.fastStartFailOverLagLimitInSeconds(0)
.isAutomaticFailoverEnabled(false)
.peerAutonomousContainerDatabaseBackupConfig(AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs.builder()
.backupDestinationDetails(AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs.builder()
.type("string")
.dbrsPolicyId("string")
.id("string")
.internetProxy("string")
.vpcPassword("string")
.vpcUser("string")
.build())
.recoveryWindowInDays(0)
.build())
.peerAutonomousContainerDatabaseCompartmentId("string")
.peerAutonomousVmClusterId("string")
.peerCloudAutonomousVmClusterId("string")
.peerDbUniqueName("string")
.standbyMaintenanceBufferInDays(0)
.build());
autonomous_container_database_dataguard_association_resource = oci.database.AutonomousContainerDatabaseDataguardAssociation("autonomousContainerDatabaseDataguardAssociationResource",
autonomous_container_database_id="string",
peer_autonomous_container_database_display_name="string",
protection_mode="string",
autonomous_container_database_dataguard_association_id="string",
fast_start_fail_over_lag_limit_in_seconds=0,
is_automatic_failover_enabled=False,
peer_autonomous_container_database_backup_config={
"backup_destination_details": [{
"type": "string",
"dbrs_policy_id": "string",
"id": "string",
"internet_proxy": "string",
"vpc_password": "string",
"vpc_user": "string",
}],
"recovery_window_in_days": 0,
},
peer_autonomous_container_database_compartment_id="string",
peer_autonomous_vm_cluster_id="string",
peer_cloud_autonomous_vm_cluster_id="string",
peer_db_unique_name="string",
standby_maintenance_buffer_in_days=0)
const autonomousContainerDatabaseDataguardAssociationResource = new oci.database.AutonomousContainerDatabaseDataguardAssociation("autonomousContainerDatabaseDataguardAssociationResource", {
autonomousContainerDatabaseId: "string",
peerAutonomousContainerDatabaseDisplayName: "string",
protectionMode: "string",
autonomousContainerDatabaseDataguardAssociationId: "string",
fastStartFailOverLagLimitInSeconds: 0,
isAutomaticFailoverEnabled: false,
peerAutonomousContainerDatabaseBackupConfig: {
backupDestinationDetails: [{
type: "string",
dbrsPolicyId: "string",
id: "string",
internetProxy: "string",
vpcPassword: "string",
vpcUser: "string",
}],
recoveryWindowInDays: 0,
},
peerAutonomousContainerDatabaseCompartmentId: "string",
peerAutonomousVmClusterId: "string",
peerCloudAutonomousVmClusterId: "string",
peerDbUniqueName: "string",
standbyMaintenanceBufferInDays: 0,
});
type: oci:Database:AutonomousContainerDatabaseDataguardAssociation
properties:
autonomousContainerDatabaseDataguardAssociationId: string
autonomousContainerDatabaseId: string
fastStartFailOverLagLimitInSeconds: 0
isAutomaticFailoverEnabled: false
peerAutonomousContainerDatabaseBackupConfig:
backupDestinationDetails:
- dbrsPolicyId: string
id: string
internetProxy: string
type: string
vpcPassword: string
vpcUser: string
recoveryWindowInDays: 0
peerAutonomousContainerDatabaseCompartmentId: string
peerAutonomousContainerDatabaseDisplayName: string
peerAutonomousVmClusterId: string
peerCloudAutonomousVmClusterId: string
peerDbUniqueName: string
protectionMode: string
standbyMaintenanceBufferInDays: 0
AutonomousContainerDatabaseDataguardAssociation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AutonomousContainerDatabaseDataguardAssociation resource accepts the following input properties:
- Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Peer
Autonomous stringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- Protection
Mode string (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Autonomous
Container stringDatabase Dataguard Association Id - Fast
Start intFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- Is
Automatic boolFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - Peer
Autonomous AutonomousContainer Database Backup Config Container Database Dataguard Association Peer Autonomous Container Database Backup Config - Backup options for the standby Autonomous Container Database.
- Peer
Autonomous stringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- Peer
Autonomous stringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- Peer
Cloud stringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- Peer
Db stringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - Standby
Maintenance intBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Peer
Autonomous stringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- Protection
Mode string (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Autonomous
Container stringDatabase Dataguard Association Id - Fast
Start intFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- Is
Automatic boolFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - Peer
Autonomous AutonomousContainer Database Backup Config Container Database Dataguard Association Peer Autonomous Container Database Backup Config Args - Backup options for the standby Autonomous Container Database.
- Peer
Autonomous stringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- Peer
Autonomous stringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- Peer
Cloud stringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- Peer
Db stringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - Standby
Maintenance intBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- peer
Autonomous StringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- protection
Mode String (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous
Container StringDatabase Dataguard Association Id - fast
Start IntegerFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is
Automatic BooleanFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - peer
Autonomous AutonomousContainer Database Backup Config Container Dataguard Association Peer Autonomous Container Backup Config - Backup options for the standby Autonomous Container Database.
- peer
Autonomous StringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer
Autonomous StringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer
Cloud StringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer
Db StringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - standby
Maintenance IntegerBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- peer
Autonomous stringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- protection
Mode string (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous
Container stringDatabase Dataguard Association Id - fast
Start numberFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is
Automatic booleanFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - peer
Autonomous AutonomousContainer Database Backup Config Container Database Dataguard Association Peer Autonomous Container Database Backup Config - Backup options for the standby Autonomous Container Database.
- peer
Autonomous stringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer
Autonomous stringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer
Cloud stringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer
Db stringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - standby
Maintenance numberBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- autonomous_
container_ strdatabase_ id - The Autonomous Container Database OCID.
- peer_
autonomous_ strcontainer_ database_ display_ name - The display name for the peer Autonomous Container Database.
- protection_
mode str (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous_
container_ strdatabase_ dataguard_ association_ id - fast_
start_ intfail_ over_ lag_ limit_ in_ seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is_
automatic_ boolfailover_ enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - peer_
autonomous_ database.container_ database_ backup_ config Autonomous Container Database Dataguard Association Peer Autonomous Container Database Backup Config Args - Backup options for the standby Autonomous Container Database.
- peer_
autonomous_ strcontainer_ database_ compartment_ id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer_
autonomous_ strvm_ cluster_ id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer_
cloud_ strautonomous_ vm_ cluster_ id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer_
db_ strunique_ name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - standby_
maintenance_ intbuffer_ in_ days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- peer
Autonomous StringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- protection
Mode String (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- autonomous
Container StringDatabase Dataguard Association Id - fast
Start NumberFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is
Automatic BooleanFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - peer
Autonomous Property MapContainer Database Backup Config - Backup options for the standby Autonomous Container Database.
- peer
Autonomous StringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer
Autonomous StringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer
Cloud StringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer
Db StringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - standby
Maintenance NumberBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutonomousContainerDatabaseDataguardAssociation resource produces the following output properties:
- Apply
Lag string - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- Apply
Rate string - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Additional information about the current lifecycleState, if available.
- Peer
Autonomous stringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- Peer
Autonomous stringContainer Database Id - The OCID of the peer Autonomous Container Database.
- Peer
Lifecycle stringState - The current state of the Autonomous Container Database.
- Peer
Role string - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- State string
- The current state of Autonomous Data Guard.
- Time
Created string - The date and time the Autonomous DataGuard association was created.
- Time
Last stringRole Changed - The date and time when the last role change action happened.
- Time
Last stringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- Transport
Lag string - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- Apply
Lag string - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- Apply
Rate string - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Additional information about the current lifecycleState, if available.
- Peer
Autonomous stringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- Peer
Autonomous stringContainer Database Id - The OCID of the peer Autonomous Container Database.
- Peer
Lifecycle stringState - The current state of the Autonomous Container Database.
- Peer
Role string - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- State string
- The current state of Autonomous Data Guard.
- Time
Created string - The date and time the Autonomous DataGuard association was created.
- Time
Last stringRole Changed - The date and time when the last role change action happened.
- Time
Last stringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- Transport
Lag string - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply
Lag String - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply
Rate String - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Additional information about the current lifecycleState, if available.
- peer
Autonomous StringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer
Autonomous StringContainer Database Id - The OCID of the peer Autonomous Container Database.
- peer
Lifecycle StringState - The current state of the Autonomous Container Database.
- peer
Role String - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- state String
- The current state of Autonomous Data Guard.
- time
Created String - The date and time the Autonomous DataGuard association was created.
- time
Last StringRole Changed - The date and time when the last role change action happened.
- time
Last StringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport
Lag String - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply
Lag string - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply
Rate string - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Additional information about the current lifecycleState, if available.
- peer
Autonomous stringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer
Autonomous stringContainer Database Id - The OCID of the peer Autonomous Container Database.
- peer
Lifecycle stringState - The current state of the Autonomous Container Database.
- peer
Role string - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- state string
- The current state of Autonomous Data Guard.
- time
Created string - The date and time the Autonomous DataGuard association was created.
- time
Last stringRole Changed - The date and time when the last role change action happened.
- time
Last stringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport
Lag string - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply_
lag str - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply_
rate str - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - Additional information about the current lifecycleState, if available.
- peer_
autonomous_ strcontainer_ database_ dataguard_ association_ id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer_
autonomous_ strcontainer_ database_ id - The OCID of the peer Autonomous Container Database.
- peer_
lifecycle_ strstate - The current state of the Autonomous Container Database.
- peer_
role str - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- role str
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- state str
- The current state of Autonomous Data Guard.
- time_
created str - The date and time the Autonomous DataGuard association was created.
- time_
last_ strrole_ changed - The date and time when the last role change action happened.
- time_
last_ strsynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport_
lag str - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply
Lag String - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply
Rate String - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Additional information about the current lifecycleState, if available.
- peer
Autonomous StringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer
Autonomous StringContainer Database Id - The OCID of the peer Autonomous Container Database.
- peer
Lifecycle StringState - The current state of the Autonomous Container Database.
- peer
Role String - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- state String
- The current state of Autonomous Data Guard.
- time
Created String - The date and time the Autonomous DataGuard association was created.
- time
Last StringRole Changed - The date and time when the last role change action happened.
- time
Last StringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport
Lag String - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
Look up Existing AutonomousContainerDatabaseDataguardAssociation Resource
Get an existing AutonomousContainerDatabaseDataguardAssociation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AutonomousContainerDatabaseDataguardAssociationState, opts?: CustomResourceOptions): AutonomousContainerDatabaseDataguardAssociation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
apply_lag: Optional[str] = None,
apply_rate: Optional[str] = None,
autonomous_container_database_dataguard_association_id: Optional[str] = None,
autonomous_container_database_id: Optional[str] = None,
fast_start_fail_over_lag_limit_in_seconds: Optional[int] = None,
is_automatic_failover_enabled: Optional[bool] = None,
lifecycle_details: Optional[str] = None,
peer_autonomous_container_database_backup_config: Optional[_database.AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs] = None,
peer_autonomous_container_database_compartment_id: Optional[str] = None,
peer_autonomous_container_database_dataguard_association_id: Optional[str] = None,
peer_autonomous_container_database_display_name: Optional[str] = None,
peer_autonomous_container_database_id: Optional[str] = None,
peer_autonomous_vm_cluster_id: Optional[str] = None,
peer_cloud_autonomous_vm_cluster_id: Optional[str] = None,
peer_db_unique_name: Optional[str] = None,
peer_lifecycle_state: Optional[str] = None,
peer_role: Optional[str] = None,
protection_mode: Optional[str] = None,
role: Optional[str] = None,
standby_maintenance_buffer_in_days: Optional[int] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_last_role_changed: Optional[str] = None,
time_last_synced: Optional[str] = None,
transport_lag: Optional[str] = None) -> AutonomousContainerDatabaseDataguardAssociation
func GetAutonomousContainerDatabaseDataguardAssociation(ctx *Context, name string, id IDInput, state *AutonomousContainerDatabaseDataguardAssociationState, opts ...ResourceOption) (*AutonomousContainerDatabaseDataguardAssociation, error)
public static AutonomousContainerDatabaseDataguardAssociation Get(string name, Input<string> id, AutonomousContainerDatabaseDataguardAssociationState? state, CustomResourceOptions? opts = null)
public static AutonomousContainerDatabaseDataguardAssociation get(String name, Output<String> id, AutonomousContainerDatabaseDataguardAssociationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Apply
Lag string - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- Apply
Rate string - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- Autonomous
Container stringDatabase Dataguard Association Id - Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Fast
Start intFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- Is
Automatic boolFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - Lifecycle
Details string - Additional information about the current lifecycleState, if available.
- Peer
Autonomous AutonomousContainer Database Backup Config Container Database Dataguard Association Peer Autonomous Container Database Backup Config - Backup options for the standby Autonomous Container Database.
- Peer
Autonomous stringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- Peer
Autonomous stringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- Peer
Autonomous stringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- Peer
Autonomous stringContainer Database Id - The OCID of the peer Autonomous Container Database.
- Peer
Autonomous stringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- Peer
Cloud stringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- Peer
Db stringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - Peer
Lifecycle stringState - The current state of the Autonomous Container Database.
- Peer
Role string - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Protection
Mode string (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Standby
Maintenance intBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- State string
- The current state of Autonomous Data Guard.
- Time
Created string - The date and time the Autonomous DataGuard association was created.
- Time
Last stringRole Changed - The date and time when the last role change action happened.
- Time
Last stringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- Transport
Lag string - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- Apply
Lag string - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- Apply
Rate string - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- Autonomous
Container stringDatabase Dataguard Association Id - Autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- Fast
Start intFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- Is
Automatic boolFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - Lifecycle
Details string - Additional information about the current lifecycleState, if available.
- Peer
Autonomous AutonomousContainer Database Backup Config Container Database Dataguard Association Peer Autonomous Container Database Backup Config Args - Backup options for the standby Autonomous Container Database.
- Peer
Autonomous stringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- Peer
Autonomous stringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- Peer
Autonomous stringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- Peer
Autonomous stringContainer Database Id - The OCID of the peer Autonomous Container Database.
- Peer
Autonomous stringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- Peer
Cloud stringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- Peer
Db stringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - Peer
Lifecycle stringState - The current state of the Autonomous Container Database.
- Peer
Role string - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Protection
Mode string (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Standby
Maintenance intBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- State string
- The current state of Autonomous Data Guard.
- Time
Created string - The date and time the Autonomous DataGuard association was created.
- Time
Last stringRole Changed - The date and time when the last role change action happened.
- Time
Last stringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- Transport
Lag string - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply
Lag String - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply
Rate String - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- autonomous
Container StringDatabase Dataguard Association Id - autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- fast
Start IntegerFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is
Automatic BooleanFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - lifecycle
Details String - Additional information about the current lifecycleState, if available.
- peer
Autonomous AutonomousContainer Database Backup Config Container Dataguard Association Peer Autonomous Container Backup Config - Backup options for the standby Autonomous Container Database.
- peer
Autonomous StringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer
Autonomous StringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer
Autonomous StringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- peer
Autonomous StringContainer Database Id - The OCID of the peer Autonomous Container Database.
- peer
Autonomous StringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer
Cloud StringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer
Db StringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - peer
Lifecycle StringState - The current state of the Autonomous Container Database.
- peer
Role String - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- protection
Mode String (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- standby
Maintenance IntegerBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- state String
- The current state of Autonomous Data Guard.
- time
Created String - The date and time the Autonomous DataGuard association was created.
- time
Last StringRole Changed - The date and time when the last role change action happened.
- time
Last StringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport
Lag String - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply
Lag string - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply
Rate string - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- autonomous
Container stringDatabase Dataguard Association Id - autonomous
Container stringDatabase Id - The Autonomous Container Database OCID.
- fast
Start numberFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is
Automatic booleanFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - lifecycle
Details string - Additional information about the current lifecycleState, if available.
- peer
Autonomous AutonomousContainer Database Backup Config Container Database Dataguard Association Peer Autonomous Container Database Backup Config - Backup options for the standby Autonomous Container Database.
- peer
Autonomous stringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer
Autonomous stringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer
Autonomous stringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- peer
Autonomous stringContainer Database Id - The OCID of the peer Autonomous Container Database.
- peer
Autonomous stringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer
Cloud stringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer
Db stringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - peer
Lifecycle stringState - The current state of the Autonomous Container Database.
- peer
Role string - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- protection
Mode string (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- standby
Maintenance numberBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- state string
- The current state of Autonomous Data Guard.
- time
Created string - The date and time the Autonomous DataGuard association was created.
- time
Last stringRole Changed - The date and time when the last role change action happened.
- time
Last stringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport
Lag string - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply_
lag str - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply_
rate str - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- autonomous_
container_ strdatabase_ dataguard_ association_ id - autonomous_
container_ strdatabase_ id - The Autonomous Container Database OCID.
- fast_
start_ intfail_ over_ lag_ limit_ in_ seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is_
automatic_ boolfailover_ enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - lifecycle_
details str - Additional information about the current lifecycleState, if available.
- peer_
autonomous_ database.container_ database_ backup_ config Autonomous Container Database Dataguard Association Peer Autonomous Container Database Backup Config Args - Backup options for the standby Autonomous Container Database.
- peer_
autonomous_ strcontainer_ database_ compartment_ id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer_
autonomous_ strcontainer_ database_ dataguard_ association_ id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer_
autonomous_ strcontainer_ database_ display_ name - The display name for the peer Autonomous Container Database.
- peer_
autonomous_ strcontainer_ database_ id - The OCID of the peer Autonomous Container Database.
- peer_
autonomous_ strvm_ cluster_ id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer_
cloud_ strautonomous_ vm_ cluster_ id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer_
db_ strunique_ name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - peer_
lifecycle_ strstate - The current state of the Autonomous Container Database.
- peer_
role str - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- protection_
mode str (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- role str
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- standby_
maintenance_ intbuffer_ in_ days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- state str
- The current state of Autonomous Data Guard.
- time_
created str - The date and time the Autonomous DataGuard association was created.
- time_
last_ strrole_ changed - The date and time when the last role change action happened.
- time_
last_ strsynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport_
lag str - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
- apply
Lag String - The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example:
9 seconds
- apply
Rate String - The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example:
180 Mb per second
- autonomous
Container StringDatabase Dataguard Association Id - autonomous
Container StringDatabase Id - The Autonomous Container Database OCID.
- fast
Start NumberFail Over Lag Limit In Seconds - (Updatable) The lag time for my preference based on data loss tolerance in seconds.
- is
Automatic BooleanFailover Enabled - (Updatable) Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association. Input DataType: boolean. Example :
is_automatic_failover_enabled = true
. - lifecycle
Details String - Additional information about the current lifecycleState, if available.
- peer
Autonomous Property MapContainer Database Backup Config - Backup options for the standby Autonomous Container Database.
- peer
Autonomous StringContainer Database Compartment Id - The OCID of the compartment where the standby Autonomous Container Database will be created.
- peer
Autonomous StringContainer Database Dataguard Association Id - The OCID of the peer Autonomous Container Database-Autonomous Data Guard association.
- peer
Autonomous StringContainer Database Display Name - The display name for the peer Autonomous Container Database.
- peer
Autonomous StringContainer Database Id - The OCID of the peer Autonomous Container Database.
- peer
Autonomous StringVm Cluster Id - The OCID of the peer Autonomous Exadata VM Cluster.
- peer
Cloud StringAutonomous Vm Cluster Id - The OCID of the peer cloud Autonomous Exadata VM Cluster.
- peer
Db StringUnique Name - Specifies the
DB_UNIQUE_NAME
of the peer database to be created. - peer
Lifecycle StringState - The current state of the Autonomous Container Database.
- peer
Role String - The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- protection
Mode String (Updatable) The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- standby
Maintenance NumberBuffer In Days - The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
- state String
- The current state of Autonomous Data Guard.
- time
Created String - The date and time the Autonomous DataGuard association was created.
- time
Last StringRole Changed - The date and time when the last role change action happened.
- time
Last StringSynced - The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport
Lag String - The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example:
7 seconds
Supporting Types
AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig, AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs
- Backup
Destination List<AutonomousDetails Container Database Dataguard Association Peer Autonomous Container Database Backup Config Backup Destination Detail> - Backup destination details.
- Recovery
Window intIn Days - Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.
- Backup
Destination []AutonomousDetails Container Database Dataguard Association Peer Autonomous Container Database Backup Config Backup Destination Detail - Backup destination details.
- Recovery
Window intIn Days - Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.
- backup
Destination List<AutonomousDetails Container Dataguard Association Peer Autonomous Container Backup Config Backup Destination Detail> - Backup destination details.
- recovery
Window IntegerIn Days - Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.
- backup
Destination AutonomousDetails Container Database Dataguard Association Peer Autonomous Container Database Backup Config Backup Destination Detail[] - Backup destination details.
- recovery
Window numberIn Days - Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.
- backup_
destination_ Sequence[database.details Autonomous Container Database Dataguard Association Peer Autonomous Container Database Backup Config Backup Destination Detail] - Backup destination details.
- recovery_
window_ intin_ days - Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.
- backup
Destination List<Property Map>Details - Backup destination details.
- recovery
Window NumberIn Days - Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.
AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail, AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs
- Type string
- Type of the database backup destination.
- Dbrs
Policy stringId - The OCID of the DBRS policy used for backup.
- Id string
- The OCID of the backup destination.
- Internet
Proxy string - Proxy URL to connect to object store.
- Vpc
Password string - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- Vpc
User string - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- Type string
- Type of the database backup destination.
- Dbrs
Policy stringId - The OCID of the DBRS policy used for backup.
- Id string
- The OCID of the backup destination.
- Internet
Proxy string - Proxy URL to connect to object store.
- Vpc
Password string - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- Vpc
User string - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type String
- Type of the database backup destination.
- dbrs
Policy StringId - The OCID of the DBRS policy used for backup.
- id String
- The OCID of the backup destination.
- internet
Proxy String - Proxy URL to connect to object store.
- vpc
Password String - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc
User String - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type string
- Type of the database backup destination.
- dbrs
Policy stringId - The OCID of the DBRS policy used for backup.
- id string
- The OCID of the backup destination.
- internet
Proxy string - Proxy URL to connect to object store.
- vpc
Password string - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc
User string - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type str
- Type of the database backup destination.
- dbrs_
policy_ strid - The OCID of the DBRS policy used for backup.
- id str
- The OCID of the backup destination.
- internet_
proxy str - Proxy URL to connect to object store.
- vpc_
password str - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc_
user str - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
- type String
- Type of the database backup destination.
- dbrs
Policy StringId - The OCID of the DBRS policy used for backup.
- id String
- The OCID of the backup destination.
- internet
Proxy String - Proxy URL to connect to object store.
- vpc
Password String - For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
- vpc
User String - For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
Import
AutonomousContainerDatabaseDataguardAssociations can be imported using the id
, e.g.
$ pulumi import oci:Database/autonomousContainerDatabaseDataguardAssociation:AutonomousContainerDatabaseDataguardAssociation test_autonomous_container_database_dataguard_association "autonomousContainerDatabases/{autonomousContainerDatabaseId}/autonomousContainerDatabaseDataguardAssociations/{autonomousContainerDatabaseDataguardAssociationId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.