Class: Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/vision_v1p2beta1/classes.rb,
generated/google/apis/vision_v1p2beta1/representations.rb,
generated/google/apis/vision_v1p2beta1/representations.rb

Overview

An offline file annotation request.

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) ⇒ GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest

Returns a new instance of GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest



2621
2622
2623
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2621

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

Instance Attribute Details

#featuresArray<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Feature>

Required. Requested features. Corresponds to the JSON property features



2604
2605
2606
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2604

def features
  @features
end

#image_contextGoogle::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1ImageContext

Image context and/or feature-specific parameters. Corresponds to the JSON property imageContext



2609
2610
2611
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2609

def image_context
  @image_context
end

#input_configGoogle::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1InputConfig

The desired input location and metadata. Corresponds to the JSON property inputConfig



2614
2615
2616
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2614

def input_config
  @input_config
end

#output_configGoogle::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1OutputConfig

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



2619
2620
2621
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2619

def output_config
  @output_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2626
2627
2628
2629
2630
2631
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2626

def update!(**args)
  @features = args[:features] if args.key?(:features)
  @image_context = args[:image_context] if args.key?(:image_context)
  @input_config = args[:input_config] if args.key?(:input_config)
  @output_config = args[:output_config] if args.key?(:output_config)
end