import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a Study. A resource name will be generated after creation of the Study. * Auto-naming is currently not supported for this resource. */ export declare class Study extends pulumi.CustomResource { /** * Get an existing Study 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): Study; /** * Returns true if the given object is an instance of Study. 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 Study; /** * Time at which the study was created. */ readonly createTime: pulumi.Output; /** * Describes the Study, default value is empty string. */ readonly displayName: pulumi.Output; /** * A human readable reason why the Study is inactive. This should be empty if a study is ACTIVE or COMPLETED. */ readonly inactiveReason: pulumi.Output; readonly location: pulumi.Output; /** * The name of a study. The study's globally unique identifier. Format: `projects/{project}/locations/{location}/studies/{study}` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The detailed state of a Study. */ readonly state: pulumi.Output; /** * Configuration of the Study. */ readonly studySpec: pulumi.Output; /** * Create a Study 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: StudyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Study resource. */ export interface StudyArgs { /** * Describes the Study, default value is empty string. */ displayName: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; /** * Configuration of the Study. */ studySpec: pulumi.Input; }