AptRepositoryArgs

data class AptRepositoryArgs(val archiveType: Output<AptRepositoryArchiveType>? = null, val components: Output<List<String>>, val distribution: Output<String>, val gpgKey: Output<String>? = null, val uri: Output<String>) : ConvertibleToJava<AptRepositoryArgs>

Represents a single Apt package repository. This repository is added to a repo file that is stored at /etc/apt/sources.list.d/google_osconfig.list.

Constructors

Link copied to clipboard
fun AptRepositoryArgs(archiveType: Output<AptRepositoryArchiveType>? = null, components: Output<List<String>>, distribution: Output<String>, gpgKey: Output<String>? = null, uri: Output<String>)

Functions

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

Properties

Link copied to clipboard

Type of archive files in this repository. The default behavior is DEB.

Link copied to clipboard
val components: Output<List<String>>

List of components for this repository. Must contain at least one item.

Link copied to clipboard
val distribution: Output<String>

Distribution of this repository.

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

URI of the key file for this repository. The agent maintains a keyring at /etc/apt/trusted.gpg.d/osconfig_agent_managed.gpg containing all the keys in any applied guest policy.

Link copied to clipboard
val uri: Output<String>

URI for this repository.