WasmPluginVersion(mapping=None, *, ignore_unknown_fields=False, **kwargs)A single immutable version of a WasmPlugin resource. Defines the
Wasm module used and optionally its runtime config.
This message has oneof_ fields (mutually exclusive fields).
For each oneof, at most one member field can be set at the same time.
Setting any member of the oneof automatically clears all other
members.
.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields
Attributes |
|
|---|---|
| Name | Description |
plugin_config_data |
bytes
Configuration for the plugin. The configuration is provided to the plugin at runtime through the ON_CONFIGURE
callback. When a new WasmPluginVersion resource is
created, the digest of the contents is saved in the
plugin_config_digest field.
This field is a member of oneof_ plugin_config_source.
|
plugin_config_uri |
str
URI of the plugin configuration stored in the Artifact Registry. The configuration is provided to the plugin at runtime through the ON_CONFIGURE callback. The container
image must contain only a single file with the name
plugin.config. When a new WasmPluginVersion resource
is created, the digest of the container image is saved in
the plugin_config_digest field.
This field is a member of oneof_ plugin_config_source.
|
name |
str
Identifier. Name of the WasmPluginVersion resource in
the following format:
projects/{project}/locations/{location}/wasmPlugins/{wasm_plugin}/ versions/{wasm_plugin_version}.
|
create_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp when the resource was created. |
update_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The timestamp when the resource was updated. |
description |
str
Optional. A human-readable description of the resource. |
labels |
MutableMapping[str, str]
Optional. Set of labels associated with the WasmPluginVersion resource.
|
image_uri |
str
Optional. URI of the container image containing the plugin, stored in the Artifact Registry. When a new WasmPluginVersion resource is created, the digest of the
container image is saved in the image_digest field. When
downloading an image, the digest value is used instead of an
image tag.
|
image_digest |
str
Output only. The resolved digest for the image specified in the image field. The digest is resolved during the
creation of WasmPluginVersion resource. This field holds
the digest value, regardless of whether a tag or digest was
originally specified in the image field.
|
plugin_config_digest |
str
Output only. This field holds the digest (usually checksum) value for the plugin configuration. The value is calculated based on the contents of plugin_config_data or the
container image defined by the plugin_config_uri field.
|
Classes
LabelsEntry
LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)The abstract base class for a message.
| Parameters | |
|---|---|
| Name | Description |
kwargs |
dict
Keys and values corresponding to the fields of the message. |
mapping |
Union[dict,
A dictionary or message to be used to determine the values for this message. |
ignore_unknown_fields |
Optional(bool)
If True, do not raise errors for unknown fields. Only applied if |