Class: Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest
- 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
-
#features ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Feature>
Required.
-
#image_context ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1ImageContext
Image context and/or feature-specific parameters.
-
#input_config ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1InputConfig
The desired input location and metadata.
-
#output_config ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1OutputConfig
The desired output location and metadata.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest
constructor
A new instance of GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest
Returns a new instance of GoogleCloudVisionV1p2beta1AsyncAnnotateFileRequest
2949 2950 2951 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2949 def initialize(**args) update!(**args) end |
Instance Attribute Details
#features ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Feature>
Required. Requested features.
Corresponds to the JSON property features
2932 2933 2934 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2932 def features @features end |
#image_context ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1ImageContext
Image context and/or feature-specific parameters.
Corresponds to the JSON property imageContext
2937 2938 2939 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2937 def image_context @image_context end |
#input_config ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1InputConfig
The desired input location and metadata.
Corresponds to the JSON property inputConfig
2942 2943 2944 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2942 def input_config @input_config end |
#output_config ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1OutputConfig
The desired output location and metadata.
Corresponds to the JSON property outputConfig
2947 2948 2949 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2947 def output_config @output_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2954 2955 2956 2957 2958 2959 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 2954 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 |