[][src]Struct google_translate3::BatchTranslateTextRequest

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

The batch translation request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

source_language_code: Option<String>

Required. Source language code.

glossaries: Option<HashMap<String, TranslateTextGlossaryConfig>>

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

models: Option<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-number-or-id}/locations/{location-id}/models/{model-id}

  • General (built-in) models: projects/{project-number-or-id}/locations/{location-id}/models/general/nmt, projects/{project-number-or-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.

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.

labels: Option<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/advanced/labels for more information.

input_configs: Option<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.

target_language_codes: Option<Vec<String>>

Required. Specify up to 10 language codes here.

Trait Implementations

impl Clone for BatchTranslateTextRequest[src]

impl Debug for BatchTranslateTextRequest[src]

impl Default for BatchTranslateTextRequest[src]

impl<'de> Deserialize<'de> for BatchTranslateTextRequest[src]

impl RequestValue for BatchTranslateTextRequest[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any