Class: Google::Apis::VisionV1::AsyncBatchAnnotateImagesRequest
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::AsyncBatchAnnotateImagesRequest
- 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
Request for async image annotation for a list of images.
Instance Attribute Summary collapse
-
#output_config ⇒ Google::Apis::VisionV1::OutputConfig
The desired output location and metadata.
-
#parent ⇒ String
Optional.
-
#requests ⇒ Array<Google::Apis::VisionV1::AnnotateImageRequest>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AsyncBatchAnnotateImagesRequest
constructor
A new instance of AsyncBatchAnnotateImagesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AsyncBatchAnnotateImagesRequest
Returns a new instance of AsyncBatchAnnotateImagesRequest.
402 403 404 |
# File 'generated/google/apis/vision_v1/classes.rb', line 402 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_config ⇒ Google::Apis::VisionV1::OutputConfig
The desired output location and metadata.
Corresponds to the JSON property outputConfig
386 387 388 |
# File 'generated/google/apis/vision_v1/classes.rb', line 386 def output_config @output_config end |
#parent ⇒ String
Optional. Target project and location to make a call. Format: projects/
project-id/locations/
location-id`. If no parent is specified, a region will
be chosen automatically. Supported location-ids:
us: USA country only,
asia
: East asia areas, like Japan, Taiwan,
eu: The European Union. Example:
projects/project-A/locations/eu.
Corresponds to the JSON property
parent`
395 396 397 |
# File 'generated/google/apis/vision_v1/classes.rb', line 395 def parent @parent end |
#requests ⇒ Array<Google::Apis::VisionV1::AnnotateImageRequest>
Required. Individual image annotation requests for this batch.
Corresponds to the JSON property requests
400 401 402 |
# File 'generated/google/apis/vision_v1/classes.rb', line 400 def requests @requests end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
407 408 409 410 411 |
# File 'generated/google/apis/vision_v1/classes.rb', line 407 def update!(**args) @output_config = args[:output_config] if args.key?(:output_config) @parent = args[:parent] if args.key?(:parent) @requests = args[:requests] if args.key?(:requests) end |