Class: Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p1beta1InputConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p1beta1InputConfig
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/vision_v1p2beta1/classes.rb,
lib/google/apis/vision_v1p2beta1/representations.rb,
lib/google/apis/vision_v1p2beta1/representations.rb 
Overview
The desired input location and metadata.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
File content, represented as a stream of bytes.
 - 
  
    
      #gcs_source  ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p1beta1GcsSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Google Cloud Storage location where the input will be read from.
 - 
  
    
      #mime_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the file.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVisionV1p1beta1InputConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudVisionV1p1beta1InputConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p1beta1InputConfig
Returns a new instance of GoogleCloudVisionV1p1beta1InputConfig.
      1632 1633 1634  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 1632 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ String
File content, represented as a stream of bytes. Note: As with all bytes
fields, protobuffers use a pure binary representation, whereas JSON
representations use base64. Currently, this field only works for
BatchAnnotateFiles requests. It does not work for AsyncBatchAnnotateFiles
requests.
Corresponds to the JSON property content
NOTE: Values are automatically base64 encoded/decoded in the client library.
      1619 1620 1621  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 1619 def content @content end  | 
  
#gcs_source ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p1beta1GcsSource
The Google Cloud Storage location where the input will be read from.
Corresponds to the JSON property gcsSource
      1624 1625 1626  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 1624 def gcs_source @gcs_source end  | 
  
#mime_type ⇒ String
The type of the file. Currently only "application/pdf", "image/tiff" and "
image/gif" are supported. Wildcards are not supported.
Corresponds to the JSON property mimeType
      1630 1631 1632  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 1630 def mime_type @mime_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1637 1638 1639 1640 1641  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 1637 def update!(**args) @content = args[:content] if args.key?(:content) @gcs_source = args[:gcs_source] if args.key?(:gcs_source) @mime_type = args[:mime_type] if args.key?(:mime_type) end  |