import * as pulumi from "@pulumi/pulumi"; /** * Creates a SpecialistPool. */ export declare class SpecialistPool extends pulumi.CustomResource { /** * Get an existing SpecialistPool 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): SpecialistPool; /** * Returns true if the given object is an instance of SpecialistPool. 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 SpecialistPool; /** * The user-defined name of the SpecialistPool. The name can be up to 128 characters long and can consist of any UTF-8 characters. This field should be unique on project-level. */ readonly displayName: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the SpecialistPool. */ readonly name: pulumi.Output; /** * The resource name of the pending data labeling jobs. */ readonly pendingDataLabelingJobs: pulumi.Output; readonly project: pulumi.Output; /** * The email addresses of the managers in the SpecialistPool. */ readonly specialistManagerEmails: pulumi.Output; /** * The number of managers in this SpecialistPool. */ readonly specialistManagersCount: pulumi.Output; /** * The email addresses of workers in the SpecialistPool. */ readonly specialistWorkerEmails: pulumi.Output; /** * Create a SpecialistPool 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: SpecialistPoolArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SpecialistPool resource. */ export interface SpecialistPoolArgs { /** * The user-defined name of the SpecialistPool. The name can be up to 128 characters long and can consist of any UTF-8 characters. This field should be unique on project-level. */ displayName: pulumi.Input; location?: pulumi.Input; /** * The resource name of the SpecialistPool. */ name?: pulumi.Input; project?: pulumi.Input; /** * The email addresses of the managers in the SpecialistPool. */ specialistManagerEmails?: pulumi.Input[]>; /** * The email addresses of workers in the SpecialistPool. */ specialistWorkerEmails?: pulumi.Input[]>; }