Class: Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1beta1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
 
 
- 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 
Overview
Npm package to upload to Artifact Registry upon successful completion of all build steps.
Instance Attribute Summary collapse
- 
  
    
      #package_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Path to the package.json.
 - 
  
    
      #repository  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$ PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage
Returns a new instance of ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage.
      1407 1408 1409  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1407 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#package_path ⇒ String
Path to the package.json. e.g. workspace/path/to/package
Corresponds to the JSON property packagePath
      1398 1399 1400  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1398 def package_path @package_path end  | 
  
#repository ⇒ String
Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$
PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be
zipped and uploaded to Artifact Registry with this location as a prefix.
Corresponds to the JSON property repository
      1405 1406 1407  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1405 def repository @repository end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1412 1413 1414 1415  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1412 def update!(**args) @package_path = args[:package_path] if args.key?(:package_path) @repository = args[:repository] if args.key?(:repository) end  |