Class: Google::Apis::ContaineranalysisV1alpha1::BuildMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::BuildMetadata
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/containeranalysis_v1alpha1/classes.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #finished_on  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
finishedOn. - 
  
    
      #invocation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
invocationId. - 
  
    
      #started_on  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
startedOn. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ BuildMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of BuildMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ BuildMetadata
Returns a new instance of BuildMetadata.
      495 496 497  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 495 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#finished_on ⇒ String
Corresponds to the JSON property finishedOn
      483 484 485  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 483 def finished_on @finished_on end  | 
  
#invocation_id ⇒ String
Corresponds to the JSON property invocationId
      488 489 490  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 488 def invocation_id @invocation_id end  | 
  
#started_on ⇒ String
Corresponds to the JSON property startedOn
      493 494 495  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 493 def started_on @started_on end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      500 501 502 503 504  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 500 def update!(**args) @finished_on = args[:finished_on] if args.key?(:finished_on) @invocation_id = args[:invocation_id] if args.key?(:invocation_id) @started_on = args[:started_on] if args.key?(:started_on) end  |