Class Load (1.0.6)

Load(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Describes a load job, which loads data from an external source via the import pipeline.

Attributes

NameDescription
source_uris Sequence[str]
URIs for the data to be imported. Only Google Cloud Storage URIs are supported.
schema_json str
The table schema in JSON format representation of a TableSchema.
destination_table google.cloud.bigquery_logging_v1.types.TableName
The table where the imported data is written.
create_disposition str
Describes when a job is allowed to create a table: ``CREATE_IF_NEEDED``, ``CREATE_NEVER``.
write_disposition str
Describes how writes affect existing tables: ``WRITE_TRUNCATE``, ``WRITE_APPEND``, ``WRITE_EMPTY``.
destination_table_encryption google.cloud.bigquery_logging_v1.types.EncryptionInfo
Result table encryption information. Set when non-default encryption is used.

Inheritance

builtins.object > proto.message.Message > Load