import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates an annotation spec set by providing a set of labels. * Auto-naming is currently not supported for this resource. */ export declare class AnnotationSpecSet extends pulumi.CustomResource { /** * Get an existing AnnotationSpecSet resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): AnnotationSpecSet; /** * Returns true if the given object is an instance of AnnotationSpecSet. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AnnotationSpecSet; /** * The array of AnnotationSpecs that you define when you create the AnnotationSpecSet. These are the possible labels for the labeling task. */ readonly annotationSpecs: pulumi.Output; /** * The names of any related resources that are blocking changes to the annotation spec set. */ readonly blockingResources: pulumi.Output; /** * Optional. User-provided description of the annotation specification set. The description can be up to 10,000 characters long. */ readonly description: pulumi.Output; /** * The display name for AnnotationSpecSet that you define when you create it. Maximum of 64 characters. */ readonly displayName: pulumi.Output; /** * The AnnotationSpecSet resource name in the following format: "projects/{project_id}/annotationSpecSets/{annotation_spec_set_id}" */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Create a AnnotationSpecSet resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AnnotationSpecSetArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AnnotationSpecSet resource. */ export interface AnnotationSpecSetArgs { /** * The array of AnnotationSpecs that you define when you create the AnnotationSpecSet. These are the possible labels for the labeling task. */ annotationSpecs: pulumi.Input[]>; /** * Optional. User-provided description of the annotation specification set. The description can be up to 10,000 characters long. */ description?: pulumi.Input; /** * The display name for AnnotationSpecSet that you define when you create it. Maximum of 64 characters. */ displayName: pulumi.Input; project?: pulumi.Input; }