All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.azurefleet.kotlin.outputs.VirtualMachineScaleSetNetworkConfigurationResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.azurefleet.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Describes a virtual machine scale set network profile's network configurations.
 * @property name The network configuration name.
 * @property properties Describes a virtual machine scale set network profile's IP configuration.
 */
public data class VirtualMachineScaleSetNetworkConfigurationResponse(
    public val name: String,
    public val properties: VirtualMachineScaleSetNetworkConfigurationPropertiesResponse? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.outputs.VirtualMachineScaleSetNetworkConfigurationResponse): VirtualMachineScaleSetNetworkConfigurationResponse =
            VirtualMachineScaleSetNetworkConfigurationResponse(
                name = javaType.name(),
                properties = javaType.properties().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.azurenative.azurefleet.kotlin.outputs.VirtualMachineScaleSetNetworkConfigurationPropertiesResponse.Companion.toKotlin(args0)
                    })
                }).orElse(null),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy