import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Initializes a MetadataStore, including allocation of resources. * Auto-naming is currently not supported for this resource. */ export declare class MetadataStore extends pulumi.CustomResource { /** * Get an existing MetadataStore 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): MetadataStore; /** * Returns true if the given object is an instance of MetadataStore. 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 MetadataStore; /** * Timestamp when this MetadataStore was created. */ readonly createTime: pulumi.Output; /** * Description of the MetadataStore. */ readonly description: pulumi.Output; /** * Customer-managed encryption key spec for a Metadata Store. If set, this Metadata Store and all sub-resources of this Metadata Store are secured using this key. */ readonly encryptionSpec: pulumi.Output; readonly location: pulumi.Output; /** * The {metadatastore} portion of the resource name with the format: `projects/{project}/locations/{location}/metadataStores/{metadatastore}` If not provided, the MetadataStore's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are `/a-z-/`. Must be unique across all MetadataStores in the parent Location. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting MetadataStore.) */ readonly metadataStoreId: pulumi.Output; /** * The resource name of the MetadataStore instance. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * State information of the MetadataStore. */ readonly state: pulumi.Output; /** * Timestamp when this MetadataStore was last updated. */ readonly updateTime: pulumi.Output; /** * Create a MetadataStore 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?: MetadataStoreArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a MetadataStore resource. */ export interface MetadataStoreArgs { /** * Description of the MetadataStore. */ description?: pulumi.Input; /** * Customer-managed encryption key spec for a Metadata Store. If set, this Metadata Store and all sub-resources of this Metadata Store are secured using this key. */ encryptionSpec?: pulumi.Input; location?: pulumi.Input; /** * The {metadatastore} portion of the resource name with the format: `projects/{project}/locations/{location}/metadataStores/{metadatastore}` If not provided, the MetadataStore's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are `/a-z-/`. Must be unique across all MetadataStores in the parent Location. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting MetadataStore.) */ metadataStoreId?: pulumi.Input; project?: pulumi.Input; }