AiDataset

class AiDataset : KotlinCustomResource

A collection of DataItems and Annotations on them. To get more information about Dataset, see:

Example Usage

Vertex Ai Dataset

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.vertex.AiDataset;
import com.pulumi.gcp.vertex.AiDatasetArgs;
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 dataset = new AiDataset("dataset", AiDatasetArgs.builder()
.displayName("terraform")
.metadataSchemaUri("gs://google-cloud-aiplatform/schema/dataset/metadata/image_1.0.0.yaml")
.region("us-central1")
.build());
}
}

Import

This resource does not support import.

Properties

Link copied to clipboard
val createTime: Output<String>

The timestamp of when the dataset was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.

Link copied to clipboard
val displayName: Output<String>

The user-defined name of the Dataset. The name can be up to 128 characters long and can be consist of any UTF-8 characters.

Link copied to clipboard

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

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val labels: Output<Map<String, String>>

A set of key/value label pairs to assign to this Workflow.

Link copied to clipboard

Points to a YAML file stored on Google Cloud Storage describing additional information about the Dataset. The schema is defined as an OpenAPI 3.0.2 Schema Object. The schema files that can be used here are found in gs://google-cloud-aiplatform/schema/dataset/metadata/.

Link copied to clipboard
val name: Output<String>

The resource name of the Dataset. This value is set by Google.

Link copied to clipboard
val project: Output<String>

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 pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val region: Output<String>

The region of the dataset. eg us-central1

Link copied to clipboard
val updateTime: Output<String>

The timestamp of when the dataset was last updated in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.

Link copied to clipboard
val urn: Output<String>