com.pulumi.azure.hdinsight.kotlin.outputs.KafkaClusterRestProxy.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.hdinsight.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property securityGroupId The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
* @property securityGroupName The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
* > **Note:** The `security_group_name` property will be Required in version 3.0 of the AzureRM Provider.
*/
public data class KafkaClusterRestProxy(
public val securityGroupId: String,
public val securityGroupName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.hdinsight.outputs.KafkaClusterRestProxy): KafkaClusterRestProxy = KafkaClusterRestProxy(
securityGroupId = javaType.securityGroupId(),
securityGroupName = javaType.securityGroupName(),
)
}
}