Class: Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository

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

Publicly available Apt repositories constructed from a common repository base and a custom repository path.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository

Returns a new instance of GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository.



882
883
884
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 882

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

Instance Attribute Details

#repository_baseString

A common public repository base for Apt. Corresponds to the JSON property repositoryBase

Returns:

  • (String)


875
876
877
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 875

def repository_base
  @repository_base
end

#repository_pathString

A custom field to define a path to a specific repository from the base. Corresponds to the JSON property repositoryPath

Returns:

  • (String)


880
881
882
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 880

def repository_path
  @repository_path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



887
888
889
890
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 887

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