Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1Image

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

Client image to perform Google Cloud Vision API tasks over.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVisionV1p1beta1Image

Returns a new instance of GoogleCloudVisionV1p1beta1Image.



1913
1914
1915
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 1913

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

Instance Attribute Details

#contentString

Image 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 BatchAnnotateImages requests. It does not work for AsyncBatchAnnotateImages requests. Corresponds to the JSON property content NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


1906
1907
1908
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 1906

def content
  @content
end

#sourceGoogle::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1ImageSource

External image source (Google Cloud Storage or web URL image location). Corresponds to the JSON property source



1911
1912
1913
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 1911

def source
  @source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1918
1919
1920
1921
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 1918

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