
com.pulumi.azurenative.containerregistry.kotlin.outputs.PipelineRunSourcePropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.containerregistry.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name of the source.
* @property type The type of the source.
*/
public data class PipelineRunSourcePropertiesResponse(
public val name: String? = null,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.containerregistry.outputs.PipelineRunSourcePropertiesResponse): PipelineRunSourcePropertiesResponse = PipelineRunSourcePropertiesResponse(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy