Class: Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::ComplianceVersion
 
 
- 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
Describes the CIS benchmark version that is applicable to a given OS and os version.
Instance Attribute Summary collapse
- 
  
    
      #benchmark_document  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the document that defines this benchmark, e.g.
 - 
  
    
      #cpe_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CPE URI (https://cpe.mitre.org/specification/) this benchmark is applicable to.
 - 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the benchmark.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ComplianceVersion 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ComplianceVersion.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ComplianceVersion
Returns a new instance of ComplianceVersion.
      1186 1187 1188  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 1186 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#benchmark_document ⇒ String
The name of the document that defines this benchmark, e.g. "CIS Container-
Optimized OS".
Corresponds to the JSON property benchmarkDocument
      1172 1173 1174  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 1172 def benchmark_document @benchmark_document end  | 
  
#cpe_uri ⇒ String
The CPE URI (https://cpe.mitre.org/specification/) this benchmark is
applicable to.
Corresponds to the JSON property cpeUri
      1178 1179 1180  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 1178 def cpe_uri @cpe_uri end  | 
  
#version ⇒ String
The version of the benchmark. This is set to the version of the OS-specific
CIS document the benchmark is defined in.
Corresponds to the JSON property version
      1184 1185 1186  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 1184 def version @version end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1191 1192 1193 1194 1195  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 1191 def update!(**args) @benchmark_document = args[:benchmark_document] if args.key?(:benchmark_document) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @version = args[:version] if args.key?(:version) end  |