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.
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/common_resources.rb', line 300 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 |