1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseMigration
  5. getAssessmentAssessorChecks
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 Assessment Assessor Checks in Oracle Cloud Infrastructure Database Migration service.

    List Assessor Check Summaries.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAssessmentAssessorChecks = oci.DatabaseMigration.getAssessmentAssessorChecks({
        assessmentId: testAssessment.id,
        assessorName: assessmentAssessorCheckAssessorName,
        compartmentId: compartmentId,
        displayName: assessmentAssessorCheckDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_assessment_assessor_checks = oci.DatabaseMigration.get_assessment_assessor_checks(assessment_id=test_assessment["id"],
        assessor_name=assessment_assessor_check_assessor_name,
        compartment_id=compartment_id,
        display_name=assessment_assessor_check_display_name)
    
    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.GetAssessmentAssessorChecks(ctx, &databasemigration.GetAssessmentAssessorChecksArgs{
    			AssessmentId:  testAssessment.Id,
    			AssessorName:  assessmentAssessorCheckAssessorName,
    			CompartmentId: compartmentId,
    			DisplayName:   pulumi.StringRef(assessmentAssessorCheckDisplayName),
    		}, 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 testAssessmentAssessorChecks = Oci.DatabaseMigration.GetAssessmentAssessorChecks.Invoke(new()
        {
            AssessmentId = testAssessment.Id,
            AssessorName = assessmentAssessorCheckAssessorName,
            CompartmentId = compartmentId,
            DisplayName = assessmentAssessorCheckDisplayName,
        });
    
    });
    
    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.GetAssessmentAssessorChecksArgs;
    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 testAssessmentAssessorChecks = DatabaseMigrationFunctions.getAssessmentAssessorChecks(GetAssessmentAssessorChecksArgs.builder()
                .assessmentId(testAssessment.id())
                .assessorName(assessmentAssessorCheckAssessorName)
                .compartmentId(compartmentId)
                .displayName(assessmentAssessorCheckDisplayName)
                .build());
    
        }
    }
    
    variables:
      testAssessmentAssessorChecks:
        fn::invoke:
          function: oci:DatabaseMigration:getAssessmentAssessorChecks
          arguments:
            assessmentId: ${testAssessment.id}
            assessorName: ${assessmentAssessorCheckAssessorName}
            compartmentId: ${compartmentId}
            displayName: ${assessmentAssessorCheckDisplayName}
    

    Using getAssessmentAssessorChecks

    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 getAssessmentAssessorChecks(args: GetAssessmentAssessorChecksArgs, opts?: InvokeOptions): Promise<GetAssessmentAssessorChecksResult>
    function getAssessmentAssessorChecksOutput(args: GetAssessmentAssessorChecksOutputArgs, opts?: InvokeOptions): Output<GetAssessmentAssessorChecksResult>
    def get_assessment_assessor_checks(assessment_id: Optional[str] = None,
                                       assessor_name: Optional[str] = None,
                                       compartment_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[GetAssessmentAssessorChecksFilter]] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetAssessmentAssessorChecksResult
    def get_assessment_assessor_checks_output(assessment_id: Optional[pulumi.Input[str]] = None,
                                       assessor_name: Optional[pulumi.Input[str]] = None,
                                       compartment_id: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAssessmentAssessorChecksFilterArgs]]]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetAssessmentAssessorChecksResult]
    func GetAssessmentAssessorChecks(ctx *Context, args *GetAssessmentAssessorChecksArgs, opts ...InvokeOption) (*GetAssessmentAssessorChecksResult, error)
    func GetAssessmentAssessorChecksOutput(ctx *Context, args *GetAssessmentAssessorChecksOutputArgs, opts ...InvokeOption) GetAssessmentAssessorChecksResultOutput

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

    public static class GetAssessmentAssessorChecks 
    {
        public static Task<GetAssessmentAssessorChecksResult> InvokeAsync(GetAssessmentAssessorChecksArgs args, InvokeOptions? opts = null)
        public static Output<GetAssessmentAssessorChecksResult> Invoke(GetAssessmentAssessorChecksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAssessmentAssessorChecksResult> getAssessmentAssessorChecks(GetAssessmentAssessorChecksArgs args, InvokeOptions options)
    public static Output<GetAssessmentAssessorChecksResult> getAssessmentAssessorChecks(GetAssessmentAssessorChecksArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseMigration/getAssessmentAssessorChecks:getAssessmentAssessorChecks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AssessmentId string
    The OCID of the Assessment
    AssessorName string
    The name of the Assessor
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetAssessmentAssessorChecksFilter>
    AssessmentId string
    The OCID of the Assessment
    AssessorName string
    The name of the Assessor
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetAssessmentAssessorChecksFilter
    assessmentId String
    The OCID of the Assessment
    assessorName String
    The name of the Assessor
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetAssessmentAssessorChecksFilter>
    assessmentId string
    The OCID of the Assessment
    assessorName string
    The name of the Assessor
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetAssessmentAssessorChecksFilter[]
    assessment_id str
    The OCID of the Assessment
    assessor_name str
    The name of the Assessor
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetAssessmentAssessorChecksFilter]
    assessmentId String
    The OCID of the Assessment
    assessorName String
    The name of the Assessor
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>

    getAssessmentAssessorChecks Result

    The following output properties are available:

    AssessmentId string
    AssessorCheckSummaryCollections List<GetAssessmentAssessorChecksAssessorCheckSummaryCollection>
    The list of assessor_check_summary_collection.
    AssessorName string
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetAssessmentAssessorChecksFilter>
    AssessmentId string
    AssessorCheckSummaryCollections []GetAssessmentAssessorChecksAssessorCheckSummaryCollection
    The list of assessor_check_summary_collection.
    AssessorName string
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetAssessmentAssessorChecksFilter
    assessmentId String
    assessorCheckSummaryCollections List<GetAssessmentAssessorChecksAssessorCheckSummaryCollection>
    The list of assessor_check_summary_collection.
    assessorName String
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetAssessmentAssessorChecksFilter>
    assessmentId string
    assessorCheckSummaryCollections GetAssessmentAssessorChecksAssessorCheckSummaryCollection[]
    The list of assessor_check_summary_collection.
    assessorName string
    compartmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetAssessmentAssessorChecksFilter[]
    assessment_id str
    assessor_check_summary_collections Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollection]
    The list of assessor_check_summary_collection.
    assessor_name str
    compartment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[GetAssessmentAssessorChecksFilter]
    assessmentId String
    assessorCheckSummaryCollections List<Property Map>
    The list of assessor_check_summary_collection.
    assessorName String
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>

    Supporting Types

    GetAssessmentAssessorChecksAssessorCheckSummaryCollection

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItem

    Action string
    Fixing the issue.
    AssessorCheckGroups List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemAssessorCheckGroup>
    Assessor Check Group
    AssessorCheckState string
    The current state of the Assessor Check.
    CheckActions List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckAction>
    Assessor Check Action
    Columns List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn>
    Array of the column of the objects table.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FixupScriptLocation string
    The path to the fixup script for this check.
    HelpLinkText string
    The Help link text.
    HelpLinkUrl string
    The Help URL.
    Impact string
    Impact of the issue on data migration.
    IsExclusionAllowed bool
    If false, objects cannot be excluded from migration.
    Issue string
    Description of the issue.
    Key string
    Pre-Migration сheck id.
    LogLocations List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation>
    Details to access log file in the specified Object Storage bucket, if any.
    Metadatas List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata>
    Metadata of object.
    Name string
    The Name of the Check.
    ObjectCount int
    Number of database objects to migrate.
    ObjectsDisplayName string
    The objects display name.
    Action string
    Fixing the issue.
    AssessorCheckGroups []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemAssessorCheckGroup
    Assessor Check Group
    AssessorCheckState string
    The current state of the Assessor Check.
    CheckActions []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckAction
    Assessor Check Action
    Columns []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn
    Array of the column of the objects table.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FixupScriptLocation string
    The path to the fixup script for this check.
    HelpLinkText string
    The Help link text.
    HelpLinkUrl string
    The Help URL.
    Impact string
    Impact of the issue on data migration.
    IsExclusionAllowed bool
    If false, objects cannot be excluded from migration.
    Issue string
    Description of the issue.
    Key string
    Pre-Migration сheck id.
    LogLocations []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation
    Details to access log file in the specified Object Storage bucket, if any.
    Metadatas []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata
    Metadata of object.
    Name string
    The Name of the Check.
    ObjectCount int
    Number of database objects to migrate.
    ObjectsDisplayName string
    The objects display name.
    action String
    Fixing the issue.
    assessorCheckGroups List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemAssessorCheckGroup>
    Assessor Check Group
    assessorCheckState String
    The current state of the Assessor Check.
    checkActions List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckAction>
    Assessor Check Action
    columns List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn>
    Array of the column of the objects table.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    fixupScriptLocation String
    The path to the fixup script for this check.
    helpLinkText String
    The Help link text.
    helpLinkUrl String
    The Help URL.
    impact String
    Impact of the issue on data migration.
    isExclusionAllowed Boolean
    If false, objects cannot be excluded from migration.
    issue String
    Description of the issue.
    key String
    Pre-Migration сheck id.
    logLocations List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation>
    Details to access log file in the specified Object Storage bucket, if any.
    metadatas List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata>
    Metadata of object.
    name String
    The Name of the Check.
    objectCount Integer
    Number of database objects to migrate.
    objectsDisplayName String
    The objects display name.
    action string
    Fixing the issue.
    assessorCheckGroups GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemAssessorCheckGroup[]
    Assessor Check Group
    assessorCheckState string
    The current state of the Assessor Check.
    checkActions GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckAction[]
    Assessor Check Action
    columns GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn[]
    Array of the column of the objects table.
    description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName string
    A filter to return only resources that match the entire display name given.
    fixupScriptLocation string
    The path to the fixup script for this check.
    helpLinkText string
    The Help link text.
    helpLinkUrl string
    The Help URL.
    impact string
    Impact of the issue on data migration.
    isExclusionAllowed boolean
    If false, objects cannot be excluded from migration.
    issue string
    Description of the issue.
    key string
    Pre-Migration сheck id.
    logLocations GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation[]
    Details to access log file in the specified Object Storage bucket, if any.
    metadatas GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata[]
    Metadata of object.
    name string
    The Name of the Check.
    objectCount number
    Number of database objects to migrate.
    objectsDisplayName string
    The objects display name.
    action str
    Fixing the issue.
    assessor_check_groups Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemAssessorCheckGroup]
    Assessor Check Group
    assessor_check_state str
    The current state of the Assessor Check.
    check_actions Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckAction]
    Assessor Check Action
    columns Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn]
    Array of the column of the objects table.
    description str
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    display_name str
    A filter to return only resources that match the entire display name given.
    fixup_script_location str
    The path to the fixup script for this check.
    help_link_text str
    The Help link text.
    help_link_url str
    The Help URL.
    impact str
    Impact of the issue on data migration.
    is_exclusion_allowed bool
    If false, objects cannot be excluded from migration.
    issue str
    Description of the issue.
    key str
    Pre-Migration сheck id.
    log_locations Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation]
    Details to access log file in the specified Object Storage bucket, if any.
    metadatas Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata]
    Metadata of object.
    name str
    The Name of the Check.
    object_count int
    Number of database objects to migrate.
    objects_display_name str
    The objects display name.
    action String
    Fixing the issue.
    assessorCheckGroups List<Property Map>
    Assessor Check Group
    assessorCheckState String
    The current state of the Assessor Check.
    checkActions List<Property Map>
    Assessor Check Action
    columns List<Property Map>
    Array of the column of the objects table.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    fixupScriptLocation String
    The path to the fixup script for this check.
    helpLinkText String
    The Help link text.
    helpLinkUrl String
    The Help URL.
    impact String
    Impact of the issue on data migration.
    isExclusionAllowed Boolean
    If false, objects cannot be excluded from migration.
    issue String
    Description of the issue.
    key String
    Pre-Migration сheck id.
    logLocations List<Property Map>
    Details to access log file in the specified Object Storage bucket, if any.
    metadatas List<Property Map>
    Metadata of object.
    name String
    The Name of the Check.
    objectCount Number
    Number of database objects to migrate.
    objectsDisplayName String
    The objects display name.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemAssessorCheckGroup

    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    IsExpanded bool
    True if the group is expanded, false otherwise.
    Name string
    The Name of the Check.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    IsExpanded bool
    True if the group is expanded, false otherwise.
    Name string
    The Name of the Check.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    isExpanded Boolean
    True if the group is expanded, false otherwise.
    name String
    The Name of the Check.
    description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName string
    A filter to return only resources that match the entire display name given.
    isExpanded boolean
    True if the group is expanded, false otherwise.
    name string
    The Name of the Check.
    description str
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    display_name str
    A filter to return only resources that match the entire display name given.
    is_expanded bool
    True if the group is expanded, false otherwise.
    name str
    The Name of the Check.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    isExpanded Boolean
    True if the group is expanded, false otherwise.
    name String
    The Name of the Check.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckAction

    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Name string
    The Name of the Check.
    UserDefinedProperties List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty>
    User defined properties
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Name string
    The Name of the Check.
    UserDefinedProperties []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty
    User defined properties
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    name String
    The Name of the Check.
    userDefinedProperties List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty>
    User defined properties
    description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName string
    A filter to return only resources that match the entire display name given.
    name string
    The Name of the Check.
    userDefinedProperties GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty[]
    User defined properties
    description str
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    display_name str
    A filter to return only resources that match the entire display name given.
    name str
    The Name of the Check.
    user_defined_properties Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty]
    User defined properties
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    name String
    The Name of the Check.
    userDefinedProperties List<Property Map>
    User defined properties

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty

    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    HelpLinkText string
    The Help link text.
    HelpLinkUrl string
    The Help URL.
    Properties List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty>
    Array of user defined properties.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    HelpLinkText string
    The Help link text.
    HelpLinkUrl string
    The Help URL.
    Properties []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty
    Array of user defined properties.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    helpLinkText String
    The Help link text.
    helpLinkUrl String
    The Help URL.
    properties List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty>
    Array of user defined properties.
    description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName string
    A filter to return only resources that match the entire display name given.
    helpLinkText string
    The Help link text.
    helpLinkUrl string
    The Help URL.
    properties GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty[]
    Array of user defined properties.
    description str
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    display_name str
    A filter to return only resources that match the entire display name given.
    help_link_text str
    The Help link text.
    help_link_url str
    The Help URL.
    properties Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty]
    Array of user defined properties.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    helpLinkText String
    The Help link text.
    helpLinkUrl String
    The Help URL.
    properties List<Property Map>
    Array of user defined properties.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty

    DefaultValue string
    The default value of the property.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    IsRequired bool
    True if the property is required, false otherwise
    MaxLength int
    Maximum length of the text
    MinLength int
    Minimum length of the text
    Name string
    The Name of the Check.
    Options List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyPropertyOption>
    User defined property options.
    Type string
    The type of the user defined property.
    Value string
    The value of the property.
    DefaultValue string
    The default value of the property.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    IsRequired bool
    True if the property is required, false otherwise
    MaxLength int
    Maximum length of the text
    MinLength int
    Minimum length of the text
    Name string
    The Name of the Check.
    Options []GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyPropertyOption
    User defined property options.
    Type string
    The type of the user defined property.
    Value string
    The value of the property.
    defaultValue String
    The default value of the property.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    isRequired Boolean
    True if the property is required, false otherwise
    maxLength Integer
    Maximum length of the text
    minLength Integer
    Minimum length of the text
    name String
    The Name of the Check.
    options List<GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyPropertyOption>
    User defined property options.
    type String
    The type of the user defined property.
    value String
    The value of the property.
    defaultValue string
    The default value of the property.
    description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName string
    A filter to return only resources that match the entire display name given.
    isRequired boolean
    True if the property is required, false otherwise
    maxLength number
    Maximum length of the text
    minLength number
    Minimum length of the text
    name string
    The Name of the Check.
    options GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyPropertyOption[]
    User defined property options.
    type string
    The type of the user defined property.
    value string
    The value of the property.
    default_value str
    The default value of the property.
    description str
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    display_name str
    A filter to return only resources that match the entire display name given.
    is_required bool
    True if the property is required, false otherwise
    max_length int
    Maximum length of the text
    min_length int
    Minimum length of the text
    name str
    The Name of the Check.
    options Sequence[GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyPropertyOption]
    User defined property options.
    type str
    The type of the user defined property.
    value str
    The value of the property.
    defaultValue String
    The default value of the property.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    isRequired Boolean
    True if the property is required, false otherwise
    maxLength Number
    Maximum length of the text
    minLength Number
    Minimum length of the text
    name String
    The Name of the Check.
    options List<Property Map>
    User defined property options.
    type String
    The type of the user defined property.
    value String
    The value of the property.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyPropertyOption

    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Value string
    The value of the property.
    Description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Value string
    The value of the property.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    value String
    The value of the property.
    description string
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName string
    A filter to return only resources that match the entire display name given.
    value string
    The value of the property.
    description str
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    display_name str
    A filter to return only resources that match the entire display name given.
    value str
    The value of the property.
    description String
    A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    displayName String
    A filter to return only resources that match the entire display name given.
    value String
    The value of the property.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn

    DisplayName string
    A filter to return only resources that match the entire display name given.
    Key string
    Pre-Migration сheck id.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Key string
    Pre-Migration сheck id.
    displayName String
    A filter to return only resources that match the entire display name given.
    key String
    Pre-Migration сheck id.
    displayName string
    A filter to return only resources that match the entire display name given.
    key string
    Pre-Migration сheck id.
    display_name str
    A filter to return only resources that match the entire display name given.
    key str
    Pre-Migration сheck id.
    displayName String
    A filter to return only resources that match the entire display name given.
    key String
    Pre-Migration сheck id.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation

    Bucket string
    Name of the bucket containing the log file.
    Namespace string
    Object Storage namespace.
    Object string
    Log object name.
    Bucket string
    Name of the bucket containing the log file.
    Namespace string
    Object Storage namespace.
    Object string
    Log object name.
    bucket String
    Name of the bucket containing the log file.
    namespace String
    Object Storage namespace.
    object String
    Log object name.
    bucket string
    Name of the bucket containing the log file.
    namespace string
    Object Storage namespace.
    object string
    Log object name.
    bucket str
    Name of the bucket containing the log file.
    namespace str
    Object Storage namespace.
    object str
    Log object name.
    bucket String
    Name of the bucket containing the log file.
    namespace String
    Object Storage namespace.
    object String
    Log object name.

    GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata

    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.

    GetAssessmentAssessorChecksFilter

    Name string
    The Name of the Check.
    Values List<string>
    Regex bool
    Name string
    The Name of the Check.
    Values []string
    Regex bool
    name String
    The Name of the Check.
    values List<String>
    regex Boolean
    name string
    The Name of the Check.
    values string[]
    regex boolean
    name str
    The Name of the Check.
    values Sequence[str]
    regex bool
    name String
    The Name of the Check.
    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.