class Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1ImageSource

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

Attributes

gcs_image_uri[RW]

**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](cloud.google.com/storage/docs/reference- uris) for more info. Corresponds to the JSON property `gcsImageUri` @return [String]

image_uri[RW]

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](cloud.google.com/storage/docs/ reference-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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vision_v1p1beta1/classes.rb, line 2052
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vision_v1p1beta1/classes.rb, line 2057
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