Class: Google::Apis::VisionV1::AsyncBatchAnnotateImagesRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AsyncBatchAnnotateImagesRequest

Returns a new instance of AsyncBatchAnnotateImagesRequest.



415
416
417
# File 'generated/google/apis/vision_v1/classes.rb', line 415

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

Instance Attribute Details

#output_configGoogle::Apis::VisionV1::OutputConfig

The desired output location and metadata. Corresponds to the JSON property outputConfig



396
397
398
# File 'generated/google/apis/vision_v1/classes.rb', line 396

def output_config
  @output_config
end

#parentString

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 propertyparent`

Returns:

  • (String)


408
409
410
# File 'generated/google/apis/vision_v1/classes.rb', line 408

def parent
  @parent
end

#requestsArray<Google::Apis::VisionV1::AnnotateImageRequest>

Required. Individual image annotation requests for this batch. Corresponds to the JSON property requests



413
414
415
# File 'generated/google/apis/vision_v1/classes.rb', line 413

def requests
  @requests
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



420
421
422
423
424
# File 'generated/google/apis/vision_v1/classes.rb', line 420

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