import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Autonomous Container Database Snapshot Standby resource in Oracle Cloud Infrastructure Database service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/AutonomousContainerDatabaseSnapshotStandby * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database * * Convert the standby Autonomous Container Database (ACD) between physical standby and snapshot standby ACD. For more information about converting standby ACDs, see * [Convert Physical Standby to Snapshot Standby](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-D3B503F1-0032-4B0D-9F00-ACAE8151AB80) and [Convert Snapshot Standby to Physical Standby](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-E8D7E0EE-8244-467D-B33A-1BC6F969A0A4). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousContainerDatabaseSnapshotStandby = new oci.database.AutonomousContainerDatabaseSnapshotStandby("test_autonomous_container_database_snapshot_standby", { * autonomousContainerDatabaseId: testAutonomousContainerDatabase.id, * role: autonomousContainerDatabaseSnapshotStandbyRole, * connectionStringsType: autonomousContainerDatabaseSnapshotStandbyConnectionStringsType, * }); * ``` * * ## Import * * AutonomousContainerDatabaseSnapshotStandby can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Database/autonomousContainerDatabaseSnapshotStandby:AutonomousContainerDatabaseSnapshotStandby test_autonomous_container_database_snapshot_standby "id" * ``` */ export declare class AutonomousContainerDatabaseSnapshotStandby extends pulumi.CustomResource { /** * Get an existing AutonomousContainerDatabaseSnapshotStandby resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AutonomousContainerDatabaseSnapshotStandbyState, opts?: pulumi.CustomResourceOptions): AutonomousContainerDatabaseSnapshotStandby; /** * Returns true if the given object is an instance of AutonomousContainerDatabaseSnapshotStandby. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AutonomousContainerDatabaseSnapshotStandby; /** * The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly autonomousContainerDatabaseId: pulumi.Output; /** * type of connection strings when converting database to snapshot mode */ readonly connectionStringsType: pulumi.Output; /** * The Data Guard role of the Autonomous Container Database or Autonomous AI Database, if Autonomous Data Guard is enabled. * * ** 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 */ readonly role: pulumi.Output; /** * Create a AutonomousContainerDatabaseSnapshotStandby resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AutonomousContainerDatabaseSnapshotStandbyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AutonomousContainerDatabaseSnapshotStandby resources. */ export interface AutonomousContainerDatabaseSnapshotStandbyState { /** * The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousContainerDatabaseId?: pulumi.Input; /** * type of connection strings when converting database to snapshot mode */ connectionStringsType?: pulumi.Input; /** * The Data Guard role of the Autonomous Container Database or Autonomous AI Database, if Autonomous Data Guard is enabled. * * ** 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?: pulumi.Input; } /** * The set of arguments for constructing a AutonomousContainerDatabaseSnapshotStandby resource. */ export interface AutonomousContainerDatabaseSnapshotStandbyArgs { /** * The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ autonomousContainerDatabaseId: pulumi.Input; /** * type of connection strings when converting database to snapshot mode */ connectionStringsType?: pulumi.Input; /** * The Data Guard role of the Autonomous Container Database or Autonomous AI Database, if Autonomous Data Guard is enabled. * * ** 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: pulumi.Input; } //# sourceMappingURL=autonomousContainerDatabaseSnapshotStandby.d.ts.map