1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseMigration
  5. JobAdvisorReportCheck
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 resource provides the Job Advisor Report Check resource in Oracle Cloud Infrastructure Database Migration service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database-migration/latest/AdvisorReportCheck

    Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/databasemigration

    Update the premigration extended Advisor report check.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testJobAdvisorReportCheck = new oci.databasemigration.JobAdvisorReportCheck("test_job_advisor_report_check", {
        advisorReportCheckId: testAdvisorReportCheck.id,
        isReviewed: jobAdvisorReportCheckIsReviewed,
        jobId: testJob.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_job_advisor_report_check = oci.databasemigration.JobAdvisorReportCheck("test_job_advisor_report_check",
        advisor_report_check_id=test_advisor_report_check["id"],
        is_reviewed=job_advisor_report_check_is_reviewed,
        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.NewJobAdvisorReportCheck(ctx, "test_job_advisor_report_check", &databasemigration.JobAdvisorReportCheckArgs{
    			AdvisorReportCheckId: pulumi.Any(testAdvisorReportCheck.Id),
    			IsReviewed:           pulumi.Any(jobAdvisorReportCheckIsReviewed),
    			JobId:                pulumi.Any(testJob.Id),
    		})
    		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 testJobAdvisorReportCheck = new Oci.DatabaseMigration.JobAdvisorReportCheck("test_job_advisor_report_check", new()
        {
            AdvisorReportCheckId = testAdvisorReportCheck.Id,
            IsReviewed = jobAdvisorReportCheckIsReviewed,
            JobId = testJob.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseMigration.JobAdvisorReportCheck;
    import com.pulumi.oci.DatabaseMigration.JobAdvisorReportCheckArgs;
    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 testJobAdvisorReportCheck = new JobAdvisorReportCheck("testJobAdvisorReportCheck", JobAdvisorReportCheckArgs.builder()
                .advisorReportCheckId(testAdvisorReportCheck.id())
                .isReviewed(jobAdvisorReportCheckIsReviewed)
                .jobId(testJob.id())
                .build());
    
        }
    }
    
    resources:
      testJobAdvisorReportCheck:
        type: oci:DatabaseMigration:JobAdvisorReportCheck
        name: test_job_advisor_report_check
        properties:
          advisorReportCheckId: ${testAdvisorReportCheck.id}
          isReviewed: ${jobAdvisorReportCheckIsReviewed}
          jobId: ${testJob.id}
    

    Create JobAdvisorReportCheck Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new JobAdvisorReportCheck(name: string, args: JobAdvisorReportCheckArgs, opts?: CustomResourceOptions);
    @overload
    def JobAdvisorReportCheck(resource_name: str,
                              args: JobAdvisorReportCheckArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def JobAdvisorReportCheck(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              advisor_report_check_id: Optional[str] = None,
                              is_reviewed: Optional[bool] = None,
                              job_id: Optional[str] = None)
    func NewJobAdvisorReportCheck(ctx *Context, name string, args JobAdvisorReportCheckArgs, opts ...ResourceOption) (*JobAdvisorReportCheck, error)
    public JobAdvisorReportCheck(string name, JobAdvisorReportCheckArgs args, CustomResourceOptions? opts = null)
    public JobAdvisorReportCheck(String name, JobAdvisorReportCheckArgs args)
    public JobAdvisorReportCheck(String name, JobAdvisorReportCheckArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseMigration:JobAdvisorReportCheck
    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 JobAdvisorReportCheckArgs
    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 JobAdvisorReportCheckArgs
    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 JobAdvisorReportCheckArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args JobAdvisorReportCheckArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args JobAdvisorReportCheckArgs
    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 jobAdvisorReportCheckResource = new Oci.DatabaseMigration.JobAdvisorReportCheck("jobAdvisorReportCheckResource", new()
    {
        AdvisorReportCheckId = "string",
        IsReviewed = false,
        JobId = "string",
    });
    
    example, err := databasemigration.NewJobAdvisorReportCheck(ctx, "jobAdvisorReportCheckResource", &databasemigration.JobAdvisorReportCheckArgs{
    	AdvisorReportCheckId: pulumi.String("string"),
    	IsReviewed:           pulumi.Bool(false),
    	JobId:                pulumi.String("string"),
    })
    
    var jobAdvisorReportCheckResource = new JobAdvisorReportCheck("jobAdvisorReportCheckResource", JobAdvisorReportCheckArgs.builder()
        .advisorReportCheckId("string")
        .isReviewed(false)
        .jobId("string")
        .build());
    
    job_advisor_report_check_resource = oci.databasemigration.JobAdvisorReportCheck("jobAdvisorReportCheckResource",
        advisor_report_check_id="string",
        is_reviewed=False,
        job_id="string")
    
    const jobAdvisorReportCheckResource = new oci.databasemigration.JobAdvisorReportCheck("jobAdvisorReportCheckResource", {
        advisorReportCheckId: "string",
        isReviewed: false,
        jobId: "string",
    });
    
    type: oci:DatabaseMigration:JobAdvisorReportCheck
    properties:
        advisorReportCheckId: string
        isReviewed: false
        jobId: string
    

    JobAdvisorReportCheck 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 JobAdvisorReportCheck resource accepts the following input properties:

    AdvisorReportCheckId string
    The ID of the advisor check
    IsReviewed bool
    (Updatable) User flag for advisor report check.
    JobId string

    The OCID of the job

    ** 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

    AdvisorReportCheckId string
    The ID of the advisor check
    IsReviewed bool
    (Updatable) User flag for advisor report check.
    JobId string

    The OCID of the job

    ** 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

    advisorReportCheckId String
    The ID of the advisor check
    isReviewed Boolean
    (Updatable) User flag for advisor report check.
    jobId String

    The OCID of the job

    ** 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

    advisorReportCheckId string
    The ID of the advisor check
    isReviewed boolean
    (Updatable) User flag for advisor report check.
    jobId string

    The OCID of the job

    ** 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

    advisor_report_check_id str
    The ID of the advisor check
    is_reviewed bool
    (Updatable) User flag for advisor report check.
    job_id str

    The OCID of the job

    ** 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

    advisorReportCheckId String
    The ID of the advisor check
    isReviewed Boolean
    (Updatable) User flag for advisor report check.
    jobId String

    The OCID of the job

    ** 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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the JobAdvisorReportCheck resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<JobAdvisorReportCheckItem>
    Array of advisor check items.
    Summaries List<JobAdvisorReportCheckSummary>
    Pre-Migration extended advisor report summary.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []JobAdvisorReportCheckItem
    Array of advisor check items.
    Summaries []JobAdvisorReportCheckSummary
    Pre-Migration extended advisor report summary.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<JobAdvisorReportCheckItem>
    Array of advisor check items.
    summaries List<JobAdvisorReportCheckSummary>
    Pre-Migration extended advisor report summary.
    id string
    The provider-assigned unique ID for this managed resource.
    items JobAdvisorReportCheckItem[]
    Array of advisor check items.
    summaries JobAdvisorReportCheckSummary[]
    Pre-Migration extended advisor report summary.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[JobAdvisorReportCheckItem]
    Array of advisor check items.
    summaries Sequence[JobAdvisorReportCheckSummary]
    Pre-Migration extended advisor report summary.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of advisor check items.
    summaries List<Property Map>
    Pre-Migration extended advisor report summary.

    Look up Existing JobAdvisorReportCheck Resource

    Get an existing JobAdvisorReportCheck 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?: JobAdvisorReportCheckState, opts?: CustomResourceOptions): JobAdvisorReportCheck
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            advisor_report_check_id: Optional[str] = None,
            is_reviewed: Optional[bool] = None,
            items: Optional[Sequence[JobAdvisorReportCheckItemArgs]] = None,
            job_id: Optional[str] = None,
            summaries: Optional[Sequence[JobAdvisorReportCheckSummaryArgs]] = None) -> JobAdvisorReportCheck
    func GetJobAdvisorReportCheck(ctx *Context, name string, id IDInput, state *JobAdvisorReportCheckState, opts ...ResourceOption) (*JobAdvisorReportCheck, error)
    public static JobAdvisorReportCheck Get(string name, Input<string> id, JobAdvisorReportCheckState? state, CustomResourceOptions? opts = null)
    public static JobAdvisorReportCheck get(String name, Output<String> id, JobAdvisorReportCheckState state, CustomResourceOptions options)
    resources:  _:    type: oci:DatabaseMigration:JobAdvisorReportCheck    get:      id: ${id}
    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.
    The following state arguments are supported:
    AdvisorReportCheckId string
    The ID of the advisor check
    IsReviewed bool
    (Updatable) User flag for advisor report check.
    Items List<JobAdvisorReportCheckItem>
    Array of advisor check items.
    JobId string

    The OCID of the job

    ** 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

    Summaries List<JobAdvisorReportCheckSummary>
    Pre-Migration extended advisor report summary.
    AdvisorReportCheckId string
    The ID of the advisor check
    IsReviewed bool
    (Updatable) User flag for advisor report check.
    Items []JobAdvisorReportCheckItemArgs
    Array of advisor check items.
    JobId string

    The OCID of the job

    ** 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

    Summaries []JobAdvisorReportCheckSummaryArgs
    Pre-Migration extended advisor report summary.
    advisorReportCheckId String
    The ID of the advisor check
    isReviewed Boolean
    (Updatable) User flag for advisor report check.
    items List<JobAdvisorReportCheckItem>
    Array of advisor check items.
    jobId String

    The OCID of the job

    ** 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

    summaries List<JobAdvisorReportCheckSummary>
    Pre-Migration extended advisor report summary.
    advisorReportCheckId string
    The ID of the advisor check
    isReviewed boolean
    (Updatable) User flag for advisor report check.
    items JobAdvisorReportCheckItem[]
    Array of advisor check items.
    jobId string

    The OCID of the job

    ** 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

    summaries JobAdvisorReportCheckSummary[]
    Pre-Migration extended advisor report summary.
    advisor_report_check_id str
    The ID of the advisor check
    is_reviewed bool
    (Updatable) User flag for advisor report check.
    items Sequence[JobAdvisorReportCheckItemArgs]
    Array of advisor check items.
    job_id str

    The OCID of the job

    ** 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

    summaries Sequence[JobAdvisorReportCheckSummaryArgs]
    Pre-Migration extended advisor report summary.
    advisorReportCheckId String
    The ID of the advisor check
    isReviewed Boolean
    (Updatable) User flag for advisor report check.
    items List<Property Map>
    Array of advisor check items.
    jobId String

    The OCID of the job

    ** 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

    summaries List<Property Map>
    Pre-Migration extended advisor report summary.

    Supporting Types

    JobAdvisorReportCheckItem, JobAdvisorReportCheckItemArgs

    Action string
    Fixing the issue.
    Columns List<JobAdvisorReportCheckItemColumn>
    Array of the column of the objects table.
    DisplayName string
    Pre-Migration сheck display name.
    FixupScriptLocation string
    The path to the fixup script for this check.
    Impact string
    Impact of the issue on data migration.
    IsExclusionAllowed bool
    If false, objects cannot be excluded from migration.
    IsReviewed bool
    (Updatable) User flag for advisor report check.
    Issue string
    Description of the issue.
    Key string
    Pre-Migration сheck id.
    Metadatas List<JobAdvisorReportCheckItemMetadata>
    Metadata of object.
    ObjectCount int
    Number of database objects to migrate.
    ResultType string
    Pre-Migration advisor result.
    Action string
    Fixing the issue.
    Columns []JobAdvisorReportCheckItemColumn
    Array of the column of the objects table.
    DisplayName string
    Pre-Migration сheck display name.
    FixupScriptLocation string
    The path to the fixup script for this check.
    Impact string
    Impact of the issue on data migration.
    IsExclusionAllowed bool
    If false, objects cannot be excluded from migration.
    IsReviewed bool
    (Updatable) User flag for advisor report check.
    Issue string
    Description of the issue.
    Key string
    Pre-Migration сheck id.
    Metadatas []JobAdvisorReportCheckItemMetadata
    Metadata of object.
    ObjectCount int
    Number of database objects to migrate.
    ResultType string
    Pre-Migration advisor result.
    action String
    Fixing the issue.
    columns List<JobAdvisorReportCheckItemColumn>
    Array of the column of the objects table.
    displayName String
    Pre-Migration сheck display name.
    fixupScriptLocation String
    The path to the fixup script for this check.
    impact String
    Impact of the issue on data migration.
    isExclusionAllowed Boolean
    If false, objects cannot be excluded from migration.
    isReviewed Boolean
    (Updatable) User flag for advisor report check.
    issue String
    Description of the issue.
    key String
    Pre-Migration сheck id.
    metadatas List<JobAdvisorReportCheckItemMetadata>
    Metadata of object.
    objectCount Integer
    Number of database objects to migrate.
    resultType String
    Pre-Migration advisor result.
    action string
    Fixing the issue.
    columns JobAdvisorReportCheckItemColumn[]
    Array of the column of the objects table.
    displayName string
    Pre-Migration сheck display name.
    fixupScriptLocation string
    The path to the fixup script for this check.
    impact string
    Impact of the issue on data migration.
    isExclusionAllowed boolean
    If false, objects cannot be excluded from migration.
    isReviewed boolean
    (Updatable) User flag for advisor report check.
    issue string
    Description of the issue.
    key string
    Pre-Migration сheck id.
    metadatas JobAdvisorReportCheckItemMetadata[]
    Metadata of object.
    objectCount number
    Number of database objects to migrate.
    resultType string
    Pre-Migration advisor result.
    action str
    Fixing the issue.
    columns Sequence[JobAdvisorReportCheckItemColumn]
    Array of the column of the objects table.
    display_name str
    Pre-Migration сheck display name.
    fixup_script_location str
    The path to the fixup script for this check.
    impact str
    Impact of the issue on data migration.
    is_exclusion_allowed bool
    If false, objects cannot be excluded from migration.
    is_reviewed bool
    (Updatable) User flag for advisor report check.
    issue str
    Description of the issue.
    key str
    Pre-Migration сheck id.
    metadatas Sequence[JobAdvisorReportCheckItemMetadata]
    Metadata of object.
    object_count int
    Number of database objects to migrate.
    result_type str
    Pre-Migration advisor result.
    action String
    Fixing the issue.
    columns List<Property Map>
    Array of the column of the objects table.
    displayName String
    Pre-Migration сheck display name.
    fixupScriptLocation String
    The path to the fixup script for this check.
    impact String
    Impact of the issue on data migration.
    isExclusionAllowed Boolean
    If false, objects cannot be excluded from migration.
    isReviewed Boolean
    (Updatable) User flag for advisor report check.
    issue String
    Description of the issue.
    key String
    Pre-Migration сheck id.
    metadatas List<Property Map>
    Metadata of object.
    objectCount Number
    Number of database objects to migrate.
    resultType String
    Pre-Migration advisor result.

    JobAdvisorReportCheckItemColumn, JobAdvisorReportCheckItemColumnArgs

    DisplayName string
    Pre-Migration сheck display name.
    Key string
    Pre-Migration сheck id.
    DisplayName string
    Pre-Migration сheck display name.
    Key string
    Pre-Migration сheck id.
    displayName String
    Pre-Migration сheck display name.
    key String
    Pre-Migration сheck id.
    displayName string
    Pre-Migration сheck display name.
    key string
    Pre-Migration сheck id.
    display_name str
    Pre-Migration сheck display name.
    key str
    Pre-Migration сheck id.
    displayName String
    Pre-Migration сheck display name.
    key String
    Pre-Migration сheck id.

    JobAdvisorReportCheckItemMetadata, JobAdvisorReportCheckItemMetadataArgs

    ObjectNameColumn string
    The field that stores the name of the object.
    ObjectTypeColumn string
    The field that stores the type of the object.
    ObjectTypeFixed string
    The field that stores the fixed type of the object.
    SchemaOwnerColumn string
    The field that stores the owner of the object.
    ObjectNameColumn string
    The field that stores the name of the object.
    ObjectTypeColumn string
    The field that stores the type of the object.
    ObjectTypeFixed string
    The field that stores the fixed type of the object.
    SchemaOwnerColumn string
    The field that stores the owner of the object.
    objectNameColumn String
    The field that stores the name of the object.
    objectTypeColumn String
    The field that stores the type of the object.
    objectTypeFixed String
    The field that stores the fixed type of the object.
    schemaOwnerColumn String
    The field that stores the owner of the object.
    objectNameColumn string
    The field that stores the name of the object.
    objectTypeColumn string
    The field that stores the type of the object.
    objectTypeFixed string
    The field that stores the fixed type of the object.
    schemaOwnerColumn string
    The field that stores the owner of the object.
    object_name_column str
    The field that stores the name of the object.
    object_type_column str
    The field that stores the type of the object.
    object_type_fixed str
    The field that stores the fixed type of the object.
    schema_owner_column str
    The field that stores the owner of the object.
    objectNameColumn String
    The field that stores the name of the object.
    objectTypeColumn String
    The field that stores the type of the object.
    objectTypeFixed String
    The field that stores the fixed type of the object.
    schemaOwnerColumn String
    The field that stores the owner of the object.

    JobAdvisorReportCheckSummary, JobAdvisorReportCheckSummaryArgs

    BlockerResultsTotalCount int
    Number of BLOCKER results in the extended advisor report.
    FatalResultsTotalCount int
    Number of FATAL results in the extended advisor report.
    InformationalResultsTotalCount int
    Number of INFORMATIONAL results in the extended advisor report.
    PassResultsTotalCount int
    Number of PASS results in the extended advisor report.
    WarningResultsTotalCount int
    Number of WARNING results in the extended advisor report.
    BlockerResultsTotalCount int
    Number of BLOCKER results in the extended advisor report.
    FatalResultsTotalCount int
    Number of FATAL results in the extended advisor report.
    InformationalResultsTotalCount int
    Number of INFORMATIONAL results in the extended advisor report.
    PassResultsTotalCount int
    Number of PASS results in the extended advisor report.
    WarningResultsTotalCount int
    Number of WARNING results in the extended advisor report.
    blockerResultsTotalCount Integer
    Number of BLOCKER results in the extended advisor report.
    fatalResultsTotalCount Integer
    Number of FATAL results in the extended advisor report.
    informationalResultsTotalCount Integer
    Number of INFORMATIONAL results in the extended advisor report.
    passResultsTotalCount Integer
    Number of PASS results in the extended advisor report.
    warningResultsTotalCount Integer
    Number of WARNING results in the extended advisor report.
    blockerResultsTotalCount number
    Number of BLOCKER results in the extended advisor report.
    fatalResultsTotalCount number
    Number of FATAL results in the extended advisor report.
    informationalResultsTotalCount number
    Number of INFORMATIONAL results in the extended advisor report.
    passResultsTotalCount number
    Number of PASS results in the extended advisor report.
    warningResultsTotalCount number
    Number of WARNING results in the extended advisor report.
    blocker_results_total_count int
    Number of BLOCKER results in the extended advisor report.
    fatal_results_total_count int
    Number of FATAL results in the extended advisor report.
    informational_results_total_count int
    Number of INFORMATIONAL results in the extended advisor report.
    pass_results_total_count int
    Number of PASS results in the extended advisor report.
    warning_results_total_count int
    Number of WARNING results in the extended advisor report.
    blockerResultsTotalCount Number
    Number of BLOCKER results in the extended advisor report.
    fatalResultsTotalCount Number
    Number of FATAL results in the extended advisor report.
    informationalResultsTotalCount Number
    Number of INFORMATIONAL results in the extended advisor report.
    passResultsTotalCount Number
    Number of PASS results in the extended advisor report.
    warningResultsTotalCount Number
    Number of WARNING results in the extended advisor report.

    Import

    JobAdvisorReportChecks can be imported using the id, e.g.

    $ pulumi import oci:DatabaseMigration/jobAdvisorReportCheck:JobAdvisorReportCheck test_job_advisor_report_check "jobs/{jobId}/advisorReportChecks/{advisorReportCheckId}"
    

    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.
    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.