Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi
published on Friday, Mar 6, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi
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 dictionaryThe following arguments are supported:
- Assessment
Id string - The OCID of the Assessment
- Assessor
Name string - The name of the Assessor
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Assessment Assessor Checks Filter>
- Assessment
Id string - The OCID of the Assessment
- Assessor
Name string - The name of the Assessor
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Assessment Assessor Checks Filter
- assessment
Id String - The OCID of the Assessment
- assessor
Name String - The name of the Assessor
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Assessment Assessor Checks Filter>
- assessment
Id string - The OCID of the Assessment
- assessor
Name string - The name of the Assessor
- compartment
Id string - The ID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Assessment Assessor Checks Filter[]
- 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[Get
Assessment Assessor Checks Filter]
- assessment
Id String - The OCID of the Assessment
- assessor
Name String - The name of the Assessor
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name 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:
- Assessment
Id string - Assessor
Check List<GetSummary Collections Assessment Assessor Checks Assessor Check Summary Collection> - The list of assessor_check_summary_collection.
- Assessor
Name string - Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Assessment Assessor Checks Filter>
- Assessment
Id string - Assessor
Check []GetSummary Collections Assessment Assessor Checks Assessor Check Summary Collection - The list of assessor_check_summary_collection.
- Assessor
Name string - Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Assessment Assessor Checks Filter
- assessment
Id String - assessor
Check List<GetSummary Collections Assessment Assessor Checks Assessor Check Summary Collection> - The list of assessor_check_summary_collection.
- assessor
Name String - compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Assessment Assessor Checks Filter>
- assessment
Id string - assessor
Check GetSummary Collections Assessment Assessor Checks Assessor Check Summary Collection[] - The list of assessor_check_summary_collection.
- assessor
Name string - compartment
Id string - id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Assessment Assessor Checks Filter[]
- assessment_
id str - assessor_
check_ Sequence[Getsummary_ collections Assessment Assessor Checks Assessor Check Summary Collection] - 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[Get
Assessment Assessor Checks Filter]
- assessment
Id String - assessor
Check List<Property Map>Summary Collections - The list of assessor_check_summary_collection.
- assessor
Name String - compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- display
Name 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.
- Assessor
Check List<GetGroups Assessment Assessor Checks Assessor Check Summary Collection Item Assessor Check Group> - Assessor Check Group
- Assessor
Check stringState - The current state of the Assessor Check.
- Check
Actions List<GetAssessment Assessor Checks Assessor Check Summary Collection Item Check Action> - Assessor Check Action
- Columns
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Column> - 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.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Fixup
Script stringLocation - The path to the fixup script for this check.
- Help
Link stringText - The Help link text.
- Help
Link stringUrl - The Help URL.
- Impact string
- Impact of the issue on data migration.
- Is
Exclusion boolAllowed - If false, objects cannot be excluded from migration.
- Issue string
- Description of the issue.
- Key string
- Pre-Migration сheck id.
- Log
Locations List<GetAssessment Assessor Checks Assessor Check Summary Collection Item Log Location> - Details to access log file in the specified Object Storage bucket, if any.
- Metadatas
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Metadata> - Metadata of object.
- Name string
- The Name of the Check.
- Object
Count int - Number of database objects to migrate.
- Objects
Display stringName - The objects display name.
- Action string
- Fixing the issue.
- Assessor
Check []GetGroups Assessment Assessor Checks Assessor Check Summary Collection Item Assessor Check Group - Assessor Check Group
- Assessor
Check stringState - The current state of the Assessor Check.
- Check
Actions []GetAssessment Assessor Checks Assessor Check Summary Collection Item Check Action - Assessor Check Action
- Columns
[]Get
Assessment Assessor Checks Assessor Check Summary Collection Item Column - 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.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Fixup
Script stringLocation - The path to the fixup script for this check.
- Help
Link stringText - The Help link text.
- Help
Link stringUrl - The Help URL.
- Impact string
- Impact of the issue on data migration.
- Is
Exclusion boolAllowed - If false, objects cannot be excluded from migration.
- Issue string
- Description of the issue.
- Key string
- Pre-Migration сheck id.
- Log
Locations []GetAssessment Assessor Checks Assessor Check Summary Collection Item Log Location - Details to access log file in the specified Object Storage bucket, if any.
- Metadatas
[]Get
Assessment Assessor Checks Assessor Check Summary Collection Item Metadata - Metadata of object.
- Name string
- The Name of the Check.
- Object
Count int - Number of database objects to migrate.
- Objects
Display stringName - The objects display name.
- action String
- Fixing the issue.
- assessor
Check List<GetGroups Assessment Assessor Checks Assessor Check Summary Collection Item Assessor Check Group> - Assessor Check Group
- assessor
Check StringState - The current state of the Assessor Check.
- check
Actions List<GetAssessment Assessor Checks Assessor Check Summary Collection Item Check Action> - Assessor Check Action
- columns
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Column> - 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- fixup
Script StringLocation - The path to the fixup script for this check.
- help
Link StringText - The Help link text.
- help
Link StringUrl - The Help URL.
- impact String
- Impact of the issue on data migration.
- is
Exclusion BooleanAllowed - If false, objects cannot be excluded from migration.
- issue String
- Description of the issue.
- key String
- Pre-Migration сheck id.
- log
Locations List<GetAssessment Assessor Checks Assessor Check Summary Collection Item Log Location> - Details to access log file in the specified Object Storage bucket, if any.
- metadatas
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Metadata> - Metadata of object.
- name String
- The Name of the Check.
- object
Count Integer - Number of database objects to migrate.
- objects
Display StringName - The objects display name.
- action string
- Fixing the issue.
- assessor
Check GetGroups Assessment Assessor Checks Assessor Check Summary Collection Item Assessor Check Group[] - Assessor Check Group
- assessor
Check stringState - The current state of the Assessor Check.
- check
Actions GetAssessment Assessor Checks Assessor Check Summary Collection Item Check Action[] - Assessor Check Action
- columns
Get
Assessment Assessor Checks Assessor Check Summary Collection Item Column[] - 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.
- display
Name string - A filter to return only resources that match the entire display name given.
- fixup
Script stringLocation - The path to the fixup script for this check.
- help
Link stringText - The Help link text.
- help
Link stringUrl - The Help URL.
- impact string
- Impact of the issue on data migration.
- is
Exclusion booleanAllowed - If false, objects cannot be excluded from migration.
- issue string
- Description of the issue.
- key string
- Pre-Migration сheck id.
- log
Locations GetAssessment Assessor Checks Assessor Check Summary Collection Item Log Location[] - Details to access log file in the specified Object Storage bucket, if any.
- metadatas
Get
Assessment Assessor Checks Assessor Check Summary Collection Item Metadata[] - Metadata of object.
- name string
- The Name of the Check.
- object
Count number - Number of database objects to migrate.
- objects
Display stringName - The objects display name.
- action str
- Fixing the issue.
- assessor_
check_ Sequence[Getgroups Assessment Assessor Checks Assessor Check Summary Collection Item Assessor Check Group] - Assessor Check Group
- assessor_
check_ strstate - The current state of the Assessor Check.
- check_
actions Sequence[GetAssessment Assessor Checks Assessor Check Summary Collection Item Check Action] - Assessor Check Action
- columns
Sequence[Get
Assessment Assessor Checks Assessor Check Summary Collection Item Column] - 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_ strlocation - The path to the fixup script for this check.
- help_
link_ strtext - The Help link text.
- help_
link_ strurl - The Help URL.
- impact str
- Impact of the issue on data migration.
- is_
exclusion_ boolallowed - If false, objects cannot be excluded from migration.
- issue str
- Description of the issue.
- key str
- Pre-Migration сheck id.
- log_
locations Sequence[GetAssessment Assessor Checks Assessor Check Summary Collection Item Log Location] - Details to access log file in the specified Object Storage bucket, if any.
- metadatas
Sequence[Get
Assessment Assessor Checks Assessor Check Summary Collection Item Metadata] - Metadata of object.
- name str
- The Name of the Check.
- object_
count int - Number of database objects to migrate.
- objects_
display_ strname - The objects display name.
- action String
- Fixing the issue.
- assessor
Check List<Property Map>Groups - Assessor Check Group
- assessor
Check StringState - The current state of the Assessor Check.
- check
Actions 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- fixup
Script StringLocation - The path to the fixup script for this check.
- help
Link StringText - The Help link text.
- help
Link StringUrl - The Help URL.
- impact String
- Impact of the issue on data migration.
- is
Exclusion BooleanAllowed - If false, objects cannot be excluded from migration.
- issue String
- Description of the issue.
- key String
- Pre-Migration сheck id.
- log
Locations 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.
- object
Count Number - Number of database objects to migrate.
- objects
Display StringName - 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.
- Display
Name string - 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 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.
- Display
Name string - 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 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- is
Expanded 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.
- display
Name string - A filter to return only resources that match the entire display name given.
- is
Expanded 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- is
Expanded 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.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Name string
- The Name of the Check.
- User
Defined List<GetProperties Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property> - User defined properties
- Description string
- A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Name string
- The Name of the Check.
- User
Defined []GetProperties Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property - User defined properties
- description String
- A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- display
Name String - A filter to return only resources that match the entire display name given.
- name String
- The Name of the Check.
- user
Defined List<GetProperties Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property> - User defined properties
- description string
- A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- display
Name string - A filter to return only resources that match the entire display name given.
- name string
- The Name of the Check.
- user
Defined GetProperties Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property[] - 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_ Sequence[Getproperties Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property] - User defined properties
- description String
- A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- display
Name String - A filter to return only resources that match the entire display name given.
- name String
- The Name of the Check.
- user
Defined List<Property Map>Properties - User defined properties
GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedProperty
- Description string
- A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Help
Link stringText - The Help link text.
- Help
Link stringUrl - The Help URL.
- Properties
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property> - 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.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Help
Link stringText - The Help link text.
- Help
Link stringUrl - The Help URL.
- Properties
[]Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property - 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- help
Link StringText - The Help link text.
- help
Link StringUrl - The Help URL.
- properties
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property> - 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.
- display
Name string - A filter to return only resources that match the entire display name given.
- help
Link stringText - The Help link text.
- help
Link stringUrl - The Help URL.
- properties
Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property[] - 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_ strtext - The Help link text.
- help_
link_ strurl - The Help URL.
- properties
Sequence[Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property] - 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- help
Link StringText - The Help link text.
- help
Link StringUrl - The Help URL.
- properties List<Property Map>
- Array of user defined properties.
GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemCheckActionUserDefinedPropertyProperty
- Default
Value 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.
- Display
Name string - 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 string
- The Name of the Check.
- Options
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property Option> - User defined property options.
- Type string
- The type of the user defined property.
- Value string
- The value of the property.
- Default
Value 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.
- Display
Name string - 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 string
- The Name of the Check.
- Options
[]Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property Option - User defined property options.
- Type string
- The type of the user defined property.
- Value string
- The value of the property.
- default
Value 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- is
Required Boolean - True if the property is required, false otherwise
- max
Length Integer - Maximum length of the text
- min
Length Integer - Minimum length of the text
- name String
- The Name of the Check.
- options
List<Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property Option> - User defined property options.
- type String
- The type of the user defined property.
- value String
- The value of the property.
- default
Value 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.
- display
Name string - A filter to return only resources that match the entire display name given.
- is
Required boolean - True if the property is required, false otherwise
- max
Length number - Maximum length of the text
- min
Length number - Minimum length of the text
- name string
- The Name of the Check.
- options
Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property Option[] - 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[Get
Assessment Assessor Checks Assessor Check Summary Collection Item Check Action User Defined Property Property Option] - User defined property options.
- type str
- The type of the user defined property.
- value str
- The value of the property.
- default
Value 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- is
Required Boolean - True if the property is required, false otherwise
- max
Length Number - Maximum length of the text
- min
Length 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.
- Display
Name 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.
- Display
Name 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.
- display
Name 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.
- display
Name 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- value String
- The value of the property.
GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemColumn
- Display
Name string - A filter to return only resources that match the entire display name given.
- Key string
- Pre-Migration сheck id.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Key string
- Pre-Migration сheck id.
- display
Name String - A filter to return only resources that match the entire display name given.
- key String
- Pre-Migration сheck id.
- display
Name 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- key String
- Pre-Migration сheck id.
GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemLogLocation
GetAssessmentAssessorChecksAssessorCheckSummaryCollectionItemMetadata
- Object
Name stringColumn - The field that stores the name of the object.
- Object
Type stringColumn - The field that stores the type of the object.
- Object
Type stringFixed - The field that stores the fixed type of the object.
- Schema
Owner stringColumn - The field that stores the owner of the object.
- Object
Name stringColumn - The field that stores the name of the object.
- Object
Type stringColumn - The field that stores the type of the object.
- Object
Type stringFixed - The field that stores the fixed type of the object.
- Schema
Owner stringColumn - The field that stores the owner of the object.
- object
Name StringColumn - The field that stores the name of the object.
- object
Type StringColumn - The field that stores the type of the object.
- object
Type StringFixed - The field that stores the fixed type of the object.
- schema
Owner StringColumn - The field that stores the owner of the object.
- object
Name stringColumn - The field that stores the name of the object.
- object
Type stringColumn - The field that stores the type of the object.
- object
Type stringFixed - The field that stores the fixed type of the object.
- schema
Owner stringColumn - The field that stores the owner of the object.
- object_
name_ strcolumn - The field that stores the name of the object.
- object_
type_ strcolumn - The field that stores the type of the object.
- object_
type_ strfixed - The field that stores the fixed type of the object.
- schema_
owner_ strcolumn - The field that stores the owner of the object.
- object
Name StringColumn - The field that stores the name of the object.
- object
Type StringColumn - The field that stores the type of the object.
- object
Type StringFixed - The field that stores the fixed type of the object.
- schema
Owner StringColumn - The field that stores the owner of the object.
GetAssessmentAssessorChecksFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi
published on Friday, Mar 6, 2026 by Pulumi
