
com.pulumi.awsnative.deadline.kotlin.outputs.GetStorageProfileResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.deadline.kotlin.outputs
import com.pulumi.awsnative.deadline.kotlin.enums.StorageProfileOperatingSystemFamily
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property displayName The display name of the storage profile summary to update.
* @property fileSystemLocations Operating system specific file system path to the storage location.
* @property osFamily The operating system (OS) family.
* @property storageProfileId The storage profile ID.
*/
public data class GetStorageProfileResult(
public val displayName: String? = null,
public val fileSystemLocations: List? = null,
public val osFamily: StorageProfileOperatingSystemFamily? = null,
public val storageProfileId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.deadline.outputs.GetStorageProfileResult): GetStorageProfileResult = GetStorageProfileResult(
displayName = javaType.displayName().map({ args0 -> args0 }).orElse(null),
fileSystemLocations = javaType.fileSystemLocations().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.deadline.kotlin.outputs.StorageProfileFileSystemLocation.Companion.toKotlin(args0)
})
}),
osFamily = javaType.osFamily().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.deadline.kotlin.enums.StorageProfileOperatingSystemFamily.Companion.toKotlin(args0)
})
}).orElse(null),
storageProfileId = javaType.storageProfileId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy