repo
stringclasses
85 values
path
stringlengths
8
121
func_name
stringlengths
1
82
original_string
stringlengths
112
65.5k
language
stringclasses
1 value
code
stringlengths
112
65.5k
code_tokens
listlengths
20
4.09k
docstring
stringlengths
3
46.3k
docstring_tokens
listlengths
1
564
sha
stringclasses
85 values
url
stringlengths
93
218
partition
stringclasses
1 value
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.dataset
def dataset(self, dataset_id, project=None): """Construct a reference to a dataset. :type dataset_id: str :param dataset_id: ID of the dataset. :type project: str :param project: (Optional) project ID for the dataset (defaults to the project of the clien...
python
def dataset(self, dataset_id, project=None): """Construct a reference to a dataset. :type dataset_id: str :param dataset_id: ID of the dataset. :type project: str :param project: (Optional) project ID for the dataset (defaults to the project of the clien...
[ "def", "dataset", "(", "self", ",", "dataset_id", ",", "project", "=", "None", ")", ":", "if", "project", "is", "None", ":", "project", "=", "self", ".", "project", "return", "DatasetReference", "(", "project", ",", "dataset_id", ")" ]
Construct a reference to a dataset. :type dataset_id: str :param dataset_id: ID of the dataset. :type project: str :param project: (Optional) project ID for the dataset (defaults to the project of the client). :rtype: :class:`google.cloud.bigquery.datas...
[ "Construct", "a", "reference", "to", "a", "dataset", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L293-L309
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.create_dataset
def create_dataset(self, dataset, exists_ok=False, retry=DEFAULT_RETRY): """API call: create the dataset via a POST request. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/insert Args: dataset (Union[ \ :class:`~google.cloud.bigquery.dat...
python
def create_dataset(self, dataset, exists_ok=False, retry=DEFAULT_RETRY): """API call: create the dataset via a POST request. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/insert Args: dataset (Union[ \ :class:`~google.cloud.bigquery.dat...
[ "def", "create_dataset", "(", "self", ",", "dataset", ",", "exists_ok", "=", "False", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "if", "isinstance", "(", "dataset", ",", "str", ")", ":", "dataset", "=", "DatasetReference", ".", "from_string", "(", "data...
API call: create the dataset via a POST request. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/insert Args: dataset (Union[ \ :class:`~google.cloud.bigquery.dataset.Dataset`, \ :class:`~google.cloud.bigquery.dataset.DatasetRefer...
[ "API", "call", ":", "create", "the", "dataset", "via", "a", "POST", "request", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L311-L363
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.create_table
def create_table(self, table, exists_ok=False, retry=DEFAULT_RETRY): """API call: create a table via a PUT request See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/insert Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, ...
python
def create_table(self, table, exists_ok=False, retry=DEFAULT_RETRY): """API call: create a table via a PUT request See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/insert Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, ...
[ "def", "create_table", "(", "self", ",", "table", ",", "exists_ok", "=", "False", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "table", "=", "_table_arg_to_table", "(", "table", ",", "default_project", "=", "self", ".", "project", ")", "path", "=", "\"/pr...
API call: create a table via a PUT request See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/insert Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ ...
[ "API", "call", ":", "create", "a", "table", "via", "a", "PUT", "request" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L365-L401
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.get_dataset
def get_dataset(self, dataset_ref, retry=DEFAULT_RETRY): """Fetch the dataset referenced by ``dataset_ref`` Args: dataset_ref (Union[ \ :class:`~google.cloud.bigquery.dataset.DatasetReference`, \ str, \ ]): A reference to the datas...
python
def get_dataset(self, dataset_ref, retry=DEFAULT_RETRY): """Fetch the dataset referenced by ``dataset_ref`` Args: dataset_ref (Union[ \ :class:`~google.cloud.bigquery.dataset.DatasetReference`, \ str, \ ]): A reference to the datas...
[ "def", "get_dataset", "(", "self", ",", "dataset_ref", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "if", "isinstance", "(", "dataset_ref", ",", "str", ")", ":", "dataset_ref", "=", "DatasetReference", ".", "from_string", "(", "dataset_ref", ",", "default_pro...
Fetch the dataset referenced by ``dataset_ref`` Args: dataset_ref (Union[ \ :class:`~google.cloud.bigquery.dataset.DatasetReference`, \ str, \ ]): A reference to the dataset to fetch from the BigQuery API. If a string is pa...
[ "Fetch", "the", "dataset", "referenced", "by", "dataset_ref" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L409-L434
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.get_model
def get_model(self, model_ref, retry=DEFAULT_RETRY): """[Beta] Fetch the model referenced by ``model_ref``. Args: model_ref (Union[ \ :class:`~google.cloud.bigquery.model.ModelReference`, \ str, \ ]): A reference to the model to f...
python
def get_model(self, model_ref, retry=DEFAULT_RETRY): """[Beta] Fetch the model referenced by ``model_ref``. Args: model_ref (Union[ \ :class:`~google.cloud.bigquery.model.ModelReference`, \ str, \ ]): A reference to the model to f...
[ "def", "get_model", "(", "self", ",", "model_ref", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "if", "isinstance", "(", "model_ref", ",", "str", ")", ":", "model_ref", "=", "ModelReference", ".", "from_string", "(", "model_ref", ",", "default_project", "="...
[Beta] Fetch the model referenced by ``model_ref``. Args: model_ref (Union[ \ :class:`~google.cloud.bigquery.model.ModelReference`, \ str, \ ]): A reference to the model to fetch from the BigQuery API. If a string is passe...
[ "[", "Beta", "]", "Fetch", "the", "model", "referenced", "by", "model_ref", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L436-L461
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.get_table
def get_table(self, table, retry=DEFAULT_RETRY): """Fetch the table referenced by ``table``. Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ]): ...
python
def get_table(self, table, retry=DEFAULT_RETRY): """Fetch the table referenced by ``table``. Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ]): ...
[ "def", "get_table", "(", "self", ",", "table", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "table_ref", "=", "_table_arg_to_table_ref", "(", "table", ",", "default_project", "=", "self", ".", "project", ")", "api_response", "=", "self", ".", "_call_api", "...
Fetch the table referenced by ``table``. Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ]): A reference to the table to fetch from the Big...
[ "Fetch", "the", "table", "referenced", "by", "table", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L463-L485
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.update_dataset
def update_dataset(self, dataset, fields, retry=DEFAULT_RETRY): """Change some fields of a dataset. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``dataset``, it will be deleted. If `...
python
def update_dataset(self, dataset, fields, retry=DEFAULT_RETRY): """Change some fields of a dataset. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``dataset``, it will be deleted. If `...
[ "def", "update_dataset", "(", "self", ",", "dataset", ",", "fields", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "partial", "=", "dataset", ".", "_build_resource", "(", "fields", ")", "if", "dataset", ".", "etag", "is", "not", "None", ":", "headers", "...
Change some fields of a dataset. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``dataset``, it will be deleted. If ``dataset.etag`` is not ``None``, the update will only succeed if th...
[ "Change", "some", "fields", "of", "a", "dataset", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L487-L521
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.update_model
def update_model(self, model, fields, retry=DEFAULT_RETRY): """[Beta] Change some fields of a model. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``model``, it will be deleted. If ``...
python
def update_model(self, model, fields, retry=DEFAULT_RETRY): """[Beta] Change some fields of a model. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``model``, it will be deleted. If ``...
[ "def", "update_model", "(", "self", ",", "model", ",", "fields", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "partial", "=", "model", ".", "_build_resource", "(", "fields", ")", "if", "model", ".", "etag", ":", "headers", "=", "{", "\"If-Match\"", ":",...
[Beta] Change some fields of a model. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``model``, it will be deleted. If ``model.etag`` is not ``None``, the update will only succeed if t...
[ "[", "Beta", "]", "Change", "some", "fields", "of", "a", "model", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L523-L556
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.update_table
def update_table(self, table, fields, retry=DEFAULT_RETRY): """Change some fields of a table. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``table``, it will be deleted. If ``table.e...
python
def update_table(self, table, fields, retry=DEFAULT_RETRY): """Change some fields of a table. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``table``, it will be deleted. If ``table.e...
[ "def", "update_table", "(", "self", ",", "table", ",", "fields", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "partial", "=", "table", ".", "_build_resource", "(", "fields", ")", "if", "table", ".", "etag", "is", "not", "None", ":", "headers", "=", "{...
Change some fields of a table. Use ``fields`` to specify which fields to update. At least one field must be provided. If a field is listed in ``fields`` and is ``None`` in ``table``, it will be deleted. If ``table.etag`` is not ``None``, the update will only succeed if the tabl...
[ "Change", "some", "fields", "of", "a", "table", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L558-L591
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.list_models
def list_models( self, dataset, max_results=None, page_token=None, retry=DEFAULT_RETRY ): """[Beta] List models in the dataset. See https://cloud.google.com/bigquery/docs/reference/rest/v2/models/list Args: dataset (Union[ \ :class:`~google.cloud...
python
def list_models( self, dataset, max_results=None, page_token=None, retry=DEFAULT_RETRY ): """[Beta] List models in the dataset. See https://cloud.google.com/bigquery/docs/reference/rest/v2/models/list Args: dataset (Union[ \ :class:`~google.cloud...
[ "def", "list_models", "(", "self", ",", "dataset", ",", "max_results", "=", "None", ",", "page_token", "=", "None", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "if", "isinstance", "(", "dataset", ",", "str", ")", ":", "dataset", "=", "DatasetReference", ...
[Beta] List models in the dataset. See https://cloud.google.com/bigquery/docs/reference/rest/v2/models/list Args: dataset (Union[ \ :class:`~google.cloud.bigquery.dataset.Dataset`, \ :class:`~google.cloud.bigquery.dataset.DatasetReference`, \ ...
[ "[", "Beta", "]", "List", "models", "in", "the", "dataset", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L593-L649
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.delete_dataset
def delete_dataset( self, dataset, delete_contents=False, retry=DEFAULT_RETRY, not_found_ok=False ): """Delete a dataset. See https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets/delete Args dataset (Union[ \ :class:`~google.cloud.bi...
python
def delete_dataset( self, dataset, delete_contents=False, retry=DEFAULT_RETRY, not_found_ok=False ): """Delete a dataset. See https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets/delete Args dataset (Union[ \ :class:`~google.cloud.bi...
[ "def", "delete_dataset", "(", "self", ",", "dataset", ",", "delete_contents", "=", "False", ",", "retry", "=", "DEFAULT_RETRY", ",", "not_found_ok", "=", "False", ")", ":", "if", "isinstance", "(", "dataset", ",", "str", ")", ":", "dataset", "=", "DatasetR...
Delete a dataset. See https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets/delete Args dataset (Union[ \ :class:`~google.cloud.bigquery.dataset.Dataset`, \ :class:`~google.cloud.bigquery.dataset.DatasetReference`, \ str, ...
[ "Delete", "a", "dataset", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L709-L755
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.delete_model
def delete_model(self, model, retry=DEFAULT_RETRY, not_found_ok=False): """[Beta] Delete a model See https://cloud.google.com/bigquery/docs/reference/rest/v2/models/delete Args: model (Union[ \ :class:`~google.cloud.bigquery.model.Model`, \ :...
python
def delete_model(self, model, retry=DEFAULT_RETRY, not_found_ok=False): """[Beta] Delete a model See https://cloud.google.com/bigquery/docs/reference/rest/v2/models/delete Args: model (Union[ \ :class:`~google.cloud.bigquery.model.Model`, \ :...
[ "def", "delete_model", "(", "self", ",", "model", ",", "retry", "=", "DEFAULT_RETRY", ",", "not_found_ok", "=", "False", ")", ":", "if", "isinstance", "(", "model", ",", "str", ")", ":", "model", "=", "ModelReference", ".", "from_string", "(", "model", "...
[Beta] Delete a model See https://cloud.google.com/bigquery/docs/reference/rest/v2/models/delete Args: model (Union[ \ :class:`~google.cloud.bigquery.model.Model`, \ :class:`~google.cloud.bigquery.model.ModelReference`, \ str, \ ...
[ "[", "Beta", "]", "Delete", "a", "model" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L757-L789
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.delete_table
def delete_table(self, table, retry=DEFAULT_RETRY, not_found_ok=False): """Delete a table See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/delete Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`...
python
def delete_table(self, table, retry=DEFAULT_RETRY, not_found_ok=False): """Delete a table See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/delete Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`...
[ "def", "delete_table", "(", "self", ",", "table", ",", "retry", "=", "DEFAULT_RETRY", ",", "not_found_ok", "=", "False", ")", ":", "table", "=", "_table_arg_to_table_ref", "(", "table", ",", "default_project", "=", "self", ".", "project", ")", "if", "not", ...
Delete a table See https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/delete Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ...
[ "Delete", "a", "table" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L791-L821
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client._get_query_results
def _get_query_results( self, job_id, retry, project=None, timeout_ms=None, location=None ): """Get the query results object for a query job. Arguments: job_id (str): Name of the query job. retry (google.api_core.retry.Retry): (Optional) How to retry ...
python
def _get_query_results( self, job_id, retry, project=None, timeout_ms=None, location=None ): """Get the query results object for a query job. Arguments: job_id (str): Name of the query job. retry (google.api_core.retry.Retry): (Optional) How to retry ...
[ "def", "_get_query_results", "(", "self", ",", "job_id", ",", "retry", ",", "project", "=", "None", ",", "timeout_ms", "=", "None", ",", "location", "=", "None", ")", ":", "extra_params", "=", "{", "\"maxResults\"", ":", "0", "}", "if", "project", "is", ...
Get the query results object for a query job. Arguments: job_id (str): Name of the query job. retry (google.api_core.retry.Retry): (Optional) How to retry the RPC. project (str): (Optional) project ID for the query job (defaults to the ...
[ "Get", "the", "query", "results", "object", "for", "a", "query", "job", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L823-L867
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.job_from_resource
def job_from_resource(self, resource): """Detect correct job type from resource and instantiate. :type resource: dict :param resource: one job resource from API response :rtype: One of: :class:`google.cloud.bigquery.job.LoadJob`, :class:`google.cloud.big...
python
def job_from_resource(self, resource): """Detect correct job type from resource and instantiate. :type resource: dict :param resource: one job resource from API response :rtype: One of: :class:`google.cloud.bigquery.job.LoadJob`, :class:`google.cloud.big...
[ "def", "job_from_resource", "(", "self", ",", "resource", ")", ":", "config", "=", "resource", ".", "get", "(", "\"configuration\"", ",", "{", "}", ")", "if", "\"load\"", "in", "config", ":", "return", "job", ".", "LoadJob", ".", "from_api_repr", "(", "r...
Detect correct job type from resource and instantiate. :type resource: dict :param resource: one job resource from API response :rtype: One of: :class:`google.cloud.bigquery.job.LoadJob`, :class:`google.cloud.bigquery.job.CopyJob`, :class:`google...
[ "Detect", "correct", "job", "type", "from", "resource", "and", "instantiate", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L869-L891
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.cancel_job
def cancel_job(self, job_id, project=None, location=None, retry=DEFAULT_RETRY): """Attempt to cancel a job from a job ID. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/cancel Arguments: job_id (str): Unique job identifier. Keyword Arguments: ...
python
def cancel_job(self, job_id, project=None, location=None, retry=DEFAULT_RETRY): """Attempt to cancel a job from a job ID. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/cancel Arguments: job_id (str): Unique job identifier. Keyword Arguments: ...
[ "def", "cancel_job", "(", "self", ",", "job_id", ",", "project", "=", "None", ",", "location", "=", "None", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "extra_params", "=", "{", "\"projection\"", ":", "\"full\"", "}", "if", "project", "is", "None", ":"...
Attempt to cancel a job from a job ID. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/cancel Arguments: job_id (str): Unique job identifier. Keyword Arguments: project (str): (Optional) ID of the project which owns the job (de...
[ "Attempt", "to", "cancel", "a", "job", "from", "a", "job", "ID", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L936-L977
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.list_jobs
def list_jobs( self, project=None, max_results=None, page_token=None, all_users=None, state_filter=None, retry=DEFAULT_RETRY, min_creation_time=None, max_creation_time=None, ): """List jobs for the project associated with this client. ...
python
def list_jobs( self, project=None, max_results=None, page_token=None, all_users=None, state_filter=None, retry=DEFAULT_RETRY, min_creation_time=None, max_creation_time=None, ): """List jobs for the project associated with this client. ...
[ "def", "list_jobs", "(", "self", ",", "project", "=", "None", ",", "max_results", "=", "None", ",", "page_token", "=", "None", ",", "all_users", "=", "None", ",", "state_filter", "=", "None", ",", "retry", "=", "DEFAULT_RETRY", ",", "min_creation_time", "=...
List jobs for the project associated with this client. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/list Args: project (str, optional): Project ID to use for retreiving datasets. Defaults to the client's project. max_...
[ "List", "jobs", "for", "the", "project", "associated", "with", "this", "client", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L979-L1060
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.load_table_from_uri
def load_table_from_uri( self, source_uris, destination, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, retry=DEFAULT_RETRY, ): """Starts a job for loading data into a table from CloudStorage. Se...
python
def load_table_from_uri( self, source_uris, destination, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, retry=DEFAULT_RETRY, ): """Starts a job for loading data into a table from CloudStorage. Se...
[ "def", "load_table_from_uri", "(", "self", ",", "source_uris", ",", "destination", ",", "job_id", "=", "None", ",", "job_id_prefix", "=", "None", ",", "location", "=", "None", ",", "project", "=", "None", ",", "job_config", "=", "None", ",", "retry", "=", ...
Starts a job for loading data into a table from CloudStorage. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.load Arguments: source_uris (Union[str, Sequence[str]]): URIs of data files to be loaded; in format ``gs://<...
[ "Starts", "a", "job", "for", "loading", "data", "into", "a", "table", "from", "CloudStorage", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1062-L1129
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.load_table_from_file
def load_table_from_file( self, file_obj, destination, rewind=False, size=None, num_retries=_DEFAULT_NUM_RETRIES, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, ): """Upload the contents o...
python
def load_table_from_file( self, file_obj, destination, rewind=False, size=None, num_retries=_DEFAULT_NUM_RETRIES, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, ): """Upload the contents o...
[ "def", "load_table_from_file", "(", "self", ",", "file_obj", ",", "destination", ",", "rewind", "=", "False", ",", "size", "=", "None", ",", "num_retries", "=", "_DEFAULT_NUM_RETRIES", ",", "job_id", "=", "None", ",", "job_id_prefix", "=", "None", ",", "loca...
Upload the contents of this table from a file-like object. Similar to :meth:`load_table_from_uri`, this method creates, starts and returns a :class:`~google.cloud.bigquery.job.LoadJob`. Arguments: file_obj (file): A file handle opened in binary mode for reading. destina...
[ "Upload", "the", "contents", "of", "this", "table", "from", "a", "file", "-", "like", "object", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1131-L1223
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.load_table_from_dataframe
def load_table_from_dataframe( self, dataframe, destination, num_retries=_DEFAULT_NUM_RETRIES, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, ): """Upload the contents of a table from a pandas DataFrame. ...
python
def load_table_from_dataframe( self, dataframe, destination, num_retries=_DEFAULT_NUM_RETRIES, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, ): """Upload the contents of a table from a pandas DataFrame. ...
[ "def", "load_table_from_dataframe", "(", "self", ",", "dataframe", ",", "destination", ",", "num_retries", "=", "_DEFAULT_NUM_RETRIES", ",", "job_id", "=", "None", ",", "job_id_prefix", "=", "None", ",", "location", "=", "None", ",", "project", "=", "None", ",...
Upload the contents of a table from a pandas DataFrame. Similar to :meth:`load_table_from_uri`, this method creates, starts and returns a :class:`~google.cloud.bigquery.job.LoadJob`. Arguments: dataframe (pandas.DataFrame): A :class:`~pandas.DataFrame` containing th...
[ "Upload", "the", "contents", "of", "a", "table", "from", "a", "pandas", "DataFrame", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1225-L1309
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client._do_resumable_upload
def _do_resumable_upload(self, stream, metadata, num_retries): """Perform a resumable upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type num_retries: in...
python
def _do_resumable_upload(self, stream, metadata, num_retries): """Perform a resumable upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type num_retries: in...
[ "def", "_do_resumable_upload", "(", "self", ",", "stream", ",", "metadata", ",", "num_retries", ")", ":", "upload", ",", "transport", "=", "self", ".", "_initiate_resumable_upload", "(", "stream", ",", "metadata", ",", "num_retries", ")", "while", "not", "uplo...
Perform a resumable upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type num_retries: int :param num_retries: Number of upload retries. (Deprecated: This ...
[ "Perform", "a", "resumable", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1311-L1335
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client._initiate_resumable_upload
def _initiate_resumable_upload(self, stream, metadata, num_retries): """Initiate a resumable upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type num_retr...
python
def _initiate_resumable_upload(self, stream, metadata, num_retries): """Initiate a resumable upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type num_retr...
[ "def", "_initiate_resumable_upload", "(", "self", ",", "stream", ",", "metadata", ",", "num_retries", ")", ":", "chunk_size", "=", "_DEFAULT_CHUNKSIZE", "transport", "=", "self", ".", "_http", "headers", "=", "_get_upload_headers", "(", "self", ".", "_connection",...
Initiate a resumable upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type num_retries: int :param num_retries: Number of upload retries. (Deprecated: This...
[ "Initiate", "a", "resumable", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1337-L1375
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client._do_multipart_upload
def _do_multipart_upload(self, stream, metadata, size, num_retries): """Perform a multipart upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type size: int...
python
def _do_multipart_upload(self, stream, metadata, size, num_retries): """Perform a multipart upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type size: int...
[ "def", "_do_multipart_upload", "(", "self", ",", "stream", ",", "metadata", ",", "size", ",", "num_retries", ")", ":", "data", "=", "stream", ".", "read", "(", "size", ")", "if", "len", "(", "data", ")", "<", "size", ":", "msg", "=", "_READ_LESS_THAN_S...
Perform a multipart upload. :type stream: IO[bytes] :param stream: A bytes IO object open for reading. :type metadata: dict :param metadata: The metadata associated with the upload. :type size: int :param size: The number of bytes to be uploaded (which will be read ...
[ "Perform", "a", "multipart", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1377-L1418
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.copy_table
def copy_table( self, sources, destination, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, retry=DEFAULT_RETRY, ): """Copy one or more tables to another table. See https://cloud.google.co...
python
def copy_table( self, sources, destination, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, retry=DEFAULT_RETRY, ): """Copy one or more tables to another table. See https://cloud.google.co...
[ "def", "copy_table", "(", "self", ",", "sources", ",", "destination", ",", "job_id", "=", "None", ",", "job_id_prefix", "=", "None", ",", "location", "=", "None", ",", "project", "=", "None", ",", "job_config", "=", "None", ",", "retry", "=", "DEFAULT_RE...
Copy one or more tables to another table. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.copy Arguments: sources (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableRefer...
[ "Copy", "one", "or", "more", "tables", "to", "another", "table", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1420-L1509
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.extract_table
def extract_table( self, source, destination_uris, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, retry=DEFAULT_RETRY, ): """Start a job to extract a table into Cloud Storage files. See h...
python
def extract_table( self, source, destination_uris, job_id=None, job_id_prefix=None, location=None, project=None, job_config=None, retry=DEFAULT_RETRY, ): """Start a job to extract a table into Cloud Storage files. See h...
[ "def", "extract_table", "(", "self", ",", "source", ",", "destination_uris", ",", "job_id", "=", "None", ",", "job_id_prefix", "=", "None", ",", "location", "=", "None", ",", "project", "=", "None", ",", "job_config", "=", "None", ",", "retry", "=", "DEF...
Start a job to extract a table into Cloud Storage files. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.extract Arguments: source (Union[ \ :class:`google.cloud.bigquery.table.Table`, \ :class:`google.cloud.bigquery.t...
[ "Start", "a", "job", "to", "extract", "a", "table", "into", "Cloud", "Storage", "files", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1511-L1581
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.query
def query( self, query, job_config=None, job_id=None, job_id_prefix=None, location=None, project=None, retry=DEFAULT_RETRY, ): """Run a SQL query. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration....
python
def query( self, query, job_config=None, job_id=None, job_id_prefix=None, location=None, project=None, retry=DEFAULT_RETRY, ): """Run a SQL query. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration....
[ "def", "query", "(", "self", ",", "query", ",", "job_config", "=", "None", ",", "job_id", "=", "None", ",", "job_id_prefix", "=", "None", ",", "location", "=", "None", ",", "project", "=", "None", ",", "retry", "=", "DEFAULT_RETRY", ",", ")", ":", "j...
Run a SQL query. See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.query Arguments: query (str): SQL query to be executed. Defaults to the standard SQL dialect. Use the ``job_config`` parameter to change dialects. ...
[ "Run", "a", "SQL", "query", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1583-L1650
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.insert_rows
def insert_rows(self, table, rows, selected_fields=None, **kwargs): """Insert rows into a table via the streaming API. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tabledata/insertAll Args: table (Union[ \ :class:`~google.cloud.bigquery.table...
python
def insert_rows(self, table, rows, selected_fields=None, **kwargs): """Insert rows into a table via the streaming API. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tabledata/insertAll Args: table (Union[ \ :class:`~google.cloud.bigquery.table...
[ "def", "insert_rows", "(", "self", ",", "table", ",", "rows", ",", "selected_fields", "=", "None", ",", "*", "*", "kwargs", ")", ":", "table", "=", "_table_arg_to_table", "(", "table", ",", "default_project", "=", "self", ".", "project", ")", "if", "not"...
Insert rows into a table via the streaming API. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tabledata/insertAll Args: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`...
[ "Insert", "rows", "into", "a", "table", "via", "the", "streaming", "API", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1652-L1714
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.insert_rows_json
def insert_rows_json( self, table, json_rows, row_ids=None, skip_invalid_rows=None, ignore_unknown_values=None, template_suffix=None, retry=DEFAULT_RETRY, ): """Insert rows into a table without applying local type conversions. See ...
python
def insert_rows_json( self, table, json_rows, row_ids=None, skip_invalid_rows=None, ignore_unknown_values=None, template_suffix=None, retry=DEFAULT_RETRY, ): """Insert rows into a table without applying local type conversions. See ...
[ "def", "insert_rows_json", "(", "self", ",", "table", ",", "json_rows", ",", "row_ids", "=", "None", ",", "skip_invalid_rows", "=", "None", ",", "ignore_unknown_values", "=", "None", ",", "template_suffix", "=", "None", ",", "retry", "=", "DEFAULT_RETRY", ",",...
Insert rows into a table without applying local type conversions. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tabledata/insertAll table (Union[ \ :class:`~google.cloud.bigquery.table.Table` \ :class:`~google.cloud.bigquery.table.TableReference`, \ ...
[ "Insert", "rows", "into", "a", "table", "without", "applying", "local", "type", "conversions", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1716-L1798
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.list_partitions
def list_partitions(self, table, retry=DEFAULT_RETRY): """List the partitions in a table. Arguments: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ]): ...
python
def list_partitions(self, table, retry=DEFAULT_RETRY): """List the partitions in a table. Arguments: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ]): ...
[ "def", "list_partitions", "(", "self", ",", "table", ",", "retry", "=", "DEFAULT_RETRY", ")", ":", "table", "=", "_table_arg_to_table_ref", "(", "table", ",", "default_project", "=", "self", ".", "project", ")", "meta_table", "=", "self", ".", "get_table", "...
List the partitions in a table. Arguments: table (Union[ \ :class:`~google.cloud.bigquery.table.Table`, \ :class:`~google.cloud.bigquery.table.TableReference`, \ str, \ ]): The table or reference from which to get partition...
[ "List", "the", "partitions", "in", "a", "table", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1800-L1829
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.list_rows
def list_rows( self, table, selected_fields=None, max_results=None, page_token=None, start_index=None, page_size=None, retry=DEFAULT_RETRY, ): """List the rows of the table. See https://cloud.google.com/bigquery/docs/reference/...
python
def list_rows( self, table, selected_fields=None, max_results=None, page_token=None, start_index=None, page_size=None, retry=DEFAULT_RETRY, ): """List the rows of the table. See https://cloud.google.com/bigquery/docs/reference/...
[ "def", "list_rows", "(", "self", ",", "table", ",", "selected_fields", "=", "None", ",", "max_results", "=", "None", ",", "page_token", "=", "None", ",", "start_index", "=", "None", ",", "page_size", "=", "None", ",", "retry", "=", "DEFAULT_RETRY", ",", ...
List the rows of the table. See https://cloud.google.com/bigquery/docs/reference/rest/v2/tabledata/list .. note:: This method assumes that the provided schema is up-to-date with the schema as defined on the back-end: if the two schemas are not identical, the v...
[ "List", "the", "rows", "of", "the", "table", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1831-L1933
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client._schema_from_json_file_object
def _schema_from_json_file_object(self, file_obj): """Helper function for schema_from_json that takes a file object that describes a table schema. Returns: List of schema field objects. """ json_data = json.load(file_obj) return [SchemaField.from_api_repr(field...
python
def _schema_from_json_file_object(self, file_obj): """Helper function for schema_from_json that takes a file object that describes a table schema. Returns: List of schema field objects. """ json_data = json.load(file_obj) return [SchemaField.from_api_repr(field...
[ "def", "_schema_from_json_file_object", "(", "self", ",", "file_obj", ")", ":", "json_data", "=", "json", ".", "load", "(", "file_obj", ")", "return", "[", "SchemaField", ".", "from_api_repr", "(", "field", ")", "for", "field", "in", "json_data", "]" ]
Helper function for schema_from_json that takes a file object that describes a table schema. Returns: List of schema field objects.
[ "Helper", "function", "for", "schema_from_json", "that", "takes", "a", "file", "object", "that", "describes", "a", "table", "schema", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1935-L1943
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client._schema_to_json_file_object
def _schema_to_json_file_object(self, schema_list, file_obj): """Helper function for schema_to_json that takes a schema list and file object and writes the schema list to the file object with json.dump """ json.dump(schema_list, file_obj, indent=2, sort_keys=True)
python
def _schema_to_json_file_object(self, schema_list, file_obj): """Helper function for schema_to_json that takes a schema list and file object and writes the schema list to the file object with json.dump """ json.dump(schema_list, file_obj, indent=2, sort_keys=True)
[ "def", "_schema_to_json_file_object", "(", "self", ",", "schema_list", ",", "file_obj", ")", ":", "json", ".", "dump", "(", "schema_list", ",", "file_obj", ",", "indent", "=", "2", ",", "sort_keys", "=", "True", ")" ]
Helper function for schema_to_json that takes a schema list and file object and writes the schema list to the file object with json.dump
[ "Helper", "function", "for", "schema_to_json", "that", "takes", "a", "schema", "list", "and", "file", "object", "and", "writes", "the", "schema", "list", "to", "the", "file", "object", "with", "json", ".", "dump" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1945-L1949
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.schema_from_json
def schema_from_json(self, file_or_path): """Takes a file object or file path that contains json that describes a table schema. Returns: List of schema field objects. """ if isinstance(file_or_path, io.IOBase): return self._schema_from_json_file_object(fi...
python
def schema_from_json(self, file_or_path): """Takes a file object or file path that contains json that describes a table schema. Returns: List of schema field objects. """ if isinstance(file_or_path, io.IOBase): return self._schema_from_json_file_object(fi...
[ "def", "schema_from_json", "(", "self", ",", "file_or_path", ")", ":", "if", "isinstance", "(", "file_or_path", ",", "io", ".", "IOBase", ")", ":", "return", "self", ".", "_schema_from_json_file_object", "(", "file_or_path", ")", "with", "open", "(", "file_or_...
Takes a file object or file path that contains json that describes a table schema. Returns: List of schema field objects.
[ "Takes", "a", "file", "object", "or", "file", "path", "that", "contains", "json", "that", "describes", "a", "table", "schema", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1951-L1962
train
googleapis/google-cloud-python
bigquery/google/cloud/bigquery/client.py
Client.schema_to_json
def schema_to_json(self, schema_list, destination): """Takes a list of schema field objects. Serializes the list of schema field objects as json to a file. Destination is a file path or a file object. """ json_schema_list = [f.to_api_repr() for f in schema_list] if isi...
python
def schema_to_json(self, schema_list, destination): """Takes a list of schema field objects. Serializes the list of schema field objects as json to a file. Destination is a file path or a file object. """ json_schema_list = [f.to_api_repr() for f in schema_list] if isi...
[ "def", "schema_to_json", "(", "self", ",", "schema_list", ",", "destination", ")", ":", "json_schema_list", "=", "[", "f", ".", "to_api_repr", "(", ")", "for", "f", "in", "schema_list", "]", "if", "isinstance", "(", "destination", ",", "io", ".", "IOBase",...
Takes a list of schema field objects. Serializes the list of schema field objects as json to a file. Destination is a file path or a file object.
[ "Takes", "a", "list", "of", "schema", "field", "objects", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/bigquery/google/cloud/bigquery/client.py#L1964-L1977
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance._update_from_pb
def _update_from_pb(self, instance_pb): """Refresh self from the server-provided protobuf. Helper for :meth:`from_pb` and :meth:`reload`. """ if not instance_pb.display_name: # Simple field (string) raise ValueError("Instance protobuf does not contain display_name") ...
python
def _update_from_pb(self, instance_pb): """Refresh self from the server-provided protobuf. Helper for :meth:`from_pb` and :meth:`reload`. """ if not instance_pb.display_name: # Simple field (string) raise ValueError("Instance protobuf does not contain display_name") ...
[ "def", "_update_from_pb", "(", "self", ",", "instance_pb", ")", ":", "if", "not", "instance_pb", ".", "display_name", ":", "# Simple field (string)", "raise", "ValueError", "(", "\"Instance protobuf does not contain display_name\"", ")", "self", ".", "display_name", "="...
Refresh self from the server-provided protobuf. Helper for :meth:`from_pb` and :meth:`reload`.
[ "Refresh", "self", "from", "the", "server", "-", "provided", "protobuf", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L86-L95
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.from_pb
def from_pb(cls, instance_pb, client): """Creates an instance from a protobuf. :type instance_pb: :class:`google.spanner.v2.spanner_instance_admin_pb2.Instance` :param instance_pb: A instance protobuf object. :type client: :class:`~google.cloud.spanner_v1.client.Client` ...
python
def from_pb(cls, instance_pb, client): """Creates an instance from a protobuf. :type instance_pb: :class:`google.spanner.v2.spanner_instance_admin_pb2.Instance` :param instance_pb: A instance protobuf object. :type client: :class:`~google.cloud.spanner_v1.client.Client` ...
[ "def", "from_pb", "(", "cls", ",", "instance_pb", ",", "client", ")", ":", "match", "=", "_INSTANCE_NAME_RE", ".", "match", "(", "instance_pb", ".", "name", ")", "if", "match", "is", "None", ":", "raise", "ValueError", "(", "\"Instance protobuf name was not in...
Creates an instance from a protobuf. :type instance_pb: :class:`google.spanner.v2.spanner_instance_admin_pb2.Instance` :param instance_pb: A instance protobuf object. :type client: :class:`~google.cloud.spanner_v1.client.Client` :param client: The client that owns the insta...
[ "Creates", "an", "instance", "from", "a", "protobuf", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L98-L130
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.copy
def copy(self): """Make a copy of this instance. Copies the local data stored as simple types and copies the client attached to this instance. :rtype: :class:`~google.cloud.spanner_v1.instance.Instance` :returns: A copy of the current instance. """ new_client = ...
python
def copy(self): """Make a copy of this instance. Copies the local data stored as simple types and copies the client attached to this instance. :rtype: :class:`~google.cloud.spanner_v1.instance.Instance` :returns: A copy of the current instance. """ new_client = ...
[ "def", "copy", "(", "self", ")", ":", "new_client", "=", "self", ".", "_client", ".", "copy", "(", ")", "return", "self", ".", "__class__", "(", "self", ".", "instance_id", ",", "new_client", ",", "self", ".", "configuration_name", ",", "node_count", "="...
Make a copy of this instance. Copies the local data stored as simple types and copies the client attached to this instance. :rtype: :class:`~google.cloud.spanner_v1.instance.Instance` :returns: A copy of the current instance.
[ "Make", "a", "copy", "of", "this", "instance", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L164-L180
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.create
def create(self): """Create this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.CreateInstance .. note:: Uses the ``project`` and ``instance_id`` on the current :class:`...
python
def create(self): """Create this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.CreateInstance .. note:: Uses the ``project`` and ``instance_id`` on the current :class:`...
[ "def", "create", "(", "self", ")", ":", "api", "=", "self", ".", "_client", ".", "instance_admin_api", "instance_pb", "=", "admin_v1_pb2", ".", "Instance", "(", "name", "=", "self", ".", "name", ",", "config", "=", "self", ".", "configuration_name", ",", ...
Create this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.CreateInstance .. note:: Uses the ``project`` and ``instance_id`` on the current :class:`Instance` in addition to the ...
[ "Create", "this", "instance", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L182-L221
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.exists
def exists(self): """Test whether this instance exists. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.GetInstanceConfig :rtype: bool :returns: True if the instance exists, else false ""...
python
def exists(self): """Test whether this instance exists. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.GetInstanceConfig :rtype: bool :returns: True if the instance exists, else false ""...
[ "def", "exists", "(", "self", ")", ":", "api", "=", "self", ".", "_client", ".", "instance_admin_api", "metadata", "=", "_metadata_with_prefix", "(", "self", ".", "name", ")", "try", ":", "api", ".", "get_instance", "(", "self", ".", "name", ",", "metada...
Test whether this instance exists. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.GetInstanceConfig :rtype: bool :returns: True if the instance exists, else false
[ "Test", "whether", "this", "instance", "exists", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L223-L240
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.reload
def reload(self): """Reload the metadata for this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.GetInstanceConfig :raises NotFound: if the instance does not exist """ api = se...
python
def reload(self): """Reload the metadata for this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.GetInstanceConfig :raises NotFound: if the instance does not exist """ api = se...
[ "def", "reload", "(", "self", ")", ":", "api", "=", "self", ".", "_client", ".", "instance_admin_api", "metadata", "=", "_metadata_with_prefix", "(", "self", ".", "name", ")", "instance_pb", "=", "api", ".", "get_instance", "(", "self", ".", "name", ",", ...
Reload the metadata for this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.GetInstanceConfig :raises NotFound: if the instance does not exist
[ "Reload", "the", "metadata", "for", "this", "instance", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L242-L255
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.update
def update(self): """Update this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.UpdateInstance .. note:: Updates the ``display_name`` and ``node_count``. To change those ...
python
def update(self): """Update this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.UpdateInstance .. note:: Updates the ``display_name`` and ``node_count``. To change those ...
[ "def", "update", "(", "self", ")", ":", "api", "=", "self", ".", "_client", ".", "instance_admin_api", "instance_pb", "=", "admin_v1_pb2", ".", "Instance", "(", "name", "=", "self", ".", "name", ",", "config", "=", "self", ".", "configuration_name", ",", ...
Update this instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.UpdateInstance .. note:: Updates the ``display_name`` and ``node_count``. To change those values before updating, set ...
[ "Update", "this", "instance", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L257-L293
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.delete
def delete(self): """Mark an instance and all of its databases for permanent deletion. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.DeleteInstance Immediately upon completion of the request: ...
python
def delete(self): """Mark an instance and all of its databases for permanent deletion. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.DeleteInstance Immediately upon completion of the request: ...
[ "def", "delete", "(", "self", ")", ":", "api", "=", "self", ".", "_client", ".", "instance_admin_api", "metadata", "=", "_metadata_with_prefix", "(", "self", ".", "name", ")", "api", ".", "delete_instance", "(", "self", ".", "name", ",", "metadata", "=", ...
Mark an instance and all of its databases for permanent deletion. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.instance.v1#google.spanner.admin.instance.v1.InstanceAdmin.DeleteInstance Immediately upon completion of the request: * Billing will cease for all ...
[ "Mark", "an", "instance", "and", "all", "of", "its", "databases", "for", "permanent", "deletion", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L295-L313
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.database
def database(self, database_id, ddl_statements=(), pool=None): """Factory to create a database within this instance. :type database_id: str :param database_id: The ID of the instance. :type ddl_statements: list of string :param ddl_statements: (Optional) DDL statements, excludi...
python
def database(self, database_id, ddl_statements=(), pool=None): """Factory to create a database within this instance. :type database_id: str :param database_id: The ID of the instance. :type ddl_statements: list of string :param ddl_statements: (Optional) DDL statements, excludi...
[ "def", "database", "(", "self", ",", "database_id", ",", "ddl_statements", "=", "(", ")", ",", "pool", "=", "None", ")", ":", "return", "Database", "(", "database_id", ",", "self", ",", "ddl_statements", "=", "ddl_statements", ",", "pool", "=", "pool", "...
Factory to create a database within this instance. :type database_id: str :param database_id: The ID of the instance. :type ddl_statements: list of string :param ddl_statements: (Optional) DDL statements, excluding the 'CREATE DATABSE' statement. ...
[ "Factory", "to", "create", "a", "database", "within", "this", "instance", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L315-L332
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance.list_databases
def list_databases(self, page_size=None, page_token=None): """List databases for the instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.database.v1#google.spanner.admin.database.v1.DatabaseAdmin.ListDatabases :type page_size: int :param page_size:...
python
def list_databases(self, page_size=None, page_token=None): """List databases for the instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.database.v1#google.spanner.admin.database.v1.DatabaseAdmin.ListDatabases :type page_size: int :param page_size:...
[ "def", "list_databases", "(", "self", ",", "page_size", "=", "None", ",", "page_token", "=", "None", ")", ":", "metadata", "=", "_metadata_with_prefix", "(", "self", ".", "name", ")", "page_iter", "=", "self", ".", "_client", ".", "database_admin_api", ".", ...
List databases for the instance. See https://cloud.google.com/spanner/reference/rpc/google.spanner.admin.database.v1#google.spanner.admin.database.v1.DatabaseAdmin.ListDatabases :type page_size: int :param page_size: Optional. The maximum number of databases in each page of...
[ "List", "databases", "for", "the", "instance", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L334-L365
train
googleapis/google-cloud-python
spanner/google/cloud/spanner_v1/instance.py
Instance._item_to_database
def _item_to_database(self, iterator, database_pb): """Convert a database protobuf to the native object. :type iterator: :class:`~google.api_core.page_iterator.Iterator` :param iterator: The iterator that is currently in use. :type database_pb: :class:`~google.spanner.admin.database.v1...
python
def _item_to_database(self, iterator, database_pb): """Convert a database protobuf to the native object. :type iterator: :class:`~google.api_core.page_iterator.Iterator` :param iterator: The iterator that is currently in use. :type database_pb: :class:`~google.spanner.admin.database.v1...
[ "def", "_item_to_database", "(", "self", ",", "iterator", ",", "database_pb", ")", ":", "return", "Database", ".", "from_pb", "(", "database_pb", ",", "self", ",", "pool", "=", "BurstyPool", "(", ")", ")" ]
Convert a database protobuf to the native object. :type iterator: :class:`~google.api_core.page_iterator.Iterator` :param iterator: The iterator that is currently in use. :type database_pb: :class:`~google.spanner.admin.database.v1.Database` :param database_pb: A database returned from...
[ "Convert", "a", "database", "protobuf", "to", "the", "native", "object", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/spanner/google/cloud/spanner_v1/instance.py#L367-L379
train
googleapis/google-cloud-python
api_core/google/api_core/future/polling.py
PollingFuture._blocking_poll
def _blocking_poll(self, timeout=None): """Poll and wait for the Future to be resolved. Args: timeout (int): How long (in seconds) to wait for the operation to complete. If None, wait indefinitely. """ if self._result_set: return ...
python
def _blocking_poll(self, timeout=None): """Poll and wait for the Future to be resolved. Args: timeout (int): How long (in seconds) to wait for the operation to complete. If None, wait indefinitely. """ if self._result_set: return ...
[ "def", "_blocking_poll", "(", "self", ",", "timeout", "=", "None", ")", ":", "if", "self", ".", "_result_set", ":", "return", "retry_", "=", "self", ".", "_retry", ".", "with_deadline", "(", "timeout", ")", "try", ":", "retry_", "(", "self", ".", "_don...
Poll and wait for the Future to be resolved. Args: timeout (int): How long (in seconds) to wait for the operation to complete. If None, wait indefinitely.
[ "Poll", "and", "wait", "for", "the", "Future", "to", "be", "resolved", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/api_core/google/api_core/future/polling.py#L87-L105
train
googleapis/google-cloud-python
api_core/google/api_core/future/polling.py
PollingFuture.result
def result(self, timeout=None): """Get the result of the operation, blocking if necessary. Args: timeout (int): How long (in seconds) to wait for the operation to complete. If None, wait indefinitely. Returns: google.protobuf.Message: The...
python
def result(self, timeout=None): """Get the result of the operation, blocking if necessary. Args: timeout (int): How long (in seconds) to wait for the operation to complete. If None, wait indefinitely. Returns: google.protobuf.Message: The...
[ "def", "result", "(", "self", ",", "timeout", "=", "None", ")", ":", "self", ".", "_blocking_poll", "(", "timeout", "=", "timeout", ")", "if", "self", ".", "_exception", "is", "not", "None", ":", "# pylint: disable=raising-bad-type", "# Pylint doesn't recognize ...
Get the result of the operation, blocking if necessary. Args: timeout (int): How long (in seconds) to wait for the operation to complete. If None, wait indefinitely. Returns: google.protobuf.Message: The Operation's result. Raises: ...
[ "Get", "the", "result", "of", "the", "operation", "blocking", "if", "necessary", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/api_core/google/api_core/future/polling.py#L107-L129
train
googleapis/google-cloud-python
api_core/google/api_core/future/polling.py
PollingFuture.add_done_callback
def add_done_callback(self, fn): """Add a callback to be executed when the operation is complete. If the operation is not already complete, this will start a helper thread to poll for the status of the operation in the background. Args: fn (Callable[Future]): The callback t...
python
def add_done_callback(self, fn): """Add a callback to be executed when the operation is complete. If the operation is not already complete, this will start a helper thread to poll for the status of the operation in the background. Args: fn (Callable[Future]): The callback t...
[ "def", "add_done_callback", "(", "self", ",", "fn", ")", ":", "if", "self", ".", "_result_set", ":", "_helpers", ".", "safe_invoke_callback", "(", "fn", ",", "self", ")", "return", "self", ".", "_done_callbacks", ".", "append", "(", "fn", ")", "if", "sel...
Add a callback to be executed when the operation is complete. If the operation is not already complete, this will start a helper thread to poll for the status of the operation in the background. Args: fn (Callable[Future]): The callback to execute when the operation ...
[ "Add", "a", "callback", "to", "be", "executed", "when", "the", "operation", "is", "complete", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/api_core/google/api_core/future/polling.py#L145-L166
train
googleapis/google-cloud-python
api_core/google/api_core/future/polling.py
PollingFuture._invoke_callbacks
def _invoke_callbacks(self, *args, **kwargs): """Invoke all done callbacks.""" for callback in self._done_callbacks: _helpers.safe_invoke_callback(callback, *args, **kwargs)
python
def _invoke_callbacks(self, *args, **kwargs): """Invoke all done callbacks.""" for callback in self._done_callbacks: _helpers.safe_invoke_callback(callback, *args, **kwargs)
[ "def", "_invoke_callbacks", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "for", "callback", "in", "self", ".", "_done_callbacks", ":", "_helpers", ".", "safe_invoke_callback", "(", "callback", ",", "*", "args", ",", "*", "*", "kwargs...
Invoke all done callbacks.
[ "Invoke", "all", "done", "callbacks", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/api_core/google/api_core/future/polling.py#L168-L171
train
googleapis/google-cloud-python
api_core/google/api_core/future/polling.py
PollingFuture.set_result
def set_result(self, result): """Set the Future's result.""" self._result = result self._result_set = True self._invoke_callbacks(self)
python
def set_result(self, result): """Set the Future's result.""" self._result = result self._result_set = True self._invoke_callbacks(self)
[ "def", "set_result", "(", "self", ",", "result", ")", ":", "self", ".", "_result", "=", "result", "self", ".", "_result_set", "=", "True", "self", ".", "_invoke_callbacks", "(", "self", ")" ]
Set the Future's result.
[ "Set", "the", "Future", "s", "result", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/api_core/google/api_core/future/polling.py#L173-L177
train
googleapis/google-cloud-python
api_core/google/api_core/future/polling.py
PollingFuture.set_exception
def set_exception(self, exception): """Set the Future's exception.""" self._exception = exception self._result_set = True self._invoke_callbacks(self)
python
def set_exception(self, exception): """Set the Future's exception.""" self._exception = exception self._result_set = True self._invoke_callbacks(self)
[ "def", "set_exception", "(", "self", ",", "exception", ")", ":", "self", ".", "_exception", "=", "exception", "self", ".", "_result_set", "=", "True", "self", ".", "_invoke_callbacks", "(", "self", ")" ]
Set the Future's exception.
[ "Set", "the", "Future", "s", "exception", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/api_core/google/api_core/future/polling.py#L179-L183
train
googleapis/google-cloud-python
error_reporting/google/cloud/error_reporting/util.py
build_flask_context
def build_flask_context(request): """Builds an HTTP context object from a Flask (Werkzeug) request object. This helper method extracts the relevant HTTP context from a Flask request object into an object ready to be sent to Error Reporting. .. code-block:: python >>> @app.errorhandler(HTTPE...
python
def build_flask_context(request): """Builds an HTTP context object from a Flask (Werkzeug) request object. This helper method extracts the relevant HTTP context from a Flask request object into an object ready to be sent to Error Reporting. .. code-block:: python >>> @app.errorhandler(HTTPE...
[ "def", "build_flask_context", "(", "request", ")", ":", "return", "HTTPContext", "(", "url", "=", "request", ".", "url", ",", "method", "=", "request", ".", "method", ",", "user_agent", "=", "request", ".", "user_agent", ".", "string", ",", "referrer", "="...
Builds an HTTP context object from a Flask (Werkzeug) request object. This helper method extracts the relevant HTTP context from a Flask request object into an object ready to be sent to Error Reporting. .. code-block:: python >>> @app.errorhandler(HTTPException) ... def handle_error(ex...
[ "Builds", "an", "HTTP", "context", "object", "from", "a", "Flask", "(", "Werkzeug", ")", "request", "object", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/error_reporting/google/cloud/error_reporting/util.py#L20-L47
train
googleapis/google-cloud-python
logging/docs/snippets.py
instantiate_client
def instantiate_client(_unused_client, _unused_to_delete): """Instantiate client.""" # [START client_create_default] from google.cloud import logging client = logging.Client() # [END client_create_default] credentials = object() # [START client_create_explicit] from google.cloud impor...
python
def instantiate_client(_unused_client, _unused_to_delete): """Instantiate client.""" # [START client_create_default] from google.cloud import logging client = logging.Client() # [END client_create_default] credentials = object() # [START client_create_explicit] from google.cloud impor...
[ "def", "instantiate_client", "(", "_unused_client", ",", "_unused_to_delete", ")", ":", "# [START client_create_default]", "from", "google", ".", "cloud", "import", "logging", "client", "=", "logging", ".", "Client", "(", ")", "# [END client_create_default]", "credentia...
Instantiate client.
[ "Instantiate", "client", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L47-L60
train
googleapis/google-cloud-python
logging/docs/snippets.py
client_list_entries
def client_list_entries(client, to_delete): # pylint: disable=unused-argument """List entries via client.""" # [START client_list_entries_default] for entry in client.list_entries(): # API call(s) do_something_with(entry) # [END client_list_entries_default] # [START client_list_entries_f...
python
def client_list_entries(client, to_delete): # pylint: disable=unused-argument """List entries via client.""" # [START client_list_entries_default] for entry in client.list_entries(): # API call(s) do_something_with(entry) # [END client_list_entries_default] # [START client_list_entries_f...
[ "def", "client_list_entries", "(", "client", ",", "to_delete", ")", ":", "# pylint: disable=unused-argument", "# [START client_list_entries_default]", "for", "entry", "in", "client", ".", "list_entries", "(", ")", ":", "# API call(s)", "do_something_with", "(", "entry", ...
List entries via client.
[ "List", "entries", "via", "client", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L68-L99
train
googleapis/google-cloud-python
logging/docs/snippets.py
client_list_entries_multi_project
def client_list_entries_multi_project( client, to_delete ): # pylint: disable=unused-argument """List entries via client across multiple projects.""" # [START client_list_entries_multi_project] PROJECT_IDS = ["one-project", "another-project"] for entry in client.list_entries(project_ids=PROJECT_ID...
python
def client_list_entries_multi_project( client, to_delete ): # pylint: disable=unused-argument """List entries via client across multiple projects.""" # [START client_list_entries_multi_project] PROJECT_IDS = ["one-project", "another-project"] for entry in client.list_entries(project_ids=PROJECT_ID...
[ "def", "client_list_entries_multi_project", "(", "client", ",", "to_delete", ")", ":", "# pylint: disable=unused-argument", "# [START client_list_entries_multi_project]", "PROJECT_IDS", "=", "[", "\"one-project\"", ",", "\"another-project\"", "]", "for", "entry", "in", "clien...
List entries via client across multiple projects.
[ "List", "entries", "via", "client", "across", "multiple", "projects", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L104-L112
train
googleapis/google-cloud-python
logging/docs/snippets.py
logger_usage
def logger_usage(client, to_delete): """Logger usage.""" LOG_NAME = "logger_usage_%d" % (_millis()) # [START logger_create] logger = client.logger(LOG_NAME) # [END logger_create] to_delete.append(logger) # [START logger_log_text] logger.log_text("A simple entry") # API call # [END...
python
def logger_usage(client, to_delete): """Logger usage.""" LOG_NAME = "logger_usage_%d" % (_millis()) # [START logger_create] logger = client.logger(LOG_NAME) # [END logger_create] to_delete.append(logger) # [START logger_log_text] logger.log_text("A simple entry") # API call # [END...
[ "def", "logger_usage", "(", "client", ",", "to_delete", ")", ":", "LOG_NAME", "=", "\"logger_usage_%d\"", "%", "(", "_millis", "(", ")", ")", "# [START logger_create]", "logger", "=", "client", ".", "logger", "(", "LOG_NAME", ")", "# [END logger_create]", "to_de...
Logger usage.
[ "Logger", "usage", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L117-L165
train
googleapis/google-cloud-python
logging/docs/snippets.py
metric_crud
def metric_crud(client, to_delete): """Metric CRUD.""" METRIC_NAME = "robots-%d" % (_millis(),) DESCRIPTION = "Robots all up in your server" FILTER = "logName:apache-access AND textPayload:robot" UPDATED_FILTER = "textPayload:robot" UPDATED_DESCRIPTION = "Danger, Will Robinson!" # [START cl...
python
def metric_crud(client, to_delete): """Metric CRUD.""" METRIC_NAME = "robots-%d" % (_millis(),) DESCRIPTION = "Robots all up in your server" FILTER = "logName:apache-access AND textPayload:robot" UPDATED_FILTER = "textPayload:robot" UPDATED_DESCRIPTION = "Danger, Will Robinson!" # [START cl...
[ "def", "metric_crud", "(", "client", ",", "to_delete", ")", ":", "METRIC_NAME", "=", "\"robots-%d\"", "%", "(", "_millis", "(", ")", ",", ")", "DESCRIPTION", "=", "\"Robots all up in your server\"", "FILTER", "=", "\"logName:apache-access AND textPayload:robot\"", "UP...
Metric CRUD.
[ "Metric", "CRUD", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L169-L212
train
googleapis/google-cloud-python
logging/docs/snippets.py
sink_storage
def sink_storage(client, to_delete): """Sink log entries to storage.""" bucket = _sink_storage_setup(client) to_delete.append(bucket) SINK_NAME = "robots-storage-%d" % (_millis(),) FILTER = "textPayload:robot" # [START sink_storage_create] DESTINATION = "storage.googleapis.com/%s" % (bucket...
python
def sink_storage(client, to_delete): """Sink log entries to storage.""" bucket = _sink_storage_setup(client) to_delete.append(bucket) SINK_NAME = "robots-storage-%d" % (_millis(),) FILTER = "textPayload:robot" # [START sink_storage_create] DESTINATION = "storage.googleapis.com/%s" % (bucket...
[ "def", "sink_storage", "(", "client", ",", "to_delete", ")", ":", "bucket", "=", "_sink_storage_setup", "(", "client", ")", "to_delete", ".", "append", "(", "bucket", ")", "SINK_NAME", "=", "\"robots-storage-%d\"", "%", "(", "_millis", "(", ")", ",", ")", ...
Sink log entries to storage.
[ "Sink", "log", "entries", "to", "storage", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L235-L249
train
googleapis/google-cloud-python
logging/docs/snippets.py
sink_bigquery
def sink_bigquery(client, to_delete): """Sink log entries to bigquery.""" dataset = _sink_bigquery_setup(client) to_delete.append(dataset) SINK_NAME = "robots-bigquery-%d" % (_millis(),) FILTER = "textPayload:robot" # [START sink_bigquery_create] DESTINATION = "bigquery.googleapis.com%s" % ...
python
def sink_bigquery(client, to_delete): """Sink log entries to bigquery.""" dataset = _sink_bigquery_setup(client) to_delete.append(dataset) SINK_NAME = "robots-bigquery-%d" % (_millis(),) FILTER = "textPayload:robot" # [START sink_bigquery_create] DESTINATION = "bigquery.googleapis.com%s" % ...
[ "def", "sink_bigquery", "(", "client", ",", "to_delete", ")", ":", "dataset", "=", "_sink_bigquery_setup", "(", "client", ")", "to_delete", ".", "append", "(", "dataset", ")", "SINK_NAME", "=", "\"robots-bigquery-%d\"", "%", "(", "_millis", "(", ")", ",", ")...
Sink log entries to bigquery.
[ "Sink", "log", "entries", "to", "bigquery", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L274-L288
train
googleapis/google-cloud-python
logging/docs/snippets.py
sink_pubsub
def sink_pubsub(client, to_delete): """Sink log entries to pubsub.""" topic = _sink_pubsub_setup(client) to_delete.append(topic) SINK_NAME = "robots-pubsub-%d" % (_millis(),) FILTER = "logName:apache-access AND textPayload:robot" UPDATED_FILTER = "textPayload:robot" # [START sink_pubsub_cre...
python
def sink_pubsub(client, to_delete): """Sink log entries to pubsub.""" topic = _sink_pubsub_setup(client) to_delete.append(topic) SINK_NAME = "robots-pubsub-%d" % (_millis(),) FILTER = "logName:apache-access AND textPayload:robot" UPDATED_FILTER = "textPayload:robot" # [START sink_pubsub_cre...
[ "def", "sink_pubsub", "(", "client", ",", "to_delete", ")", ":", "topic", "=", "_sink_pubsub_setup", "(", "client", ")", "to_delete", ".", "append", "(", "topic", ")", "SINK_NAME", "=", "\"robots-pubsub-%d\"", "%", "(", "_millis", "(", ")", ",", ")", "FILT...
Sink log entries to pubsub.
[ "Sink", "log", "entries", "to", "pubsub", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/logging/docs/snippets.py#L309-L348
train
googleapis/google-cloud-python
core/google/cloud/obsolete.py
complain
def complain(distribution_name): """Issue a warning if `distribution_name` is installed. In a future release, this method will be updated to raise ImportError rather than just send a warning. Args: distribution_name (str): The name of the obsolete distribution. """ try: pkg_res...
python
def complain(distribution_name): """Issue a warning if `distribution_name` is installed. In a future release, this method will be updated to raise ImportError rather than just send a warning. Args: distribution_name (str): The name of the obsolete distribution. """ try: pkg_res...
[ "def", "complain", "(", "distribution_name", ")", ":", "try", ":", "pkg_resources", ".", "get_distribution", "(", "distribution_name", ")", "warnings", ".", "warn", "(", "\"The {pkg} distribution is now obsolete. \"", "\"Please `pip uninstall {pkg}`. \"", "\"In the future, th...
Issue a warning if `distribution_name` is installed. In a future release, this method will be updated to raise ImportError rather than just send a warning. Args: distribution_name (str): The name of the obsolete distribution.
[ "Issue", "a", "warning", "if", "distribution_name", "is", "installed", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/core/google/cloud/obsolete.py#L22-L42
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
_get_encryption_headers
def _get_encryption_headers(key, source=False): """Builds customer encryption key headers :type key: bytes :param key: 32 byte key to build request key and hash. :type source: bool :param source: If true, return headers for the "source" blob; otherwise, return headers for the "d...
python
def _get_encryption_headers(key, source=False): """Builds customer encryption key headers :type key: bytes :param key: 32 byte key to build request key and hash. :type source: bool :param source: If true, return headers for the "source" blob; otherwise, return headers for the "d...
[ "def", "_get_encryption_headers", "(", "key", ",", "source", "=", "False", ")", ":", "if", "key", "is", "None", ":", "return", "{", "}", "key", "=", "_to_bytes", "(", "key", ")", "key_hash", "=", "hashlib", ".", "sha256", "(", "key", ")", ".", "diges...
Builds customer encryption key headers :type key: bytes :param key: 32 byte key to build request key and hash. :type source: bool :param source: If true, return headers for the "source" blob; otherwise, return headers for the "destination" blob. :rtype: dict :returns: dict ...
[ "Builds", "customer", "encryption", "key", "headers" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1953-L1983
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
_raise_from_invalid_response
def _raise_from_invalid_response(error): """Re-wrap and raise an ``InvalidResponse`` exception. :type error: :exc:`google.resumable_media.InvalidResponse` :param error: A caught exception from the ``google-resumable-media`` library. :raises: :class:`~google.cloud.exceptions.GoogleClo...
python
def _raise_from_invalid_response(error): """Re-wrap and raise an ``InvalidResponse`` exception. :type error: :exc:`google.resumable_media.InvalidResponse` :param error: A caught exception from the ``google-resumable-media`` library. :raises: :class:`~google.cloud.exceptions.GoogleClo...
[ "def", "_raise_from_invalid_response", "(", "error", ")", ":", "response", "=", "error", ".", "response", "error_message", "=", "str", "(", "error", ")", "message", "=", "u\"{method} {url}: {error}\"", ".", "format", "(", "method", "=", "response", ".", "request...
Re-wrap and raise an ``InvalidResponse`` exception. :type error: :exc:`google.resumable_media.InvalidResponse` :param error: A caught exception from the ``google-resumable-media`` library. :raises: :class:`~google.cloud.exceptions.GoogleCloudError` corresponding to the faile...
[ "Re", "-", "wrap", "and", "raise", "an", "InvalidResponse", "exception", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L2017-L2034
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
_add_query_parameters
def _add_query_parameters(base_url, name_value_pairs): """Add one query parameter to a base URL. :type base_url: string :param base_url: Base URL (may already contain query parameters) :type name_value_pairs: list of (string, string) tuples. :param name_value_pairs: Names and values of the query p...
python
def _add_query_parameters(base_url, name_value_pairs): """Add one query parameter to a base URL. :type base_url: string :param base_url: Base URL (may already contain query parameters) :type name_value_pairs: list of (string, string) tuples. :param name_value_pairs: Names and values of the query p...
[ "def", "_add_query_parameters", "(", "base_url", ",", "name_value_pairs", ")", ":", "if", "len", "(", "name_value_pairs", ")", "==", "0", ":", "return", "base_url", "scheme", ",", "netloc", ",", "path", ",", "query", ",", "frag", "=", "urlsplit", "(", "bas...
Add one query parameter to a base URL. :type base_url: string :param base_url: Base URL (may already contain query parameters) :type name_value_pairs: list of (string, string) tuples. :param name_value_pairs: Names and values of the query parameters to add :rtype: string :returns: URL with ad...
[ "Add", "one", "query", "parameter", "to", "a", "base", "URL", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L2037-L2055
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.chunk_size
def chunk_size(self, value): """Set the blob's default chunk size. :type value: int :param value: (Optional) The current blob's chunk size, if it is set. :raises: :class:`ValueError` if ``value`` is not ``None`` and is not a multiple of 256 KB. """ if v...
python
def chunk_size(self, value): """Set the blob's default chunk size. :type value: int :param value: (Optional) The current blob's chunk size, if it is set. :raises: :class:`ValueError` if ``value`` is not ``None`` and is not a multiple of 256 KB. """ if v...
[ "def", "chunk_size", "(", "self", ",", "value", ")", ":", "if", "value", "is", "not", "None", "and", "value", ">", "0", "and", "value", "%", "self", ".", "_CHUNK_SIZE_MULTIPLE", "!=", "0", ":", "raise", "ValueError", "(", "\"Chunk size must be a multiple of ...
Set the blob's default chunk size. :type value: int :param value: (Optional) The current blob's chunk size, if it is set. :raises: :class:`ValueError` if ``value`` is not ``None`` and is not a multiple of 256 KB.
[ "Set", "the", "blob", "s", "default", "chunk", "size", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L200-L213
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.path
def path(self): """Getter property for the URL path to this Blob. :rtype: str :returns: The URL path to this Blob. """ if not self.name: raise ValueError("Cannot determine path without a blob name.") return self.path_helper(self.bucket.path, self.name)
python
def path(self): """Getter property for the URL path to this Blob. :rtype: str :returns: The URL path to this Blob. """ if not self.name: raise ValueError("Cannot determine path without a blob name.") return self.path_helper(self.bucket.path, self.name)
[ "def", "path", "(", "self", ")", ":", "if", "not", "self", ".", "name", ":", "raise", "ValueError", "(", "\"Cannot determine path without a blob name.\"", ")", "return", "self", ".", "path_helper", "(", "self", ".", "bucket", ".", "path", ",", "self", ".", ...
Getter property for the URL path to this Blob. :rtype: str :returns: The URL path to this Blob.
[ "Getter", "property", "for", "the", "URL", "path", "to", "this", "Blob", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L244-L253
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._query_params
def _query_params(self): """Default query parameters.""" params = {} if self.generation is not None: params["generation"] = self.generation if self.user_project is not None: params["userProject"] = self.user_project return params
python
def _query_params(self): """Default query parameters.""" params = {} if self.generation is not None: params["generation"] = self.generation if self.user_project is not None: params["userProject"] = self.user_project return params
[ "def", "_query_params", "(", "self", ")", ":", "params", "=", "{", "}", "if", "self", ".", "generation", "is", "not", "None", ":", "params", "[", "\"generation\"", "]", "=", "self", ".", "generation", "if", "self", ".", "user_project", "is", "not", "No...
Default query parameters.
[ "Default", "query", "parameters", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L279-L286
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.public_url
def public_url(self): """The public URL for this blob. Use :meth:`make_public` to enable anonymous access via the returned URL. :rtype: `string` :returns: The public URL for this blob. """ return "{storage_base_url}/{bucket_name}/{quoted_name}".format( ...
python
def public_url(self): """The public URL for this blob. Use :meth:`make_public` to enable anonymous access via the returned URL. :rtype: `string` :returns: The public URL for this blob. """ return "{storage_base_url}/{bucket_name}/{quoted_name}".format( ...
[ "def", "public_url", "(", "self", ")", ":", "return", "\"{storage_base_url}/{bucket_name}/{quoted_name}\"", ".", "format", "(", "storage_base_url", "=", "_API_ACCESS_ENDPOINT", ",", "bucket_name", "=", "self", ".", "bucket", ".", "name", ",", "quoted_name", "=", "qu...
The public URL for this blob. Use :meth:`make_public` to enable anonymous access via the returned URL. :rtype: `string` :returns: The public URL for this blob.
[ "The", "public", "URL", "for", "this", "blob", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L289-L302
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.generate_signed_url
def generate_signed_url( self, expiration=None, api_access_endpoint=_API_ACCESS_ENDPOINT, method="GET", content_md5=None, content_type=None, response_disposition=None, response_type=None, generation=None, headers=None, query_paramet...
python
def generate_signed_url( self, expiration=None, api_access_endpoint=_API_ACCESS_ENDPOINT, method="GET", content_md5=None, content_type=None, response_disposition=None, response_type=None, generation=None, headers=None, query_paramet...
[ "def", "generate_signed_url", "(", "self", ",", "expiration", "=", "None", ",", "api_access_endpoint", "=", "_API_ACCESS_ENDPOINT", ",", "method", "=", "\"GET\"", ",", "content_md5", "=", "None", ",", "content_type", "=", "None", ",", "response_disposition", "=", ...
Generates a signed URL for this blob. .. note:: If you are on Google Compute Engine, you can't generate a signed URL using GCE service account. Follow `Issue 50`_ for updates on this. If you'd like to be able to generate a signed URL from GCE, you can use a stan...
[ "Generates", "a", "signed", "URL", "for", "this", "blob", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L304-L445
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.exists
def exists(self, client=None): """Determines whether or not this blob exists. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Opt...
python
def exists(self, client=None): """Determines whether or not this blob exists. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Opt...
[ "def", "exists", "(", "self", ",", "client", "=", "None", ")", ":", "client", "=", "self", ".", "_require_client", "(", "client", ")", "# We only need the status code (200 or not) so we seek to", "# minimize the returned payload.", "query_params", "=", "self", ".", "_...
Determines whether or not this blob exists. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, ...
[ "Determines", "whether", "or", "not", "this", "blob", "exists", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L447-L481
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.delete
def delete(self, client=None): """Deletes a blob from Cloud Storage. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. Th...
python
def delete(self, client=None): """Deletes a blob from Cloud Storage. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. Th...
[ "def", "delete", "(", "self", ",", "client", "=", "None", ")", ":", "return", "self", ".", "bucket", ".", "delete_blob", "(", "self", ".", "name", ",", "client", "=", "client", ",", "generation", "=", "self", ".", "generation", ")" ]
Deletes a blob from Cloud Storage. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls bac...
[ "Deletes", "a", "blob", "from", "Cloud", "Storage", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L483-L502
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._get_download_url
def _get_download_url(self): """Get the download URL for the current blob. If the ``media_link`` has been loaded, it will be used, otherwise the URL will be constructed from the current blob's path (and possibly generation) to avoid a round trip. :rtype: str :returns: T...
python
def _get_download_url(self): """Get the download URL for the current blob. If the ``media_link`` has been loaded, it will be used, otherwise the URL will be constructed from the current blob's path (and possibly generation) to avoid a round trip. :rtype: str :returns: T...
[ "def", "_get_download_url", "(", "self", ")", ":", "name_value_pairs", "=", "[", "]", "if", "self", ".", "media_link", "is", "None", ":", "base_url", "=", "_DOWNLOAD_URL_TEMPLATE", ".", "format", "(", "path", "=", "self", ".", "path", ")", "if", "self", ...
Get the download URL for the current blob. If the ``media_link`` has been loaded, it will be used, otherwise the URL will be constructed from the current blob's path (and possibly generation) to avoid a round trip. :rtype: str :returns: The download URL for the current blob.
[ "Get", "the", "download", "URL", "for", "the", "current", "blob", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L519-L540
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._do_download
def _do_download( self, transport, file_obj, download_url, headers, start=None, end=None ): """Perform a download without any error handling. This is intended to be called by :meth:`download_to_file` so it can be wrapped with error handling / remapping. :type transport: ...
python
def _do_download( self, transport, file_obj, download_url, headers, start=None, end=None ): """Perform a download without any error handling. This is intended to be called by :meth:`download_to_file` so it can be wrapped with error handling / remapping. :type transport: ...
[ "def", "_do_download", "(", "self", ",", "transport", ",", "file_obj", ",", "download_url", ",", "headers", ",", "start", "=", "None", ",", "end", "=", "None", ")", ":", "if", "self", ".", "chunk_size", "is", "None", ":", "download", "=", "Download", "...
Perform a download without any error handling. This is intended to be called by :meth:`download_to_file` so it can be wrapped with error handling / remapping. :type transport: :class:`~google.auth.transport.requests.AuthorizedSession` :param transport: The transport (with c...
[ "Perform", "a", "download", "without", "any", "error", "handling", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L542-L586
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.download_to_file
def download_to_file(self, file_obj, client=None, start=None, end=None): """Download the contents of this blob into a file-like object. .. note:: If the server-set property, :attr:`media_link`, is not yet initialized, makes an additional API request to load it. Downloadi...
python
def download_to_file(self, file_obj, client=None, start=None, end=None): """Download the contents of this blob into a file-like object. .. note:: If the server-set property, :attr:`media_link`, is not yet initialized, makes an additional API request to load it. Downloadi...
[ "def", "download_to_file", "(", "self", ",", "file_obj", ",", "client", "=", "None", ",", "start", "=", "None", ",", "end", "=", "None", ")", ":", "download_url", "=", "self", ".", "_get_download_url", "(", ")", "headers", "=", "_get_encryption_headers", "...
Download the contents of this blob into a file-like object. .. note:: If the server-set property, :attr:`media_link`, is not yet initialized, makes an additional API request to load it. Downloading a file that has been encrypted with a `customer-supplied`_ encryption key...
[ "Download", "the", "contents", "of", "this", "blob", "into", "a", "file", "-", "like", "object", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L588-L638
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.download_to_filename
def download_to_filename(self, filename, client=None, start=None, end=None): """Download the contents of this blob into a named file. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type filename: str :param filename: A filename to be passe...
python
def download_to_filename(self, filename, client=None, start=None, end=None): """Download the contents of this blob into a named file. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type filename: str :param filename: A filename to be passe...
[ "def", "download_to_filename", "(", "self", ",", "filename", ",", "client", "=", "None", ",", "start", "=", "None", ",", "end", "=", "None", ")", ":", "try", ":", "with", "open", "(", "filename", ",", "\"wb\"", ")", "as", "file_obj", ":", "self", "."...
Download the contents of this blob into a named file. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type filename: str :param filename: A filename to be passed to ``open``. :type client: :class:`~google.cloud.storage.client.Client` or ...
[ "Download", "the", "contents", "of", "this", "blob", "into", "a", "named", "file", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L640-L673
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.download_as_string
def download_as_string(self, client=None, start=None, end=None): """Download the contents of this blob as a string. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or `...
python
def download_as_string(self, client=None, start=None, end=None): """Download the contents of this blob as a string. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or `...
[ "def", "download_as_string", "(", "self", ",", "client", "=", "None", ",", "start", "=", "None", ",", "end", "=", "None", ")", ":", "string_buffer", "=", "BytesIO", "(", ")", "self", ".", "download_to_file", "(", "string_buffer", ",", "client", "=", "cli...
Download the contents of this blob as a string. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not pass...
[ "Download", "the", "contents", "of", "this", "blob", "as", "a", "string", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L675-L698
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._get_content_type
def _get_content_type(self, content_type, filename=None): """Determine the content type from the current object. The return value will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The d...
python
def _get_content_type(self, content_type, filename=None): """Determine the content type from the current object. The return value will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The d...
[ "def", "_get_content_type", "(", "self", ",", "content_type", ",", "filename", "=", "None", ")", ":", "if", "content_type", "is", "None", ":", "content_type", "=", "self", ".", "content_type", "if", "content_type", "is", "None", "and", "filename", "is", "not...
Determine the content type from the current object. The return value will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The default value ('application/octet-stream') :type content_type...
[ "Determine", "the", "content", "type", "from", "the", "current", "object", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L700-L728
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._get_writable_metadata
def _get_writable_metadata(self): """Get the object / blob metadata which is writable. This is intended to be used when creating a new object / blob. See the `API reference docs`_ for more information, the fields marked as writable are: * ``acl`` * ``cacheControl`` ...
python
def _get_writable_metadata(self): """Get the object / blob metadata which is writable. This is intended to be used when creating a new object / blob. See the `API reference docs`_ for more information, the fields marked as writable are: * ``acl`` * ``cacheControl`` ...
[ "def", "_get_writable_metadata", "(", "self", ")", ":", "# NOTE: This assumes `self.name` is unicode.", "object_metadata", "=", "{", "\"name\"", ":", "self", ".", "name", "}", "for", "key", "in", "self", ".", "_changes", ":", "if", "key", "in", "_WRITABLE_FIELDS",...
Get the object / blob metadata which is writable. This is intended to be used when creating a new object / blob. See the `API reference docs`_ for more information, the fields marked as writable are: * ``acl`` * ``cacheControl`` * ``contentDisposition`` * ``con...
[ "Get", "the", "object", "/", "blob", "metadata", "which", "is", "writable", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L730-L759
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._get_upload_arguments
def _get_upload_arguments(self, content_type): """Get required arguments for performing an upload. The content type returned will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The defaul...
python
def _get_upload_arguments(self, content_type): """Get required arguments for performing an upload. The content type returned will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The defaul...
[ "def", "_get_upload_arguments", "(", "self", ",", "content_type", ")", ":", "headers", "=", "_get_encryption_headers", "(", "self", ".", "_encryption_key", ")", "object_metadata", "=", "self", ".", "_get_writable_metadata", "(", ")", "content_type", "=", "self", "...
Get required arguments for performing an upload. The content type returned will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The default value ('application/octet-stream') :type conten...
[ "Get", "required", "arguments", "for", "performing", "an", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L761-L783
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._do_multipart_upload
def _do_multipart_upload( self, client, stream, content_type, size, num_retries, predefined_acl ): """Perform a multipart upload. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - T...
python
def _do_multipart_upload( self, client, stream, content_type, size, num_retries, predefined_acl ): """Perform a multipart upload. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - T...
[ "def", "_do_multipart_upload", "(", "self", ",", "client", ",", "stream", ",", "content_type", ",", "size", ",", "num_retries", ",", "predefined_acl", ")", ":", "if", "size", "is", "None", ":", "data", "=", "stream", ".", "read", "(", ")", "else", ":", ...
Perform a multipart upload. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The default value ('application/octet-stream') :type client: :class...
[ "Perform", "a", "multipart", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L785-L859
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._initiate_resumable_upload
def _initiate_resumable_upload( self, client, stream, content_type, size, num_retries, predefined_acl=None, extra_headers=None, chunk_size=None, ): """Initiate a resumable upload. The content type of the upload will be determin...
python
def _initiate_resumable_upload( self, client, stream, content_type, size, num_retries, predefined_acl=None, extra_headers=None, chunk_size=None, ): """Initiate a resumable upload. The content type of the upload will be determin...
[ "def", "_initiate_resumable_upload", "(", "self", ",", "client", ",", "stream", ",", "content_type", ",", "size", ",", "num_retries", ",", "predefined_acl", "=", "None", ",", "extra_headers", "=", "None", ",", "chunk_size", "=", "None", ",", ")", ":", "if", ...
Initiate a resumable upload. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The default value ('application/octet-stream') :type client: :clas...
[ "Initiate", "a", "resumable", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L861-L962
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._do_resumable_upload
def _do_resumable_upload( self, client, stream, content_type, size, num_retries, predefined_acl ): """Perform a resumable upload. Assumes ``chunk_size`` is not :data:`None` on the current blob. The content type of the upload will be determined in order of precedence: ...
python
def _do_resumable_upload( self, client, stream, content_type, size, num_retries, predefined_acl ): """Perform a resumable upload. Assumes ``chunk_size`` is not :data:`None` on the current blob. The content type of the upload will be determined in order of precedence: ...
[ "def", "_do_resumable_upload", "(", "self", ",", "client", ",", "stream", ",", "content_type", ",", "size", ",", "num_retries", ",", "predefined_acl", ")", ":", "upload", ",", "transport", "=", "self", ".", "_initiate_resumable_upload", "(", "client", ",", "st...
Perform a resumable upload. Assumes ``chunk_size`` is not :data:`None` on the current blob. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The...
[ "Perform", "a", "resumable", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L964-L1016
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob._do_upload
def _do_upload( self, client, stream, content_type, size, num_retries, predefined_acl ): """Determine an upload strategy and then perform the upload. If the size of the data to be uploaded exceeds 5 MB a resumable media request will be used, otherwise the content and the metadata wi...
python
def _do_upload( self, client, stream, content_type, size, num_retries, predefined_acl ): """Determine an upload strategy and then perform the upload. If the size of the data to be uploaded exceeds 5 MB a resumable media request will be used, otherwise the content and the metadata wi...
[ "def", "_do_upload", "(", "self", ",", "client", ",", "stream", ",", "content_type", ",", "size", ",", "num_retries", ",", "predefined_acl", ")", ":", "if", "size", "is", "not", "None", "and", "size", "<=", "_MAX_MULTIPART_SIZE", ":", "response", "=", "sel...
Determine an upload strategy and then perform the upload. If the size of the data to be uploaded exceeds 5 MB a resumable media request will be used, otherwise the content and the metadata will be uploaded in a single multipart upload request. The content type of the upload will be det...
[ "Determine", "an", "upload", "strategy", "and", "then", "perform", "the", "upload", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1018-L1070
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.upload_from_file
def upload_from_file( self, file_obj, rewind=False, size=None, content_type=None, num_retries=None, client=None, predefined_acl=None, ): """Upload the contents of this blob from a file-like object. The content type of the upload will b...
python
def upload_from_file( self, file_obj, rewind=False, size=None, content_type=None, num_retries=None, client=None, predefined_acl=None, ): """Upload the contents of this blob from a file-like object. The content type of the upload will b...
[ "def", "upload_from_file", "(", "self", ",", "file_obj", ",", "rewind", "=", "False", ",", "size", "=", "None", ",", "content_type", "=", "None", ",", "num_retries", "=", "None", ",", "client", "=", "None", ",", "predefined_acl", "=", "None", ",", ")", ...
Upload the contents of this blob from a file-like object. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The default value ('application/octet-stream')...
[ "Upload", "the", "contents", "of", "this", "blob", "from", "a", "file", "-", "like", "object", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1072-L1161
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.upload_from_filename
def upload_from_filename( self, filename, content_type=None, client=None, predefined_acl=None ): """Upload this blob's contents from the content of a named file. The content type of the upload will be determined in order of precedence: - The value passed in to this method (...
python
def upload_from_filename( self, filename, content_type=None, client=None, predefined_acl=None ): """Upload this blob's contents from the content of a named file. The content type of the upload will be determined in order of precedence: - The value passed in to this method (...
[ "def", "upload_from_filename", "(", "self", ",", "filename", ",", "content_type", "=", "None", ",", "client", "=", "None", ",", "predefined_acl", "=", "None", ")", ":", "content_type", "=", "self", ".", "_get_content_type", "(", "content_type", ",", "filename"...
Upload this blob's contents from the content of a named file. The content type of the upload will be determined in order of precedence: - The value passed in to this method (if not :data:`None`) - The value stored on the current blob - The value given by ``mimetypes.guess_type`...
[ "Upload", "this", "blob", "s", "contents", "from", "the", "content", "of", "a", "named", "file", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1163-L1213
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.upload_from_string
def upload_from_string( self, data, content_type="text/plain", client=None, predefined_acl=None ): """Upload contents of this blob from the provided string. .. note:: The effect of uploading to an existing blob depends on the "versioning" and "lifecycle" policies defin...
python
def upload_from_string( self, data, content_type="text/plain", client=None, predefined_acl=None ): """Upload contents of this blob from the provided string. .. note:: The effect of uploading to an existing blob depends on the "versioning" and "lifecycle" policies defin...
[ "def", "upload_from_string", "(", "self", ",", "data", ",", "content_type", "=", "\"text/plain\"", ",", "client", "=", "None", ",", "predefined_acl", "=", "None", ")", ":", "data", "=", "_to_bytes", "(", "data", ",", "encoding", "=", "\"utf-8\"", ")", "str...
Upload contents of this blob from the provided string. .. note:: The effect of uploading to an existing blob depends on the "versioning" and "lifecycle" policies defined on the blob's bucket. In the absence of those policies, upload will overwrite any existing conte...
[ "Upload", "contents", "of", "this", "blob", "from", "the", "provided", "string", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1215-L1258
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.create_resumable_upload_session
def create_resumable_upload_session( self, content_type=None, size=None, origin=None, client=None ): """Create a resumable upload session. Resumable upload sessions allow you to start an upload session from one client and complete the session in another. This method is called ...
python
def create_resumable_upload_session( self, content_type=None, size=None, origin=None, client=None ): """Create a resumable upload session. Resumable upload sessions allow you to start an upload session from one client and complete the session in another. This method is called ...
[ "def", "create_resumable_upload_session", "(", "self", ",", "content_type", "=", "None", ",", "size", "=", "None", ",", "origin", "=", "None", ",", "client", "=", "None", ")", ":", "extra_headers", "=", "{", "}", "if", "origin", "is", "not", "None", ":",...
Create a resumable upload session. Resumable upload sessions allow you to start an upload session from one client and complete the session in another. This method is called by the initiator to set the metadata and limits. The initiator then passes the session URL to the client that will...
[ "Create", "a", "resumable", "upload", "session", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1260-L1351
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.make_public
def make_public(self, client=None): """Update blob's ACL, granting read access to anonymous users. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls back to th...
python
def make_public(self, client=None): """Update blob's ACL, granting read access to anonymous users. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls back to th...
[ "def", "make_public", "(", "self", ",", "client", "=", "None", ")", ":", "self", ".", "acl", ".", "all", "(", ")", ".", "grant_read", "(", ")", "self", ".", "acl", ".", "save", "(", "client", "=", "client", ")" ]
Update blob's ACL, granting read access to anonymous users. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls back to the ``client`` stored on the blob's bucket.
[ "Update", "blob", "s", "ACL", "granting", "read", "access", "to", "anonymous", "users", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1474-L1483
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.make_private
def make_private(self, client=None): """Update blob's ACL, revoking read access for anonymous users. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls back to ...
python
def make_private(self, client=None): """Update blob's ACL, revoking read access for anonymous users. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls back to ...
[ "def", "make_private", "(", "self", ",", "client", "=", "None", ")", ":", "self", ".", "acl", ".", "all", "(", ")", ".", "revoke_read", "(", ")", "self", ".", "acl", ".", "save", "(", "client", "=", "client", ")" ]
Update blob's ACL, revoking read access for anonymous users. :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` :param client: Optional. The client to use. If not passed, falls back to the ``client`` stored on the blob's bucket.
[ "Update", "blob", "s", "ACL", "revoking", "read", "access", "for", "anonymous", "users", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1485-L1494
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.compose
def compose(self, sources, client=None): """Concatenate source blobs into this one. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type sources: list of :class:`Blob` :param sources: blobs whose contents will be composed into this blob. ...
python
def compose(self, sources, client=None): """Concatenate source blobs into this one. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type sources: list of :class:`Blob` :param sources: blobs whose contents will be composed into this blob. ...
[ "def", "compose", "(", "self", ",", "sources", ",", "client", "=", "None", ")", ":", "client", "=", "self", ".", "_require_client", "(", "client", ")", "query_params", "=", "{", "}", "if", "self", ".", "user_project", "is", "not", "None", ":", "query_p...
Concatenate source blobs into this one. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type sources: list of :class:`Blob` :param sources: blobs whose contents will be composed into this blob. :type client: :class:`~google.cloud.storage.c...
[ "Concatenate", "source", "blobs", "into", "this", "one", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1496-L1527
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.rewrite
def rewrite(self, source, token=None, client=None): """Rewrite source blob into this one. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type source: :class:`Blob` :param source: blob whose contents will be rewritten into this blob. ...
python
def rewrite(self, source, token=None, client=None): """Rewrite source blob into this one. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type source: :class:`Blob` :param source: blob whose contents will be rewritten into this blob. ...
[ "def", "rewrite", "(", "self", ",", "source", ",", "token", "=", "None", ",", "client", "=", "None", ")", ":", "client", "=", "self", ".", "_require_client", "(", "client", ")", "headers", "=", "_get_encryption_headers", "(", "self", ".", "_encryption_key"...
Rewrite source blob into this one. If :attr:`user_project` is set on the bucket, bills the API request to that project. :type source: :class:`Blob` :param source: blob whose contents will be rewritten into this blob. :type token: str :param token: Optional. Token retur...
[ "Rewrite", "source", "blob", "into", "this", "one", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1529-L1590
train
googleapis/google-cloud-python
storage/google/cloud/storage/blob.py
Blob.update_storage_class
def update_storage_class(self, new_class, client=None): """Update blob's storage class via a rewrite-in-place. This helper will wait for the rewrite to complete before returning, so it may take some time for large files. See https://cloud.google.com/storage/docs/per-object-stora...
python
def update_storage_class(self, new_class, client=None): """Update blob's storage class via a rewrite-in-place. This helper will wait for the rewrite to complete before returning, so it may take some time for large files. See https://cloud.google.com/storage/docs/per-object-stora...
[ "def", "update_storage_class", "(", "self", ",", "new_class", ",", "client", "=", "None", ")", ":", "if", "new_class", "not", "in", "self", ".", "_STORAGE_CLASSES", ":", "raise", "ValueError", "(", "\"Invalid storage class: %s\"", "%", "(", "new_class", ",", "...
Update blob's storage class via a rewrite-in-place. This helper will wait for the rewrite to complete before returning, so it may take some time for large files. See https://cloud.google.com/storage/docs/per-object-storage-class If :attr:`user_project` is set on the bucket, bil...
[ "Update", "blob", "s", "storage", "class", "via", "a", "rewrite", "-", "in", "-", "place", ".", "This", "helper", "will", "wait", "for", "the", "rewrite", "to", "complete", "before", "returning", "so", "it", "may", "take", "some", "time", "for", "large",...
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/storage/google/cloud/storage/blob.py#L1592-L1619
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
verify_path
def verify_path(path, is_collection): """Verifies that a ``path`` has the correct form. Checks that all of the elements in ``path`` are strings. Args: path (Tuple[str, ...]): The components in a collection or document path. is_collection (bool): Indicates if the ``path`` repres...
python
def verify_path(path, is_collection): """Verifies that a ``path`` has the correct form. Checks that all of the elements in ``path`` are strings. Args: path (Tuple[str, ...]): The components in a collection or document path. is_collection (bool): Indicates if the ``path`` repres...
[ "def", "verify_path", "(", "path", ",", "is_collection", ")", ":", "num_elements", "=", "len", "(", "path", ")", "if", "num_elements", "==", "0", ":", "raise", "ValueError", "(", "\"Document or collection path cannot be empty\"", ")", "if", "is_collection", ":", ...
Verifies that a ``path`` has the correct form. Checks that all of the elements in ``path`` are strings. Args: path (Tuple[str, ...]): The components in a collection or document path. is_collection (bool): Indicates if the ``path`` represents a document or a collection. ...
[ "Verifies", "that", "a", "path", "has", "the", "correct", "form", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L104-L137
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
encode_value
def encode_value(value): """Converts a native Python value into a Firestore protobuf ``Value``. Args: value (Union[NoneType, bool, int, float, datetime.datetime, \ str, bytes, dict, ~google.cloud.Firestore.GeoPoint]): A native Python value to convert to a protobuf field. Re...
python
def encode_value(value): """Converts a native Python value into a Firestore protobuf ``Value``. Args: value (Union[NoneType, bool, int, float, datetime.datetime, \ str, bytes, dict, ~google.cloud.Firestore.GeoPoint]): A native Python value to convert to a protobuf field. Re...
[ "def", "encode_value", "(", "value", ")", ":", "if", "value", "is", "None", ":", "return", "document_pb2", ".", "Value", "(", "null_value", "=", "struct_pb2", ".", "NULL_VALUE", ")", "# Must come before six.integer_types since ``bool`` is an integer subtype.", "if", "...
Converts a native Python value into a Firestore protobuf ``Value``. Args: value (Union[NoneType, bool, int, float, datetime.datetime, \ str, bytes, dict, ~google.cloud.Firestore.GeoPoint]): A native Python value to convert to a protobuf field. Returns: ~google.cloud.fir...
[ "Converts", "a", "native", "Python", "value", "into", "a", "Firestore", "protobuf", "Value", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L140-L201
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
encode_dict
def encode_dict(values_dict): """Encode a dictionary into protobuf ``Value``-s. Args: values_dict (dict): The dictionary to encode as protobuf fields. Returns: Dict[str, ~google.cloud.firestore_v1beta1.types.Value]: A dictionary of string keys and ``Value`` protobufs as dictionary ...
python
def encode_dict(values_dict): """Encode a dictionary into protobuf ``Value``-s. Args: values_dict (dict): The dictionary to encode as protobuf fields. Returns: Dict[str, ~google.cloud.firestore_v1beta1.types.Value]: A dictionary of string keys and ``Value`` protobufs as dictionary ...
[ "def", "encode_dict", "(", "values_dict", ")", ":", "return", "{", "key", ":", "encode_value", "(", "value", ")", "for", "key", ",", "value", "in", "six", ".", "iteritems", "(", "values_dict", ")", "}" ]
Encode a dictionary into protobuf ``Value``-s. Args: values_dict (dict): The dictionary to encode as protobuf fields. Returns: Dict[str, ~google.cloud.firestore_v1beta1.types.Value]: A dictionary of string keys and ``Value`` protobufs as dictionary values.
[ "Encode", "a", "dictionary", "into", "protobuf", "Value", "-", "s", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L204-L215
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
reference_value_to_document
def reference_value_to_document(reference_value, client): """Convert a reference value string to a document. Args: reference_value (str): A document reference value. client (~.firestore_v1beta1.client.Client): A client that has a document factory. Returns: ~.firestore_v...
python
def reference_value_to_document(reference_value, client): """Convert a reference value string to a document. Args: reference_value (str): A document reference value. client (~.firestore_v1beta1.client.Client): A client that has a document factory. Returns: ~.firestore_v...
[ "def", "reference_value_to_document", "(", "reference_value", ",", "client", ")", ":", "# The first 5 parts are", "# projects, {project}, databases, {database}, documents", "parts", "=", "reference_value", ".", "split", "(", "DOCUMENT_PATH_DELIMITER", ",", "5", ")", "if", "...
Convert a reference value string to a document. Args: reference_value (str): A document reference value. client (~.firestore_v1beta1.client.Client): A client that has a document factory. Returns: ~.firestore_v1beta1.document.DocumentReference: The document correspon...
[ "Convert", "a", "reference", "value", "string", "to", "a", "document", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L218-L249
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
decode_value
def decode_value(value, client): """Converts a Firestore protobuf ``Value`` to a native Python value. Args: value (google.cloud.firestore_v1beta1.types.Value): A Firestore protobuf to be decoded / parsed / converted. client (~.firestore_v1beta1.client.Client): A client that has ...
python
def decode_value(value, client): """Converts a Firestore protobuf ``Value`` to a native Python value. Args: value (google.cloud.firestore_v1beta1.types.Value): A Firestore protobuf to be decoded / parsed / converted. client (~.firestore_v1beta1.client.Client): A client that has ...
[ "def", "decode_value", "(", "value", ",", "client", ")", ":", "value_type", "=", "value", ".", "WhichOneof", "(", "\"value_type\"", ")", "if", "value_type", "==", "\"null_value\"", ":", "return", "None", "elif", "value_type", "==", "\"boolean_value\"", ":", "r...
Converts a Firestore protobuf ``Value`` to a native Python value. Args: value (google.cloud.firestore_v1beta1.types.Value): A Firestore protobuf to be decoded / parsed / converted. client (~.firestore_v1beta1.client.Client): A client that has a document factory. Returns...
[ "Converts", "a", "Firestore", "protobuf", "Value", "to", "a", "native", "Python", "value", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L252-L295
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
decode_dict
def decode_dict(value_fields, client): """Converts a protobuf map of Firestore ``Value``-s. Args: value_fields (google.protobuf.pyext._message.MessageMapContainer): A protobuf map of Firestore ``Value``-s. client (~.firestore_v1beta1.client.Client): A client that has a d...
python
def decode_dict(value_fields, client): """Converts a protobuf map of Firestore ``Value``-s. Args: value_fields (google.protobuf.pyext._message.MessageMapContainer): A protobuf map of Firestore ``Value``-s. client (~.firestore_v1beta1.client.Client): A client that has a d...
[ "def", "decode_dict", "(", "value_fields", ",", "client", ")", ":", "return", "{", "key", ":", "decode_value", "(", "value", ",", "client", ")", "for", "key", ",", "value", "in", "six", ".", "iteritems", "(", "value_fields", ")", "}" ]
Converts a protobuf map of Firestore ``Value``-s. Args: value_fields (google.protobuf.pyext._message.MessageMapContainer): A protobuf map of Firestore ``Value``-s. client (~.firestore_v1beta1.client.Client): A client that has a document factory. Returns: Dict[st...
[ "Converts", "a", "protobuf", "map", "of", "Firestore", "Value", "-", "s", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L298-L314
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
get_doc_id
def get_doc_id(document_pb, expected_prefix): """Parse a document ID from a document protobuf. Args: document_pb (google.cloud.proto.firestore.v1beta1.\ document_pb2.Document): A protobuf for a document that was created in a ``CreateDocument`` RPC. expected_prefix (str):...
python
def get_doc_id(document_pb, expected_prefix): """Parse a document ID from a document protobuf. Args: document_pb (google.cloud.proto.firestore.v1beta1.\ document_pb2.Document): A protobuf for a document that was created in a ``CreateDocument`` RPC. expected_prefix (str):...
[ "def", "get_doc_id", "(", "document_pb", ",", "expected_prefix", ")", ":", "prefix", ",", "document_id", "=", "document_pb", ".", "name", ".", "rsplit", "(", "DOCUMENT_PATH_DELIMITER", ",", "1", ")", "if", "prefix", "!=", "expected_prefix", ":", "raise", "Valu...
Parse a document ID from a document protobuf. Args: document_pb (google.cloud.proto.firestore.v1beta1.\ document_pb2.Document): A protobuf for a document that was created in a ``CreateDocument`` RPC. expected_prefix (str): The expected collection prefix for the f...
[ "Parse", "a", "document", "ID", "from", "a", "document", "protobuf", "." ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L317-L342
train
googleapis/google-cloud-python
firestore/google/cloud/firestore_v1beta1/_helpers.py
extract_fields
def extract_fields(document_data, prefix_path, expand_dots=False): """Do depth-first walk of tree, yielding field_path, value""" if not document_data: yield prefix_path, _EmptyDict else: for key, value in sorted(six.iteritems(document_data)): if expand_dots: sub_...
python
def extract_fields(document_data, prefix_path, expand_dots=False): """Do depth-first walk of tree, yielding field_path, value""" if not document_data: yield prefix_path, _EmptyDict else: for key, value in sorted(six.iteritems(document_data)): if expand_dots: sub_...
[ "def", "extract_fields", "(", "document_data", ",", "prefix_path", ",", "expand_dots", "=", "False", ")", ":", "if", "not", "document_data", ":", "yield", "prefix_path", ",", "_EmptyDict", "else", ":", "for", "key", ",", "value", "in", "sorted", "(", "six", ...
Do depth-first walk of tree, yielding field_path, value
[ "Do", "depth", "-", "first", "walk", "of", "tree", "yielding", "field_path", "value" ]
85e80125a59cb10f8cb105f25ecc099e4b940b50
https://github.com/googleapis/google-cloud-python/blob/85e80125a59cb10f8cb105f25ecc099e4b940b50/firestore/google/cloud/firestore_v1beta1/_helpers.py#L348-L366
train