Class: Google::Apis::ArtifactregistryV1beta2::Tag

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/artifactregistry_v1beta2/classes.rb,
lib/google/apis/artifactregistry_v1beta2/representations.rb,
lib/google/apis/artifactregistry_v1beta2/representations.rb

Overview

Tags point to a version and represent an alternative name that can be used to access the version.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Tag

Returns a new instance of Tag.



1115
1116
1117
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 1115

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

The name of the tag, for example: "projects/p1/locations/us-central1/ repositories/repo1/packages/pkg1/tags/tag1". If the package part contains slashes, the slashes are escaped. The tag part can only have characters in [a- zA-Z0-9-._~:@], anything else must be URL encoded. Corresponds to the JSON property name

Returns:

  • (String)


1106
1107
1108
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 1106

def name
  @name
end

#versionString

The name of the version the tag refers to, for example: "projects/p1/locations/ us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811" If the package or version ID parts contain slashes, the slashes are escaped. Corresponds to the JSON property version

Returns:

  • (String)


1113
1114
1115
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 1113

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1120
1121
1122
1123
# File 'lib/google/apis/artifactregistry_v1beta2/classes.rb', line 1120

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @version = args[:version] if args.key?(:version)
end