imageUri property
URI of the image containing the Wasm module, stored in Artifact Registry.
The URI can refer to one of the following repository formats: * Container
images: the image_uri
must point to a container that contains a single
file with the name plugin.wasm
. When a new WasmPluginVersion
resource
is created, the digest of the image is saved in the image_digest
field.
When pulling a container image from Artifact Registry, the digest value is
used instead of an image tag. * Generic artifacts: the image_uri
must be
in this format:
projects/{project}/locations/{location}/repositories/{repository}/ genericArtifacts/{package}:{version}
. The specified package and version
must contain a file with the name plugin.wasm
. When a new
WasmPluginVersion
resource is created, the checksum of the contents of
the file is saved in the image_digest
field.
Optional.
Implementation
core.String? imageUri;