
com.pulumi.googlenative.containeranalysis.v1.kotlin.outputs.LayerResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.containeranalysis.v1.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Layer holds metadata specific to a layer of a Docker image.
* @property arguments The recovered arguments to the Dockerfile directive.
* @property directive The recovered Dockerfile directive used to construct this layer. See https://docs.docker.com/engine/reference/builder/ for more information.
*/
public data class LayerResponse(
public val arguments: String,
public val directive: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.containeranalysis.v1.outputs.LayerResponse): LayerResponse = LayerResponse(
arguments = javaType.arguments(),
directive = javaType.directive(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy