1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. GoldenGate
  6. getDeploymentDisasterRecoveryPrecheckReport
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi

    This data source provides details about a specific Deployment Disaster Recovery Precheck Report resource in Oracle Cloud Infrastructure Golden Gate service.

    Returns DR precheck report for a standby peer with the specified placement (availabilityDomain and faultDomain).

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDeploymentDisasterRecoveryPrecheckReport = oci.goldengate.getDeploymentDisasterRecoveryPrecheckReport({
        availabilityDomain: deploymentDisasterRecoveryPrecheckReportAvailabilityDomain,
        deploymentId: testDeployment.id,
        faultDomain: deploymentDisasterRecoveryPrecheckReportFaultDomain,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_deployment_disaster_recovery_precheck_report = oci.goldengate.get_deployment_disaster_recovery_precheck_report(availability_domain=deployment_disaster_recovery_precheck_report_availability_domain,
        deployment_id=test_deployment["id"],
        fault_domain=deployment_disaster_recovery_precheck_report_fault_domain)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/goldengate"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := goldengate.GetDeploymentDisasterRecoveryPrecheckReport(ctx, &goldengate.GetDeploymentDisasterRecoveryPrecheckReportArgs{
    			AvailabilityDomain: deploymentDisasterRecoveryPrecheckReportAvailabilityDomain,
    			DeploymentId:       testDeployment.Id,
    			FaultDomain:        deploymentDisasterRecoveryPrecheckReportFaultDomain,
    		}, 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 testDeploymentDisasterRecoveryPrecheckReport = Oci.GoldenGate.GetDeploymentDisasterRecoveryPrecheckReport.Invoke(new()
        {
            AvailabilityDomain = deploymentDisasterRecoveryPrecheckReportAvailabilityDomain,
            DeploymentId = testDeployment.Id,
            FaultDomain = deploymentDisasterRecoveryPrecheckReportFaultDomain,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.GoldenGate.GoldenGateFunctions;
    import com.pulumi.oci.GoldenGate.inputs.GetDeploymentDisasterRecoveryPrecheckReportArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 testDeploymentDisasterRecoveryPrecheckReport = GoldenGateFunctions.getDeploymentDisasterRecoveryPrecheckReport(GetDeploymentDisasterRecoveryPrecheckReportArgs.builder()
                .availabilityDomain(deploymentDisasterRecoveryPrecheckReportAvailabilityDomain)
                .deploymentId(testDeployment.id())
                .faultDomain(deploymentDisasterRecoveryPrecheckReportFaultDomain)
                .build());
    
        }
    }
    
    variables:
      testDeploymentDisasterRecoveryPrecheckReport:
        fn::invoke:
          function: oci:GoldenGate:getDeploymentDisasterRecoveryPrecheckReport
          arguments:
            availabilityDomain: ${deploymentDisasterRecoveryPrecheckReportAvailabilityDomain}
            deploymentId: ${testDeployment.id}
            faultDomain: ${deploymentDisasterRecoveryPrecheckReportFaultDomain}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_goldengate_getdeploymentdisasterrecoveryprecheckreport" "testDeploymentDisasterRecoveryPrecheckReport" {
      availability_domain = deploymentDisasterRecoveryPrecheckReportAvailabilityDomain
      deployment_id       = testDeployment.id
      fault_domain        = deploymentDisasterRecoveryPrecheckReportFaultDomain
    }
    

    Using getDeploymentDisasterRecoveryPrecheckReport

    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 getDeploymentDisasterRecoveryPrecheckReport(args: GetDeploymentDisasterRecoveryPrecheckReportArgs, opts?: InvokeOptions): Promise<GetDeploymentDisasterRecoveryPrecheckReportResult>
    function getDeploymentDisasterRecoveryPrecheckReportOutput(args: GetDeploymentDisasterRecoveryPrecheckReportOutputArgs, opts?: InvokeOptions): Output<GetDeploymentDisasterRecoveryPrecheckReportResult>
    def get_deployment_disaster_recovery_precheck_report(availability_domain: Optional[str] = None,
                                                         deployment_id: Optional[str] = None,
                                                         fault_domain: Optional[str] = None,
                                                         opts: Optional[InvokeOptions] = None) -> GetDeploymentDisasterRecoveryPrecheckReportResult
    def get_deployment_disaster_recovery_precheck_report_output(availability_domain: pulumi.Input[Optional[str]] = None,
                                                         deployment_id: pulumi.Input[Optional[str]] = None,
                                                         fault_domain: pulumi.Input[Optional[str]] = None,
                                                         opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentDisasterRecoveryPrecheckReportResult]
    func GetDeploymentDisasterRecoveryPrecheckReport(ctx *Context, args *GetDeploymentDisasterRecoveryPrecheckReportArgs, opts ...InvokeOption) (*GetDeploymentDisasterRecoveryPrecheckReportResult, error)
    func GetDeploymentDisasterRecoveryPrecheckReportOutput(ctx *Context, args *GetDeploymentDisasterRecoveryPrecheckReportOutputArgs, opts ...InvokeOption) GetDeploymentDisasterRecoveryPrecheckReportResultOutput

    > Note: This function is named GetDeploymentDisasterRecoveryPrecheckReport in the Go SDK.

    public static class GetDeploymentDisasterRecoveryPrecheckReport 
    {
        public static Task<GetDeploymentDisasterRecoveryPrecheckReportResult> InvokeAsync(GetDeploymentDisasterRecoveryPrecheckReportArgs args, InvokeOptions? opts = null)
        public static Output<GetDeploymentDisasterRecoveryPrecheckReportResult> Invoke(GetDeploymentDisasterRecoveryPrecheckReportInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDeploymentDisasterRecoveryPrecheckReportResult> getDeploymentDisasterRecoveryPrecheckReport(GetDeploymentDisasterRecoveryPrecheckReportArgs args, InvokeOptions options)
    public static Output<GetDeploymentDisasterRecoveryPrecheckReportResult> getDeploymentDisasterRecoveryPrecheckReport(GetDeploymentDisasterRecoveryPrecheckReportArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:GoldenGate/getDeploymentDisasterRecoveryPrecheckReport:getDeploymentDisasterRecoveryPrecheckReport
      arguments:
        # arguments dictionary
    data "oci_goldengate_getdeploymentdisasterrecoveryprecheckreport" "name" {
        # arguments
    }

    The following arguments are supported:

    AvailabilityDomain string
    The availability domain of the placement to evaluate DR pre-checks for.
    DeploymentId string
    A unique Deployment identifier.
    FaultDomain string
    The fault domain of the placement to evaluate DR pre-checks for.
    AvailabilityDomain string
    The availability domain of the placement to evaluate DR pre-checks for.
    DeploymentId string
    A unique Deployment identifier.
    FaultDomain string
    The fault domain of the placement to evaluate DR pre-checks for.
    availability_domain string
    The availability domain of the placement to evaluate DR pre-checks for.
    deployment_id string
    A unique Deployment identifier.
    fault_domain string
    The fault domain of the placement to evaluate DR pre-checks for.
    availabilityDomain String
    The availability domain of the placement to evaluate DR pre-checks for.
    deploymentId String
    A unique Deployment identifier.
    faultDomain String
    The fault domain of the placement to evaluate DR pre-checks for.
    availabilityDomain string
    The availability domain of the placement to evaluate DR pre-checks for.
    deploymentId string
    A unique Deployment identifier.
    faultDomain string
    The fault domain of the placement to evaluate DR pre-checks for.
    availability_domain str
    The availability domain of the placement to evaluate DR pre-checks for.
    deployment_id str
    A unique Deployment identifier.
    fault_domain str
    The fault domain of the placement to evaluate DR pre-checks for.
    availabilityDomain String
    The availability domain of the placement to evaluate DR pre-checks for.
    deploymentId String
    A unique Deployment identifier.
    faultDomain String
    The fault domain of the placement to evaluate DR pre-checks for.

    getDeploymentDisasterRecoveryPrecheckReport Result

    The following output properties are available:

    AvailabilityDomain string
    Checks List<GetDeploymentDisasterRecoveryPrecheckReportCheck>
    A list of precheck results.
    DeploymentId string
    FaultDomain string
    Id string
    The provider-assigned unique ID for this managed resource.
    PrecheckStatus string
    Status of the DR precheck result.
    TimePrecheckFinished string
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    TimePrecheckStarted string
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    AvailabilityDomain string
    Checks []GetDeploymentDisasterRecoveryPrecheckReportCheck
    A list of precheck results.
    DeploymentId string
    FaultDomain string
    Id string
    The provider-assigned unique ID for this managed resource.
    PrecheckStatus string
    Status of the DR precheck result.
    TimePrecheckFinished string
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    TimePrecheckStarted string
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    availability_domain string
    checks list(object)
    A list of precheck results.
    deployment_id string
    fault_domain string
    id string
    The provider-assigned unique ID for this managed resource.
    precheck_status string
    Status of the DR precheck result.
    time_precheck_finished string
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    time_precheck_started string
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    availabilityDomain String
    checks List<GetDeploymentDisasterRecoveryPrecheckReportCheck>
    A list of precheck results.
    deploymentId String
    faultDomain String
    id String
    The provider-assigned unique ID for this managed resource.
    precheckStatus String
    Status of the DR precheck result.
    timePrecheckFinished String
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    timePrecheckStarted String
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    availabilityDomain string
    checks GetDeploymentDisasterRecoveryPrecheckReportCheck[]
    A list of precheck results.
    deploymentId string
    faultDomain string
    id string
    The provider-assigned unique ID for this managed resource.
    precheckStatus string
    Status of the DR precheck result.
    timePrecheckFinished string
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    timePrecheckStarted string
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    availability_domain str
    checks Sequence[GetDeploymentDisasterRecoveryPrecheckReportCheck]
    A list of precheck results.
    deployment_id str
    fault_domain str
    id str
    The provider-assigned unique ID for this managed resource.
    precheck_status str
    Status of the DR precheck result.
    time_precheck_finished str
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    time_precheck_started str
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    availabilityDomain String
    checks List<Property Map>
    A list of precheck results.
    deploymentId String
    faultDomain String
    id String
    The provider-assigned unique ID for this managed resource.
    precheckStatus String
    Status of the DR precheck result.
    timePrecheckFinished String
    The timestamp when pre-check operation finished. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.
    timePrecheckStarted String
    The timestamp when pre-check started. The format is defined by RFC3339, such as 2024-10-26T20:19:29.600Z.

    Supporting Types

    GetDeploymentDisasterRecoveryPrecheckReportCheck

    Code string
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    CorrectiveAction string
    The corrective action for non-passing checks. Null for passed checks.
    Description string
    Metadata about this specific object.
    DisplayName string
    An object's Display Name.
    Key string
    UUID to uniquely identify the each check result.
    RelatedResourceId string
    The OCID of the resource related to the corresponding check.
    RelatedResourceType string
    Type of resource related to corresponding check.
    Status string
    Status of the DR precheck result.
    Code string
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    CorrectiveAction string
    The corrective action for non-passing checks. Null for passed checks.
    Description string
    Metadata about this specific object.
    DisplayName string
    An object's Display Name.
    Key string
    UUID to uniquely identify the each check result.
    RelatedResourceId string
    The OCID of the resource related to the corresponding check.
    RelatedResourceType string
    Type of resource related to corresponding check.
    Status string
    Status of the DR precheck result.
    code string
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    corrective_action string
    The corrective action for non-passing checks. Null for passed checks.
    description string
    Metadata about this specific object.
    display_name string
    An object's Display Name.
    key string
    UUID to uniquely identify the each check result.
    related_resource_id string
    The OCID of the resource related to the corresponding check.
    related_resource_type string
    Type of resource related to corresponding check.
    status string
    Status of the DR precheck result.
    code String
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    correctiveAction String
    The corrective action for non-passing checks. Null for passed checks.
    description String
    Metadata about this specific object.
    displayName String
    An object's Display Name.
    key String
    UUID to uniquely identify the each check result.
    relatedResourceId String
    The OCID of the resource related to the corresponding check.
    relatedResourceType String
    Type of resource related to corresponding check.
    status String
    Status of the DR precheck result.
    code string
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    correctiveAction string
    The corrective action for non-passing checks. Null for passed checks.
    description string
    Metadata about this specific object.
    displayName string
    An object's Display Name.
    key string
    UUID to uniquely identify the each check result.
    relatedResourceId string
    The OCID of the resource related to the corresponding check.
    relatedResourceType string
    Type of resource related to corresponding check.
    status string
    Status of the DR precheck result.
    code str
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    corrective_action str
    The corrective action for non-passing checks. Null for passed checks.
    description str
    Metadata about this specific object.
    display_name str
    An object's Display Name.
    key str
    UUID to uniquely identify the each check result.
    related_resource_id str
    The OCID of the resource related to the corresponding check.
    related_resource_type str
    Type of resource related to corresponding check.
    status str
    Status of the DR precheck result.
    code String
    The code returned when GoldenGate reports an error while running a step during pipeline initialization. https://docs.oracle.com/en/middleware/goldengate/core/23/error-messages/ogg-00001-ogg-40000.html#GUID-97FF7AA7-7A5C-4AA7-B29F-3CC8D26761F2
    correctiveAction String
    The corrective action for non-passing checks. Null for passed checks.
    description String
    Metadata about this specific object.
    displayName String
    An object's Display Name.
    key String
    UUID to uniquely identify the each check result.
    relatedResourceId String
    The OCID of the resource related to the corresponding check.
    relatedResourceType String
    Type of resource related to corresponding check.
    status String
    Status of the DR precheck result.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.13.0
    published on Thursday, May 28, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial