import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Assessment Assessor Checks in Oracle Cloud Infrastructure Database Migration service. * * List Assessor Check Summaries. * * ## Example Usage * * ```typescript * 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, * }); * ``` */ export declare function getAssessmentAssessorChecks(args: GetAssessmentAssessorChecksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAssessmentAssessorChecks. */ export interface GetAssessmentAssessorChecksArgs { /** * The OCID of the Assessment */ assessmentId: string; /** * The name of the Assessor */ assessorName: string; /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.DatabaseMigration.GetAssessmentAssessorChecksFilter[]; } /** * A collection of values returned by getAssessmentAssessorChecks. */ export interface GetAssessmentAssessorChecksResult { readonly assessmentId: string; /** * The list of assessor_check_summary_collection. */ readonly assessorCheckSummaryCollections: outputs.DatabaseMigration.GetAssessmentAssessorChecksAssessorCheckSummaryCollection[]; readonly assessorName: string; readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.DatabaseMigration.GetAssessmentAssessorChecksFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Assessment Assessor Checks in Oracle Cloud Infrastructure Database Migration service. * * List Assessor Check Summaries. * * ## Example Usage * * ```typescript * 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, * }); * ``` */ export declare function getAssessmentAssessorChecksOutput(args: GetAssessmentAssessorChecksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAssessmentAssessorChecks. */ export interface GetAssessmentAssessorChecksOutputArgs { /** * The OCID of the Assessment */ assessmentId: pulumi.Input; /** * The name of the Assessor */ assessorName: pulumi.Input; /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getAssessmentAssessorChecks.d.ts.map