AiMetadataStoreArgs

data class AiMetadataStoreArgs(val description: Output<String>? = null, val encryptionSpec: Output<AiMetadataStoreEncryptionSpecArgs>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val region: Output<String>? = null) : ConvertibleToJava<AiMetadataStoreArgs>

Example Usage

Vertex Ai Metadata Store

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.vertex.AiMetadataStore;
import com.pulumi.gcp.vertex.AiMetadataStoreArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var store = new AiMetadataStore("store", AiMetadataStoreArgs.builder()
.description("Store to test the terraform module")
.region("us-central1")
.build());
}
}

Import

MetadataStore can be imported using any of these accepted formats

$ pulumi import gcp:vertex/aiMetadataStore:AiMetadataStore default projects/{{project}}/locations/{{region}}/metadataStores/{{name}}
$ pulumi import gcp:vertex/aiMetadataStore:AiMetadataStore default {{project}}/{{region}}/{{name}}
$ pulumi import gcp:vertex/aiMetadataStore:AiMetadataStore default {{region}}/{{name}}
$ pulumi import gcp:vertex/aiMetadataStore:AiMetadataStore default {{name}}

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, encryptionSpec: Output<AiMetadataStoreEncryptionSpecArgs>? = null, name: Output<String>? = null, project: Output<String>? = null, region: Output<String>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

Description of the MetadataStore.

Link copied to clipboard

Customer-managed encryption key spec for a MetadataStore. If set, this MetadataStore and all sub-resources of this MetadataStore will be secured by this key. Structure is documented below.

Link copied to clipboard
val name: Output<String>? = null

The name of the MetadataStore. This value may be up to 60 characters, and valid characters are a-z0-9_. The first character cannot be a number.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val region: Output<String>? = null

The region of the Metadata Store. eg us-central1

Functions

Link copied to clipboard
open override fun toJava(): AiMetadataStoreArgs