- JSON representation
- ResourceLocation
- Status
- AuthenticationInfo
- ServiceAccountDelegationInfo
- FirstPartyPrincipal
- ThirdPartyPrincipal
- AuthorizationInfo
- Resource
- PolicyViolationInfo
- OrgPolicyViolationInfo
- ViolationInfo
- RequestMetadata
- Request
- Auth
- Peer
Common audit log format for Google Cloud Platform API operations.
JSON representation |
---|
{ "serviceName": string, "methodName": string, "resourceName": string, "resourceLocation": { object ( |
Fields | |
---|---|
serviceName |
The name of the API service performing the operation. For example, |
methodName |
The name of the service method or operation. For API calls, this should be the name of the API method. For example,
|
resourceName |
The resource or collection that is the target of the operation. The name is a scheme-less URI, not including the API service name. For example:
|
resourceLocation |
The resource location information. |
resourceOriginalState |
The resource's original state before mutation. Present only for operations which have successfully modified the targeted resource(s). In general, this field should contain all changed fields, except those that are already been included in |
numResponseItems |
The number of items returned from a List or Query API method, if applicable. |
status |
The status of the overall operation. |
authenticationInfo |
Authentication information. |
authorizationInfo[] |
Authorization information. If there are multiple resources or permissions involved, then there is one AuthorizationInfo element for each {resource, permission} tuple. |
policyViolationInfo |
Indicates the policy violations for this request. If the request is denied by the policy, violation information will be logged here. |
requestMetadata |
Metadata about the operation. |
request |
The operation request. This may not include all request parameters, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the |
response |
The operation response. This may not include all response elements, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the |
metadata |
Other service-specific data about the request, response, and other information associated with the current audited event. |
serviceData |
Deprecated. Use the An object containing fields of an arbitrary type. An additional field |
ResourceLocation
Location information about a resource.
JSON representation |
---|
{ "currentLocations": [ string ], "originalLocations": [ string ] } |
Fields | |
---|---|
currentLocations[] |
The locations of a resource after the execution of the operation. Requests to create or delete a location based resource must populate the 'currentLocations' field and not the 'originalLocations' field. For example:
|
originalLocations[] |
The locations of a resource prior to the execution of the operation. Requests that mutate the resource's location must populate both the 'originalLocations' as well as the 'currentLocations' fields. For example:
|
Status
The Status
type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status
message contains three pieces of data: error code, error message, and error details.
You can find out more about this error model and how to work with it in the API Design Guide.
JSON representation |
---|
{ "code": integer, "message": string, "details": [ { "@type": string, field1: ..., ... } ] } |
Fields | |
---|---|
code |
The status code, which should be an enum value of |
message |
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the |
details[] |
A list of messages that carry the error details. There is a common set of message types for APIs to use. An object containing fields of an arbitrary type. An additional field |
AuthenticationInfo
Authentication information for the operation.
JSON representation |
---|
{
"principalEmail": string,
"authoritySelector": string,
"thirdPartyPrincipal": {
object
},
"serviceAccountKeyName": string,
"serviceAccountDelegationInfo": [
{
object ( |
Fields | |
---|---|
principalEmail |
The email address of the authenticated user (or service account on behalf of third party principal) making the request. For third party identity callers, the |
authoritySelector |
The authority selector specified by the requestor, if any. It is not guaranteed that the principal was allowed to use this authority. |
thirdPartyPrincipal |
The third party identification (if any) of the authenticated user making the request. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the |
serviceAccountKeyName |
The name of the service account key used to create or exchange credentials for authenticating the service account making the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}" |
serviceAccountDelegationInfo[] |
Identity delegation history of an authenticated service account that makes the request. It contains information on the real authorities that try to access GCP resources by delegating on a service account. When multiple authorities present, they are guaranteed to be sorted based on the original ordering of the identity delegation events. |
principalSubject |
String representation of identity of requesting party. Populated for both first and third party identities. |
ServiceAccountDelegationInfo
Identity delegation history of an authenticated service account.
JSON representation |
---|
{ "principalSubject": string, // Union field |
Fields | |
---|---|
principalSubject |
A string representing the principalSubject associated with the identity. For most identities, the format will be |
Union field Authority . Entity that creates credentials for service account and assumes its identity for authentication. Authority can be only one of the following: |
|
firstPartyPrincipal |
First party (Google) identity as the real authority. |
thirdPartyPrincipal |
Third party identity as the real authority. |
FirstPartyPrincipal
First party identity principal.
JSON representation |
---|
{ "principalEmail": string, "serviceMetadata": { object } } |
Fields | |
---|---|
principalEmail |
The email address of a Google account. . |
serviceMetadata |
Metadata about the service that uses the service account. . |
ThirdPartyPrincipal
Third party identity principal.
JSON representation |
---|
{ "thirdPartyClaims": { object } } |
Fields | |
---|---|
thirdPartyClaims |
Metadata about third party identity. |
AuthorizationInfo
Authorization information for the operation.
JSON representation |
---|
{
"resource": string,
"permission": string,
"granted": boolean,
"resourceAttributes": {
object ( |
Fields | |
---|---|
resource |
The resource being accessed, as a REST-style or cloud resource string. For example:
or projects/PROJECTID/datasets/DATASETID |
permission |
The required IAM permission. |
granted |
Whether or not authorization for |
resourceAttributes |
Resource attributes used in IAM condition evaluation. This field contains resource attributes like resource type and resource name. To get the whole view of the attributes used in IAM condition evaluation, the user must also look into |
Resource
This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service.
JSON representation |
---|
{ "service": string, "name": string, "type": string, "labels": { string: string, ... }, "uid": string, "annotations": { string: string, ... }, "displayName": string, "createTime": string, "updateTime": string, "deleteTime": string, "etag": string, "location": string } |
Fields | |
---|---|
service |
The name of the service that this resource belongs to, such as |
name |
The stable identifier (name) of a resource on the
See https://cloud.google.com/apis/design/resourceNames for details. |
type |
The type of the resource. The syntax is platform-specific because different platforms define their resources differently. For Google APIs, the type format must be "{service}/{kind}", such as "pubsub.googleapis.com/Topic". |
labels |
The labels or tags on the resource, such as AWS resource tags and Kubernetes resource labels. An object containing a list of |
uid |
The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. |
annotations |
Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations An object containing a list of |
displayName |
Mutable. The display name set by clients. Must be <= 63 characters. |
createTime |
Output only. The timestamp when the resource was created. This may be either the time creation was initiated or when it was completed. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
updateTime |
Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
deleteTime |
Output only. The timestamp when the resource was deleted. If the resource is not deleted, this must be empty. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
etag |
Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. |
location |
Immutable. The location of the resource. The location encoding is specific to the service provider, and new encoding may be introduced as the service evolves. For Google Cloud products, the encoding is what is used by Google Cloud APIs, such as |
PolicyViolationInfo
Information related to policy violations for this request.
JSON representation |
---|
{
"orgPolicyViolationInfo": {
object ( |
Fields | |
---|---|
orgPolicyViolationInfo |
Indicates the orgpolicy violations for this resource. |
OrgPolicyViolationInfo
Represents OrgPolicy Violation information.
JSON representation |
---|
{
"payload": {
object
},
"resourceType": string,
"resourceTags": {
string: string,
...
},
"violationInfo": [
{
object ( |
Fields | |
---|---|
payload |
Optional. Resource payload that is currently in scope and is subjected to orgpolicy conditions. This payload may be the subset of the actual Resource that may come in the request. This payload should not contain any core content. |
resourceType |
Optional. Resource type that the orgpolicy is checked against. Example: compute.googleapis.com/Instance, store.googleapis.com/bucket |
resourceTags |
Optional. Tags referenced on the resource at the time of evaluation. These also include the federated tags, if they are supplied in the CheckOrgPolicy or CheckCustomConstraints Requests. Optional field as of now. These tags are the Cloud tags that are available on the resource during the policy evaluation and will be available as part of the OrgPolicy check response for logging purposes. An object containing a list of |
violationInfo[] |
Optional. Policy violations |
ViolationInfo
Provides information about the Policy violation info for this request.
JSON representation |
---|
{
"constraint": string,
"errorMessage": string,
"checkedValue": string,
"policyType": enum ( |
Fields | |
---|---|
constraint |
Optional. Constraint name |
errorMessage |
Optional. Error message that policy is indicating. |
checkedValue |
Optional. Value that is being checked for the policy. This could be in encrypted form (if pii sensitive). This field will only be emitted in LIST_POLICY types |
policyType |
Optional. Indicates the type of the policy. |
RequestMetadata
Metadata about the request.
JSON representation |
---|
{ "callerIp": string, "callerSuppliedUserAgent": string, "callerNetwork": string, "requestAttributes": { object ( |
Fields | |
---|---|
callerIp |
The IP address of the caller. For a caller from the internet, this will be the public IPv4 or IPv6 address. For calls made from inside Google's internal production network from one GCP service to another, |
callerSuppliedUserAgent |
The user agent of the caller. This information is not authenticated and should be treated accordingly. For example:
|
callerNetwork |
The network of the caller. Set only if the network host project is part of the same GCP organization (or project) as the accessed resource. See https://cloud.google.com/compute/docs/vpc/ for more information. This is a scheme-less URI full resource name. For example:
|
requestAttributes |
Request attributes used in IAM condition evaluation. This field contains request attributes like request time and access levels associated with the request. To get the whole view of the attributes used in IAM condition evaluation, the user must also look into |
destinationAttributes |
The destination of a network activity, such as accepting a TCP connection. In a multi hop network activity, the destination represents the receiver of the last hop. Only two fields are used in this message, Peer.port and Peer.ip. These fields are optionally populated by those services utilizing the IAM condition feature. |
Request
This message defines attributes for an HTTP request. If the actual request is not an HTTP request, the runtime system should try to map the actual request to an equivalent HTTP request.
JSON representation |
---|
{
"id": string,
"method": string,
"headers": {
string: string,
...
},
"path": string,
"host": string,
"scheme": string,
"query": string,
"time": string,
"size": string,
"protocol": string,
"reason": string,
"auth": {
object ( |
Fields | |
---|---|
id |
The unique ID for a request, which can be propagated to downstream systems. The ID should have low probability of collision within a single day for a specific service. |
method |
The HTTP request method, such as |
headers |
The HTTP request headers. If multiple headers share the same key, they must be merged according to the HTTP spec. All header keys must be lowercased, because HTTP header keys are case-insensitive. An object containing a list of |
path |
The HTTP URL path, excluding the query parameters. |
host |
The HTTP request |
scheme |
The HTTP URL scheme, such as |
query |
The HTTP URL query in the format of |
time |
The timestamp when the A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
size |
The HTTP request size in bytes. If unknown, it must be -1. |
protocol |
The network protocol used with the request, such as "http/1.1", "spdy/3", "h2", "h2c", "webrtc", "tcp", "udp", "quic". See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for details. |
reason |
A special parameter for request reason. It is used by security systems to associate auditing information with a request. |
auth |
The request authentication. May be absent for unauthenticated requests. Derived from the HTTP request |
Auth
This message defines request authentication attributes. Terminology is based on the JSON Web Token (JWT) standard, but the terms also correlate to concepts in other standards.
JSON representation |
---|
{ "principal": string, "audiences": [ string ], "presenter": string, "claims": { object }, "accessLevels": [ string ] } |
Fields | |
---|---|
principal |
The authenticated principal. Reflects the issuer ( |
audiences[] |
The intended audience(s) for this authentication information. Reflects the audience (
Consult the documentation for the credential issuer to determine the information provided. |
presenter |
The authorized presenter of the credential. Reflects the optional Authorized Presenter ( |
claims |
Structured claims presented with the credential. JWTs include {'iss': 'accounts.google.com', 'sub': '113289723416554971153', 'aud': ['123456789012', 'pubsub.googleapis.com'], 'azp': '123456789012.apps.googleusercontent.com', 'email': 'jsmith@example.com', 'iat': 1353601026, 'exp': 1353604926} SAML assertions are similarly specified, but with an identity provider dependent structure. |
accessLevels[] |
A list of access level resource names that allow resources to be accessed by authenticated requester. It is part of Secure GCP processing for the incoming request. An access level string has the format: "//{api_service_name}/accessPolicies/{policy_id}/accessLevels/{short_name}" Example: "//accesscontextmanager.googleapis.com/accessPolicies/MY_POLICY_ID/accessLevels/MY_LEVEL" |
Peer
This message defines attributes for a node that handles a network request. The node can be either a service or an application that sends, forwards, or receives the request. Service peers should fill in principal
and labels
as appropriate.
JSON representation |
---|
{ "ip": string, "port": string, "labels": { string: string, ... }, "principal": string, "regionCode": string } |
Fields | |
---|---|
ip |
The IP address of the peer. |
port |
The network port of the peer. |
labels |
The labels associated with the peer. An object containing a list of |
principal |
The identity of this peer. Similar to |
regionCode |
The CLDR country/region code associated with the above IP address. If the IP address is private, the |