Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3090,10 +3090,14 @@ class VulnerabilityMode(proto.Enum):
VULNERABILITY_BASIC (2):
Applies basic vulnerability scanning on the
cluster.
VULNERABILITY_ENTERPRISE (3):
Applies the Security Posture's vulnerability
on cluster Enterprise level features.
"""
VULNERABILITY_MODE_UNSPECIFIED = 0
VULNERABILITY_DISABLED = 1
VULNERABILITY_BASIC = 2
VULNERABILITY_ENTERPRISE = 3

mode: Mode = proto.Field(
proto.ENUM,
Expand Down Expand Up @@ -8924,11 +8928,18 @@ class AdvancedDatapathObservabilityConfig(proto.Message):
r"""AdvancedDatapathObservabilityConfig specifies configuration
of observability features of advanced datapath.


.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes:
enable_metrics (bool):
Expose flow metrics on nodes
relay_mode (google.cloud.container_v1.types.AdvancedDatapathObservabilityConfig.RelayMode):
Method used to make Relay available
enable_relay (bool):
Enable Relay component

This field is a member of `oneof`_ ``_enable_relay``.
"""

class RelayMode(proto.Enum):
Expand Down Expand Up @@ -8958,6 +8969,11 @@ class RelayMode(proto.Enum):
number=2,
enum=RelayMode,
)
enable_relay: bool = proto.Field(
proto.BOOL,
number=3,
optional=True,
)


class NodePoolLoggingConfig(proto.Message):
Expand Down