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.
-
#requests ⇒ Array<Google::Apis::VisionV1::AnnotateImageRequest>
Individual image annotation requests for this batch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AsyncBatchAnnotateImagesRequest
constructor
A new instance of AsyncBatchAnnotateImagesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AsyncBatchAnnotateImagesRequest
Returns a new instance of AsyncBatchAnnotateImagesRequest
379 380 381 |
# File 'generated/google/apis/vision_v1/classes.rb', line 379 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
372 373 374 |
# File 'generated/google/apis/vision_v1/classes.rb', line 372 def output_config @output_config end |
#requests ⇒ Array<Google::Apis::VisionV1::AnnotateImageRequest>
Individual image annotation requests for this batch.
Corresponds to the JSON property requests
377 378 379 |
# File 'generated/google/apis/vision_v1/classes.rb', line 377 def requests @requests end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
384 385 386 387 |
# File 'generated/google/apis/vision_v1/classes.rb', line 384 def update!(**args) @output_config = args[:output_config] if args.key?(:output_config) @requests = args[:requests] if args.key?(:requests) end |