Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1InputConfig

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

Overview

The desired input location and metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVisionV1p1beta1InputConfig

Returns a new instance of GoogleCloudVisionV1p1beta1InputConfig.



2129
2130
2131
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2129

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)


2116
2117
2118
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2116

def content
  @content
end

#gcs_sourceGoogle::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1GcsSource

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



2121
2122
2123
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2121

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)


2127
2128
2129
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2127

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2134
2135
2136
2137
2138
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2134

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