// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/rpc/context/audit_context.proto
// Protobuf Java Version: 3.25.4
package com.google.rpc.context;
public interface AuditContextOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.rpc.context.AuditContext)
com.google.protobuf.MessageOrBuilder {
/**
*
* Serialized audit log.
*
*
* bytes audit_log = 1;
* @return The auditLog.
*/
com.google.protobuf.ByteString getAuditLog();
/**
*
* An API request message that is scrubbed based on the method annotation.
* This field should only be filled if audit_log field is present.
* Service Control will use this to assemble a complete log for Cloud Audit
* Logs and Google internal audit logs.
*
*
* .google.protobuf.Struct scrubbed_request = 2;
* @return Whether the scrubbedRequest field is set.
*/
boolean hasScrubbedRequest();
/**
*
* An API request message that is scrubbed based on the method annotation.
* This field should only be filled if audit_log field is present.
* Service Control will use this to assemble a complete log for Cloud Audit
* Logs and Google internal audit logs.
*
*
* .google.protobuf.Struct scrubbed_request = 2;
* @return The scrubbedRequest.
*/
com.google.protobuf.Struct getScrubbedRequest();
/**
*
* An API request message that is scrubbed based on the method annotation.
* This field should only be filled if audit_log field is present.
* Service Control will use this to assemble a complete log for Cloud Audit
* Logs and Google internal audit logs.
*
*
* .google.protobuf.Struct scrubbed_request = 2;
*/
com.google.protobuf.StructOrBuilder getScrubbedRequestOrBuilder();
/**
*
* An API response message that is scrubbed based on the method annotation.
* This field should only be filled if audit_log field is present.
* Service Control will use this to assemble a complete log for Cloud Audit
* Logs and Google internal audit logs.
*
*
* .google.protobuf.Struct scrubbed_response = 3;
* @return Whether the scrubbedResponse field is set.
*/
boolean hasScrubbedResponse();
/**
*
* An API response message that is scrubbed based on the method annotation.
* This field should only be filled if audit_log field is present.
* Service Control will use this to assemble a complete log for Cloud Audit
* Logs and Google internal audit logs.
*
*
* .google.protobuf.Struct scrubbed_response = 3;
* @return The scrubbedResponse.
*/
com.google.protobuf.Struct getScrubbedResponse();
/**
*
* An API response message that is scrubbed based on the method annotation.
* This field should only be filled if audit_log field is present.
* Service Control will use this to assemble a complete log for Cloud Audit
* Logs and Google internal audit logs.
*
*
* .google.protobuf.Struct scrubbed_response = 3;
*/
com.google.protobuf.StructOrBuilder getScrubbedResponseOrBuilder();
/**
*
* Number of scrubbed response items.
*
*
* int32 scrubbed_response_item_count = 4;
* @return The scrubbedResponseItemCount.
*/
int getScrubbedResponseItemCount();
/**
*
* Audit resource name which is scrubbed.
*
*
* string target_resource = 5;
* @return The targetResource.
*/
java.lang.String getTargetResource();
/**
*
* Audit resource name which is scrubbed.
*
*
* string target_resource = 5;
* @return The bytes for targetResource.
*/
com.google.protobuf.ByteString
getTargetResourceBytes();
}