123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- syntax = "proto3";
- package google.cloud.binaryauthorization.v1beta1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/protobuf/timestamp.proto";
- option cc_enable_arenas = true;
- option csharp_namespace = "Google.Cloud.BinaryAuthorization.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/binaryauthorization/v1beta1;binaryauthorization";
- option java_multiple_files = true;
- option java_outer_classname = "BinaryAuthorizationResourcesProto";
- option java_package = "com.google.cloud.binaryauthorization.v1beta1";
- option php_namespace = "Google\\Cloud\\BinaryAuthorization\\V1beta1";
- option ruby_package = "Google::Cloud::BinaryAuthorization::V1beta1";
- message Policy {
- option (google.api.resource) = {
- type: "binaryauthorization.googleapis.com/Policy"
- pattern: "projects/{project}/policy"
- pattern: "locations/{location}/policy"
- };
- enum GlobalPolicyEvaluationMode {
-
- GLOBAL_POLICY_EVALUATION_MODE_UNSPECIFIED = 0;
-
- ENABLE = 1;
-
- DISABLE = 2;
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string description = 6 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
- GlobalPolicyEvaluationMode global_policy_evaluation_mode = 7 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- repeated AdmissionWhitelistPattern admission_whitelist_patterns = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
- map<string, AdmissionRule> cluster_admission_rules = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
- map<string, AdmissionRule> kubernetes_namespace_admission_rules = 10 [(google.api.field_behavior) = OPTIONAL];
-
-
- map<string, AdmissionRule> kubernetes_service_account_admission_rules = 8 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- map<string, AdmissionRule> istio_service_identity_admission_rules = 9 [(google.api.field_behavior) = OPTIONAL];
-
-
- AdmissionRule default_admission_rule = 4 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.Timestamp update_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message AdmissionWhitelistPattern {
-
-
-
-
-
-
-
- string name_pattern = 1;
- }
- message AdmissionRule {
- enum EvaluationMode {
-
- EVALUATION_MODE_UNSPECIFIED = 0;
-
- ALWAYS_ALLOW = 1;
-
-
-
- REQUIRE_ATTESTATION = 2;
-
- ALWAYS_DENY = 3;
- }
-
-
- enum EnforcementMode {
-
- ENFORCEMENT_MODE_UNSPECIFIED = 0;
-
- ENFORCED_BLOCK_AND_AUDIT_LOG = 1;
-
-
- DRYRUN_AUDIT_LOG_ONLY = 2;
- }
-
- EvaluationMode evaluation_mode = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
- repeated string require_attestations_by = 2 [(google.api.field_behavior) = OPTIONAL];
-
- EnforcementMode enforcement_mode = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message Attestor {
- option (google.api.resource) = {
- type: "binaryauthorization.googleapis.com/Attestor"
- pattern: "projects/{project}/attestors/{attestor}"
- };
-
-
- string name = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- string description = 6 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- oneof attestor_type {
-
- UserOwnedDrydockNote user_owned_drydock_note = 3;
- }
-
- google.protobuf.Timestamp update_time = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message UserOwnedDrydockNote {
-
-
-
-
-
-
-
- string note_reference = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
- repeated AttestorPublicKey public_keys = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
-
-
- string delegation_service_account_email = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message PkixPublicKey {
-
-
-
-
-
-
- enum SignatureAlgorithm {
- option allow_alias = true;
-
- SIGNATURE_ALGORITHM_UNSPECIFIED = 0;
-
- RSA_PSS_2048_SHA256 = 1;
-
- RSA_PSS_3072_SHA256 = 2;
-
- RSA_PSS_4096_SHA256 = 3;
-
- RSA_PSS_4096_SHA512 = 4;
-
- RSA_SIGN_PKCS1_2048_SHA256 = 5;
-
- RSA_SIGN_PKCS1_3072_SHA256 = 6;
-
- RSA_SIGN_PKCS1_4096_SHA256 = 7;
-
- RSA_SIGN_PKCS1_4096_SHA512 = 8;
-
- ECDSA_P256_SHA256 = 9;
-
- EC_SIGN_P256_SHA256 = 9;
-
- ECDSA_P384_SHA384 = 10;
-
- EC_SIGN_P384_SHA384 = 10;
-
- ECDSA_P521_SHA512 = 11;
-
- EC_SIGN_P521_SHA512 = 11;
- }
-
-
- string public_key_pem = 1;
-
-
-
-
-
- SignatureAlgorithm signature_algorithm = 2;
- }
- message AttestorPublicKey {
-
- string comment = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
- string id = 2;
-
-
- oneof public_key {
-
-
-
-
-
-
-
-
- string ascii_armored_pgp_public_key = 3;
-
-
-
-
-
-
- PkixPublicKey pkix_public_key = 5;
- }
- }
|