Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typos #1709

Merged
merged 1 commit into from
Sep 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion google/cloud/aiplatform/datasets/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def export_data(self, output_dir: str) -> Sequence[str]:
"""
self.wait()

# TODO(b/171311614): Add support for BiqQuery export path
# TODO(b/171311614): Add support for BigQuery export path
export_data_config = gca_dataset.ExportDataConfig(
gcs_destination=gca_io.GcsDestination(output_uri_prefix=output_dir)
)
Expand Down
4 changes: 2 additions & 2 deletions google/cloud/aiplatform/featurestore/entity_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,10 +833,10 @@ def _validate_and_get_import_feature_values_request(
- A single Feature timestamp for all entities
being imported. The timestamp must not have
higher than millisecond precision.
data_source (Union[gca_io.AvroSource, gca_io.BiqQuerySource, gca_io.CsvSource]):
data_source (Union[gca_io.AvroSource, gca_io.BigQuerySource, gca_io.CsvSource]):
Required. The data_source can be one of:
- AvroSource
- BiqQuerySource
- BigQuerySource
- CsvSource
feature_source_fields (Dict[str, str]):
Optional. User defined dictionary to map ID of the Feature for importing values
Expand Down
8 changes: 4 additions & 4 deletions google/cloud/aiplatform/training_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3012,7 +3012,7 @@ def run(
Private services access must already be configured for the network.
If left unspecified, the job is not peered with any network.
bigquery_destination (str):
Provide this field if `dataset` is a BiqQuery dataset.
Provide this field if `dataset` is a BigQuery dataset.
The BigQuery project location where the training data is to
be written to. In the given project a new dataset is created
with name
Expand Down Expand Up @@ -3328,7 +3328,7 @@ def _run(
Private services access must already be configured for the network.
If left unspecified, the job is not peered with any network.
bigquery_destination (str):
Provide this field if `dataset` is a BiqQuery dataset.
Provide this field if `dataset` is a BigQuery dataset.
The BigQuery project location where the training data is to
be written to. In the given project a new dataset is created
with name
Expand Down Expand Up @@ -3921,7 +3921,7 @@ def run(
Private services access must already be configured for the network.
If left unspecified, the job is not peered with any network.
bigquery_destination (str):
Provide this field if `dataset` is a BiqQuery dataset.
Provide this field if `dataset` is a BigQuery dataset.
The BigQuery project location where the training data is to
be written to. In the given project a new dataset is created
with name
Expand Down Expand Up @@ -6348,7 +6348,7 @@ def run(
Private services access must already be configured for the network.
If left unspecified, the job is not peered with any network.
bigquery_destination (str):
Provide this field if `dataset` is a BiqQuery dataset.
Provide this field if `dataset` is a BigQuery dataset.
The BigQuery project location where the training data is to
be written to. In the given project a new dataset is created
with name
Expand Down