This repository was archived by the owner on Aug 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy path5_08_BQ_queries_destructive.sql
More file actions
38 lines (37 loc) · 1.57 KB
/
5_08_BQ_queries_destructive.sql
File metadata and controls
38 lines (37 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
SELECT
timestamp,
protopayload_auditlog.authenticationInfo.principalEmail as principalEmail,
protopayload_auditlog.requestMetadata.callerIp,
protopayload_auditlog.methodName,
protopayload_auditlog.resourceName,
JSON_VALUE(protopayload_auditlog.metadataJson, "$.jobChange.job.jobConfig.queryConfig.query") AS query
FROM
`[MY_PROJECT_ID].[MY_DATASET_ID].cloudaudit_googleapis_com_*`
WHERE
timestamp >= TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 30 DAY)
AND resource.type LIKE "bigquery%"
AND (
(JSON_VALUE(protopayload_auditlog.metadataJson, "$.jobChange.job.jobConfig.type") = 'QUERY'
AND JSON_VALUE(protopayload_auditlog.metadataJson, "$.jobChange.job.jobConfig.queryConfig.statementType") IN (
"UPDATE", "DELETE", "DROP_TABLE", "ALTER_TABLE", "TRUNCATE_TABLE"
)) OR
(JSON_EXTRACT(protopayload_auditlog.metadataJson, "$.tableDeletion") IS NOT NULL) OR
(JSON_EXTRACT(protopayload_auditlog.metadataJson, "$.datasetDeletion") IS NOT NULL)
)
ORDER BY
timestamp DESC