
com.pulumi.azurenative.iotoperationsdataprocessor.kotlin.outputs.PipelineInputResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.iotoperationsdataprocessor.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Stage configuration for Pipeline input stage.
* @property description Description for stage.
* @property next Next stage in the pipeline.
* @property type ARM resource type.
*/
public data class PipelineInputResponse(
public val description: String? = null,
public val next: List,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.iotoperationsdataprocessor.outputs.PipelineInputResponse): PipelineInputResponse = PipelineInputResponse(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
next = javaType.next().map({ args0 -> args0 }),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy