
com.pulumi.awsnative.datasync.kotlin.outputs.StorageSystemServerConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datasync.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* The server name and network port required to connect with the management interface of the on-premises storage system.
* @property serverHostname The domain name or IP address of the storage system's management interface.
* @property serverPort The network port needed to access the system's management interface
*/
public data class StorageSystemServerConfiguration(
public val serverHostname: String,
public val serverPort: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datasync.outputs.StorageSystemServerConfiguration): StorageSystemServerConfiguration = StorageSystemServerConfiguration(
serverHostname = javaType.serverHostname(),
serverPort = javaType.serverPort().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy