From 623b1012e0c71838d3eda8d33cbcde541fa9ccb1 Mon Sep 17 00:00:00 2001 From: Jeff Scudder Date: Fri, 14 Aug 2026 14:06:23 -0700 Subject: [PATCH] chore: updating naming in GCS Utils docstrings PiperOrigin-RevId: 964879995 --- google/cloud/aiplatform/utils/gcs_utils.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/google/cloud/aiplatform/utils/gcs_utils.py b/google/cloud/aiplatform/utils/gcs_utils.py index a6727adf2d..6153504c15 100644 --- a/google/cloud/aiplatform/utils/gcs_utils.py +++ b/google/cloud/aiplatform/utils/gcs_utils.py @@ -287,7 +287,7 @@ def generate_gcs_directory_for_pipeline_artifacts( project: Optional[str] = None, location: Optional[str] = None, ): - """Gets or creates the GCS directory for Vertex Pipelines artifacts. + """Gets or creates the GCS directory for pipelines artifacts. Args: 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( location: Optional[str] = None, credentials: Optional[auth_credentials.Credentials] = None, ): - """Gets or creates the GCS directory for Vertex Pipelines artifacts. + """Gets or creates the GCS directory for pipelines artifacts. Args: 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( ) if not pipelines_bucket.exists(): - _logger.info( - f'Creating GCS bucket for Vertex Pipelines: "{pipelines_bucket.name}"' - ) + _logger.info(f'Creating GCS bucket for pipelines: "{pipelines_bucket.name}"') pipelines_bucket = storage_client.create_bucket( bucket_or_name=pipelines_bucket, project=project,