[][src]Struct gcp_client::google::cloud::translation::v3beta1::BatchTranslateTextRequest

pub struct BatchTranslateTextRequest {
    pub parent: String,
    pub source_language_code: String,
    pub target_language_codes: Vec<String>,
    pub models: HashMap<String, String>,
    pub input_configs: Vec<InputConfig>,
    pub output_config: Option<OutputConfig>,
    pub glossaries: HashMap<String, TranslateTextGlossaryConfig>,
    pub labels: HashMap<String, String>,
}

The batch translation request.

Fields

parent: String

Required. Location to make a call. Must refer to a caller's project.

Format: projects/{project-id}/locations/{location-id}.

The global location is not supported for batch translation.

Only AutoML Translation models or glossaries within the same region (have the same location-id) can be used, otherwise an INVALID_ARGUMENT (400) error is returned.

source_language_code: String

Required. Source language code.

target_language_codes: Vec<String>

Required. Specify up to 10 language codes here.

models: HashMap<String, String>

Optional. The models to use for translation. Map's key is target language code. Map's value is model name. Value can be a built-in general model, or an AutoML Translation model.

The value format depends on model type:

  • AutoML Translation models: projects/{project-id}/locations/{location-id}/models/{model-id}

  • General (built-in) models: projects/{project-id}/locations/{location-id}/models/general/nmt, projects/{project-id}/locations/{location-id}/models/general/base

If the map is empty or a specific model is not requested for a language pair, then default google model (nmt) is used.

input_configs: Vec<InputConfig>

Required. Input configurations. The total number of files matched should be <= 1000. The total content size should be <= 100M Unicode codepoints. The files must use UTF-8 encoding.

output_config: Option<OutputConfig>

Required. Output configuration. If 2 input configs match to the same file (that is, same input path), we don't generate output for duplicate inputs.

glossaries: HashMap<String, TranslateTextGlossaryConfig>

Optional. Glossaries to be applied for translation. It's keyed by target language code.

labels: HashMap<String, String>

Optional. The labels with user-defined metadata for the request.

Label keys and values can be no longer than 63 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter.

See https://cloud.google.com/translate/docs/labels for more information.

Trait Implementations

impl Clone for BatchTranslateTextRequest[src]

impl Debug for BatchTranslateTextRequest[src]

impl Default for BatchTranslateTextRequest[src]

impl Message for BatchTranslateTextRequest[src]

impl PartialEq<BatchTranslateTextRequest> for BatchTranslateTextRequest[src]

impl StructuralPartialEq for BatchTranslateTextRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]