Class: Google::Apis::VisionV1p2beta1::InputConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1p2beta1::InputConfig
 
 
- 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
The desired input location and metadata.
Instance Attribute Summary collapse
- 
  
    
      #gcs_source  ⇒ Google::Apis::VisionV1p2beta1::GcsSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
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)  ⇒ InputConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InputConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InputConfig
Returns a new instance of InputConfig
      6267 6268 6269  | 
    
      # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 6267 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#gcs_source ⇒ Google::Apis::VisionV1p2beta1::GcsSource
The Google Cloud Storage location where the input will be read from.
Corresponds to the JSON property gcsSource
      6259 6260 6261  | 
    
      # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 6259 def gcs_source @gcs_source end  | 
  
#mime_type ⇒ String
The type of the file. Currently only "application/pdf" and "image/tiff"
are supported. Wildcards are not supported.
Corresponds to the JSON property mimeType
      6265 6266 6267  | 
    
      # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 6265 def mime_type @mime_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6272 6273 6274 6275  | 
    
      # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 6272 def update!(**args) @gcs_source = args[:gcs_source] if args.key?(:gcs_source) @mime_type = args[:mime_type] if args.key?(:mime_type) end  |