
com.pulumi.azure.compute.kotlin.outputs.ScaleSetPacketCaptureMachineScope.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property excludeInstanceIds A list of Virtual Machine Scale Set instance IDs which should be excluded from running Packet Capture, e.g. `["0", "2"]`. Changing this forces a new resource to be created.
* @property includeInstanceIds A list of Virtual Machine Scale Set instance IDs which should be included for Packet Capture, e.g. `["1", "3"]`. Changing this forces a new resource to be created.
*/
public data class ScaleSetPacketCaptureMachineScope(
public val excludeInstanceIds: List? = null,
public val includeInstanceIds: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.ScaleSetPacketCaptureMachineScope): ScaleSetPacketCaptureMachineScope = ScaleSetPacketCaptureMachineScope(
excludeInstanceIds = javaType.excludeInstanceIds().map({ args0 -> args0 }),
includeInstanceIds = javaType.includeInstanceIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy