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 Annotation Formats in Oracle Cloud Infrastructure Data Labeling Service service. * * These are a static list in a given region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAnnotationFormats = oci.datalabellingservice.getAnnotationFormats({ * compartmentId: compartmentId, * }); * ``` */ export declare function getAnnotationFormats(args: GetAnnotationFormatsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAnnotationFormats. */ export interface GetAnnotationFormatsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.DataLabellingService.GetAnnotationFormatsFilter[]; } /** * A collection of values returned by getAnnotationFormats. */ export interface GetAnnotationFormatsResult { /** * The list of annotation_format_collection. */ readonly annotationFormatCollections: outputs.DataLabellingService.GetAnnotationFormatsAnnotationFormatCollection[]; readonly compartmentId: string; readonly filters?: outputs.DataLabellingService.GetAnnotationFormatsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Annotation Formats in Oracle Cloud Infrastructure Data Labeling Service service. * * These are a static list in a given region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAnnotationFormats = oci.datalabellingservice.getAnnotationFormats({ * compartmentId: compartmentId, * }); * ``` */ export declare function getAnnotationFormatsOutput(args: GetAnnotationFormatsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAnnotationFormats. */ export interface GetAnnotationFormatsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getAnnotationFormats.d.ts.map