Class: Google::Apis::ContaineranalysisV1alpha1::ScanConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::ScanConfig
 
 
- 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 
Overview
Indicates various scans and whether they are turned on or off.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #enabled  ⇒ Boolean 
    
    
      (also: #enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the Scan is enabled.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ScanConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ScanConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ScanConfig
Returns a new instance of ScanConfig.
      6548 6549 6550  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6548 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#create_time ⇒ String
Output only. The time this scan config was created.
Corresponds to the JSON property createTime
      6524 6525 6526  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6524 def create_time @create_time end  | 
  
#description ⇒ String
Output only. A human-readable description of what the ScanConfig does.
Corresponds to the JSON property description
      6529 6530 6531  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6529 def description @description end  | 
  
#enabled ⇒ Boolean Also known as: enabled?
Indicates whether the Scan is enabled.
Corresponds to the JSON property enabled
      6534 6535 6536  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6534 def enabled @enabled end  | 
  
#name ⇒ String
Output only. The name of the ScanConfig in the form “projects/project_id/
scanConfigs/scan_config_id".
Corresponds to the JSON property name
      6541 6542 6543  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6541 def name @name end  | 
  
#update_time ⇒ String
Output only. The time this scan config was last updated.
Corresponds to the JSON property updateTime
      6546 6547 6548  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6546 def update_time @update_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6553 6554 6555 6556 6557 6558 6559  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6553 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @enabled = args[:enabled] if args.key?(:enabled) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end  |