DatasetArgs

data class DatasetArgs(val displayName: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val sourceLanguageCode: Output<String>? = null, val targetLanguageCode: Output<String>? = null) : ConvertibleToJava<DatasetArgs>

Creates a Dataset.

Constructors

Link copied to clipboard
constructor(displayName: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null, sourceLanguageCode: Output<String>? = null, targetLanguageCode: Output<String>? = null)

Properties

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

The name of the dataset to show in the interface. The name can be up to 32 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscores (_), and ASCII digits 0-9.

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

The resource name of the dataset, in form of projects/{project-number-or-id}/locations/{location_id}/datasets/{dataset_id}

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

The BCP-47 language code of the source language.

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

The BCP-47 language code of the target language.

Functions

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