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

com.pulumi.azure.compute.kotlin.outputs.ScaleSetPacketCaptureMachineScope.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.21.0.0
Show newest version
@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