Class: Google::Apis::ArtifactregistryV1::Version

Inherits:
Object
  • Object
show all
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

The body of a version resource. A version resource represents a collection of components, such as files and other data. This may correspond to a version in many package management schemes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Version

Returns a new instance of Version.



1753
1754
1755
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1753

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

Instance Attribute Details

#create_timeString

The time when the version was created. Corresponds to the JSON property createTime

Returns:

  • (String)


1721
1722
1723
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1721

def create_time
  @create_time
end

#descriptionString

Optional. Description of the version, as specified in its metadata. Corresponds to the JSON property description

Returns:

  • (String)


1726
1727
1728
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1726

def description
  @description
end

#metadataHash<String,Object>

Output only. Repository-specific Metadata stored against this version. The fields returned are defined by the underlying repository-specific resource. Currently, the only resource in use is DockerImage Corresponds to the JSON property metadata

Returns:

  • (Hash<String,Object>)


1733
1734
1735
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1733

def 
  @metadata
end

#nameString

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

Returns:

  • (String)


1740
1741
1742
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1740

def name
  @name
end

Output only. A list of related tags. Will contain up to 100 tags that reference this version. Corresponds to the JSON property relatedTags



1746
1747
1748
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1746

def related_tags
  @related_tags
end

#update_timeString

The time when the version was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


1751
1752
1753
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1751

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1758
1759
1760
1761
1762
1763
1764
1765
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1758

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @metadata = args[:metadata] if args.key?(:metadata)
  @name = args[:name] if args.key?(:name)
  @related_tags = args[:related_tags] if args.key?(:related_tags)
  @update_time = args[:update_time] if args.key?(:update_time)
end