SoftwareRecipeArtifactRemoteArgs

data class SoftwareRecipeArtifactRemoteArgs(val checksum: Output<String>? = null, val uri: Output<String>? = null) : ConvertibleToJava<SoftwareRecipeArtifactRemoteArgs>

Specifies an artifact available via some URI.

Constructors

Link copied to clipboard
fun SoftwareRecipeArtifactRemoteArgs(checksum: Output<String>? = null, uri: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SoftwareRecipeArtifactRemoteArgs

Properties

Link copied to clipboard
val checksum: Output<String>? = null

Must be provided if allow_insecure is false. SHA256 checksum in hex format, to compare to the checksum of the artifact. If the checksum is not empty and it doesn't match the artifact then the recipe installation fails before running any of the steps.

Link copied to clipboard
val uri: Output<String>? = null

URI from which to fetch the object. It should contain both the protocol and path following the format {protocol}://{location}.