Class: Google::Apis::TranslateV3::InputConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/translate_v3/classes.rb,
generated/google/apis/translate_v3/representations.rb,
generated/google/apis/translate_v3/representations.rb

Overview

Input configuration for BatchTranslateText request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InputConfig

Returns a new instance of InputConfig.



353
354
355
# File 'generated/google/apis/translate_v3/classes.rb', line 353

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#gcs_sourceGoogle::Apis::TranslateV3::GcsSource

The Google Cloud Storage location for the input content. Corresponds to the JSON property gcsSource



344
345
346
# File 'generated/google/apis/translate_v3/classes.rb', line 344

def gcs_source
  @gcs_source
end

#mime_typeString

Optional. Can be "text/plain" or "text/html". For .tsv, "text/html" is used if mime_type is missing. For .html, this field must be "text/html" or empty. For .txt, this field must be "text/plain" or empty. Corresponds to the JSON property mimeType

Returns:

  • (String)


351
352
353
# File 'generated/google/apis/translate_v3/classes.rb', line 351

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



358
359
360
361
# File 'generated/google/apis/translate_v3/classes.rb', line 358

def update!(**args)
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
end