
com.pulumi.azurenative.iotoperations.kotlin.outputs.CertManagerIssuerRefResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.iotoperations.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Cert-Manager issuerRef properties
* @property apiGroup group of issuer.
* @property kind kind of issuer (Issuer or ClusterIssuer).
* @property name name of issuer.
*/
public data class CertManagerIssuerRefResponse(
public val apiGroup: String,
public val kind: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.iotoperations.outputs.CertManagerIssuerRefResponse): CertManagerIssuerRefResponse = CertManagerIssuerRefResponse(
apiGroup = javaType.apiGroup(),
kind = javaType.kind(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy