com.pulumi.azurenative.databoxedge.kotlin.outputs.MetricCounterSetResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.databoxedge.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* The metric counter set
* @property counters The counters that should be collected in this set.
*/
public data class MetricCounterSetResponse(
public val counters: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.databoxedge.outputs.MetricCounterSetResponse): MetricCounterSetResponse = MetricCounterSetResponse(
counters = javaType.counters().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.databoxedge.kotlin.outputs.MetricCounterResponse.Companion.toKotlin(args0)
})
}),
)
}
}