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 Assessors in Oracle Cloud Infrastructure Database Migration service. * * List all Assessors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAssessmentAssessors = oci.databasemigration.getAssessmentAssessors({ * assessmentId: testAssessment.id, * displayName: assessmentAssessorDisplayName, * state: assessmentAssessorState, * }); * ``` */ export declare function getAssessmentAssessors(args: GetAssessmentAssessorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAssessmentAssessors. */ export interface GetAssessmentAssessorsArgs { /** * The OCID of the Assessment */ assessmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.DatabaseMigration.GetAssessmentAssessorsFilter[]; /** * The lifecycle state of the Assessor. */ state?: string; } /** * A collection of values returned by getAssessmentAssessors. */ export interface GetAssessmentAssessorsResult { /** * The OCID of the resource being referenced. */ readonly assessmentId: string; /** * The list of assessor_summary_collection. */ readonly assessorSummaryCollections: outputs.DatabaseMigration.GetAssessmentAssessorsAssessorSummaryCollection[]; /** * 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.GetAssessmentAssessorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Assessor. */ readonly state?: string; } /** * This data source provides the list of Assessment Assessors in Oracle Cloud Infrastructure Database Migration service. * * List all Assessors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAssessmentAssessors = oci.databasemigration.getAssessmentAssessors({ * assessmentId: testAssessment.id, * displayName: assessmentAssessorDisplayName, * state: assessmentAssessorState, * }); * ``` */ export declare function getAssessmentAssessorsOutput(args: GetAssessmentAssessorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAssessmentAssessors. */ export interface GetAssessmentAssessorsOutputArgs { /** * The OCID of the Assessment */ assessmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The lifecycle state of the Assessor. */ state?: pulumi.Input; } //# sourceMappingURL=getAssessmentAssessors.d.ts.map