Class: Google::Cloud::Translate::V3::TranslateTextRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Translate::V3::TranslateTextRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/translate/v3/translation_service.rb
Overview
The request message for synchronous translation.
Defined Under Namespace
Classes: LabelsEntry
Instance Attribute Summary collapse
-
#contents ⇒ ::Array<::String>
Required.
-
#glossary_config ⇒ ::Google::Cloud::Translate::V3::TranslateTextGlossaryConfig
Optional.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#mime_type ⇒ ::String
Optional.
-
#model ⇒ ::String
Optional.
-
#parent ⇒ ::String
Required.
-
#source_language_code ⇒ ::String
Optional.
-
#target_language_code ⇒ ::String
Required.
-
#transliteration_config ⇒ ::Google::Cloud::Translate::V3::TransliterationConfig
Optional.
Instance Attribute Details
#contents ⇒ ::Array<::String>
Returns Required. The content of the input in string format. We recommend the total content be less than 30,000 codepoints. The max length of this field is 1024. Use BatchTranslateText for larger text.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#glossary_config ⇒ ::Google::Cloud::Translate::V3::TranslateTextGlossaryConfig
Returns Optional. Glossary to be applied. The glossary must be within the same region (have the same location-id) as the model, otherwise an INVALID_ARGUMENT (400) error is returned.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns 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.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#mime_type ⇒ ::String
Returns Optional. The format of the source text, for example, "text/html", "text/plain". If left blank, the MIME type defaults to "text/html".
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#model ⇒ ::String
Returns Optional. The model
type requested for this translation.
The 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
,Translation LLM models:
projects/{project-number-or-id}/locations/{location-id}/models/general/translation-llm
,
For global (non-regionalized) requests, use location-id
global
.
For example,
projects/{project-number-or-id}/locations/global/models/general/nmt
.
If not provided, the default Google model (NMT) will be used.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#parent ⇒ ::String
Returns Required. Project or location to make a call. Must refer to a caller's project.
Format: projects/{project-number-or-id}
or
projects/{project-number-or-id}/locations/{location-id}
.
For global calls, use projects/{project-number-or-id}/locations/global
or
projects/{project-number-or-id}
.
Non-global location is required for requests using AutoML models or custom glossaries.
Models and glossaries must be within the same region (have same location-id), otherwise an INVALID_ARGUMENT (400) error is returned.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#source_language_code ⇒ ::String
Returns Optional. The ISO-639 language code of the input text if known, for example, "en-US" or "sr-Latn". Supported language codes are listed in Language Support. If the source language isn't specified, the API attempts to identify the source language automatically and returns the source language within the response.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#target_language_code ⇒ ::String
Returns Required. The ISO-639 language code to use for translation of the input text, set to one of the language codes listed in Language Support.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#transliteration_config ⇒ ::Google::Cloud::Translate::V3::TransliterationConfig
Returns Optional. Transliteration to be applied.
110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'proto_docs/google/cloud/translate/v3/translation_service.rb', line 110 class TranslateTextRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |