Class: Google::Apis::ContaineranalysisV1beta1::WindowsDetail
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1beta1::WindowsDetail
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/containeranalysis_v1beta1/classes.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #cpe_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the vulnerability.
 - 
  
    
      #fixing_kbs  ⇒ Array<Google::Apis::ContaineranalysisV1beta1::KnowledgeBase> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WindowsDetail 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of WindowsDetail.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ WindowsDetail
Returns a new instance of WindowsDetail.
      6975 6976 6977  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6975 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cpe_uri ⇒ String
Required. The CPE URI in cpe format in
which the vulnerability manifests. Examples include distro or storage location
for vulnerable jar.
Corresponds to the JSON property cpeUri
      6955 6956 6957  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6955 def cpe_uri @cpe_uri end  | 
  
#description ⇒ String
The description of the vulnerability.
Corresponds to the JSON property description
      6960 6961 6962  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6960 def description @description end  | 
  
#fixing_kbs ⇒ Array<Google::Apis::ContaineranalysisV1beta1::KnowledgeBase>
Required. The names of the KBs which have hotfixes to mitigate this
vulnerability. Note that there may be multiple hotfixes (and thus multiple KBs)
that mitigate a given vulnerability. Currently any listed kb's presence is
considered a fix.
Corresponds to the JSON property fixingKbs
      6968 6969 6970  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6968 def fixing_kbs @fixing_kbs end  | 
  
#name ⇒ String
Required. The name of the vulnerability.
Corresponds to the JSON property name
      6973 6974 6975  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6973 def name @name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6980 6981 6982 6983 6984 6985  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6980 def update!(**args) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @description = args[:description] if args.key?(:description) @fixing_kbs = args[:fixing_kbs] if args.key?(:fixing_kbs) @name = args[:name] if args.key?(:name) end  |