com.pulumi.azure.search.kotlin.outputs.GetServiceQueryKey.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.search.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property key The value of this Query Key.
* @property name The Name of the Search Service.
*/
public data class GetServiceQueryKey(
public val key: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.search.outputs.GetServiceQueryKey): GetServiceQueryKey = GetServiceQueryKey(
key = javaType.key(),
name = javaType.name(),
)
}
}