
com.pulumi.azurenative.recoveryservices.kotlin.outputs.GetReplicationvCenterResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* vCenter definition.
* @property id Resource Id
* @property location Resource Location
* @property name Resource Name
* @property properties VCenter related data.
* @property type Resource Type
*/
public data class GetReplicationvCenterResult(
public val id: String,
public val location: String? = null,
public val name: String,
public val properties: VCenterPropertiesResponse,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.recoveryservices.outputs.GetReplicationvCenterResult): GetReplicationvCenterResult = GetReplicationvCenterResult(
id = javaType.id(),
location = javaType.location().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
properties = javaType.properties().let({ args0 ->
com.pulumi.azurenative.recoveryservices.kotlin.outputs.VCenterPropertiesResponse.Companion.toKotlin(args0)
}),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy