Class: Google::Apis::ArtifactregistryV1::RemoteRepositoryConfig

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

Remote repository configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RemoteRepositoryConfig

Returns a new instance of RemoteRepositoryConfig.



1666
1667
1668
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1666

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

Instance Attribute Details

#descriptionString

The description of the remote source. Corresponds to the JSON property description

Returns:

  • (String)


1644
1645
1646
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1644

def description
  @description
end

#docker_repositoryGoogle::Apis::ArtifactregistryV1::DockerRepository

Configuration for a Docker remote repository. Corresponds to the JSON property dockerRepository



1649
1650
1651
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1649

def docker_repository
  @docker_repository
end

#maven_repositoryGoogle::Apis::ArtifactregistryV1::MavenRepository

Configuration for a Maven remote repository. Corresponds to the JSON property mavenRepository



1654
1655
1656
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1654

def maven_repository
  @maven_repository
end

#npm_repositoryGoogle::Apis::ArtifactregistryV1::NpmRepository

Configuration for a Npm remote repository. Corresponds to the JSON property npmRepository



1659
1660
1661
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1659

def npm_repository
  @npm_repository
end

#python_repositoryGoogle::Apis::ArtifactregistryV1::PythonRepository

Configuration for a Python remote repository. Corresponds to the JSON property pythonRepository



1664
1665
1666
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1664

def python_repository
  @python_repository
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1671
1672
1673
1674
1675
1676
1677
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1671

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @docker_repository = args[:docker_repository] if args.key?(:docker_repository)
  @maven_repository = args[:maven_repository] if args.key?(:maven_repository)
  @npm_repository = args[:npm_repository] if args.key?(:npm_repository)
  @python_repository = args[:python_repository] if args.key?(:python_repository)
end