YumRepositoryArgs

data class YumRepositoryArgs(val baseUrl: Output<String>, val displayName: Output<String>? = null, val gpgKeys: Output<List<String>>? = null, val id: Output<String>) : ConvertibleToJava<YumRepositoryArgs>

Represents a single Yum package repository. This repository is added to a repo file that is stored at /etc/yum.repos.d/google_osconfig.repo.

Constructors

Link copied to clipboard
fun YumRepositoryArgs(baseUrl: Output<String>, displayName: Output<String>? = null, gpgKeys: Output<List<String>>? = null, id: Output<String>)

Functions

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

Properties

Link copied to clipboard
val baseUrl: Output<String>

The location of the repository directory.

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

The display name of the repository.

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

URIs of GPG keys.

Link copied to clipboard
val id: Output<String>

A one word, unique name for this repository. This is the repo id in the Yum config file and also the display_name if display_name is omitted. This id is also used as the unique identifier when checking for guest policy conflicts.