Updates information in an existing table. The update method replaces the entire table resource, whereas the patch method only replaces fields that are provided in the submitted table resource.
Arguments
datasetId
string
Required. Dataset ID of the table to update
projectId
string
Required. Project ID of the table to update
tableId
string
Required. Table ID of the table to update
autodetect_schema
boolean
When true will autodetect schema, else will keep original schema
body
object ( Table
)
Required.
Raised exceptions
ConnectionError
HttpError
TimeoutError
TypeError
ValueError
Response
If successful, the response contains an instance of Table
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation .
YAML
- update : call : googleapis.bigquery.v2.tables.update args : datasetId : ... projectId : ... tableId : ... autodetect_schema : ... body : clustering : fields : ... description : ... encryptionConfiguration : kmsKeyName : ... expirationTime : ... externalDataConfiguration : autodetect : ... avroOptions : useAvroLogicalTypes : ... bigtableOptions : columnFamilies : ... ignoreUnspecifiedColumnFamilies : ... readRowkeyAsString : ... compression : ... connectionId : ... csvOptions : allowJaggedRows : ... allowQuotedNewlines : ... encoding : ... fieldDelimiter : ... null_marker : ... preserveAsciiControlCharacters : ... quote : ... skipLeadingRows : ... decimalTargetTypes : ... googleSheetsOptions : range : ... skipLeadingRows : ... hivePartitioningOptions : mode : ... requirePartitionFilter : ... sourceUriPrefix : ... ignoreUnknownValues : ... maxBadRecords : ... parquetOptions : enableListInference : ... enumAsString : ... referenceFileSchemaUri : ... schema : fields : ... sourceFormat : ... sourceUris : ... friendlyName : ... labels : ... materializedView : enableRefresh : ... maxStaleness : ... query : ... refreshIntervalMs : ... maxStaleness : ... rangePartitioning : field : ... range : end : ... interval : ... start : ... requirePartitionFilter : ... schema : ... tableReference : ... timePartitioning : expirationMs : ... field : ... requirePartitionFilter : ... type : ... view : query : ... useExplicitColumnNames : ... useLegacySql : ... userDefinedFunctionResources : ... result : updateResult
JSON
[ { "update" : { "call" : "googleapis.bigquery.v2.tables.update" , "args" : { "datasetId" : "..." , "projectId" : "..." , "tableId" : "..." , "autodetect_schema" : "..." , "body" : { "clustering" : { "fields" : "..." }, "description" : "..." , "encryptionConfiguration" : { "kmsKeyName" : "..." }, "expirationTime" : "..." , "externalDataConfiguration" : { "autodetect" : "..." , "avroOptions" : { "useAvroLogicalTypes" : "..." }, "bigtableOptions" : { "columnFamilies" : "..." , "ignoreUnspecifiedColumnFamilies" : "..." , "readRowkeyAsString" : "..." }, "compression" : "..." , "connectionId" : "..." , "csvOptions" : { "allowJaggedRows" : "..." , "allowQuotedNewlines" : "..." , "encoding" : "..." , "fieldDelimiter" : "..." , "null_marker" : "..." , "preserveAsciiControlCharacters" : "..." , "quote" : "..." , "skipLeadingRows" : "..." }, "decimalTargetTypes" : "..." , "googleSheetsOptions" : { "range" : "..." , "skipLeadingRows" : "..." }, "hivePartitioningOptions" : { "mode" : "..." , "requirePartitionFilter" : "..." , "sourceUriPrefix" : "..." }, "ignoreUnknownValues" : "..." , "maxBadRecords" : "..." , "parquetOptions" : { "enableListInference" : "..." , "enumAsString" : "..." }, "referenceFileSchemaUri" : "..." , "schema" : { "fields" : "..." }, "sourceFormat" : "..." , "sourceUris" : "..." }, "friendlyName" : "..." , "labels" : "..." , "materializedView" : { "enableRefresh" : "..." , "maxStaleness" : "..." , "query" : "..." , "refreshIntervalMs" : "..." }, "maxStaleness" : "..." , "rangePartitioning" : { "field" : "..." , "range" : { "end" : "..." , "interval" : "..." , "start" : "..." } }, "requirePartitionFilter" : "..." , "schema" : "..." , "tableReference" : "..." , "timePartitioning" : { "expirationMs" : "..." , "field" : "..." , "requirePartitionFilter" : "..." , "type" : "..." }, "view" : { "query" : "..." , "useExplicitColumnNames" : "..." , "useLegacySql" : "..." , "userDefinedFunctionResources" : "..." } } }, "result" : "updateResult" } } ]

