
com.pulumi.azurenative.baremetalinfrastructure.kotlin.outputs.StorageProfileResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.baremetalinfrastructure.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Specifies the storage settings for the Azure Bare Metal instance disks.
* @property nfsIpAddress IP Address to connect to storage.
* @property osDisks Specifies information about the operating system disk used by bare metal instance.
*/
public data class StorageProfileResponse(
public val nfsIpAddress: String? = null,
public val osDisks: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.baremetalinfrastructure.outputs.StorageProfileResponse): StorageProfileResponse = StorageProfileResponse(
nfsIpAddress = javaType.nfsIpAddress().map({ args0 -> args0 }).orElse(null),
osDisks = javaType.osDisks().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.baremetalinfrastructure.kotlin.outputs.DiskResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy