com.pulumi.kubernetes.flowcontrol.v1beta2.kotlin.outputs.GroupSubjectPatch.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.flowcontrol.v1beta2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* GroupSubject holds detailed information for group-kind subject.
* @property name name is the user group that matches, or "*" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.
*/
public data class GroupSubjectPatch(
public val name: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.kubernetes.flowcontrol.v1beta2.outputs.GroupSubjectPatch): GroupSubjectPatch = GroupSubjectPatch(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy