Class: Google::Apis::ContaineranalysisV1alpha1::ExternalRef
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::ExternalRef
 
 
- 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
An External Reference allows a Package to reference an external source of additional information, metadata, enumerations, asset identifiers, or downloadable content believed to be relevant to the Package
Instance Attribute Summary collapse
- 
  
    
      #category  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An External Reference allows a Package to reference an external source of additional information, metadata, enumerations, asset identifiers, or downloadable content believed to be relevant to the Package Corresponds to the JSON property
category. - 
  
    
      #comment  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Human-readable information about the purpose and target of the reference Corresponds to the JSON property
comment. - 
  
    
      #locator  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique string with no spaces necessary to access the package-specific information, metadata, or content within the target location Corresponds to the JSON property
locator. - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Type of category (e.g. 'npm' for the PACKAGE_MANAGER category) Corresponds to the JSON property
type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExternalRef 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ExternalRef.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ExternalRef
Returns a new instance of ExternalRef.
      3726 3727 3728  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3726 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#category ⇒ String
An External Reference allows a Package to reference an external source of
additional information, metadata, enumerations, asset identifiers, or
downloadable content believed to be relevant to the Package
Corresponds to the JSON property category
      3708 3709 3710  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3708 def category @category end  | 
  
#comment ⇒ String
Human-readable information about the purpose and target of the reference
Corresponds to the JSON property comment
      3713 3714 3715  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3713 def comment @comment end  | 
  
#locator ⇒ String
The unique string with no spaces necessary to access the package-specific
information, metadata, or content within the target location
Corresponds to the JSON property locator
      3719 3720 3721  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3719 def locator @locator end  | 
  
#type ⇒ String
Type of category (e.g. 'npm' for the PACKAGE_MANAGER category)
Corresponds to the JSON property type
      3724 3725 3726  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3724 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3731 3732 3733 3734 3735 3736  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3731 def update!(**args) @category = args[:category] if args.key?(:category) @comment = args[:comment] if args.key?(:comment) @locator = args[:locator] if args.key?(:locator) @type = args[:type] if args.key?(:type) end  |