1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseMigration
  5. getJobAdvisorReportCheckObjects
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi

    This data source provides the list of Job Advisor Report Check Objects in Oracle Cloud Infrastructure Database Migration service.

    Get the Pre-Migration extended Advisor report object list.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testJobAdvisorReportCheckObjects = oci.DatabaseMigration.getJobAdvisorReportCheckObjects({
        advisorReportCheckId: testAdvisorReportCheck.id,
        jobId: testJob.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_job_advisor_report_check_objects = oci.DatabaseMigration.get_job_advisor_report_check_objects(advisor_report_check_id=test_advisor_report_check["id"],
        job_id=test_job["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasemigration"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemigration.GetJobAdvisorReportCheckObjects(ctx, &databasemigration.GetJobAdvisorReportCheckObjectsArgs{
    			AdvisorReportCheckId: testAdvisorReportCheck.Id,
    			JobId:                testJob.Id,
    		}, 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 testJobAdvisorReportCheckObjects = Oci.DatabaseMigration.GetJobAdvisorReportCheckObjects.Invoke(new()
        {
            AdvisorReportCheckId = testAdvisorReportCheck.Id,
            JobId = testJob.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseMigration.DatabaseMigrationFunctions;
    import com.pulumi.oci.DatabaseMigration.inputs.GetJobAdvisorReportCheckObjectsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testJobAdvisorReportCheckObjects = DatabaseMigrationFunctions.getJobAdvisorReportCheckObjects(GetJobAdvisorReportCheckObjectsArgs.builder()
                .advisorReportCheckId(testAdvisorReportCheck.id())
                .jobId(testJob.id())
                .build());
    
        }
    }
    
    variables:
      testJobAdvisorReportCheckObjects:
        fn::invoke:
          function: oci:DatabaseMigration:getJobAdvisorReportCheckObjects
          arguments:
            advisorReportCheckId: ${testAdvisorReportCheck.id}
            jobId: ${testJob.id}
    

    Using getJobAdvisorReportCheckObjects

    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 getJobAdvisorReportCheckObjects(args: GetJobAdvisorReportCheckObjectsArgs, opts?: InvokeOptions): Promise<GetJobAdvisorReportCheckObjectsResult>
    function getJobAdvisorReportCheckObjectsOutput(args: GetJobAdvisorReportCheckObjectsOutputArgs, opts?: InvokeOptions): Output<GetJobAdvisorReportCheckObjectsResult>
    def get_job_advisor_report_check_objects(advisor_report_check_id: Optional[str] = None,
                                             filters: Optional[Sequence[GetJobAdvisorReportCheckObjectsFilter]] = None,
                                             job_id: Optional[str] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetJobAdvisorReportCheckObjectsResult
    def get_job_advisor_report_check_objects_output(advisor_report_check_id: Optional[pulumi.Input[str]] = None,
                                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetJobAdvisorReportCheckObjectsFilterArgs]]]] = None,
                                             job_id: Optional[pulumi.Input[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetJobAdvisorReportCheckObjectsResult]
    func GetJobAdvisorReportCheckObjects(ctx *Context, args *GetJobAdvisorReportCheckObjectsArgs, opts ...InvokeOption) (*GetJobAdvisorReportCheckObjectsResult, error)
    func GetJobAdvisorReportCheckObjectsOutput(ctx *Context, args *GetJobAdvisorReportCheckObjectsOutputArgs, opts ...InvokeOption) GetJobAdvisorReportCheckObjectsResultOutput

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

    public static class GetJobAdvisorReportCheckObjects 
    {
        public static Task<GetJobAdvisorReportCheckObjectsResult> InvokeAsync(GetJobAdvisorReportCheckObjectsArgs args, InvokeOptions? opts = null)
        public static Output<GetJobAdvisorReportCheckObjectsResult> Invoke(GetJobAdvisorReportCheckObjectsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetJobAdvisorReportCheckObjectsResult> getJobAdvisorReportCheckObjects(GetJobAdvisorReportCheckObjectsArgs args, InvokeOptions options)
    public static Output<GetJobAdvisorReportCheckObjectsResult> getJobAdvisorReportCheckObjects(GetJobAdvisorReportCheckObjectsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseMigration/getJobAdvisorReportCheckObjects:getJobAdvisorReportCheckObjects
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AdvisorReportCheckId string
    The ID of the advisor check
    JobId string
    The OCID of the job
    Filters List<GetJobAdvisorReportCheckObjectsFilter>
    AdvisorReportCheckId string
    The ID of the advisor check
    JobId string
    The OCID of the job
    Filters []GetJobAdvisorReportCheckObjectsFilter
    advisorReportCheckId String
    The ID of the advisor check
    jobId String
    The OCID of the job
    filters List<GetJobAdvisorReportCheckObjectsFilter>
    advisorReportCheckId string
    The ID of the advisor check
    jobId string
    The OCID of the job
    filters GetJobAdvisorReportCheckObjectsFilter[]
    advisorReportCheckId String
    The ID of the advisor check
    jobId String
    The OCID of the job
    filters List<Property Map>

    getJobAdvisorReportCheckObjects Result

    The following output properties are available:

    AdvisorReportCheckId string
    AdvisorReportCheckObjectsCollections List<GetJobAdvisorReportCheckObjectsAdvisorReportCheckObjectsCollection>
    The list of advisor_report_check_objects_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    JobId string
    Filters List<GetJobAdvisorReportCheckObjectsFilter>
    AdvisorReportCheckId string
    AdvisorReportCheckObjectsCollections []GetJobAdvisorReportCheckObjectsAdvisorReportCheckObjectsCollection
    The list of advisor_report_check_objects_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    JobId string
    Filters []GetJobAdvisorReportCheckObjectsFilter
    advisorReportCheckId String
    advisorReportCheckObjectsCollections List<GetJobAdvisorReportCheckObjectsAdvisorReportCheckObjectsCollection>
    The list of advisor_report_check_objects_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    jobId String
    filters List<GetJobAdvisorReportCheckObjectsFilter>
    advisorReportCheckId string
    advisorReportCheckObjectsCollections GetJobAdvisorReportCheckObjectsAdvisorReportCheckObjectsCollection[]
    The list of advisor_report_check_objects_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    jobId string
    filters GetJobAdvisorReportCheckObjectsFilter[]
    advisorReportCheckId String
    advisorReportCheckObjectsCollections List<Property Map>
    The list of advisor_report_check_objects_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    jobId String
    filters List<Property Map>

    Supporting Types

    GetJobAdvisorReportCheckObjectsAdvisorReportCheckObjectsCollection

    items List<Property Map>
    Array of check objects.

    GetJobAdvisorReportCheckObjectsAdvisorReportCheckObjectsCollectionItem

    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Fields Dictionary<string, string>
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsExcluded bool
    If the object was excluded from migration, then it is true.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Fields map[string]string
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsExcluded bool
    If the object was excluded from migration, then it is true.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    fields Map<String,String>
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isExcluded Boolean
    If the object was excluded from migration, then it is true.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    fields {[key: string]: string}
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isExcluded boolean
    If the object was excluded from migration, then it is true.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    fields Mapping[str, str]
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_excluded bool
    If the object was excluded from migration, then it is true.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    fields Map<String>
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isExcluded Boolean
    If the object was excluded from migration, then it is true.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    GetJobAdvisorReportCheckObjectsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    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.2.0
    published on Friday, Mar 6, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.