Class: Google::Apis::ArtifactregistryV1::Package
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ArtifactregistryV1::Package
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/artifactregistry_v1/classes.rb,
lib/google/apis/artifactregistry_v1/representations.rb,
lib/google/apis/artifactregistry_v1/representations.rb 
Overview
Packages are named collections of versions.
Instance Attribute Summary collapse
- 
  
    
      #annotations  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time when the package was created.
 - 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The display name of the package.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the package, for example:
projects/p1/locations/us-central1/ repositories/repo1/packages/pkg1. - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time when the package was last updated.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Package 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Package.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Package
Returns a new instance of Package.
      2131 2132 2133  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2131 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#annotations ⇒ Hash<String,String>
Optional. Client specified annotations.
Corresponds to the JSON property annotations
      2106 2107 2108  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2106 def annotations @annotations end  | 
  
#create_time ⇒ String
The time when the package was created.
Corresponds to the JSON property createTime
      2111 2112 2113  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2111 def create_time @create_time end  | 
  
#display_name ⇒ String
The display name of the package.
Corresponds to the JSON property displayName
      2116 2117 2118  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2116 def display_name @display_name end  | 
  
#name ⇒ String
The name of the package, for example: projects/p1/locations/us-central1/
repositories/repo1/packages/pkg1. If the package ID part contains slashes,
the slashes are escaped.
Corresponds to the JSON property name
      2123 2124 2125  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2123 def name @name end  | 
  
#update_time ⇒ String
The time when the package was last updated. This includes publishing a new
version of the package.
Corresponds to the JSON property updateTime
      2129 2130 2131  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2129 def update_time @update_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2136 2137 2138 2139 2140 2141 2142  | 
    
      # File 'lib/google/apis/artifactregistry_v1/classes.rb', line 2136 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end  |