Class: Google::Apis::VisionV1::ImageSource
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::ImageSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb
Overview
External image source (Google Cloud Storage or web URL image location).
Instance Attribute Summary collapse
-
#gcs_image_uri ⇒ String
Use
image_uriinstead. The Google Cloud Storage URI of the formgs://bucket_name/object_name. -
#image_uri ⇒ String
The URI of the source image.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImageSource
constructor
A new instance of ImageSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ImageSource
Returns a new instance of ImageSource
2995 2996 2997 |
# File 'generated/google/apis/vision_v1/classes.rb', line 2995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gcs_image_uri ⇒ String
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
2975 2976 2977 |
# File 'generated/google/apis/vision_v1/classes.rb', line 2975 def gcs_image_uri @gcs_image_uri end |
#image_uri ⇒ String
The URI of the source image. Can be either:
- 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. - 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_uriandimage_uriare specified,image_uritakes precedence. Corresponds to the JSON propertyimageUri
2993 2994 2995 |
# File 'generated/google/apis/vision_v1/classes.rb', line 2993 def image_uri @image_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3000 3001 3002 3003 |
# File 'generated/google/apis/vision_v1/classes.rb', line 3000 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 |