audit_context.proto 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2025 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.rpc.context;
  16. import "google/protobuf/struct.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/rpc/context;context";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "AuditContextProto";
  20. option java_package = "com.google.rpc.context";
  21. // `AuditContext` provides information that is needed for audit logging.
  22. message AuditContext {
  23. // Serialized audit log.
  24. bytes audit_log = 1;
  25. // An API request message that is scrubbed based on the method annotation.
  26. // This field should only be filled if audit_log field is present.
  27. // Service Control will use this to assemble a complete log for Cloud Audit
  28. // Logs and Google internal audit logs.
  29. google.protobuf.Struct scrubbed_request = 2;
  30. // An API response message that is scrubbed based on the method annotation.
  31. // This field should only be filled if audit_log field is present.
  32. // Service Control will use this to assemble a complete log for Cloud Audit
  33. // Logs and Google internal audit logs.
  34. google.protobuf.Struct scrubbed_response = 3;
  35. // Number of scrubbed response items.
  36. int32 scrubbed_response_item_count = 4;
  37. // Audit resource name which is scrubbed.
  38. string target_resource = 5;
  39. }