import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Automatic Dr Configuration resource in Oracle Cloud Infrastructure Disaster Recovery service. * * Get details for the Automatic DR configuration identified by *automaticDrConfigurationId*. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutomaticDrConfiguration = oci.disasterrecovery.getAutomaticDrConfiguration({ * automaticDrConfigurationId: testAutomaticDrConfigurationOciDisasterRecoveryAutomaticDrConfiguration.id, * }); * ``` */ export declare function getAutomaticDrConfiguration(args: GetAutomaticDrConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAutomaticDrConfiguration. */ export interface GetAutomaticDrConfigurationArgs { /** * The OCID of the Automatic DR configuration. Example: `ocid1.automaticDrConfiguration.oc1..uniqueID` */ automaticDrConfigurationId: string; } /** * A collection of values returned by getAutomaticDrConfiguration. */ export interface GetAutomaticDrConfigurationResult { readonly automaticDrConfigurationId: string; /** * The OCID of the compartment containing the Automatic DR configuration. Example: `ocid1.compartment.oc1..uniqueID` */ readonly compartmentId: string; /** * The unique id of a Failover DR Plan. Example: `ocid1.drplan.oc1..uniqueID` */ readonly defaultFailoverDrPlanId: string; /** * The unique id of a Switchover DR Plan. Example: `ocid1.drplan.oc1..uniqueID` */ readonly defaultSwitchoverDrPlanId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The display name of the Automatic DR configuration. */ readonly displayName: string; /** * The OCID of the DR protection group to which this Automatic DR configuration belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID` */ readonly drProtectionGroupId: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the Automatic DR configuration. Example: `ocid1.automaticdrconfiguration.oc1..uniqueID` */ readonly id: string; /** * A message describing the result of the most recent attempt made to submit an Automatic DR plan execution. */ readonly lastAutomaticDrExecutionSubmitDetails: string; /** * The status of most recent attempt to submit Automatic DR plan execution. */ readonly lastAutomaticDrExecutionSubmitStatus: string; /** * A message describing the Automatic DR configuration's current state in more detail. */ readonly lifecycleDetails: string; /** * The list of members in this Automatic DR configuration. */ readonly members: outputs.DisasterRecovery.GetAutomaticDrConfigurationMember[]; /** * The current state of the Automatic DR configuration. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the Automatic DR configuration was created. An RFC3339 formatted datetime string. Example: `2024-03-29T09:36:42Z` */ readonly timeCreated: string; /** * The date and time of the most recent attempt made to submit an Automatic DR plan execution. An RFC3339 formatted datetime string. Example: `2025-06-30T09:36:42Z` */ readonly timeLastAutomaticDrExecutionSubmitAttempt: string; /** * The date and time the Automatic DR configuration was updated. An RFC3339 formatted datetime string. Example: `2024-03-29T09:36:42Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Automatic Dr Configuration resource in Oracle Cloud Infrastructure Disaster Recovery service. * * Get details for the Automatic DR configuration identified by *automaticDrConfigurationId*. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutomaticDrConfiguration = oci.disasterrecovery.getAutomaticDrConfiguration({ * automaticDrConfigurationId: testAutomaticDrConfigurationOciDisasterRecoveryAutomaticDrConfiguration.id, * }); * ``` */ export declare function getAutomaticDrConfigurationOutput(args: GetAutomaticDrConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAutomaticDrConfiguration. */ export interface GetAutomaticDrConfigurationOutputArgs { /** * The OCID of the Automatic DR configuration. Example: `ocid1.automaticDrConfiguration.oc1..uniqueID` */ automaticDrConfigurationId: pulumi.Input; } //# sourceMappingURL=getAutomaticDrConfiguration.d.ts.map