![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.systemcenter.kotlin.outputs.GetVirtualMachineManagerInventoryItemsResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.systemcenter.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getVirtualMachineManagerInventoryItems.
* @property id The provider-assigned unique ID for this managed resource.
* @property inventoryItems One or more `inventory_items` blocks as defined below.
* @property inventoryType
* @property systemCenterVirtualMachineManagerServerId
*/
public data class GetVirtualMachineManagerInventoryItemsResult(
public val id: String,
public val inventoryItems: List,
public val inventoryType: String,
public val systemCenterVirtualMachineManagerServerId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.systemcenter.outputs.GetVirtualMachineManagerInventoryItemsResult): GetVirtualMachineManagerInventoryItemsResult = GetVirtualMachineManagerInventoryItemsResult(
id = javaType.id(),
inventoryItems = javaType.inventoryItems().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.systemcenter.kotlin.outputs.GetVirtualMachineManagerInventoryItemsInventoryItem.Companion.toKotlin(args0)
})
}),
inventoryType = javaType.inventoryType(),
systemCenterVirtualMachineManagerServerId = javaType.systemCenterVirtualMachineManagerServerId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy