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

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

Returns a new instance of GoogleCloudVisionV1p1beta1InputConfig



2090
2091
2092
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 2090

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

Instance Attribute Details

#gcs_sourceGoogle::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1GcsSource

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



2082
2083
2084
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 2082

def gcs_source
  @gcs_source
end

#mime_typeString

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

Returns:

  • (String)


2088
2089
2090
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 2088

def mime_type
  @mime_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2095
2096
2097
2098
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 2095

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