
com.pulumi.googlenative.vmmigration.v1alpha1.kotlin.outputs.VmUtilizationInfoResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.vmmigration.v1alpha1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Utilization information of a single VM.
* @property utilization Utilization metrics for this VM.
* @property vmId The VM's ID in the source.
* @property vmwareVmDetails The description of the VM in a Source of type Vmware.
*/
public data class VmUtilizationInfoResponse(
public val utilization: VmUtilizationMetricsResponse,
public val vmId: String,
public val vmwareVmDetails: VmwareVmDetailsResponse,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.vmmigration.v1alpha1.outputs.VmUtilizationInfoResponse): VmUtilizationInfoResponse = VmUtilizationInfoResponse(
utilization = javaType.utilization().let({ args0 ->
com.pulumi.googlenative.vmmigration.v1alpha1.kotlin.outputs.VmUtilizationMetricsResponse.Companion.toKotlin(args0)
}),
vmId = javaType.vmId(),
vmwareVmDetails = javaType.vmwareVmDetails().let({ args0 ->
com.pulumi.googlenative.vmmigration.v1alpha1.kotlin.outputs.VmwareVmDetailsResponse.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy