com.pulumi.gcp.gkebackup.kotlin.outputs.BackupPlanBackupConfigSelectedApplicationsNamespacedName.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.gkebackup.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name of a Kubernetes Resource.
* @property namespace The namespace of a Kubernetes Resource.
*/
public data class BackupPlanBackupConfigSelectedApplicationsNamespacedName(
public val name: String,
public val namespace: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkebackup.outputs.BackupPlanBackupConfigSelectedApplicationsNamespacedName): BackupPlanBackupConfigSelectedApplicationsNamespacedName =
BackupPlanBackupConfigSelectedApplicationsNamespacedName(
name = javaType.name(),
namespace = javaType.namespace(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy