Class: Google::Apis::VisionV1::InputConfig

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

Overview

The desired input location and metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InputConfig

Returns a new instance of InputConfig



11510
11511
11512
# File 'generated/google/apis/vision_v1/classes.rb', line 11510

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

Instance Attribute Details

#contentString

File content, represented as a stream of bytes. Note: As with all bytes fields, protobuffers use a pure binary representation, whereas JSON representations use base64. Currently, this field only works for BatchAnnotateFiles requests. It does not work for AsyncBatchAnnotateFiles requests. Corresponds to the JSON property content NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


11497
11498
11499
# File 'generated/google/apis/vision_v1/classes.rb', line 11497

def content
  @content
end

#gcs_sourceGoogle::Apis::VisionV1::GcsSource

The Google Cloud Storage location where the input will be read from. Corresponds to the JSON property gcsSource



11502
11503
11504
# File 'generated/google/apis/vision_v1/classes.rb', line 11502

def gcs_source
  @gcs_source
end

#mime_typeString

The type of the file. Currently only "application/pdf", "image/tiff" and "image/gif" are supported. Wildcards are not supported. Corresponds to the JSON property mimeType

Returns:

  • (String)


11508
11509
11510
# File 'generated/google/apis/vision_v1/classes.rb', line 11508

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11515
11516
11517
11518
11519
# File 'generated/google/apis/vision_v1/classes.rb', line 11515

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