VersionDetails(mapping=None, *, ignore_unknown_fields=False, **kwargs)Details of a WasmPluginVersion resource to be inlined in the
WasmPlugin resource.
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 version 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.
|
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 Wasm module, stored in the Artifact Registry. The container image must contain only a single file with the name plugin.wasm. When a new WasmPluginVersion resource
is created, the URI gets resolved to an image digest and
saved in the image_digest field.
|
image_digest |
str
Output only. The resolved digest for the image specified in image. The digest is resolved during the creation of a
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 the plugin_config_data field 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 |