com.pulumi.gcp.osconfig.kotlin.outputs.GuestPoliciesPackageRepositoryYum.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.osconfig.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property baseUrl The location of the repository directory.
* @property displayName The display name of the repository.
* @property gpgKeys URIs of GPG keys.
* @property id A one word, unique name for this repository. This is the repo id in the Yum config file and also the displayName
* if displayName is omitted. This id is also used as the unique identifier when checking for guest policy conflicts.
*/
public data class GuestPoliciesPackageRepositoryYum(
public val baseUrl: String,
public val displayName: String? = null,
public val gpgKeys: List? = null,
public val id: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.osconfig.outputs.GuestPoliciesPackageRepositoryYum): GuestPoliciesPackageRepositoryYum = GuestPoliciesPackageRepositoryYum(
baseUrl = javaType.baseUrl(),
displayName = javaType.displayName().map({ args0 -> args0 }).orElse(null),
gpgKeys = javaType.gpgKeys().map({ args0 -> args0 }),
id = javaType.id(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy