Class: Google::Apis::TranslateV3beta1::InputConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/translate_v3beta1/classes.rb,
generated/google/apis/translate_v3beta1/representations.rb,
generated/google/apis/translate_v3beta1/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.



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

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

Instance Attribute Details

#gcs_sourceGoogle::Apis::TranslateV3beta1::GcsSource

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



342
343
344
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 342

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)


349
350
351
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 349

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



356
357
358
359
# File 'generated/google/apis/translate_v3beta1/classes.rb', line 356

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