Struct google_api_proto::google::cloud::translation::v3beta1::BatchTranslateTextRequest
source · pub struct BatchTranslateTextRequest {
pub parent: String,
pub source_language_code: String,
pub target_language_codes: Vec<String>,
pub models: BTreeMap<String, String>,
pub input_configs: Vec<InputConfig>,
pub output_config: Option<OutputConfig>,
pub glossaries: BTreeMap<String, TranslateTextGlossaryConfig>,
pub labels: BTreeMap<String, String>,
}
Expand description
The batch translation request.
Fields§
§parent: String
Required. Location to make a call. Must refer to a caller’s project.
Format: projects/{project-number-or-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: BTreeMap<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
,
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 <= 100. 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: BTreeMap<String, TranslateTextGlossaryConfig>
Optional. Glossaries to be applied for translation. It’s keyed by target language code.
labels: BTreeMap<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§
source§impl Clone for BatchTranslateTextRequest
impl Clone for BatchTranslateTextRequest
source§fn clone(&self) -> BatchTranslateTextRequest
fn clone(&self) -> BatchTranslateTextRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchTranslateTextRequest
impl Debug for BatchTranslateTextRequest
source§impl Default for BatchTranslateTextRequest
impl Default for BatchTranslateTextRequest
source§impl Message for BatchTranslateTextRequest
impl Message for BatchTranslateTextRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for BatchTranslateTextRequest
impl PartialEq for BatchTranslateTextRequest
source§fn eq(&self, other: &BatchTranslateTextRequest) -> bool
fn eq(&self, other: &BatchTranslateTextRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchTranslateTextRequest
Auto Trait Implementations§
impl Freeze for BatchTranslateTextRequest
impl RefUnwindSafe for BatchTranslateTextRequest
impl Send for BatchTranslateTextRequest
impl Sync for BatchTranslateTextRequest
impl Unpin for BatchTranslateTextRequest
impl UnwindSafe for BatchTranslateTextRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request