public enum QueryStatementType
Reference documentation and code samples for the Google Cloud Audit API enum BigQueryAuditMetadata.Types.QueryStatementType.
Type of the statement (e.g. SELECT, INSERT, CREATE_TABLE, CREATE_MODEL..)
Namespace
Google.Cloud.AuditAssembly
Google.Cloud.Audit.dll
Fields | |
---|---|
Name | Description |
AlterMaterializedView | ALTER MATERIALIZED_VIEW <view> |
AlterSchema | ALTER SCHEMA <Schema> |
AlterTable | ALTER TABLE <Table> |
AlterView | ALTER VIEW <View> |
Assert | ASSERT <condition> AS 'description' |
Call | CALL <stored procedure> |
CreateExternalTable | CREATE EXTERNAL TABLE <TABLE> |
CreateFunction | CREATE FUNCTION <Function>(<Signature>) AS ... |
CreateMaterializedView | CREATE MATERIALIZED VIEW <View> AS ... |
CreateModel | CREATE MODEL <Model> AS <Query> |
CreateProcedure | CREATE PROCEDURE <Procedure> |
CreateRowAccessPolicy | CREATE ROW ACCESS POLICY <RowAccessPolicy> ON <Table> |
CreateSchema | CREATE SCHEMA <Schema> |
CreateSnapshotTable | CREATE SNAPSHOT TABLE <Snapshot> CLONE <Table> |
CreateTable | CREATE TABLE <Table> <column list> |
CreateTableAsSelect | CREATE TABLE <Table> AS SELECT |
CreateTableFunction | CREATE TABLE FUNCTION <Function>(<Signature>) AS ... |
CreateView | CREATE VIEW <View> |
Delete | DELETE <Table> ... |
DropExternalTable | DROP EXTERNAL TABLE <Table> |
DropFunction | DROP FUNCTION <Function> |
DropMaterializedView | DROP MATERIALIZED VIEW <View> |
DropModel | DROP MODEL <Model> |
DropProcedure | DROP PROCEDURE <Procedure> |
DropRowAccessPolicy | DROP ROW ACCESS POLICY <RowAccessPolicy> ON <Table> <or> DROP ALL ROW ACCESS POLICIES ON ON <Table> |
DropSchema | DROP SCHEMA <Schema> |
DropSnapshotTable | DROP SNAPSHOT TABLE <Snapshot> |
DropTable | DROP TABLE <Table> |
DropView | DROP VIEW <View> |
ExportData | EXPORT DATA; |
Insert | INSERT INTO <Table> .... |
Merge | MERGE INTO <Table> .... |
Script | Script |
Select | SELECT ... FROM <Table list> ... |
TruncateTable | TRUNCATE TABLE <Table> |
Unspecified | Unknown. |
Update | UPDATE <Table> SET ... |