![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.datapipeline.kotlin.outputs.PipelineObject.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datapipeline.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property fields Key-value pairs that define the properties of the object.
* @property id The ID of the object.
* @property name The name of the object.
*/
public data class PipelineObject(
public val fields: List,
public val id: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datapipeline.outputs.PipelineObject): PipelineObject = PipelineObject(
fields = javaType.fields().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.datapipeline.kotlin.outputs.PipelineField.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy