BigQuery v0.0.13 BigQuery.Table
Summary
Functions
delete(project_id, dataset_id, table_id)
delete(String.t, String.t, String.t) :: :ok | {:error, BigQuery.Resource.response | String.t}
Delete a Table.
Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.
get(project_id, dataset_id, table_id)
get(String.t, String.t, String.t) :: {:ok, BigQuery.Types.Table.t} | {:error, BigQuery.Resource.response | String.t}
insert(project_id, dataset_id, table)
insert(String.t, String.t, BigQuery.Types.Table.t) :: {:ok, BigQuery.Types.Table.t} | {:error, BigQuery.Resource.response | String.t}
Insert a Table resource.
The table resource requires, at minimum, the schema and tableReference fields to be non-nil.
list(project_id, dataset_id, opts \\ [maxResults: nil, pageToken: nil])
list(String.t, String.t, opts :: [maxResults: integer | nil, pageToken: String.t | nil]) :: {:ok, BigQuery.Types.TableList.t} | {:error, BigQuery.Resource.response | String.t}