ResourceArgs

data class ResourceArgs(val contentHash: Output<HashArgs>? = null, val name: Output<String>? = null, val uri: Output<String>? = null) : ConvertibleToJava<ResourceArgs>

Resource is an entity that can have metadata. E.g., a Docker image.

Constructors

Link copied to clipboard
fun ResourceArgs(contentHash: Output<HashArgs>? = null, name: Output<String>? = null, uri: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val contentHash: Output<HashArgs>? = null

The hash of the resource content. E.g., the Docker digest.

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

The name of the resource. E.g., the name of a Docker image - "Debian".

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

The unique URI of the resource. E.g., "https://gcr.io/project/image@sha256:foo" for a Docker image.