RemoteRepositoryConfigArgs

data class RemoteRepositoryConfigArgs(val description: Output<String>? = null, val dockerRepository: Output<DockerRepositoryArgs>? = null, val mavenRepository: Output<MavenRepositoryArgs>? = null, val npmRepository: Output<NpmRepositoryArgs>? = null, val pythonRepository: Output<PythonRepositoryArgs>? = null) : ConvertibleToJava<RemoteRepositoryConfigArgs>

Remote repository configuration.

Constructors

Link copied to clipboard
fun RemoteRepositoryConfigArgs(description: Output<String>? = null, dockerRepository: Output<DockerRepositoryArgs>? = null, mavenRepository: Output<MavenRepositoryArgs>? = null, npmRepository: Output<NpmRepositoryArgs>? = null, pythonRepository: Output<PythonRepositoryArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): RemoteRepositoryConfigArgs

Properties

Link copied to clipboard
val description: Output<String>? = null

The description of the remote source.

Link copied to clipboard

Specific settings for a Docker remote repository.

Link copied to clipboard

Specific settings for a Maven remote repository.

Link copied to clipboard
val npmRepository: Output<NpmRepositoryArgs>? = null

Specific settings for an Npm remote repository.

Link copied to clipboard

Specific settings for a Python remote repository.