Class: Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1ImageSource

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

Overview

External image source (Google Cloud Storage or web URL image location).

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) ⇒ GoogleCloudVisionV1p2beta1ImageSource

Returns a new instance of GoogleCloudVisionV1p2beta1ImageSource.



4064
4065
4066
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 4064

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

Instance Attribute Details

#gcs_image_uriString

Use image_uri instead. The Google Cloud Storage URI of the form gs://bucket_name/object_name. Object versioning is not supported. See Google Cloud Storage Request URIs for more info. Corresponds to the JSON property gcsImageUri

Returns:

  • (String)


4044
4045
4046
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 4044

def gcs_image_uri
  @gcs_image_uri
end

#image_uriString

The URI of the source image. Can be either:

  1. A Google Cloud Storage URI of the form gs://bucket_name/object_name. Object versioning is not supported. See Google Cloud Storage Request URIs for more info.
  2. A publicly-accessible image HTTP/HTTPS URL. When fetching images from HTTP/HTTPS URLs, Google cannot guarantee that the request will be completed. Your request may fail if the specified host denies the request (e.g. due to request throttling or DOS prevention), or if Google throttles requests to the site for abuse prevention. You should not depend on externally-hosted images for production applications. When both gcs_image_uri and image_uri are specified, image_uri takes precedence. Corresponds to the JSON property imageUri

Returns:

  • (String)


4062
4063
4064
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 4062

def image_uri
  @image_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4069
4070
4071
4072
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 4069

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