![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.connectedvmwarevsphere.kotlin.outputs.GetVirtualNetworkResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.connectedvmwarevsphere.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* Define the virtualNetwork.
* @property customResourceName Gets the name of the corresponding resource in Kubernetes.
* @property extendedLocation Gets or sets the extended location.
* @property id Gets or sets the Id.
* @property inventoryItemId Gets or sets the inventory Item ID for the virtual network.
* @property kind Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
* @property location Gets or sets the location.
* @property moName Gets or sets the vCenter Managed Object name for the virtual network.
* @property moRefId Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual network.
* @property name Gets or sets the name.
* @property provisioningState Gets or sets the provisioning state.
* @property statuses The resource status information.
* @property systemData The system data.
* @property tags Gets or sets the Resource tags.
* @property type Gets or sets the type of the resource.
* @property uuid Gets or sets a unique identifier for this resource.
* @property vCenterId Gets or sets the ARM Id of the vCenter resource in which this template resides.
*/
public data class GetVirtualNetworkResult(
public val customResourceName: String,
public val extendedLocation: ExtendedLocationResponse? = null,
public val id: String,
public val inventoryItemId: String? = null,
public val kind: String? = null,
public val location: String,
public val moName: String,
public val moRefId: String? = null,
public val name: String,
public val provisioningState: String,
public val statuses: List,
public val systemData: SystemDataResponse,
public val tags: Map? = null,
public val type: String,
public val uuid: String,
public val vCenterId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.connectedvmwarevsphere.outputs.GetVirtualNetworkResult): GetVirtualNetworkResult = GetVirtualNetworkResult(
customResourceName = javaType.customResourceName(),
extendedLocation = javaType.extendedLocation().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.connectedvmwarevsphere.kotlin.outputs.ExtendedLocationResponse.Companion.toKotlin(args0)
})
}).orElse(null),
id = javaType.id(),
inventoryItemId = javaType.inventoryItemId().map({ args0 -> args0 }).orElse(null),
kind = javaType.kind().map({ args0 -> args0 }).orElse(null),
location = javaType.location(),
moName = javaType.moName(),
moRefId = javaType.moRefId().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
provisioningState = javaType.provisioningState(),
statuses = javaType.statuses().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.connectedvmwarevsphere.kotlin.outputs.ResourceStatusResponse.Companion.toKotlin(args0)
})
}),
systemData = javaType.systemData().let({ args0 ->
com.pulumi.azurenative.connectedvmwarevsphere.kotlin.outputs.SystemDataResponse.Companion.toKotlin(args0)
}),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
type = javaType.type(),
uuid = javaType.uuid(),
vCenterId = javaType.vCenterId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy