Skip to content

Commit 623b101

Browse files
jscudcopybara-github
authored andcommitted
chore: updating naming in GCS Utils docstrings
PiperOrigin-RevId: 964879995
1 parent d8fa0c8 commit 623b101

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

‎google/cloud/aiplatform/utils/gcs_utils.py‎

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def generate_gcs_directory_for_pipeline_artifacts(
287287
project: Optional[str] = None,
288288
location: Optional[str] = None,
289289
):
290-
"""Gets or creates the GCS directory for Vertex Pipelines artifacts.
290+
"""Gets or creates the GCS directory for pipelines artifacts.
291291
292292
Args:
293293
project: Optional. Google Cloud Project that contains the staging bucket.
@@ -311,7 +311,7 @@ def create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist(
311311
location: Optional[str] = None,
312312
credentials: Optional[auth_credentials.Credentials] = None,
313313
):
314-
"""Gets or creates the GCS directory for Vertex Pipelines artifacts.
314+
"""Gets or creates the GCS directory for pipelines artifacts.
315315
316316
Args:
317317
output_artifacts_gcs_dir: Optional. The GCS location for the pipeline outputs.
@@ -353,9 +353,7 @@ def create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist(
353353
)
354354

355355
if not pipelines_bucket.exists():
356-
_logger.info(
357-
f'Creating GCS bucket for Vertex Pipelines: "{pipelines_bucket.name}"'
358-
)
356+
_logger.info(f'Creating GCS bucket for pipelines: "{pipelines_bucket.name}"')
359357
pipelines_bucket = storage_client.create_bucket(
360358
bucket_or_name=pipelines_bucket,
361359
project=project,

0 commit comments

Comments
 (0)