audit_context.proto 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // Copyright 2024 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 cc_enable_arenas = true;
  18. option go_package = "google.golang.org/genproto/googleapis/rpc/context;context";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "AuditContextProto";
  21. option java_package = "com.google.rpc.context";
  22. // `AuditContext` provides information that is needed for audit logging.
  23. message AuditContext {
  24. // Serialized audit log.
  25. bytes audit_log = 1;
  26. // An API request message that is scrubbed based on the method annotation.
  27. // This field should only be filled if audit_log field is present.
  28. // Service Control will use this to assemble a complete log for Cloud Audit
  29. // Logs and Google internal audit logs.
  30. google.protobuf.Struct scrubbed_request = 2;
  31. // An API response message that is scrubbed based on the method annotation.
  32. // This field should only be filled if audit_log field is present.
  33. // Service Control will use this to assemble a complete log for Cloud Audit
  34. // Logs and Google internal audit logs.
  35. google.protobuf.Struct scrubbed_response = 3;
  36. // Number of scrubbed response items.
  37. int32 scrubbed_response_item_count = 4;
  38. // Audit resource name which is scrubbed.
  39. string target_resource = 5;
  40. }