import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Annotation Format resource 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 testAnnotationFormat = oci.datalabellingservice.getAnnotationFormat({ * compartmentId: compartmentId, * }); * ``` */ export declare function getAnnotationFormat(args: GetAnnotationFormatArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAnnotationFormat. */ export interface GetAnnotationFormatArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; } /** * A collection of values returned by getAnnotationFormat. */ export interface GetAnnotationFormatResult { readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of annotation formats. */ readonly items: outputs.DataLabellingService.GetAnnotationFormatItem[]; } /** * This data source provides details about a specific Annotation Format resource 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 testAnnotationFormat = oci.datalabellingservice.getAnnotationFormat({ * compartmentId: compartmentId, * }); * ``` */ export declare function getAnnotationFormatOutput(args: GetAnnotationFormatOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAnnotationFormat. */ export interface GetAnnotationFormatOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; } //# sourceMappingURL=getAnnotationFormat.d.ts.map