Class: Google::Apis::ServicemanagementV1::SourceInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicemanagementV1::SourceInfo
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicemanagement_v1/classes.rb,
lib/google/apis/servicemanagement_v1/representations.rb,
lib/google/apis/servicemanagement_v1/representations.rb 
Overview
Source information used to create a Service Config
Instance Attribute Summary collapse
- 
  
    
      #source_files  ⇒ Array<Hash<String,Object>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
All files used during config generation.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SourceInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SourceInfo.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SourceInfo
Returns a new instance of SourceInfo.
      4245 4246 4247  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4245 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#source_files ⇒ Array<Hash<String,Object>>
All files used during config generation.
Corresponds to the JSON property sourceFiles
      4243 4244 4245  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4243 def source_files @source_files end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4250 4251 4252  | 
    
      # File 'lib/google/apis/servicemanagement_v1/classes.rb', line 4250 def update!(**args) @source_files = args[:source_files] if args.key?(:source_files) end  |