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

com.pulumi.azurenative.streamanalytics.kotlin.outputs.ClusterJobResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.streamanalytics.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * A streaming job.
 * @property id Resource ID of the streaming job.
 * @property jobState The current execution state of the streaming job.
 * @property streamingUnits The number of streaming units that are used by the streaming job.
 */
public data class ClusterJobResponse(
    public val id: String,
    public val jobState: String,
    public val streamingUnits: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.streamanalytics.outputs.ClusterJobResponse): ClusterJobResponse = ClusterJobResponse(
            id = javaType.id(),
            jobState = javaType.jobState(),
            streamingUnits = javaType.streamingUnits(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy