Class: Google::Cloud::GkeMultiCloud::V1::BinaryAuthorization
- Inherits:
-
Object
- Object
- Google::Cloud::GkeMultiCloud::V1::BinaryAuthorization
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkemulticloud/v1/common_resources.rb
Overview
Configuration for Binary Authorization.
Defined Under Namespace
Modules: EvaluationMode
Instance Attribute Summary collapse
-
#evaluation_mode ⇒ ::Google::Cloud::GkeMultiCloud::V1::BinaryAuthorization::EvaluationMode
Mode of operation for binauthz policy evaluation.
Instance Attribute Details
#evaluation_mode ⇒ ::Google::Cloud::GkeMultiCloud::V1::BinaryAuthorization::EvaluationMode
Returns Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED.
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/common_resources.rb', line 284 class BinaryAuthorization include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Binary Authorization mode of operation. module EvaluationMode # Default value EVALUATION_MODE_UNSPECIFIED = 0 # Disable BinaryAuthorization DISABLED = 1 # Enforce Kubernetes admission requests with BinaryAuthorization using the # project's singleton policy. PROJECT_SINGLETON_POLICY_ENFORCE = 2 end end |