![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.devices.kotlin.inputs.IotHubPropertiesDeviceStreamsArgs.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.devices.kotlin.inputs
import com.pulumi.azurenative.devices.inputs.IotHubPropertiesDeviceStreamsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The device streams properties of iothub.
* @property streamingEndpoints List of Device Streams Endpoints.
*/
public data class IotHubPropertiesDeviceStreamsArgs(
public val streamingEndpoints: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.devices.inputs.IotHubPropertiesDeviceStreamsArgs =
com.pulumi.azurenative.devices.inputs.IotHubPropertiesDeviceStreamsArgs.builder()
.streamingEndpoints(
streamingEndpoints?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
).build()
}
/**
* Builder for [IotHubPropertiesDeviceStreamsArgs].
*/
@PulumiTagMarker
public class IotHubPropertiesDeviceStreamsArgsBuilder internal constructor() {
private var streamingEndpoints: Output>? = null
/**
* @param value List of Device Streams Endpoints.
*/
@JvmName("krfvxxfffbvhvody")
public suspend fun streamingEndpoints(`value`: Output>) {
this.streamingEndpoints = value
}
@JvmName("ursxjyxwnpwnsgso")
public suspend fun streamingEndpoints(vararg values: Output) {
this.streamingEndpoints = Output.all(values.asList())
}
/**
* @param values List of Device Streams Endpoints.
*/
@JvmName("vokiifvasawhkuam")
public suspend fun streamingEndpoints(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy