google.cloud.bigquery.job.OperationType¶
- class google.cloud.bigquery.job.OperationType[source]¶
Different operation types supported in table copy job.
https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#operationtype
- __init__()¶
Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
Attributes
The source table type is TABLE and the destination table type is CLONE.
The source and destination table have the same table type.
Unspecified operation type.
The source table type is SNAPSHOT and the destination table type is TABLE.
The source table type is TABLE and the destination table type is SNAPSHOT.
- CLONE = 'CLONE'¶
The source table type is TABLE and the destination table type is CLONE.
- COPY = 'COPY'¶
The source and destination table have the same table type.
- OPERATION_TYPE_UNSPECIFIED = 'OPERATION_TYPE_UNSPECIFIED'¶
Unspecified operation type.
- RESTORE = 'RESTORE'¶
The source table type is SNAPSHOT and the destination table type is TABLE.
- SNAPSHOT = 'SNAPSHOT'¶
The source table type is TABLE and the destination table type is SNAPSHOT.