Class Tag
Tags point to a version and represent an alternative name that can be used to access the version.
Implements
Inherited Members
Namespace: Google.Apis.ArtifactRegistry.v1beta1.Data
Assembly: Google.Apis.ArtifactRegistry.v1beta1.dll
Syntax
public class Tag : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
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.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Version
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.
Declaration
[JsonProperty("version")]
public virtual string Version { get; set; }
Property Value
Type | Description |
---|---|
string |