Class: Google::Apis::ArtifactregistryV1::GoogetArtifact

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

A detailed representation of a GooGet artifact.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogetArtifact

Returns a new instance of GoogetArtifact.



963
964
965
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 963

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

Instance Attribute Details

#architectureString

Output only. Operating system architecture of the artifact. Corresponds to the JSON property architecture

Returns:

  • (String)


951
952
953
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 951

def architecture
  @architecture
end

#nameString

Output only. The Artifact Registry resource name of the artifact. Corresponds to the JSON property name

Returns:

  • (String)


956
957
958
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 956

def name
  @name
end

#package_nameString

Output only. The GooGet package name of the artifact. Corresponds to the JSON property packageName

Returns:

  • (String)


961
962
963
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 961

def package_name
  @package_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



968
969
970
971
972
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 968

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