From 944b03fc9bd7f1d69f6852c65286b72f49f425df Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Fri, 9 Sep 2022 09:04:11 -0400 Subject: [PATCH 01/12] feat: add eval metrics types to get_experiment_df (#1648) Co-authored-by: sina chavoshi --- google/cloud/aiplatform/metadata/constants.py | 3 +++ google/cloud/aiplatform/pipeline_jobs.py | 8 ++++++-- tests/unit/aiplatform/test_metadata.py | 7 ++++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/google/cloud/aiplatform/metadata/constants.py b/google/cloud/aiplatform/metadata/constants.py index 2dd0c4db86..01c4b25b1a 100644 --- a/google/cloud/aiplatform/metadata/constants.py +++ b/google/cloud/aiplatform/metadata/constants.py @@ -22,6 +22,9 @@ SYSTEM_PIPELINE = "system.Pipeline" SYSTEM_PIPELINE_RUN = "system.PipelineRun" SYSTEM_METRICS = "system.Metrics" +GOOGLE_CLASSIFICATION_METRICS = "google.ClassificationMetrics" +GOOGLE_REGRESSION_METRICS = "google.RegressionMetrics" +GOOGLE_FORECASTING_METRICS = "google.ForecastingMetrics" _EXPERIMENTS_V2_TENSORBOARD_RUN = "google.VertexTensorboardRun" diff --git a/google/cloud/aiplatform/pipeline_jobs.py b/google/cloud/aiplatform/pipeline_jobs.py index 2a3914efea..afc5dd86ad 100644 --- a/google/cloud/aiplatform/pipeline_jobs.py +++ b/google/cloud/aiplatform/pipeline_jobs.py @@ -639,10 +639,14 @@ def _query_experiment_row( credentials=node.credentials, filter=metadata_utils._make_filter_string( in_context=[node.resource_name], - schema_title=metadata_constants.SYSTEM_METRICS, + schema_title=[ + metadata_constants.SYSTEM_METRICS, + metadata_constants.GOOGLE_CLASSIFICATION_METRICS, + metadata_constants.GOOGLE_REGRESSION_METRICS, + metadata_constants.GOOGLE_FORECASTING_METRICS, + ], ), ) - row = experiment_resources._ExperimentRow( experiment_run_type=node.schema_title, name=node.display_name ) diff --git a/tests/unit/aiplatform/test_metadata.py b/tests/unit/aiplatform/test_metadata.py index 514bdb84bd..ffade4976d 100644 --- a/tests/unit/aiplatform/test_metadata.py +++ b/tests/unit/aiplatform/test_metadata.py @@ -1352,7 +1352,12 @@ def test_get_experiment_df( expected_filter = metadata_utils._make_filter_string( in_context=[_TEST_PIPELINE_CONTEXT.name], - schema_title=constants.SYSTEM_METRICS, + schema_title=[ + constants.SYSTEM_METRICS, + constants.GOOGLE_CLASSIFICATION_METRICS, + constants.GOOGLE_REGRESSION_METRICS, + constants.GOOGLE_FORECASTING_METRICS, + ], ) list_artifact_mock_for_experiment_dataframe.assert_has_calls( From 76a3f59d41b447151d978ca33362f6404fd01ca0 Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Fri, 9 Sep 2022 10:21:14 -0400 Subject: [PATCH 02/12] Revert "chore: e2e tabular system test improvement (#1627)" (#1651) This reverts commit fb2936d9b7ae875db20c20fd8f4a6d0e88551454. --- tests/system/aiplatform/e2e_base.py | 14 +++---- tests/system/aiplatform/test_e2e_tabular.py | 41 ++++++++------------- 2 files changed, 23 insertions(+), 32 deletions(-) diff --git a/tests/system/aiplatform/e2e_base.py b/tests/system/aiplatform/e2e_base.py index 2b7c468397..9d3bc31a8d 100644 --- a/tests/system/aiplatform/e2e_base.py +++ b/tests/system/aiplatform/e2e_base.py @@ -35,12 +35,6 @@ _VPC_NETWORK_URI = os.getenv("_VPC_NETWORK_URI") _LOCATION = "us-central1" -_PROJECT_NUMBER = ( - resourcemanager.ProjectsClient() - .get_project(name=f"projects/{_PROJECT}") - .name.split("/", 1)[1] -) - class TestEndToEnd(metaclass=abc.ABCMeta): @property @@ -92,7 +86,13 @@ def prepare_staging_bucket( # TODO(#1415) Once PR Is merged, use the added utilities to # provide create/view access to Pipeline's default service account (compute) - service_account = f"{_PROJECT_NUMBER}-compute@developer.gserviceaccount.com" + project_number = ( + resourcemanager.ProjectsClient() + .get_project(name=f"projects/{_PROJECT}") + .name.split("/", 1)[1] + ) + + service_account = f"{project_number}-compute@developer.gserviceaccount.com" bucket_iam_policy = bucket.get_iam_policy() bucket_iam_policy.setdefault("roles/storage.objectCreator", set()).add( f"serviceAccount:{service_account}" diff --git a/tests/system/aiplatform/test_e2e_tabular.py b/tests/system/aiplatform/test_e2e_tabular.py index feb8ed5cbe..6746e816a9 100644 --- a/tests/system/aiplatform/test_e2e_tabular.py +++ b/tests/system/aiplatform/test_e2e_tabular.py @@ -16,7 +16,6 @@ # import os -import time from urllib import request import pytest @@ -46,8 +45,6 @@ "median_income": 3.014700, } -_PERMANENT_AUTOML_MODEL_RESOURCE_NAME = f"projects/{e2e_base._PROJECT_NUMBER}/locations/us-central1/models/6591277539400876032" - @pytest.mark.usefixtures( "prepare_staging_bucket", "delete_staging_bucket", "tear_down_resources" @@ -81,6 +78,7 @@ def test_end_to_end_tabular(self, shared_state): ) # Create and import to single managed dataset for both training jobs + dataset_gcs_source = f'gs://{shared_state["staging_bucket_name"]}/{_BLOB_PATH}' ds = aiplatform.TabularDataset.create( @@ -93,6 +91,7 @@ def test_end_to_end_tabular(self, shared_state): shared_state["resources"].extend([ds]) # Define both training jobs + custom_job = aiplatform.CustomTrainingJob( display_name=self._make_display_name("train-housing-custom"), script_path=_LOCAL_TRAINING_SCRIPT_PATH, @@ -107,7 +106,8 @@ def test_end_to_end_tabular(self, shared_state): optimization_objective="minimize-rmse", ) - # Kick off both training jobs to check they are started correctly, then cancel the AutoML job + # Kick off both training jobs, AutoML job will take approx one hour to run + custom_model = custom_job.run( ds, replica_count=1, @@ -119,32 +119,21 @@ def test_end_to_end_tabular(self, shared_state): create_request_timeout=None, ) - automl_job.run( + automl_model = automl_job.run( dataset=ds, target_column="median_house_value", model_display_name=self._make_display_name("automl-housing-model"), sync=False, ) - while ( - automl_job.state != gca_pipeline_state.PipelineState.PIPELINE_STATE_RUNNING - ): - time.sleep(5) - - # Cancel the AutoML job once it's successfully been created, this is async - automl_job.cancel() - - shared_state["resources"].extend([custom_job, custom_model]) + shared_state["resources"].extend( + [automl_job, automl_model, custom_job, custom_model] + ) - # Deploy the custom model after training completes + # Deploy both models after training completes custom_endpoint = custom_model.deploy(machine_type="n1-standard-4", sync=False) - - # Create a reference to the permanent AutoML model and deloy it to a temporary endpoint - automl_model = aiplatform.Model( - model_name=_PERMANENT_AUTOML_MODEL_RESOURCE_NAME - ) automl_endpoint = automl_model.deploy(machine_type="n1-standard-4", sync=False) - shared_state["resources"].extend([custom_endpoint, automl_endpoint]) + shared_state["resources"].extend([automl_endpoint, custom_endpoint]) custom_batch_prediction_job = custom_model.batch_predict( job_display_name=self._make_display_name("automl-housing-model"), @@ -160,6 +149,7 @@ def test_end_to_end_tabular(self, shared_state): in_progress_done_check = custom_job.done() custom_job.wait_for_resource_creation() + automl_job.wait_for_resource_creation() custom_batch_prediction_job.wait_for_resource_creation() # Send online prediction with same instance to both deployed models @@ -182,6 +172,7 @@ def test_end_to_end_tabular(self, shared_state): custom_batch_prediction_job.wait() + automl_endpoint.wait() automl_prediction = automl_endpoint.predict( [{k: str(v) for k, v in _INSTANCE.items()}], # Cast int values to strings timeout=180.0, @@ -199,12 +190,12 @@ def test_end_to_end_tabular(self, shared_state): == gca_pipeline_state.PipelineState.PIPELINE_STATE_SUCCEEDED ) assert ( - custom_batch_prediction_job.state - == gca_job_state.JobState.JOB_STATE_SUCCEEDED + automl_job.state + == gca_pipeline_state.PipelineState.PIPELINE_STATE_SUCCEEDED ) assert ( - automl_job.state - == gca_pipeline_state.PipelineState.PIPELINE_STATE_CANCELLED + custom_batch_prediction_job.state + == gca_job_state.JobState.JOB_STATE_SUCCEEDED ) # Ensure a single prediction was returned From 2bc9b2b0d048c29ba43c8b4c3ea51370515d08c3 Mon Sep 17 00:00:00 2001 From: Alexey Volkov Date: Fri, 9 Sep 2022 11:44:23 -0700 Subject: [PATCH 03/12] tests: Added a unit test that checks the arguments that the PipelineJob.submit method passes to gcs_utils.create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist (#1547) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-aiplatform/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes # 🦕 --- tests/unit/aiplatform/test_pipeline_jobs.py | 41 ++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/tests/unit/aiplatform/test_pipeline_jobs.py b/tests/unit/aiplatform/test_pipeline_jobs.py index 72d0ebcec1..4e24332450 100644 --- a/tests/unit/aiplatform/test_pipeline_jobs.py +++ b/tests/unit/aiplatform/test_pipeline_jobs.py @@ -53,6 +53,7 @@ _TEST_PIPELINE_JOB_DISPLAY_NAME = "sample-pipeline-job-display-name" _TEST_PIPELINE_JOB_ID = "sample-test-pipeline-202111111" _TEST_GCS_BUCKET_NAME = "my-bucket" +_TEST_GCS_OUTPUT_DIRECTORY = f"gs://{_TEST_GCS_BUCKET_NAME}/output_artifacts/" _TEST_CREDENTIALS = auth_credentials.AnonymousCredentials() _TEST_SERVICE_ACCOUNT = "abcde@my-project.iam.gserviceaccount.com" @@ -249,7 +250,7 @@ def mock_create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist( with mock.patch( "google.cloud.aiplatform.utils.gcs_utils.create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist", - new=mock_create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist, + wraps=mock_create_gcs_bucket_for_pipeline_artifacts_if_it_does_not_exist, ) as mock_context: yield mock_context @@ -1097,6 +1098,44 @@ def test_submit_call_pipeline_service_pipeline_job_create( gca_pipeline_state.PipelineState.PIPELINE_STATE_SUCCEEDED ) + @pytest.mark.parametrize( + "job_spec", + [_TEST_PIPELINE_SPEC_JSON, _TEST_PIPELINE_SPEC_YAML, _TEST_PIPELINE_JOB], + ) + def test_submit_call_gcs_utils_get_or_create_with_correct_arguments( + self, + mock_pipeline_service_create, + mock_pipeline_service_get, + mock_pipeline_bucket_exists, + job_spec, + mock_load_yaml_and_json, + ): + job = pipeline_jobs.PipelineJob( + display_name=_TEST_PIPELINE_JOB_DISPLAY_NAME, + template_path=_TEST_TEMPLATE_PATH, + job_id=_TEST_PIPELINE_JOB_ID, + parameter_values=_TEST_PIPELINE_PARAMETER_VALUES, + enable_caching=True, + project=_TEST_PROJECT, + pipeline_root=_TEST_GCS_OUTPUT_DIRECTORY, + location=_TEST_LOCATION, + credentials=_TEST_CREDENTIALS, + ) + + job.submit( + service_account=_TEST_SERVICE_ACCOUNT, + network=_TEST_NETWORK, + create_request_timeout=None, + ) + + mock_pipeline_bucket_exists.assert_called_once_with( + output_artifacts_gcs_dir=_TEST_GCS_OUTPUT_DIRECTORY, + service_account=_TEST_SERVICE_ACCOUNT, + project=_TEST_PROJECT, + location=_TEST_LOCATION, + credentials=_TEST_CREDENTIALS, + ) + @pytest.mark.parametrize( "job_spec", [_TEST_PIPELINE_SPEC_JSON, _TEST_PIPELINE_SPEC_YAML, _TEST_PIPELINE_JOB], From f4766dc288904ae504e9559c535907c7497e04a9 Mon Sep 17 00:00:00 2001 From: nayaknishant Date: Mon, 12 Sep 2022 09:36:58 -0700 Subject: [PATCH 04/12] feat: adding Python 3.10 support + updating google-vizier version (#1644) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: adding Python 3.10 support * adding related files for 3.10 support * 3.9 => 3.10 edit * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * adding pytype dependency * changing google-vizier from 0.0.3a to 0.0.4 Co-authored-by: Anthonios Partheniou Co-authored-by: Owl Bot Co-authored-by: Rosie Zou --- CONTRIBUTING.rst | 6 ++++-- google/cloud/aiplatform/vizier/pyvizier/__init__.py | 2 +- noxfile.py | 2 +- owlbot.py | 2 +- setup.py | 3 ++- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index bdf18d174f..953a2fc715 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -22,7 +22,7 @@ In order to add a feature: documentation. - The feature must work fully on the following CPython versions: - 3.7, 3.8 and 3.9 on both UNIX and Windows. + 3.7, 3.8, 3.9 and 3.10 on both UNIX and Windows. - The feature must not add unnecessary dependencies (where "unnecessary" is of course subjective, but new dependencies should @@ -72,7 +72,7 @@ We use `nox `__ to instrument our tests. - To run a single unit test:: - $ nox -s unit-3.9 -- -k + $ nox -s unit-3.10 -- -k .. note:: @@ -224,10 +224,12 @@ We support: - `Python 3.7`_ - `Python 3.8`_ - `Python 3.9`_ +- `Python 3.10`_ .. _Python 3.7: https://docs.python.org/3.7/ .. _Python 3.8: https://docs.python.org/3.8/ .. _Python 3.9: https://docs.python.org/3.9/ +.. _Python 3.10: https://docs.python.org/3.10/ Supported versions can be found in our ``noxfile.py`` `config`_. diff --git a/google/cloud/aiplatform/vizier/pyvizier/__init__.py b/google/cloud/aiplatform/vizier/pyvizier/__init__.py index 6c5dfc412b..00528454a7 100644 --- a/google/cloud/aiplatform/vizier/pyvizier/__init__.py +++ b/google/cloud/aiplatform/vizier/pyvizier/__init__.py @@ -33,7 +33,7 @@ except ImportError: raise ImportError( "Google-vizier is not installed, and is required to use Vizier client." - 'Please install the SDK using "pip install google-vizier==0.0.3a"' + 'Please install the SDK using "pip install google-vizier==0.0.4"' ) from google.cloud.aiplatform.vizier.pyvizier.proto_converters import TrialConverter diff --git a/noxfile.py b/noxfile.py index 53d4d55009..b2809b5073 100644 --- a/noxfile.py +++ b/noxfile.py @@ -31,7 +31,7 @@ DEFAULT_PYTHON_VERSION = "3.8" -UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9"] +UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"] UNIT_TEST_STANDARD_DEPENDENCIES = [ "mock", "asyncmock", diff --git a/owlbot.py b/owlbot.py index 6ad61e2a76..45c5dda553 100644 --- a/owlbot.py +++ b/owlbot.py @@ -88,7 +88,7 @@ templated_files = common.py_library( cov_level=98, system_test_python_versions=["3.8"], - unit_test_python_versions=["3.7", "3.8", "3.9"], + unit_test_python_versions=["3.7", "3.8", "3.9", "3.10"], unit_test_extras=["testing"], system_test_extras=["testing"], microgenerator=True, diff --git a/setup.py b/setup.py index 3f63c8393e..e118b86574 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ "portpicker==1.3.1", "googleapis-common-protos==1.56.0", "google-api-python-client==1.12.8", - "google-vizier==0.0.3a", + "google-vizier==0.0.4", ] prediction_extra_require = [ @@ -161,6 +161,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", ], From fe9b369bf6869c2d8ce037fbb0b56110c1002606 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 14:43:32 -0700 Subject: [PATCH 05/12] chore: bump gapic-generator-python to version 1.4.0 (#1645) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: Bump gapic-generator-python version to 1.3.0 PiperOrigin-RevId: 472561635 Source-Link: https://github.com/googleapis/googleapis/commit/332ecf599f8e747d8d1213b77ae7db26eff12814 Source-Link: https://github.com/googleapis/googleapis-gen/commit/4313d682880fd9d7247291164d4e9d3d5bd9f177 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNDMxM2Q2ODI4ODBmZDlkNzI0NzI5MTE2NGQ0ZTlkM2Q1YmQ5ZjE3NyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: use gapic-generator-python 1.3.1 PiperOrigin-RevId: 472772457 Source-Link: https://github.com/googleapis/googleapis/commit/855b74d203deeb0f7a0215f9454cdde62a1f9b86 Source-Link: https://github.com/googleapis/googleapis-gen/commit/b64b1e7da3e138f15ca361552ef0545e54891b4f Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjY0YjFlN2RhM2UxMzhmMTVjYTM2MTU1MmVmMDU0NWU1NDg5MWI0ZiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: bump gapic-generator-python to version 1.4.0 PiperOrigin-RevId: 472872910 Source-Link: https://github.com/googleapis/googleapis/commit/89404eeb9836ae2c74a508447687d2316479e189 Source-Link: https://github.com/googleapis/googleapis-gen/commit/f19e0dc32a51718896a97dd4f19acbed21a319ec Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZjE5ZTBkYzMyYTUxNzE4ODk2YTk3ZGQ0ZjE5YWNiZWQyMWEzMTllYyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix: Fix borinssl build failure on gcc12 PiperOrigin-RevId: 473044059 Source-Link: https://github.com/googleapis/googleapis/commit/fa86bc39f102c755e2814af84899cd5465523a6b Source-Link: https://github.com/googleapis/googleapis-gen/commit/43ce624df25d7854b7051b958f4e983ec8132000 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNDNjZTYyNGRmMjVkNzg1NGI3MDUxYjk1OGY0ZTk4M2VjODEzMjAwMCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot Co-authored-by: Anthonios Partheniou Co-authored-by: gcf-merge-on-green[bot] <60162190+gcf-merge-on-green[bot]@users.noreply.github.com> Co-authored-by: Yu-Han Liu --- .../services/dataset_service/async_client.py | 79 +- .../services/dataset_service/client.py | 79 +- .../services/endpoint_service/async_client.py | 49 + .../services/endpoint_service/client.py | 49 + .../async_client.py | 20 +- .../client.py | 20 +- .../featurestore_service/async_client.py | 148 +- .../services/featurestore_service/client.py | 148 +- .../index_endpoint_service/async_client.py | 56 + .../services/index_endpoint_service/client.py | 56 + .../services/index_service/async_client.py | 49 + .../services/index_service/client.py | 49 + .../services/job_service/async_client.py | 200 +- .../services/job_service/client.py | 200 +- .../services/metadata_service/async_client.py | 217 + .../services/metadata_service/client.py | 217 + .../migration_service/async_client.py | 14 + .../services/migration_service/client.py | 32 +- .../services/model_service/async_client.py | 107 +- .../services/model_service/client.py | 107 +- .../services/pipeline_service/async_client.py | 70 + .../services/pipeline_service/client.py | 70 + .../prediction_service/async_client.py | 21 + .../services/prediction_service/client.py | 21 + .../specialist_pool_service/async_client.py | 35 + .../specialist_pool_service/client.py | 35 + .../tensorboard_service/async_client.py | 198 +- .../services/tensorboard_service/client.py | 198 +- .../services/vizier_service/async_client.py | 105 + .../services/vizier_service/client.py | 105 + .../services/dataset_service/async_client.py | 79 +- .../services/dataset_service/client.py | 79 +- .../async_client.py | 35 + .../client.py | 35 + .../services/endpoint_service/async_client.py | 49 + .../services/endpoint_service/client.py | 49 + .../async_client.py | 27 +- .../client.py | 27 +- .../featurestore_service/async_client.py | 148 +- .../services/featurestore_service/client.py | 148 +- .../index_endpoint_service/async_client.py | 56 + .../services/index_endpoint_service/client.py | 56 + .../services/index_service/async_client.py | 49 + .../services/index_service/client.py | 49 + .../services/job_service/async_client.py | 200 +- .../services/job_service/client.py | 200 +- .../services/metadata_service/async_client.py | 217 + .../services/metadata_service/client.py | 217 + .../migration_service/async_client.py | 14 + .../services/migration_service/client.py | 32 +- .../services/model_service/async_client.py | 114 +- .../services/model_service/client.py | 114 +- .../services/pipeline_service/async_client.py | 70 + .../services/pipeline_service/client.py | 70 + .../prediction_service/async_client.py | 21 + .../services/prediction_service/client.py | 21 + .../specialist_pool_service/async_client.py | 35 + .../specialist_pool_service/client.py | 35 + .../tensorboard_service/async_client.py | 198 +- .../services/tensorboard_service/client.py | 198 +- .../services/vizier_service/async_client.py | 105 + .../services/vizier_service/client.py | 105 + mypy.ini | 2 +- ...ed_dataset_service_create_dataset_async.py | 7 + ...ted_dataset_service_create_dataset_sync.py | 7 + ...ed_dataset_service_delete_dataset_async.py | 7 + ...ted_dataset_service_delete_dataset_sync.py | 7 + ...rated_dataset_service_export_data_async.py | 7 + ...erated_dataset_service_export_data_sync.py | 7 + ...taset_service_get_annotation_spec_async.py | 7 + ...ataset_service_get_annotation_spec_sync.py | 7 + ...rated_dataset_service_get_dataset_async.py | 7 + ...erated_dataset_service_get_dataset_sync.py | 7 + ...rated_dataset_service_import_data_async.py | 9 +- ...erated_dataset_service_import_data_sync.py | 9 +- ..._dataset_service_list_annotations_async.py | 7 + ...d_dataset_service_list_annotations_sync.py | 7 + ...d_dataset_service_list_data_items_async.py | 7 + ...ed_dataset_service_list_data_items_sync.py | 7 + ...ted_dataset_service_list_datasets_async.py | 7 + ...ated_dataset_service_list_datasets_sync.py | 7 + ...ataset_service_list_saved_queries_async.py | 7 + ...dataset_service_list_saved_queries_sync.py | 7 + ...ed_dataset_service_update_dataset_async.py | 7 + ...ted_dataset_service_update_dataset_sync.py | 7 + ..._endpoint_service_create_endpoint_async.py | 7 + ...d_endpoint_service_create_endpoint_sync.py | 7 + ..._endpoint_service_delete_endpoint_async.py | 7 + ...d_endpoint_service_delete_endpoint_sync.py | 7 + ...ted_endpoint_service_deploy_model_async.py | 7 + ...ated_endpoint_service_deploy_model_sync.py | 7 + ...ted_endpoint_service_get_endpoint_async.py | 7 + ...ated_endpoint_service_get_endpoint_sync.py | 7 + ...d_endpoint_service_list_endpoints_async.py | 7 + ...ed_endpoint_service_list_endpoints_sync.py | 7 + ...d_endpoint_service_undeploy_model_async.py | 7 + ...ed_endpoint_service_undeploy_model_sync.py | 7 + ..._endpoint_service_update_endpoint_async.py | 7 + ...d_endpoint_service_update_endpoint_sync.py | 7 + ...rving_service_read_feature_values_async.py | 9 +- ...erving_service_read_feature_values_sync.py | 9 +- ...ice_streaming_read_feature_values_async.py | 11 +- ...vice_streaming_read_feature_values_sync.py | 11 +- ...ore_service_batch_create_features_async.py | 7 + ...tore_service_batch_create_features_sync.py | 7 + ...service_batch_read_feature_values_async.py | 11 +- ..._service_batch_read_feature_values_sync.py | 11 +- ...estore_service_create_entity_type_async.py | 7 + ...restore_service_create_entity_type_sync.py | 7 + ...aturestore_service_create_feature_async.py | 7 + ...eaturestore_service_create_feature_sync.py | 7 + ...store_service_create_featurestore_async.py | 7 + ...estore_service_create_featurestore_sync.py | 7 + ...estore_service_delete_entity_type_async.py | 7 + ...restore_service_delete_entity_type_sync.py | 7 + ...aturestore_service_delete_feature_async.py | 7 + ...eaturestore_service_delete_feature_sync.py | 7 + ...store_service_delete_featurestore_async.py | 7 + ...estore_service_delete_featurestore_sync.py | 7 + ...ore_service_export_feature_values_async.py | 9 +- ...tore_service_export_feature_values_sync.py | 9 +- ...turestore_service_get_entity_type_async.py | 7 + ...aturestore_service_get_entity_type_sync.py | 7 + ..._featurestore_service_get_feature_async.py | 7 + ...d_featurestore_service_get_feature_sync.py | 7 + ...urestore_service_get_featurestore_async.py | 7 + ...turestore_service_get_featurestore_sync.py | 7 + ...ore_service_import_feature_values_async.py | 9 +- ...tore_service_import_feature_values_sync.py | 9 +- ...restore_service_list_entity_types_async.py | 7 + ...urestore_service_list_entity_types_sync.py | 7 + ...eaturestore_service_list_features_async.py | 7 + ...featurestore_service_list_features_sync.py | 7 + ...estore_service_list_featurestores_async.py | 7 + ...restore_service_list_featurestores_sync.py | 7 + ...turestore_service_search_features_async.py | 7 + ...aturestore_service_search_features_sync.py | 7 + ...estore_service_update_entity_type_async.py | 7 + ...restore_service_update_entity_type_sync.py | 7 + ...aturestore_service_update_feature_async.py | 7 + ...eaturestore_service_update_feature_sync.py | 7 + ...store_service_update_featurestore_async.py | 7 + ...estore_service_update_featurestore_sync.py | 7 + ...int_service_create_index_endpoint_async.py | 7 + ...oint_service_create_index_endpoint_sync.py | 7 + ...int_service_delete_index_endpoint_async.py | 7 + ...oint_service_delete_index_endpoint_sync.py | 7 + ...dex_endpoint_service_deploy_index_async.py | 7 + ...ndex_endpoint_service_deploy_index_sync.py | 7 + ...dpoint_service_get_index_endpoint_async.py | 7 + ...ndpoint_service_get_index_endpoint_sync.py | 7 + ...oint_service_list_index_endpoints_async.py | 7 + ...point_service_list_index_endpoints_sync.py | 7 + ...int_service_mutate_deployed_index_async.py | 7 + ...oint_service_mutate_deployed_index_sync.py | 7 + ...x_endpoint_service_undeploy_index_async.py | 7 + ...ex_endpoint_service_undeploy_index_sync.py | 7 + ...int_service_update_index_endpoint_async.py | 7 + ...oint_service_update_index_endpoint_sync.py | 7 + ...erated_index_service_create_index_async.py | 7 + ...nerated_index_service_create_index_sync.py | 7 + ...erated_index_service_delete_index_async.py | 7 + ...nerated_index_service_delete_index_sync.py | 7 + ...generated_index_service_get_index_async.py | 7 + ..._generated_index_service_get_index_sync.py | 7 + ...erated_index_service_list_indexes_async.py | 7 + ...nerated_index_service_list_indexes_sync.py | 7 + ...d_index_service_remove_datapoints_async.py | 7 + ...ed_index_service_remove_datapoints_sync.py | 7 + ...erated_index_service_update_index_async.py | 7 + ...nerated_index_service_update_index_sync.py | 7 + ...d_index_service_upsert_datapoints_async.py | 7 + ...ed_index_service_upsert_datapoints_sync.py | 7 + ...rvice_cancel_batch_prediction_job_async.py | 7 + ...ervice_cancel_batch_prediction_job_sync.py | 7 + ...ted_job_service_cancel_custom_job_async.py | 7 + ...ated_job_service_cancel_custom_job_sync.py | 7 + ..._service_cancel_data_labeling_job_async.py | 7 + ...b_service_cancel_data_labeling_job_sync.py | 7 + ..._cancel_hyperparameter_tuning_job_async.py | 7 + ...e_cancel_hyperparameter_tuning_job_sync.py | 7 + ...rvice_create_batch_prediction_job_async.py | 9 +- ...ervice_create_batch_prediction_job_sync.py | 9 +- ...ted_job_service_create_custom_job_async.py | 7 + ...ated_job_service_create_custom_job_sync.py | 7 + ..._service_create_data_labeling_job_async.py | 9 +- ...b_service_create_data_labeling_job_sync.py | 9 +- ..._create_hyperparameter_tuning_job_async.py | 7 + ...e_create_hyperparameter_tuning_job_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...te_model_deployment_monitoring_job_sync.py | 7 + ...rvice_delete_batch_prediction_job_async.py | 7 + ...ervice_delete_batch_prediction_job_sync.py | 7 + ...ted_job_service_delete_custom_job_async.py | 7 + ...ated_job_service_delete_custom_job_sync.py | 7 + ..._service_delete_data_labeling_job_async.py | 7 + ...b_service_delete_data_labeling_job_sync.py | 7 + ..._delete_hyperparameter_tuning_job_async.py | 7 + ...e_delete_hyperparameter_tuning_job_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...te_model_deployment_monitoring_job_sync.py | 7 + ..._service_get_batch_prediction_job_async.py | 7 + ...b_service_get_batch_prediction_job_sync.py | 7 + ...erated_job_service_get_custom_job_async.py | 7 + ...nerated_job_service_get_custom_job_sync.py | 7 + ...job_service_get_data_labeling_job_async.py | 7 + ..._job_service_get_data_labeling_job_sync.py | 7 + ...ice_get_hyperparameter_tuning_job_async.py | 7 + ...vice_get_hyperparameter_tuning_job_sync.py | 7 + ...t_model_deployment_monitoring_job_async.py | 7 + ...et_model_deployment_monitoring_job_sync.py | 7 + ...ervice_list_batch_prediction_jobs_async.py | 7 + ...service_list_batch_prediction_jobs_sync.py | 7 + ...ated_job_service_list_custom_jobs_async.py | 7 + ...rated_job_service_list_custom_jobs_sync.py | 7 + ...b_service_list_data_labeling_jobs_async.py | 7 + ...ob_service_list_data_labeling_jobs_sync.py | 7 + ...e_list_hyperparameter_tuning_jobs_async.py | 7 + ...ce_list_hyperparameter_tuning_jobs_sync.py | 7 + ..._model_deployment_monitoring_jobs_async.py | 7 + ...t_model_deployment_monitoring_jobs_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...se_model_deployment_monitoring_job_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...me_model_deployment_monitoring_job_sync.py | 7 + ...oyment_monitoring_stats_anomalies_async.py | 7 + ...loyment_monitoring_stats_anomalies_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...te_model_deployment_monitoring_job_sync.py | 7 + ..._context_artifacts_and_executions_async.py | 7 + ...d_context_artifacts_and_executions_sync.py | 7 + ...data_service_add_context_children_async.py | 7 + ...adata_service_add_context_children_sync.py | 7 + ...data_service_add_execution_events_async.py | 7 + ...adata_service_add_execution_events_sync.py | 7 + ..._metadata_service_create_artifact_async.py | 7 + ...d_metadata_service_create_artifact_sync.py | 7 + ...d_metadata_service_create_context_async.py | 7 + ...ed_metadata_service_create_context_sync.py | 7 + ...metadata_service_create_execution_async.py | 7 + ..._metadata_service_create_execution_sync.py | 7 + ...ta_service_create_metadata_schema_async.py | 7 + ...ata_service_create_metadata_schema_sync.py | 7 + ...ata_service_create_metadata_store_async.py | 7 + ...data_service_create_metadata_store_sync.py | 7 + ..._metadata_service_delete_artifact_async.py | 7 + ...d_metadata_service_delete_artifact_sync.py | 7 + ...d_metadata_service_delete_context_async.py | 7 + ...ed_metadata_service_delete_context_sync.py | 7 + ...metadata_service_delete_execution_async.py | 7 + ..._metadata_service_delete_execution_sync.py | 7 + ...ata_service_delete_metadata_store_async.py | 7 + ...data_service_delete_metadata_store_sync.py | 7 + ...ted_metadata_service_get_artifact_async.py | 7 + ...ated_metadata_service_get_artifact_sync.py | 7 + ...ated_metadata_service_get_context_async.py | 7 + ...rated_metadata_service_get_context_sync.py | 7 + ...ed_metadata_service_get_execution_async.py | 7 + ...ted_metadata_service_get_execution_sync.py | 7 + ...adata_service_get_metadata_schema_async.py | 7 + ...tadata_service_get_metadata_schema_sync.py | 7 + ...tadata_service_get_metadata_store_async.py | 7 + ...etadata_service_get_metadata_store_sync.py | 7 + ...d_metadata_service_list_artifacts_async.py | 7 + ...ed_metadata_service_list_artifacts_sync.py | 7 + ...ed_metadata_service_list_contexts_async.py | 7 + ...ted_metadata_service_list_contexts_sync.py | 7 + ..._metadata_service_list_executions_async.py | 7 + ...d_metadata_service_list_executions_sync.py | 7 + ...ata_service_list_metadata_schemas_async.py | 7 + ...data_service_list_metadata_schemas_sync.py | 7 + ...data_service_list_metadata_stores_async.py | 7 + ...adata_service_list_metadata_stores_sync.py | 7 + ..._metadata_service_purge_artifacts_async.py | 7 + ...d_metadata_service_purge_artifacts_sync.py | 7 + ...d_metadata_service_purge_contexts_async.py | 7 + ...ed_metadata_service_purge_contexts_sync.py | 7 + ...metadata_service_purge_executions_async.py | 7 + ..._metadata_service_purge_executions_sync.py | 7 + ...e_query_artifact_lineage_subgraph_async.py | 7 + ...ce_query_artifact_lineage_subgraph_sync.py | 7 + ...ce_query_context_lineage_subgraph_async.py | 7 + ...ice_query_context_lineage_subgraph_sync.py | 7 + ...uery_execution_inputs_and_outputs_async.py | 7 + ...query_execution_inputs_and_outputs_sync.py | 7 + ..._metadata_service_update_artifact_async.py | 7 + ...d_metadata_service_update_artifact_sync.py | 7 + ...d_metadata_service_update_context_async.py | 7 + ...ed_metadata_service_update_context_sync.py | 7 + ...metadata_service_update_execution_async.py | 7 + ..._metadata_service_update_execution_sync.py | 7 + ...n_service_batch_migrate_resources_async.py | 7 + ...on_service_batch_migrate_resources_sync.py | 7 + ...rvice_search_migratable_resources_async.py | 7 + ...ervice_search_migratable_resources_sync.py | 7 + ...ch_import_model_evaluation_slices_async.py | 7 + ...tch_import_model_evaluation_slices_sync.py | 7 + ...erated_model_service_delete_model_async.py | 7 + ...nerated_model_service_delete_model_sync.py | 7 + ...odel_service_delete_model_version_async.py | 7 + ...model_service_delete_model_version_sync.py | 7 + ...erated_model_service_export_model_async.py | 7 + ...nerated_model_service_export_model_sync.py | 7 + ...generated_model_service_get_model_async.py | 7 + ...odel_service_get_model_evaluation_async.py | 7 + ...ervice_get_model_evaluation_slice_async.py | 7 + ...service_get_model_evaluation_slice_sync.py | 7 + ...model_service_get_model_evaluation_sync.py | 7 + ..._generated_model_service_get_model_sync.py | 7 + ...l_service_import_model_evaluation_async.py | 7 + ...el_service_import_model_evaluation_sync.py | 7 + ...vice_list_model_evaluation_slices_async.py | 7 + ...rvice_list_model_evaluation_slices_sync.py | 7 + ...el_service_list_model_evaluations_async.py | 7 + ...del_service_list_model_evaluations_sync.py | 7 + ...model_service_list_model_versions_async.py | 7 + ..._model_service_list_model_versions_sync.py | 7 + ...nerated_model_service_list_models_async.py | 7 + ...enerated_model_service_list_models_sync.py | 7 + ...del_service_merge_version_aliases_async.py | 9 +- ...odel_service_merge_version_aliases_sync.py | 9 +- ...erated_model_service_update_model_async.py | 7 + ...nerated_model_service_update_model_sync.py | 7 + ...erated_model_service_upload_model_async.py | 7 + ...nerated_model_service_upload_model_sync.py | 7 + ...eline_service_cancel_pipeline_job_async.py | 7 + ...peline_service_cancel_pipeline_job_sync.py | 7 + ..._service_cancel_training_pipeline_async.py | 7 + ...e_service_cancel_training_pipeline_sync.py | 7 + ...eline_service_create_pipeline_job_async.py | 7 + ...peline_service_create_pipeline_job_sync.py | 7 + ..._service_create_training_pipeline_async.py | 7 + ...e_service_create_training_pipeline_sync.py | 7 + ...eline_service_delete_pipeline_job_async.py | 7 + ...peline_service_delete_pipeline_job_sync.py | 7 + ..._service_delete_training_pipeline_async.py | 7 + ...e_service_delete_training_pipeline_sync.py | 7 + ...pipeline_service_get_pipeline_job_async.py | 7 + ..._pipeline_service_get_pipeline_job_sync.py | 7 + ...ine_service_get_training_pipeline_async.py | 7 + ...line_service_get_training_pipeline_sync.py | 7 + ...peline_service_list_pipeline_jobs_async.py | 7 + ...ipeline_service_list_pipeline_jobs_sync.py | 7 + ...e_service_list_training_pipelines_async.py | 7 + ...ne_service_list_training_pipelines_sync.py | 7 + ...erated_prediction_service_explain_async.py | 7 + ...nerated_prediction_service_explain_sync.py | 7 + ...erated_prediction_service_predict_async.py | 7 + ...nerated_prediction_service_predict_sync.py | 7 + ...ed_prediction_service_raw_predict_async.py | 7 + ...ted_prediction_service_raw_predict_sync.py | 7 + ...ol_service_create_specialist_pool_async.py | 7 + ...ool_service_create_specialist_pool_sync.py | 7 + ...ol_service_delete_specialist_pool_async.py | 7 + ...ool_service_delete_specialist_pool_sync.py | 7 + ..._pool_service_get_specialist_pool_async.py | 7 + ...t_pool_service_get_specialist_pool_sync.py | 7 + ...ool_service_list_specialist_pools_async.py | 7 + ...pool_service_list_specialist_pools_sync.py | 7 + ...ol_service_update_specialist_pool_async.py | 7 + ...ool_service_update_specialist_pool_sync.py | 7 + ...ice_batch_create_tensorboard_runs_async.py | 7 + ...vice_batch_create_tensorboard_runs_sync.py | 7 + ...ch_create_tensorboard_time_series_async.py | 7 + ...tch_create_tensorboard_time_series_sync.py | 7 + ...read_tensorboard_time_series_data_async.py | 9 +- ..._read_tensorboard_time_series_data_sync.py | 9 +- ...rboard_service_create_tensorboard_async.py | 7 + ...ice_create_tensorboard_experiment_async.py | 7 + ...vice_create_tensorboard_experiment_sync.py | 7 + ...rd_service_create_tensorboard_run_async.py | 7 + ...ard_service_create_tensorboard_run_sync.py | 7 + ...orboard_service_create_tensorboard_sync.py | 7 + ...ce_create_tensorboard_time_series_async.py | 7 + ...ice_create_tensorboard_time_series_sync.py | 7 + ...rboard_service_delete_tensorboard_async.py | 7 + ...ice_delete_tensorboard_experiment_async.py | 7 + ...vice_delete_tensorboard_experiment_sync.py | 7 + ...rd_service_delete_tensorboard_run_async.py | 7 + ...ard_service_delete_tensorboard_run_sync.py | 7 + ...orboard_service_delete_tensorboard_sync.py | 7 + ...ce_delete_tensorboard_time_series_async.py | 7 + ...ice_delete_tensorboard_time_series_sync.py | 7 + ...port_tensorboard_time_series_data_async.py | 7 + ...xport_tensorboard_time_series_data_sync.py | 7 + ...nsorboard_service_get_tensorboard_async.py | 7 + ...ervice_get_tensorboard_experiment_async.py | 7 + ...service_get_tensorboard_experiment_sync.py | 7 + ...board_service_get_tensorboard_run_async.py | 7 + ...rboard_service_get_tensorboard_run_sync.py | 7 + ...ensorboard_service_get_tensorboard_sync.py | 7 + ...rvice_get_tensorboard_time_series_async.py | 7 + ...ervice_get_tensorboard_time_series_sync.py | 7 + ...vice_list_tensorboard_experiments_async.py | 7 + ...rvice_list_tensorboard_experiments_sync.py | 7 + ...ard_service_list_tensorboard_runs_async.py | 7 + ...oard_service_list_tensorboard_runs_sync.py | 7 + ...vice_list_tensorboard_time_series_async.py | 7 + ...rvice_list_tensorboard_time_series_sync.py | 7 + ...orboard_service_list_tensorboards_async.py | 7 + ...sorboard_service_list_tensorboards_sync.py | 7 + ...ervice_read_tensorboard_blob_data_async.py | 7 + ...service_read_tensorboard_blob_data_sync.py | 7 + ...read_tensorboard_time_series_data_async.py | 7 + ..._read_tensorboard_time_series_data_sync.py | 7 + ...rboard_service_update_tensorboard_async.py | 7 + ...ice_update_tensorboard_experiment_async.py | 7 + ...vice_update_tensorboard_experiment_sync.py | 7 + ...rd_service_update_tensorboard_run_async.py | 7 + ...ard_service_update_tensorboard_run_sync.py | 7 + ...orboard_service_update_tensorboard_sync.py | 7 + ...ce_update_tensorboard_time_series_async.py | 7 + ...ice_update_tensorboard_time_series_sync.py | 7 + ...write_tensorboard_experiment_data_async.py | 7 + ..._write_tensorboard_experiment_data_sync.py | 7 + ...ervice_write_tensorboard_run_data_async.py | 7 + ...service_write_tensorboard_run_data_sync.py | 7 + ...ier_service_add_trial_measurement_async.py | 7 + ...zier_service_add_trial_measurement_sync.py | 7 + ..._check_trial_early_stopping_state_async.py | 7 + ...e_check_trial_early_stopping_state_sync.py | 7 + ...ted_vizier_service_complete_trial_async.py | 7 + ...ated_vizier_service_complete_trial_sync.py | 7 + ...rated_vizier_service_create_study_async.py | 7 + ...erated_vizier_service_create_study_sync.py | 7 + ...rated_vizier_service_create_trial_async.py | 7 + ...erated_vizier_service_create_trial_sync.py | 7 + ...rated_vizier_service_delete_study_async.py | 7 + ...erated_vizier_service_delete_study_sync.py | 7 + ...rated_vizier_service_delete_trial_async.py | 7 + ...erated_vizier_service_delete_trial_sync.py | 7 + ...enerated_vizier_service_get_study_async.py | 7 + ...generated_vizier_service_get_study_sync.py | 7 + ...enerated_vizier_service_get_trial_async.py | 7 + ...generated_vizier_service_get_trial_sync.py | 7 + ...izier_service_list_optimal_trials_async.py | 7 + ...vizier_service_list_optimal_trials_sync.py | 7 + ...rated_vizier_service_list_studies_async.py | 7 + ...erated_vizier_service_list_studies_sync.py | 7 + ...erated_vizier_service_list_trials_async.py | 7 + ...nerated_vizier_service_list_trials_sync.py | 7 + ...rated_vizier_service_lookup_study_async.py | 7 + ...erated_vizier_service_lookup_study_sync.py | 7 + ...nerated_vizier_service_stop_trial_async.py | 7 + ...enerated_vizier_service_stop_trial_sync.py | 7 + ...ted_vizier_service_suggest_trials_async.py | 7 + ...ated_vizier_service_suggest_trials_sync.py | 7 + ...ed_dataset_service_create_dataset_async.py | 7 + ...ted_dataset_service_create_dataset_sync.py | 7 + ...ed_dataset_service_delete_dataset_async.py | 7 + ...ted_dataset_service_delete_dataset_sync.py | 7 + ...rated_dataset_service_export_data_async.py | 7 + ...erated_dataset_service_export_data_sync.py | 7 + ...taset_service_get_annotation_spec_async.py | 7 + ...ataset_service_get_annotation_spec_sync.py | 7 + ...rated_dataset_service_get_dataset_async.py | 7 + ...erated_dataset_service_get_dataset_sync.py | 7 + ...rated_dataset_service_import_data_async.py | 9 +- ...erated_dataset_service_import_data_sync.py | 9 +- ..._dataset_service_list_annotations_async.py | 7 + ...d_dataset_service_list_annotations_sync.py | 7 + ...d_dataset_service_list_data_items_async.py | 7 + ...ed_dataset_service_list_data_items_sync.py | 7 + ...ted_dataset_service_list_datasets_async.py | 7 + ...ated_dataset_service_list_datasets_sync.py | 7 + ...ataset_service_list_saved_queries_async.py | 7 + ...dataset_service_list_saved_queries_sync.py | 7 + ...ed_dataset_service_update_dataset_async.py | 7 + ...ted_dataset_service_update_dataset_sync.py | 7 + ...e_create_deployment_resource_pool_async.py | 7 + ...ce_create_deployment_resource_pool_sync.py | 7 + ...e_delete_deployment_resource_pool_async.py | 7 + ...ce_delete_deployment_resource_pool_sync.py | 7 + ...vice_get_deployment_resource_pool_async.py | 7 + ...rvice_get_deployment_resource_pool_sync.py | 7 + ...ce_list_deployment_resource_pools_async.py | 7 + ...ice_list_deployment_resource_pools_sync.py | 7 + ...ool_service_query_deployed_models_async.py | 7 + ...pool_service_query_deployed_models_sync.py | 7 + ..._endpoint_service_create_endpoint_async.py | 7 + ...d_endpoint_service_create_endpoint_sync.py | 7 + ..._endpoint_service_delete_endpoint_async.py | 7 + ...d_endpoint_service_delete_endpoint_sync.py | 7 + ...ted_endpoint_service_deploy_model_async.py | 7 + ...ated_endpoint_service_deploy_model_sync.py | 7 + ...ted_endpoint_service_get_endpoint_async.py | 7 + ...ated_endpoint_service_get_endpoint_sync.py | 7 + ...d_endpoint_service_list_endpoints_async.py | 7 + ...ed_endpoint_service_list_endpoints_sync.py | 7 + ...d_endpoint_service_undeploy_model_async.py | 7 + ...ed_endpoint_service_undeploy_model_sync.py | 7 + ..._endpoint_service_update_endpoint_async.py | 7 + ...d_endpoint_service_update_endpoint_sync.py | 7 + ...rving_service_read_feature_values_async.py | 9 +- ...erving_service_read_feature_values_sync.py | 9 +- ...ice_streaming_read_feature_values_async.py | 11 +- ...vice_streaming_read_feature_values_sync.py | 11 +- ...ving_service_write_feature_values_async.py | 7 + ...rving_service_write_feature_values_sync.py | 7 + ...ore_service_batch_create_features_async.py | 7 + ...tore_service_batch_create_features_sync.py | 7 + ...service_batch_read_feature_values_async.py | 11 +- ..._service_batch_read_feature_values_sync.py | 11 +- ...estore_service_create_entity_type_async.py | 7 + ...restore_service_create_entity_type_sync.py | 7 + ...aturestore_service_create_feature_async.py | 7 + ...eaturestore_service_create_feature_sync.py | 7 + ...store_service_create_featurestore_async.py | 7 + ...estore_service_create_featurestore_sync.py | 7 + ...estore_service_delete_entity_type_async.py | 7 + ...restore_service_delete_entity_type_sync.py | 7 + ...aturestore_service_delete_feature_async.py | 7 + ...eaturestore_service_delete_feature_sync.py | 7 + ...store_service_delete_featurestore_async.py | 7 + ...estore_service_delete_featurestore_sync.py | 7 + ...ore_service_export_feature_values_async.py | 9 +- ...tore_service_export_feature_values_sync.py | 9 +- ...turestore_service_get_entity_type_async.py | 7 + ...aturestore_service_get_entity_type_sync.py | 7 + ..._featurestore_service_get_feature_async.py | 7 + ...d_featurestore_service_get_feature_sync.py | 7 + ...urestore_service_get_featurestore_async.py | 7 + ...turestore_service_get_featurestore_sync.py | 7 + ...ore_service_import_feature_values_async.py | 9 +- ...tore_service_import_feature_values_sync.py | 9 +- ...restore_service_list_entity_types_async.py | 7 + ...urestore_service_list_entity_types_sync.py | 7 + ...eaturestore_service_list_features_async.py | 7 + ...featurestore_service_list_features_sync.py | 7 + ...estore_service_list_featurestores_async.py | 7 + ...restore_service_list_featurestores_sync.py | 7 + ...turestore_service_search_features_async.py | 7 + ...aturestore_service_search_features_sync.py | 7 + ...estore_service_update_entity_type_async.py | 7 + ...restore_service_update_entity_type_sync.py | 7 + ...aturestore_service_update_feature_async.py | 7 + ...eaturestore_service_update_feature_sync.py | 7 + ...store_service_update_featurestore_async.py | 7 + ...estore_service_update_featurestore_sync.py | 7 + ...int_service_create_index_endpoint_async.py | 7 + ...oint_service_create_index_endpoint_sync.py | 7 + ...int_service_delete_index_endpoint_async.py | 7 + ...oint_service_delete_index_endpoint_sync.py | 7 + ...dex_endpoint_service_deploy_index_async.py | 7 + ...ndex_endpoint_service_deploy_index_sync.py | 7 + ...dpoint_service_get_index_endpoint_async.py | 7 + ...ndpoint_service_get_index_endpoint_sync.py | 7 + ...oint_service_list_index_endpoints_async.py | 7 + ...point_service_list_index_endpoints_sync.py | 7 + ...int_service_mutate_deployed_index_async.py | 7 + ...oint_service_mutate_deployed_index_sync.py | 7 + ...x_endpoint_service_undeploy_index_async.py | 7 + ...ex_endpoint_service_undeploy_index_sync.py | 7 + ...int_service_update_index_endpoint_async.py | 7 + ...oint_service_update_index_endpoint_sync.py | 7 + ...erated_index_service_create_index_async.py | 7 + ...nerated_index_service_create_index_sync.py | 7 + ...erated_index_service_delete_index_async.py | 7 + ...nerated_index_service_delete_index_sync.py | 7 + ...generated_index_service_get_index_async.py | 7 + ..._generated_index_service_get_index_sync.py | 7 + ...erated_index_service_list_indexes_async.py | 7 + ...nerated_index_service_list_indexes_sync.py | 7 + ...d_index_service_remove_datapoints_async.py | 7 + ...ed_index_service_remove_datapoints_sync.py | 7 + ...erated_index_service_update_index_async.py | 7 + ...nerated_index_service_update_index_sync.py | 7 + ...d_index_service_upsert_datapoints_async.py | 7 + ...ed_index_service_upsert_datapoints_sync.py | 7 + ...rvice_cancel_batch_prediction_job_async.py | 7 + ...ervice_cancel_batch_prediction_job_sync.py | 7 + ...ted_job_service_cancel_custom_job_async.py | 7 + ...ated_job_service_cancel_custom_job_sync.py | 7 + ..._service_cancel_data_labeling_job_async.py | 7 + ...b_service_cancel_data_labeling_job_sync.py | 7 + ..._cancel_hyperparameter_tuning_job_async.py | 7 + ...e_cancel_hyperparameter_tuning_job_sync.py | 7 + ...rvice_create_batch_prediction_job_async.py | 9 +- ...ervice_create_batch_prediction_job_sync.py | 9 +- ...ted_job_service_create_custom_job_async.py | 7 + ...ated_job_service_create_custom_job_sync.py | 7 + ..._service_create_data_labeling_job_async.py | 9 +- ...b_service_create_data_labeling_job_sync.py | 9 +- ..._create_hyperparameter_tuning_job_async.py | 7 + ...e_create_hyperparameter_tuning_job_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...te_model_deployment_monitoring_job_sync.py | 7 + ...rvice_delete_batch_prediction_job_async.py | 7 + ...ervice_delete_batch_prediction_job_sync.py | 7 + ...ted_job_service_delete_custom_job_async.py | 7 + ...ated_job_service_delete_custom_job_sync.py | 7 + ..._service_delete_data_labeling_job_async.py | 7 + ...b_service_delete_data_labeling_job_sync.py | 7 + ..._delete_hyperparameter_tuning_job_async.py | 7 + ...e_delete_hyperparameter_tuning_job_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...te_model_deployment_monitoring_job_sync.py | 7 + ..._service_get_batch_prediction_job_async.py | 7 + ...b_service_get_batch_prediction_job_sync.py | 7 + ...erated_job_service_get_custom_job_async.py | 7 + ...nerated_job_service_get_custom_job_sync.py | 7 + ...job_service_get_data_labeling_job_async.py | 7 + ..._job_service_get_data_labeling_job_sync.py | 7 + ...ice_get_hyperparameter_tuning_job_async.py | 7 + ...vice_get_hyperparameter_tuning_job_sync.py | 7 + ...t_model_deployment_monitoring_job_async.py | 7 + ...et_model_deployment_monitoring_job_sync.py | 7 + ...ervice_list_batch_prediction_jobs_async.py | 7 + ...service_list_batch_prediction_jobs_sync.py | 7 + ...ated_job_service_list_custom_jobs_async.py | 7 + ...rated_job_service_list_custom_jobs_sync.py | 7 + ...b_service_list_data_labeling_jobs_async.py | 7 + ...ob_service_list_data_labeling_jobs_sync.py | 7 + ...e_list_hyperparameter_tuning_jobs_async.py | 7 + ...ce_list_hyperparameter_tuning_jobs_sync.py | 7 + ..._model_deployment_monitoring_jobs_async.py | 7 + ...t_model_deployment_monitoring_jobs_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...se_model_deployment_monitoring_job_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...me_model_deployment_monitoring_job_sync.py | 7 + ...oyment_monitoring_stats_anomalies_async.py | 7 + ...loyment_monitoring_stats_anomalies_sync.py | 7 + ...e_model_deployment_monitoring_job_async.py | 7 + ...te_model_deployment_monitoring_job_sync.py | 7 + ..._context_artifacts_and_executions_async.py | 7 + ...d_context_artifacts_and_executions_sync.py | 7 + ...data_service_add_context_children_async.py | 7 + ...adata_service_add_context_children_sync.py | 7 + ...data_service_add_execution_events_async.py | 7 + ...adata_service_add_execution_events_sync.py | 7 + ..._metadata_service_create_artifact_async.py | 7 + ...d_metadata_service_create_artifact_sync.py | 7 + ...d_metadata_service_create_context_async.py | 7 + ...ed_metadata_service_create_context_sync.py | 7 + ...metadata_service_create_execution_async.py | 7 + ..._metadata_service_create_execution_sync.py | 7 + ...ta_service_create_metadata_schema_async.py | 7 + ...ata_service_create_metadata_schema_sync.py | 7 + ...ata_service_create_metadata_store_async.py | 7 + ...data_service_create_metadata_store_sync.py | 7 + ..._metadata_service_delete_artifact_async.py | 7 + ...d_metadata_service_delete_artifact_sync.py | 7 + ...d_metadata_service_delete_context_async.py | 7 + ...ed_metadata_service_delete_context_sync.py | 7 + ...metadata_service_delete_execution_async.py | 7 + ..._metadata_service_delete_execution_sync.py | 7 + ...ata_service_delete_metadata_store_async.py | 7 + ...data_service_delete_metadata_store_sync.py | 7 + ...ted_metadata_service_get_artifact_async.py | 7 + ...ated_metadata_service_get_artifact_sync.py | 7 + ...ated_metadata_service_get_context_async.py | 7 + ...rated_metadata_service_get_context_sync.py | 7 + ...ed_metadata_service_get_execution_async.py | 7 + ...ted_metadata_service_get_execution_sync.py | 7 + ...adata_service_get_metadata_schema_async.py | 7 + ...tadata_service_get_metadata_schema_sync.py | 7 + ...tadata_service_get_metadata_store_async.py | 7 + ...etadata_service_get_metadata_store_sync.py | 7 + ...d_metadata_service_list_artifacts_async.py | 7 + ...ed_metadata_service_list_artifacts_sync.py | 7 + ...ed_metadata_service_list_contexts_async.py | 7 + ...ted_metadata_service_list_contexts_sync.py | 7 + ..._metadata_service_list_executions_async.py | 7 + ...d_metadata_service_list_executions_sync.py | 7 + ...ata_service_list_metadata_schemas_async.py | 7 + ...data_service_list_metadata_schemas_sync.py | 7 + ...data_service_list_metadata_stores_async.py | 7 + ...adata_service_list_metadata_stores_sync.py | 7 + ..._metadata_service_purge_artifacts_async.py | 7 + ...d_metadata_service_purge_artifacts_sync.py | 7 + ...d_metadata_service_purge_contexts_async.py | 7 + ...ed_metadata_service_purge_contexts_sync.py | 7 + ...metadata_service_purge_executions_async.py | 7 + ..._metadata_service_purge_executions_sync.py | 7 + ...e_query_artifact_lineage_subgraph_async.py | 7 + ...ce_query_artifact_lineage_subgraph_sync.py | 7 + ...ce_query_context_lineage_subgraph_async.py | 7 + ...ice_query_context_lineage_subgraph_sync.py | 7 + ...uery_execution_inputs_and_outputs_async.py | 7 + ...query_execution_inputs_and_outputs_sync.py | 7 + ..._metadata_service_update_artifact_async.py | 7 + ...d_metadata_service_update_artifact_sync.py | 7 + ...d_metadata_service_update_context_async.py | 7 + ...ed_metadata_service_update_context_sync.py | 7 + ...metadata_service_update_execution_async.py | 7 + ..._metadata_service_update_execution_sync.py | 7 + ...n_service_batch_migrate_resources_async.py | 7 + ...on_service_batch_migrate_resources_sync.py | 7 + ...rvice_search_migratable_resources_async.py | 7 + ...ervice_search_migratable_resources_sync.py | 7 + ...ch_import_model_evaluation_slices_async.py | 7 + ...tch_import_model_evaluation_slices_sync.py | 7 + ...erated_model_service_delete_model_async.py | 7 + ...nerated_model_service_delete_model_sync.py | 7 + ...odel_service_delete_model_version_async.py | 7 + ...model_service_delete_model_version_sync.py | 7 + ...erated_model_service_export_model_async.py | 7 + ...nerated_model_service_export_model_sync.py | 7 + ...generated_model_service_get_model_async.py | 7 + ...odel_service_get_model_evaluation_async.py | 7 + ...ervice_get_model_evaluation_slice_async.py | 7 + ...service_get_model_evaluation_slice_sync.py | 7 + ...model_service_get_model_evaluation_sync.py | 7 + ..._generated_model_service_get_model_sync.py | 7 + ...l_service_import_model_evaluation_async.py | 7 + ...el_service_import_model_evaluation_sync.py | 7 + ...vice_list_model_evaluation_slices_async.py | 7 + ...rvice_list_model_evaluation_slices_sync.py | 7 + ...el_service_list_model_evaluations_async.py | 7 + ...del_service_list_model_evaluations_sync.py | 7 + ...model_service_list_model_versions_async.py | 7 + ..._model_service_list_model_versions_sync.py | 7 + ...nerated_model_service_list_models_async.py | 7 + ...enerated_model_service_list_models_sync.py | 7 + ...del_service_merge_version_aliases_async.py | 9 +- ...odel_service_merge_version_aliases_sync.py | 9 +- ...ervice_update_explanation_dataset_async.py | 7 + ...service_update_explanation_dataset_sync.py | 7 + ...erated_model_service_update_model_async.py | 7 + ...nerated_model_service_update_model_sync.py | 7 + ...erated_model_service_upload_model_async.py | 7 + ...nerated_model_service_upload_model_sync.py | 7 + ...eline_service_cancel_pipeline_job_async.py | 7 + ...peline_service_cancel_pipeline_job_sync.py | 7 + ..._service_cancel_training_pipeline_async.py | 7 + ...e_service_cancel_training_pipeline_sync.py | 7 + ...eline_service_create_pipeline_job_async.py | 7 + ...peline_service_create_pipeline_job_sync.py | 7 + ..._service_create_training_pipeline_async.py | 7 + ...e_service_create_training_pipeline_sync.py | 7 + ...eline_service_delete_pipeline_job_async.py | 7 + ...peline_service_delete_pipeline_job_sync.py | 7 + ..._service_delete_training_pipeline_async.py | 7 + ...e_service_delete_training_pipeline_sync.py | 7 + ...pipeline_service_get_pipeline_job_async.py | 7 + ..._pipeline_service_get_pipeline_job_sync.py | 7 + ...ine_service_get_training_pipeline_async.py | 7 + ...line_service_get_training_pipeline_sync.py | 7 + ...peline_service_list_pipeline_jobs_async.py | 7 + ...ipeline_service_list_pipeline_jobs_sync.py | 7 + ...e_service_list_training_pipelines_async.py | 7 + ...ne_service_list_training_pipelines_sync.py | 7 + ...erated_prediction_service_explain_async.py | 7 + ...nerated_prediction_service_explain_sync.py | 7 + ...erated_prediction_service_predict_async.py | 7 + ...nerated_prediction_service_predict_sync.py | 7 + ...ed_prediction_service_raw_predict_async.py | 7 + ...ted_prediction_service_raw_predict_sync.py | 7 + ...ol_service_create_specialist_pool_async.py | 7 + ...ool_service_create_specialist_pool_sync.py | 7 + ...ol_service_delete_specialist_pool_async.py | 7 + ...ool_service_delete_specialist_pool_sync.py | 7 + ..._pool_service_get_specialist_pool_async.py | 7 + ...t_pool_service_get_specialist_pool_sync.py | 7 + ...ool_service_list_specialist_pools_async.py | 7 + ...pool_service_list_specialist_pools_sync.py | 7 + ...ol_service_update_specialist_pool_async.py | 7 + ...ool_service_update_specialist_pool_sync.py | 7 + ...ice_batch_create_tensorboard_runs_async.py | 7 + ...vice_batch_create_tensorboard_runs_sync.py | 7 + ...ch_create_tensorboard_time_series_async.py | 7 + ...tch_create_tensorboard_time_series_sync.py | 7 + ...read_tensorboard_time_series_data_async.py | 9 +- ..._read_tensorboard_time_series_data_sync.py | 9 +- ...rboard_service_create_tensorboard_async.py | 7 + ...ice_create_tensorboard_experiment_async.py | 7 + ...vice_create_tensorboard_experiment_sync.py | 7 + ...rd_service_create_tensorboard_run_async.py | 7 + ...ard_service_create_tensorboard_run_sync.py | 7 + ...orboard_service_create_tensorboard_sync.py | 7 + ...ce_create_tensorboard_time_series_async.py | 7 + ...ice_create_tensorboard_time_series_sync.py | 7 + ...rboard_service_delete_tensorboard_async.py | 7 + ...ice_delete_tensorboard_experiment_async.py | 7 + ...vice_delete_tensorboard_experiment_sync.py | 7 + ...rd_service_delete_tensorboard_run_async.py | 7 + ...ard_service_delete_tensorboard_run_sync.py | 7 + ...orboard_service_delete_tensorboard_sync.py | 7 + ...ce_delete_tensorboard_time_series_async.py | 7 + ...ice_delete_tensorboard_time_series_sync.py | 7 + ...port_tensorboard_time_series_data_async.py | 7 + ...xport_tensorboard_time_series_data_sync.py | 7 + ...nsorboard_service_get_tensorboard_async.py | 7 + ...ervice_get_tensorboard_experiment_async.py | 7 + ...service_get_tensorboard_experiment_sync.py | 7 + ...board_service_get_tensorboard_run_async.py | 7 + ...rboard_service_get_tensorboard_run_sync.py | 7 + ...ensorboard_service_get_tensorboard_sync.py | 7 + ...rvice_get_tensorboard_time_series_async.py | 7 + ...ervice_get_tensorboard_time_series_sync.py | 7 + ...vice_list_tensorboard_experiments_async.py | 7 + ...rvice_list_tensorboard_experiments_sync.py | 7 + ...ard_service_list_tensorboard_runs_async.py | 7 + ...oard_service_list_tensorboard_runs_sync.py | 7 + ...vice_list_tensorboard_time_series_async.py | 7 + ...rvice_list_tensorboard_time_series_sync.py | 7 + ...orboard_service_list_tensorboards_async.py | 7 + ...sorboard_service_list_tensorboards_sync.py | 7 + ...ervice_read_tensorboard_blob_data_async.py | 7 + ...service_read_tensorboard_blob_data_sync.py | 7 + ...read_tensorboard_time_series_data_async.py | 7 + ..._read_tensorboard_time_series_data_sync.py | 7 + ...rboard_service_update_tensorboard_async.py | 7 + ...ice_update_tensorboard_experiment_async.py | 7 + ...vice_update_tensorboard_experiment_sync.py | 7 + ...rd_service_update_tensorboard_run_async.py | 7 + ...ard_service_update_tensorboard_run_sync.py | 7 + ...orboard_service_update_tensorboard_sync.py | 7 + ...ce_update_tensorboard_time_series_async.py | 7 + ...ice_update_tensorboard_time_series_sync.py | 7 + ...write_tensorboard_experiment_data_async.py | 7 + ..._write_tensorboard_experiment_data_sync.py | 7 + ...ervice_write_tensorboard_run_data_async.py | 7 + ...service_write_tensorboard_run_data_sync.py | 7 + ...ier_service_add_trial_measurement_async.py | 7 + ...zier_service_add_trial_measurement_sync.py | 7 + ..._check_trial_early_stopping_state_async.py | 7 + ...e_check_trial_early_stopping_state_sync.py | 7 + ...ted_vizier_service_complete_trial_async.py | 7 + ...ated_vizier_service_complete_trial_sync.py | 7 + ...rated_vizier_service_create_study_async.py | 7 + ...erated_vizier_service_create_study_sync.py | 7 + ...rated_vizier_service_create_trial_async.py | 7 + ...erated_vizier_service_create_trial_sync.py | 7 + ...rated_vizier_service_delete_study_async.py | 7 + ...erated_vizier_service_delete_study_sync.py | 7 + ...rated_vizier_service_delete_trial_async.py | 7 + ...erated_vizier_service_delete_trial_sync.py | 7 + ...enerated_vizier_service_get_study_async.py | 7 + ...generated_vizier_service_get_study_sync.py | 7 + ...enerated_vizier_service_get_trial_async.py | 7 + ...generated_vizier_service_get_trial_sync.py | 7 + ...izier_service_list_optimal_trials_async.py | 7 + ...vizier_service_list_optimal_trials_sync.py | 7 + ...rated_vizier_service_list_studies_async.py | 7 + ...erated_vizier_service_list_studies_sync.py | 7 + ...erated_vizier_service_list_trials_async.py | 7 + ...nerated_vizier_service_list_trials_sync.py | 7 + ...rated_vizier_service_lookup_study_async.py | 7 + ...erated_vizier_service_lookup_study_sync.py | 7 + ...nerated_vizier_service_stop_trial_async.py | 7 + ...enerated_vizier_service_stop_trial_sync.py | 7 + ...ted_vizier_service_suggest_trials_async.py | 7 + ...ated_vizier_service_suggest_trials_sync.py | 7 + .../snippet_metadata_aiplatform_v1.json | 7610 ++++++++-------- .../snippet_metadata_aiplatform_v1beta1.json | 7886 ++++++++--------- .../aiplatform_v1/test_dataset_service.py | 4 +- .../aiplatform_v1/test_endpoint_service.py | 4 +- ...est_featurestore_online_serving_service.py | 4 +- .../test_featurestore_service.py | 4 +- .../test_index_endpoint_service.py | 4 +- .../gapic/aiplatform_v1/test_index_service.py | 4 +- .../gapic/aiplatform_v1/test_job_service.py | 4 +- .../aiplatform_v1/test_metadata_service.py | 4 +- .../aiplatform_v1/test_migration_service.py | 30 +- .../gapic/aiplatform_v1/test_model_service.py | 4 +- .../aiplatform_v1/test_pipeline_service.py | 4 +- .../aiplatform_v1/test_prediction_service.py | 4 +- .../test_specialist_pool_service.py | 4 +- .../aiplatform_v1/test_tensorboard_service.py | 4 +- .../aiplatform_v1/test_vizier_service.py | 4 +- .../test_dataset_service.py | 4 +- .../test_deployment_resource_pool_service.py | 4 +- .../test_endpoint_service.py | 4 +- ...est_featurestore_online_serving_service.py | 4 +- .../test_featurestore_service.py | 4 +- .../test_index_endpoint_service.py | 4 +- .../aiplatform_v1beta1/test_index_service.py | 4 +- .../aiplatform_v1beta1/test_job_service.py | 4 +- .../test_metadata_service.py | 4 +- .../test_migration_service.py | 30 +- .../aiplatform_v1beta1/test_model_service.py | 4 +- .../test_pipeline_service.py | 4 +- .../test_prediction_service.py | 4 +- .../test_specialist_pool_service.py | 4 +- .../test_tensorboard_service.py | 4 +- .../aiplatform_v1beta1/test_vizier_service.py | 4 +- 878 files changed, 18899 insertions(+), 7951 deletions(-) diff --git a/google/cloud/aiplatform_v1/services/dataset_service/async_client.py b/google/cloud/aiplatform_v1/services/dataset_service/async_client.py index be88687ef8..feda67c7e8 100644 --- a/google/cloud/aiplatform_v1/services/dataset_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/dataset_service/async_client.py @@ -246,6 +246,13 @@ async def create_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_dataset(): @@ -370,6 +377,13 @@ async def get_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_dataset(): @@ -466,6 +480,13 @@ async def update_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_dataset(): @@ -583,6 +604,13 @@ async def list_datasets( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_datasets(): @@ -691,6 +719,13 @@ async def delete_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_dataset(): @@ -810,6 +845,13 @@ async def import_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_import_data(): @@ -818,7 +860,7 @@ async def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1.ImportDataRequest( @@ -937,6 +979,13 @@ async def export_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_export_data(): @@ -1061,6 +1110,13 @@ async def list_data_items( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_data_items(): @@ -1170,6 +1226,13 @@ async def list_saved_queries( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_saved_queries(): @@ -1279,6 +1342,13 @@ async def get_annotation_spec( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_annotation_spec(): @@ -1375,6 +1445,13 @@ async def list_annotations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_annotations(): diff --git a/google/cloud/aiplatform_v1/services/dataset_service/client.py b/google/cloud/aiplatform_v1/services/dataset_service/client.py index 573d439caa..2616d20fff 100644 --- a/google/cloud/aiplatform_v1/services/dataset_service/client.py +++ b/google/cloud/aiplatform_v1/services/dataset_service/client.py @@ -559,6 +559,13 @@ def create_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_dataset(): @@ -683,6 +690,13 @@ def get_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_dataset(): @@ -779,6 +793,13 @@ def update_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_dataset(): @@ -896,6 +917,13 @@ def list_datasets( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_datasets(): @@ -1004,6 +1032,13 @@ def delete_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_dataset(): @@ -1123,6 +1158,13 @@ def import_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_import_data(): @@ -1131,7 +1173,7 @@ def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1.ImportDataRequest( @@ -1250,6 +1292,13 @@ def export_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_export_data(): @@ -1374,6 +1423,13 @@ def list_data_items( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_data_items(): @@ -1483,6 +1539,13 @@ def list_saved_queries( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_saved_queries(): @@ -1592,6 +1655,13 @@ def get_annotation_spec( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_annotation_spec(): @@ -1688,6 +1758,13 @@ def list_annotations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_annotations(): diff --git a/google/cloud/aiplatform_v1/services/endpoint_service/async_client.py b/google/cloud/aiplatform_v1/services/endpoint_service/async_client.py index 61ff403f0f..87c9d1c123 100644 --- a/google/cloud/aiplatform_v1/services/endpoint_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/endpoint_service/async_client.py @@ -240,6 +240,13 @@ async def create_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_endpoint(): @@ -378,6 +385,13 @@ async def get_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_endpoint(): @@ -474,6 +488,13 @@ async def list_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_endpoints(): @@ -584,6 +605,13 @@ async def update_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_endpoint(): @@ -694,6 +722,13 @@ async def delete_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_endpoint(): @@ -815,6 +850,13 @@ async def deploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_deploy_model(): @@ -972,6 +1014,13 @@ async def undeploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_undeploy_model(): diff --git a/google/cloud/aiplatform_v1/services/endpoint_service/client.py b/google/cloud/aiplatform_v1/services/endpoint_service/client.py index 62c105fb9b..ac151836ce 100644 --- a/google/cloud/aiplatform_v1/services/endpoint_service/client.py +++ b/google/cloud/aiplatform_v1/services/endpoint_service/client.py @@ -518,6 +518,13 @@ def create_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_endpoint(): @@ -656,6 +663,13 @@ def get_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_endpoint(): @@ -752,6 +766,13 @@ def list_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_endpoints(): @@ -862,6 +883,13 @@ def update_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_endpoint(): @@ -972,6 +1000,13 @@ def delete_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_endpoint(): @@ -1093,6 +1128,13 @@ def deploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_deploy_model(): @@ -1249,6 +1291,13 @@ def undeploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_undeploy_model(): diff --git a/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/async_client.py b/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/async_client.py index a02afc12dc..e54231cfd5 100644 --- a/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/async_client.py @@ -251,6 +251,13 @@ async def read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_read_feature_values(): @@ -259,7 +266,7 @@ async def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ReadFeatureValuesRequest( entity_type="entity_type_value", @@ -363,6 +370,13 @@ def streaming_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_streaming_read_feature_values(): @@ -371,11 +385,11 @@ async def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) diff --git a/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/client.py b/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/client.py index 59e1e7cc16..96ad455e9f 100644 --- a/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/client.py +++ b/google/cloud/aiplatform_v1/services/featurestore_online_serving_service/client.py @@ -459,6 +459,13 @@ def read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_read_feature_values(): @@ -467,7 +474,7 @@ def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ReadFeatureValuesRequest( entity_type="entity_type_value", @@ -571,6 +578,13 @@ def streaming_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_streaming_read_feature_values(): @@ -579,11 +593,11 @@ def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) diff --git a/google/cloud/aiplatform_v1/services/featurestore_service/async_client.py b/google/cloud/aiplatform_v1/services/featurestore_service/async_client.py index 7372ae4482..f88cfcc1e4 100644 --- a/google/cloud/aiplatform_v1/services/featurestore_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/featurestore_service/async_client.py @@ -247,6 +247,13 @@ async def create_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_featurestore(): @@ -384,6 +391,13 @@ async def get_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_featurestore(): @@ -482,6 +496,13 @@ async def list_featurestores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_featurestores(): @@ -592,6 +613,13 @@ async def update_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_featurestore(): @@ -729,6 +757,13 @@ async def delete_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_featurestore(): @@ -861,6 +896,13 @@ async def create_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_entity_type(): @@ -997,6 +1039,13 @@ async def get_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_entity_type(): @@ -1096,6 +1145,13 @@ async def list_entity_types( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_entity_types(): @@ -1206,6 +1262,13 @@ async def update_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_entity_type(): @@ -1337,6 +1400,13 @@ async def delete_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_entity_type(): @@ -1468,6 +1538,13 @@ async def create_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_feature(): @@ -1608,6 +1685,13 @@ async def batch_create_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_create_features(): @@ -1739,6 +1823,13 @@ async def get_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_feature(): @@ -1837,6 +1928,13 @@ async def list_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_features(): @@ -1947,6 +2045,13 @@ async def update_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_feature(): @@ -2072,6 +2177,13 @@ async def delete_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_feature(): @@ -2210,6 +2322,13 @@ async def import_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_import_feature_values(): @@ -2218,7 +2337,7 @@ async def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1.FeatureSpec() feature_specs.id = "id_value" @@ -2339,6 +2458,13 @@ async def batch_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_read_feature_values(): @@ -2347,14 +2473,14 @@ async def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, @@ -2467,6 +2593,13 @@ async def export_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_export_feature_values(): @@ -2478,7 +2611,7 @@ async def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ExportFeatureValuesRequest( entity_type="entity_type_value", @@ -2591,6 +2724,13 @@ async def search_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_search_features(): diff --git a/google/cloud/aiplatform_v1/services/featurestore_service/client.py b/google/cloud/aiplatform_v1/services/featurestore_service/client.py index 7bd9c418a9..e485cfeda8 100644 --- a/google/cloud/aiplatform_v1/services/featurestore_service/client.py +++ b/google/cloud/aiplatform_v1/services/featurestore_service/client.py @@ -513,6 +513,13 @@ def create_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_featurestore(): @@ -650,6 +657,13 @@ def get_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_featurestore(): @@ -748,6 +762,13 @@ def list_featurestores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_featurestores(): @@ -858,6 +879,13 @@ def update_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_featurestore(): @@ -995,6 +1023,13 @@ def delete_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_featurestore(): @@ -1127,6 +1162,13 @@ def create_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_entity_type(): @@ -1263,6 +1305,13 @@ def get_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_entity_type(): @@ -1362,6 +1411,13 @@ def list_entity_types( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_entity_types(): @@ -1472,6 +1528,13 @@ def update_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_entity_type(): @@ -1603,6 +1666,13 @@ def delete_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_entity_type(): @@ -1734,6 +1804,13 @@ def create_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_feature(): @@ -1874,6 +1951,13 @@ def batch_create_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_create_features(): @@ -2005,6 +2089,13 @@ def get_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_feature(): @@ -2103,6 +2194,13 @@ def list_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_features(): @@ -2213,6 +2311,13 @@ def update_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_feature(): @@ -2338,6 +2443,13 @@ def delete_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_feature(): @@ -2476,6 +2588,13 @@ def import_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_import_feature_values(): @@ -2484,7 +2603,7 @@ def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1.FeatureSpec() feature_specs.id = "id_value" @@ -2605,6 +2724,13 @@ def batch_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_read_feature_values(): @@ -2613,14 +2739,14 @@ def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, @@ -2735,6 +2861,13 @@ def export_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_export_feature_values(): @@ -2746,7 +2879,7 @@ def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ExportFeatureValuesRequest( entity_type="entity_type_value", @@ -2859,6 +2992,13 @@ def search_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_search_features(): diff --git a/google/cloud/aiplatform_v1/services/index_endpoint_service/async_client.py b/google/cloud/aiplatform_v1/services/index_endpoint_service/async_client.py index 2dc83f58e7..d42a050000 100644 --- a/google/cloud/aiplatform_v1/services/index_endpoint_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/index_endpoint_service/async_client.py @@ -233,6 +233,13 @@ async def create_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_index_endpoint(): @@ -356,6 +363,13 @@ async def get_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_index_endpoint(): @@ -453,6 +467,13 @@ async def list_index_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_index_endpoints(): @@ -563,6 +584,13 @@ async def update_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_index_endpoint(): @@ -673,6 +701,13 @@ async def delete_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_index_endpoint(): @@ -794,6 +829,13 @@ async def deploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_deploy_index(): @@ -925,6 +967,13 @@ async def undeploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_undeploy_index(): @@ -1051,6 +1100,13 @@ async def mutate_deployed_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_mutate_deployed_index(): diff --git a/google/cloud/aiplatform_v1/services/index_endpoint_service/client.py b/google/cloud/aiplatform_v1/services/index_endpoint_service/client.py index 8f89c623ef..4f1d7c405b 100644 --- a/google/cloud/aiplatform_v1/services/index_endpoint_service/client.py +++ b/google/cloud/aiplatform_v1/services/index_endpoint_service/client.py @@ -475,6 +475,13 @@ def create_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_index_endpoint(): @@ -598,6 +605,13 @@ def get_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_index_endpoint(): @@ -695,6 +709,13 @@ def list_index_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_index_endpoints(): @@ -805,6 +826,13 @@ def update_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_index_endpoint(): @@ -915,6 +943,13 @@ def delete_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_index_endpoint(): @@ -1036,6 +1071,13 @@ def deploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_deploy_index(): @@ -1167,6 +1209,13 @@ def undeploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_undeploy_index(): @@ -1293,6 +1342,13 @@ def mutate_deployed_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_mutate_deployed_index(): diff --git a/google/cloud/aiplatform_v1/services/index_service/async_client.py b/google/cloud/aiplatform_v1/services/index_service/async_client.py index 59e89222ec..f9a70a25fb 100644 --- a/google/cloud/aiplatform_v1/services/index_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/index_service/async_client.py @@ -232,6 +232,13 @@ async def create_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_index(): @@ -354,6 +361,13 @@ async def get_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_index(): @@ -451,6 +465,13 @@ async def list_indexes( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_indexes(): @@ -561,6 +582,13 @@ async def update_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_index(): @@ -688,6 +716,13 @@ async def delete_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_index(): @@ -805,6 +840,13 @@ async def upsert_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_upsert_datapoints(): @@ -878,6 +920,13 @@ async def remove_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_remove_datapoints(): diff --git a/google/cloud/aiplatform_v1/services/index_service/client.py b/google/cloud/aiplatform_v1/services/index_service/client.py index e463d0e8f9..845ba79d71 100644 --- a/google/cloud/aiplatform_v1/services/index_service/client.py +++ b/google/cloud/aiplatform_v1/services/index_service/client.py @@ -477,6 +477,13 @@ def create_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_index(): @@ -599,6 +606,13 @@ def get_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_index(): @@ -696,6 +710,13 @@ def list_indexes( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_indexes(): @@ -806,6 +827,13 @@ def update_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_index(): @@ -933,6 +961,13 @@ def delete_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_index(): @@ -1050,6 +1085,13 @@ def upsert_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_upsert_datapoints(): @@ -1124,6 +1166,13 @@ def remove_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_remove_datapoints(): diff --git a/google/cloud/aiplatform_v1/services/job_service/async_client.py b/google/cloud/aiplatform_v1/services/job_service/async_client.py index a8d5690145..11b6ce2e2d 100644 --- a/google/cloud/aiplatform_v1/services/job_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/job_service/async_client.py @@ -283,6 +283,13 @@ async def create_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_custom_job(): @@ -397,6 +404,13 @@ async def get_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_custom_job(): @@ -498,6 +512,13 @@ async def list_custom_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_custom_jobs(): @@ -607,6 +628,13 @@ async def delete_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_custom_job(): @@ -737,6 +765,13 @@ async def cancel_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_cancel_custom_job(): @@ -821,6 +856,13 @@ async def create_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_data_labeling_job(): @@ -830,7 +872,7 @@ async def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" @@ -935,6 +977,13 @@ async def get_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_data_labeling_job(): @@ -1031,6 +1080,13 @@ async def list_data_labeling_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_data_labeling_jobs(): @@ -1139,6 +1195,13 @@ async def delete_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_data_labeling_job(): @@ -1258,6 +1321,13 @@ async def cancel_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_cancel_data_labeling_job(): @@ -1342,6 +1412,13 @@ async def create_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_hyperparameter_tuning_job(): @@ -1461,6 +1538,13 @@ async def get_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_hyperparameter_tuning_job(): @@ -1559,6 +1643,13 @@ async def list_hyperparameter_tuning_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_hyperparameter_tuning_jobs(): @@ -1668,6 +1759,13 @@ async def delete_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_hyperparameter_tuning_job(): @@ -1799,6 +1897,13 @@ async def cancel_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_cancel_hyperparameter_tuning_job(): @@ -1885,6 +1990,13 @@ async def create_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_batch_prediction_job(): @@ -1894,7 +2006,7 @@ async def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" @@ -2002,6 +2114,13 @@ async def get_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_batch_prediction_job(): @@ -2102,6 +2221,13 @@ async def list_batch_prediction_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_batch_prediction_jobs(): @@ -2212,6 +2338,13 @@ async def delete_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_batch_prediction_job(): @@ -2341,6 +2474,13 @@ async def cancel_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_cancel_batch_prediction_job(): @@ -2429,6 +2569,13 @@ async def create_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_model_deployment_monitoring_job(): @@ -2546,6 +2693,13 @@ async def search_model_deployment_monitoring_stats_anomalies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_search_model_deployment_monitoring_stats_anomalies(): @@ -2674,6 +2828,13 @@ async def get_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_model_deployment_monitoring_job(): @@ -2775,6 +2936,13 @@ async def list_model_deployment_monitoring_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_model_deployment_monitoring_jobs(): @@ -2887,6 +3055,13 @@ async def update_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_model_deployment_monitoring_job(): @@ -3046,6 +3221,13 @@ async def delete_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_model_deployment_monitoring_job(): @@ -3169,6 +3351,13 @@ async def pause_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_pause_model_deployment_monitoring_job(): @@ -3257,6 +3446,13 @@ async def resume_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_resume_model_deployment_monitoring_job(): diff --git a/google/cloud/aiplatform_v1/services/job_service/client.py b/google/cloud/aiplatform_v1/services/job_service/client.py index 34b4dc8429..5a2bd1030a 100644 --- a/google/cloud/aiplatform_v1/services/job_service/client.py +++ b/google/cloud/aiplatform_v1/services/job_service/client.py @@ -701,6 +701,13 @@ def create_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_custom_job(): @@ -815,6 +822,13 @@ def get_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_custom_job(): @@ -916,6 +930,13 @@ def list_custom_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_custom_jobs(): @@ -1025,6 +1046,13 @@ def delete_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_custom_job(): @@ -1155,6 +1183,13 @@ def cancel_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_cancel_custom_job(): @@ -1239,6 +1274,13 @@ def create_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_data_labeling_job(): @@ -1248,7 +1290,7 @@ def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" @@ -1353,6 +1395,13 @@ def get_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_data_labeling_job(): @@ -1449,6 +1498,13 @@ def list_data_labeling_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_data_labeling_jobs(): @@ -1557,6 +1613,13 @@ def delete_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_data_labeling_job(): @@ -1676,6 +1739,13 @@ def cancel_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_cancel_data_labeling_job(): @@ -1760,6 +1830,13 @@ def create_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_hyperparameter_tuning_job(): @@ -1881,6 +1958,13 @@ def get_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_hyperparameter_tuning_job(): @@ -1981,6 +2065,13 @@ def list_hyperparameter_tuning_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_hyperparameter_tuning_jobs(): @@ -2092,6 +2183,13 @@ def delete_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_hyperparameter_tuning_job(): @@ -2225,6 +2323,13 @@ def cancel_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_cancel_hyperparameter_tuning_job(): @@ -2313,6 +2418,13 @@ def create_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_batch_prediction_job(): @@ -2322,7 +2434,7 @@ def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" @@ -2432,6 +2544,13 @@ def get_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_batch_prediction_job(): @@ -2532,6 +2651,13 @@ def list_batch_prediction_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_batch_prediction_jobs(): @@ -2644,6 +2770,13 @@ def delete_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_batch_prediction_job(): @@ -2775,6 +2908,13 @@ def cancel_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_cancel_batch_prediction_job(): @@ -2865,6 +3005,13 @@ def create_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_model_deployment_monitoring_job(): @@ -2988,6 +3135,13 @@ def search_model_deployment_monitoring_stats_anomalies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_search_model_deployment_monitoring_stats_anomalies(): @@ -3122,6 +3276,13 @@ def get_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_model_deployment_monitoring_job(): @@ -3225,6 +3386,13 @@ def list_model_deployment_monitoring_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_model_deployment_monitoring_jobs(): @@ -3341,6 +3509,13 @@ def update_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_model_deployment_monitoring_job(): @@ -3506,6 +3681,13 @@ def delete_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_model_deployment_monitoring_job(): @@ -3633,6 +3815,13 @@ def pause_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_pause_model_deployment_monitoring_job(): @@ -3725,6 +3914,13 @@ def resume_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_resume_model_deployment_monitoring_job(): diff --git a/google/cloud/aiplatform_v1/services/metadata_service/async_client.py b/google/cloud/aiplatform_v1/services/metadata_service/async_client.py index d290614128..79ead6d7f1 100644 --- a/google/cloud/aiplatform_v1/services/metadata_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/metadata_service/async_client.py @@ -254,6 +254,13 @@ async def create_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_metadata_store(): @@ -390,6 +397,13 @@ async def get_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_metadata_store(): @@ -487,6 +501,13 @@ async def list_metadata_stores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_metadata_stores(): @@ -597,6 +618,13 @@ async def delete_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_metadata_store(): @@ -717,6 +745,13 @@ async def create_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_artifact(): @@ -835,6 +870,13 @@ async def get_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_artifact(): @@ -929,6 +971,13 @@ async def list_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_artifacts(): @@ -1039,6 +1088,13 @@ async def update_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_artifact(): @@ -1148,6 +1204,13 @@ async def delete_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_artifact(): @@ -1266,6 +1329,13 @@ async def purge_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_purge_artifacts(): @@ -1381,6 +1451,13 @@ async def create_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_context(): @@ -1499,6 +1576,13 @@ async def get_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_context(): @@ -1593,6 +1677,13 @@ async def list_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_contexts(): @@ -1703,6 +1794,13 @@ async def update_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_context(): @@ -1811,6 +1909,13 @@ async def delete_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_context(): @@ -1929,6 +2034,13 @@ async def purge_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_purge_contexts(): @@ -2048,6 +2160,13 @@ async def add_context_artifacts_and_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_add_context_artifacts_and_executions(): @@ -2173,6 +2292,13 @@ async def add_context_children( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_add_context_children(): @@ -2283,6 +2409,13 @@ async def query_context_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_query_context_lineage_subgraph(): @@ -2388,6 +2521,13 @@ async def create_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_execution(): @@ -2506,6 +2646,13 @@ async def get_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_execution(): @@ -2600,6 +2747,13 @@ async def list_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_executions(): @@ -2710,6 +2864,13 @@ async def update_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_execution(): @@ -2819,6 +2980,13 @@ async def delete_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_execution(): @@ -2937,6 +3105,13 @@ async def purge_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_purge_executions(): @@ -3055,6 +3230,13 @@ async def add_execution_events( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_add_execution_events(): @@ -3164,6 +3346,13 @@ async def query_execution_inputs_and_outputs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_query_execution_inputs_and_outputs(): @@ -3266,6 +3455,13 @@ async def create_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_metadata_schema(): @@ -3390,6 +3586,13 @@ async def get_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_metadata_schema(): @@ -3484,6 +3687,13 @@ async def list_metadata_schemas( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_metadata_schemas(): @@ -3597,6 +3807,13 @@ async def query_artifact_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_query_artifact_lineage_subgraph(): diff --git a/google/cloud/aiplatform_v1/services/metadata_service/client.py b/google/cloud/aiplatform_v1/services/metadata_service/client.py index 00ce91c221..ff75a8311e 100644 --- a/google/cloud/aiplatform_v1/services/metadata_service/client.py +++ b/google/cloud/aiplatform_v1/services/metadata_service/client.py @@ -563,6 +563,13 @@ def create_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_metadata_store(): @@ -699,6 +706,13 @@ def get_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_metadata_store(): @@ -796,6 +810,13 @@ def list_metadata_stores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_metadata_stores(): @@ -906,6 +927,13 @@ def delete_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_metadata_store(): @@ -1026,6 +1054,13 @@ def create_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_artifact(): @@ -1144,6 +1179,13 @@ def get_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_artifact(): @@ -1238,6 +1280,13 @@ def list_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_artifacts(): @@ -1348,6 +1397,13 @@ def update_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_artifact(): @@ -1457,6 +1513,13 @@ def delete_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_artifact(): @@ -1575,6 +1638,13 @@ def purge_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_purge_artifacts(): @@ -1690,6 +1760,13 @@ def create_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_context(): @@ -1808,6 +1885,13 @@ def get_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_context(): @@ -1902,6 +1986,13 @@ def list_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_contexts(): @@ -2012,6 +2103,13 @@ def update_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_context(): @@ -2120,6 +2218,13 @@ def delete_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_context(): @@ -2238,6 +2343,13 @@ def purge_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_purge_contexts(): @@ -2357,6 +2469,13 @@ def add_context_artifacts_and_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_add_context_artifacts_and_executions(): @@ -2486,6 +2605,13 @@ def add_context_children( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_add_context_children(): @@ -2596,6 +2722,13 @@ def query_context_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_query_context_lineage_subgraph(): @@ -2703,6 +2836,13 @@ def create_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_execution(): @@ -2821,6 +2961,13 @@ def get_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_execution(): @@ -2915,6 +3062,13 @@ def list_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_executions(): @@ -3025,6 +3179,13 @@ def update_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_execution(): @@ -3134,6 +3295,13 @@ def delete_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_execution(): @@ -3252,6 +3420,13 @@ def purge_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_purge_executions(): @@ -3370,6 +3545,13 @@ def add_execution_events( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_add_execution_events(): @@ -3479,6 +3661,13 @@ def query_execution_inputs_and_outputs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_query_execution_inputs_and_outputs(): @@ -3585,6 +3774,13 @@ def create_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_metadata_schema(): @@ -3709,6 +3905,13 @@ def get_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_metadata_schema(): @@ -3803,6 +4006,13 @@ def list_metadata_schemas( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_metadata_schemas(): @@ -3916,6 +4126,13 @@ def query_artifact_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_query_artifact_lineage_subgraph(): diff --git a/google/cloud/aiplatform_v1/services/migration_service/async_client.py b/google/cloud/aiplatform_v1/services/migration_service/async_client.py index 3a0f6bced0..223657797e 100644 --- a/google/cloud/aiplatform_v1/services/migration_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/migration_service/async_client.py @@ -241,6 +241,13 @@ async def search_migratable_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_search_migratable_resources(): @@ -357,6 +364,13 @@ async def batch_migrate_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_migrate_resources(): diff --git a/google/cloud/aiplatform_v1/services/migration_service/client.py b/google/cloud/aiplatform_v1/services/migration_service/client.py index 54fff9fc6c..0a839ceb21 100644 --- a/google/cloud/aiplatform_v1/services/migration_service/client.py +++ b/google/cloud/aiplatform_v1/services/migration_service/client.py @@ -196,40 +196,40 @@ def parse_annotated_dataset_path(path: str) -> Dict[str, str]: @staticmethod def dataset_path( project: str, - location: str, dataset: str, ) -> str: """Returns a fully-qualified dataset string.""" - return "projects/{project}/locations/{location}/datasets/{dataset}".format( + return "projects/{project}/datasets/{dataset}".format( project=project, - location=location, dataset=dataset, ) @staticmethod def parse_dataset_path(path: str) -> Dict[str, str]: """Parses a dataset path into its component segments.""" - m = re.match( - r"^projects/(?P.+?)/locations/(?P.+?)/datasets/(?P.+?)$", - path, - ) + m = re.match(r"^projects/(?P.+?)/datasets/(?P.+?)$", path) return m.groupdict() if m else {} @staticmethod def dataset_path( project: str, + location: str, dataset: str, ) -> str: """Returns a fully-qualified dataset string.""" - return "projects/{project}/datasets/{dataset}".format( + return "projects/{project}/locations/{location}/datasets/{dataset}".format( project=project, + location=location, dataset=dataset, ) @staticmethod def parse_dataset_path(path: str) -> Dict[str, str]: """Parses a dataset path into its component segments.""" - m = re.match(r"^projects/(?P.+?)/datasets/(?P.+?)$", path) + m = re.match( + r"^projects/(?P.+?)/locations/(?P.+?)/datasets/(?P.+?)$", + path, + ) return m.groupdict() if m else {} @staticmethod @@ -579,6 +579,13 @@ def search_migratable_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_search_migratable_resources(): @@ -697,6 +704,13 @@ def batch_migrate_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_migrate_resources(): diff --git a/google/cloud/aiplatform_v1/services/model_service/async_client.py b/google/cloud/aiplatform_v1/services/model_service/async_client.py index 1b48845930..b8ddde8e4b 100644 --- a/google/cloud/aiplatform_v1/services/model_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/model_service/async_client.py @@ -247,6 +247,13 @@ async def upload_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_upload_model(): @@ -371,6 +378,13 @@ async def get_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_model(): @@ -475,6 +489,13 @@ async def list_models( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_models(): @@ -584,6 +605,13 @@ async def list_model_versions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_model_versions(): @@ -693,6 +721,13 @@ async def update_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_model(): @@ -829,6 +864,13 @@ async def delete_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_model(): @@ -953,6 +995,13 @@ async def delete_model_version( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_model_version(): @@ -1074,6 +1123,13 @@ async def merge_version_aliases( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_merge_version_aliases(): @@ -1083,7 +1139,7 @@ async def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request @@ -1197,6 +1253,13 @@ async def export_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_export_model(): @@ -1323,6 +1386,13 @@ async def import_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_import_model_evaluation(): @@ -1435,6 +1505,13 @@ async def batch_import_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_import_model_evaluation_slices(): @@ -1540,6 +1617,13 @@ async def get_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_model_evaluation(): @@ -1638,6 +1722,13 @@ async def list_model_evaluations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_model_evaluations(): @@ -1747,6 +1838,13 @@ async def get_model_evaluation_slice( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_model_evaluation_slice(): @@ -1845,6 +1943,13 @@ async def list_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_model_evaluation_slices(): diff --git a/google/cloud/aiplatform_v1/services/model_service/client.py b/google/cloud/aiplatform_v1/services/model_service/client.py index 1432990659..1eca27f07c 100644 --- a/google/cloud/aiplatform_v1/services/model_service/client.py +++ b/google/cloud/aiplatform_v1/services/model_service/client.py @@ -552,6 +552,13 @@ def upload_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_upload_model(): @@ -676,6 +683,13 @@ def get_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_model(): @@ -780,6 +794,13 @@ def list_models( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_models(): @@ -889,6 +910,13 @@ def list_model_versions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_model_versions(): @@ -998,6 +1026,13 @@ def update_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_model(): @@ -1134,6 +1169,13 @@ def delete_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_model(): @@ -1258,6 +1300,13 @@ def delete_model_version( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_model_version(): @@ -1379,6 +1428,13 @@ def merge_version_aliases( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_merge_version_aliases(): @@ -1388,7 +1444,7 @@ def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request @@ -1502,6 +1558,13 @@ def export_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_export_model(): @@ -1628,6 +1691,13 @@ def import_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_import_model_evaluation(): @@ -1740,6 +1810,13 @@ def batch_import_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_import_model_evaluation_slices(): @@ -1849,6 +1926,13 @@ def get_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_model_evaluation(): @@ -1947,6 +2031,13 @@ def list_model_evaluations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_model_evaluations(): @@ -2056,6 +2147,13 @@ def get_model_evaluation_slice( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_model_evaluation_slice(): @@ -2156,6 +2254,13 @@ def list_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_model_evaluation_slices(): diff --git a/google/cloud/aiplatform_v1/services/pipeline_service/async_client.py b/google/cloud/aiplatform_v1/services/pipeline_service/async_client.py index da89ac6733..8ddc1f2c77 100644 --- a/google/cloud/aiplatform_v1/services/pipeline_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/pipeline_service/async_client.py @@ -259,6 +259,13 @@ async def create_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_training_pipeline(): @@ -374,6 +381,13 @@ async def get_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_training_pipeline(): @@ -474,6 +488,13 @@ async def list_training_pipelines( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_training_pipelines(): @@ -583,6 +604,13 @@ async def delete_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_training_pipeline(): @@ -713,6 +741,13 @@ async def cancel_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_cancel_training_pipeline(): @@ -800,6 +835,13 @@ async def create_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_pipeline_job(): @@ -916,6 +958,13 @@ async def get_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_pipeline_job(): @@ -1011,6 +1060,13 @@ async def list_pipeline_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_pipeline_jobs(): @@ -1120,6 +1176,13 @@ async def delete_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_pipeline_job(): @@ -1250,6 +1313,13 @@ async def cancel_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_cancel_pipeline_job(): diff --git a/google/cloud/aiplatform_v1/services/pipeline_service/client.py b/google/cloud/aiplatform_v1/services/pipeline_service/client.py index b5ee274058..987686227f 100644 --- a/google/cloud/aiplatform_v1/services/pipeline_service/client.py +++ b/google/cloud/aiplatform_v1/services/pipeline_service/client.py @@ -643,6 +643,13 @@ def create_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_training_pipeline(): @@ -758,6 +765,13 @@ def get_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_training_pipeline(): @@ -858,6 +872,13 @@ def list_training_pipelines( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_training_pipelines(): @@ -967,6 +988,13 @@ def delete_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_training_pipeline(): @@ -1097,6 +1125,13 @@ def cancel_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_cancel_training_pipeline(): @@ -1184,6 +1219,13 @@ def create_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_pipeline_job(): @@ -1300,6 +1342,13 @@ def get_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_pipeline_job(): @@ -1395,6 +1444,13 @@ def list_pipeline_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_pipeline_jobs(): @@ -1504,6 +1560,13 @@ def delete_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_pipeline_job(): @@ -1634,6 +1697,13 @@ def cancel_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_cancel_pipeline_job(): diff --git a/google/cloud/aiplatform_v1/services/prediction_service/async_client.py b/google/cloud/aiplatform_v1/services/prediction_service/async_client.py index 91fb7ee67d..566a66d794 100644 --- a/google/cloud/aiplatform_v1/services/prediction_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/prediction_service/async_client.py @@ -226,6 +226,13 @@ async def predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_predict(): @@ -368,6 +375,13 @@ async def raw_predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_raw_predict(): @@ -550,6 +564,13 @@ async def explain( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_explain(): diff --git a/google/cloud/aiplatform_v1/services/prediction_service/client.py b/google/cloud/aiplatform_v1/services/prediction_service/client.py index 74487b992e..27adad10a5 100644 --- a/google/cloud/aiplatform_v1/services/prediction_service/client.py +++ b/google/cloud/aiplatform_v1/services/prediction_service/client.py @@ -471,6 +471,13 @@ def predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_predict(): @@ -613,6 +620,13 @@ def raw_predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_raw_predict(): @@ -795,6 +809,13 @@ def explain( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_explain(): diff --git a/google/cloud/aiplatform_v1/services/specialist_pool_service/async_client.py b/google/cloud/aiplatform_v1/services/specialist_pool_service/async_client.py index 2f45b8d12e..a384ccd6ae 100644 --- a/google/cloud/aiplatform_v1/services/specialist_pool_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/specialist_pool_service/async_client.py @@ -242,6 +242,13 @@ async def create_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_specialist_pool(): @@ -372,6 +379,13 @@ async def get_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_specialist_pool(): @@ -478,6 +492,13 @@ async def list_specialist_pools( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_specialist_pools(): @@ -590,6 +611,13 @@ async def delete_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_specialist_pool(): @@ -711,6 +739,13 @@ async def update_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_specialist_pool(): diff --git a/google/cloud/aiplatform_v1/services/specialist_pool_service/client.py b/google/cloud/aiplatform_v1/services/specialist_pool_service/client.py index 0e1e673371..ac0be52845 100644 --- a/google/cloud/aiplatform_v1/services/specialist_pool_service/client.py +++ b/google/cloud/aiplatform_v1/services/specialist_pool_service/client.py @@ -460,6 +460,13 @@ def create_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_specialist_pool(): @@ -590,6 +597,13 @@ def get_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_specialist_pool(): @@ -696,6 +710,13 @@ def list_specialist_pools( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_specialist_pools(): @@ -808,6 +829,13 @@ def delete_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_specialist_pool(): @@ -929,6 +957,13 @@ def update_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_specialist_pool(): diff --git a/google/cloud/aiplatform_v1/services/tensorboard_service/async_client.py b/google/cloud/aiplatform_v1/services/tensorboard_service/async_client.py index 225a5e05ff..4ec8f12b68 100644 --- a/google/cloud/aiplatform_v1/services/tensorboard_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/tensorboard_service/async_client.py @@ -269,6 +269,13 @@ async def create_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_tensorboard(): @@ -392,6 +399,13 @@ async def get_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_tensorboard(): @@ -492,6 +506,13 @@ async def update_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_tensorboard(): @@ -623,6 +644,13 @@ async def list_tensorboards( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_tensorboards(): @@ -732,6 +760,13 @@ async def delete_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_tensorboard(): @@ -854,6 +889,13 @@ async def create_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_tensorboard_experiment(): @@ -977,6 +1019,13 @@ async def get_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_tensorboard_experiment(): @@ -1078,6 +1127,13 @@ async def update_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_tensorboard_experiment(): @@ -1194,6 +1250,13 @@ async def list_tensorboard_experiments( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_tensorboard_experiments(): @@ -1306,6 +1369,13 @@ async def delete_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_tensorboard_experiment(): @@ -1426,6 +1496,13 @@ async def create_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_tensorboard_run(): @@ -1554,6 +1631,13 @@ async def batch_create_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_create_tensorboard_runs(): @@ -1670,6 +1754,13 @@ async def get_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_tensorboard_run(): @@ -1769,6 +1860,13 @@ async def update_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_tensorboard_run(): @@ -1886,6 +1984,13 @@ async def list_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_tensorboard_runs(): @@ -1996,6 +2101,13 @@ async def delete_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_tensorboard_run(): @@ -2120,6 +2232,13 @@ async def batch_create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_create_tensorboard_time_series(): @@ -2240,6 +2359,13 @@ async def create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_tensorboard_time_series(): @@ -2352,6 +2478,13 @@ async def get_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_tensorboard_time_series(): @@ -2451,6 +2584,13 @@ async def update_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_update_tensorboard_time_series(): @@ -2575,6 +2715,13 @@ async def list_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_tensorboard_time_series(): @@ -2687,6 +2834,13 @@ async def delete_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_tensorboard_time_series(): @@ -2812,6 +2966,13 @@ async def batch_read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_batch_read_tensorboard_time_series_data(): @@ -2821,7 +2982,7 @@ async def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request @@ -2921,6 +3082,13 @@ async def read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_read_tensorboard_time_series_data(): @@ -3022,6 +3190,13 @@ def read_tensorboard_blob_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_read_tensorboard_blob_data(): @@ -3128,6 +3303,13 @@ async def write_tensorboard_experiment_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_write_tensorboard_experiment_data(): @@ -3244,6 +3426,13 @@ async def write_tensorboard_run_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_write_tensorboard_run_data(): @@ -3365,6 +3554,13 @@ async def export_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_export_tensorboard_time_series_data(): diff --git a/google/cloud/aiplatform_v1/services/tensorboard_service/client.py b/google/cloud/aiplatform_v1/services/tensorboard_service/client.py index 130ea27fa7..ed3e1952fb 100644 --- a/google/cloud/aiplatform_v1/services/tensorboard_service/client.py +++ b/google/cloud/aiplatform_v1/services/tensorboard_service/client.py @@ -545,6 +545,13 @@ def create_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_tensorboard(): @@ -668,6 +675,13 @@ def get_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_tensorboard(): @@ -768,6 +782,13 @@ def update_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_tensorboard(): @@ -899,6 +920,13 @@ def list_tensorboards( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_tensorboards(): @@ -1008,6 +1036,13 @@ def delete_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_tensorboard(): @@ -1130,6 +1165,13 @@ def create_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_tensorboard_experiment(): @@ -1257,6 +1299,13 @@ def get_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_tensorboard_experiment(): @@ -1360,6 +1409,13 @@ def update_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_tensorboard_experiment(): @@ -1480,6 +1536,13 @@ def list_tensorboard_experiments( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_tensorboard_experiments(): @@ -1596,6 +1659,13 @@ def delete_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_tensorboard_experiment(): @@ -1720,6 +1790,13 @@ def create_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_tensorboard_run(): @@ -1848,6 +1925,13 @@ def batch_create_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_create_tensorboard_runs(): @@ -1968,6 +2052,13 @@ def get_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_tensorboard_run(): @@ -2067,6 +2158,13 @@ def update_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_tensorboard_run(): @@ -2184,6 +2282,13 @@ def list_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_tensorboard_runs(): @@ -2294,6 +2399,13 @@ def delete_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_tensorboard_run(): @@ -2418,6 +2530,13 @@ def batch_create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_create_tensorboard_time_series(): @@ -2544,6 +2663,13 @@ def create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_tensorboard_time_series(): @@ -2660,6 +2786,13 @@ def get_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_tensorboard_time_series(): @@ -2761,6 +2894,13 @@ def update_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_update_tensorboard_time_series(): @@ -2889,6 +3029,13 @@ def list_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_tensorboard_time_series(): @@ -3005,6 +3152,13 @@ def delete_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_tensorboard_time_series(): @@ -3134,6 +3288,13 @@ def batch_read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_batch_read_tensorboard_time_series_data(): @@ -3143,7 +3304,7 @@ def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request @@ -3249,6 +3410,13 @@ def read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_read_tensorboard_time_series_data(): @@ -3354,6 +3522,13 @@ def read_tensorboard_blob_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_read_tensorboard_blob_data(): @@ -3462,6 +3637,13 @@ def write_tensorboard_experiment_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_write_tensorboard_experiment_data(): @@ -3582,6 +3764,13 @@ def write_tensorboard_run_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_write_tensorboard_run_data(): @@ -3705,6 +3894,13 @@ def export_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_export_tensorboard_time_series_data(): diff --git a/google/cloud/aiplatform_v1/services/vizier_service/async_client.py b/google/cloud/aiplatform_v1/services/vizier_service/async_client.py index b12036cfda..19fdef0e3d 100644 --- a/google/cloud/aiplatform_v1/services/vizier_service/async_client.py +++ b/google/cloud/aiplatform_v1/services/vizier_service/async_client.py @@ -234,6 +234,13 @@ async def create_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_study(): @@ -346,6 +353,13 @@ async def get_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_study(): @@ -440,6 +454,13 @@ async def list_studies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_studies(): @@ -549,6 +570,13 @@ async def delete_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_study(): @@ -634,6 +662,13 @@ async def lookup_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_lookup_study(): @@ -732,6 +767,13 @@ async def suggest_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_suggest_trials(): @@ -825,6 +867,13 @@ async def create_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_create_trial(): @@ -931,6 +980,13 @@ async def get_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_get_trial(): @@ -1029,6 +1085,13 @@ async def list_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_trials(): @@ -1139,6 +1202,13 @@ async def add_trial_measurement( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_add_trial_measurement(): @@ -1217,6 +1287,13 @@ async def complete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_complete_trial(): @@ -1294,6 +1371,13 @@ async def delete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_delete_trial(): @@ -1379,6 +1463,13 @@ async def check_trial_early_stopping_state( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_check_trial_early_stopping_state(): @@ -1470,6 +1561,13 @@ async def stop_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_stop_trial(): @@ -1550,6 +1648,13 @@ async def list_optimal_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 async def sample_list_optimal_trials(): diff --git a/google/cloud/aiplatform_v1/services/vizier_service/client.py b/google/cloud/aiplatform_v1/services/vizier_service/client.py index 37704a871a..7b0d8d442e 100644 --- a/google/cloud/aiplatform_v1/services/vizier_service/client.py +++ b/google/cloud/aiplatform_v1/services/vizier_service/client.py @@ -499,6 +499,13 @@ def create_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_study(): @@ -611,6 +618,13 @@ def get_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_study(): @@ -705,6 +719,13 @@ def list_studies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_studies(): @@ -814,6 +835,13 @@ def delete_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_study(): @@ -899,6 +927,13 @@ def lookup_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_lookup_study(): @@ -997,6 +1032,13 @@ def suggest_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_suggest_trials(): @@ -1091,6 +1133,13 @@ def create_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_create_trial(): @@ -1197,6 +1246,13 @@ def get_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_get_trial(): @@ -1295,6 +1351,13 @@ def list_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_trials(): @@ -1405,6 +1468,13 @@ def add_trial_measurement( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_add_trial_measurement(): @@ -1484,6 +1554,13 @@ def complete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_complete_trial(): @@ -1562,6 +1639,13 @@ def delete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_delete_trial(): @@ -1647,6 +1731,13 @@ def check_trial_early_stopping_state( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_check_trial_early_stopping_state(): @@ -1741,6 +1832,13 @@ def stop_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_stop_trial(): @@ -1822,6 +1920,13 @@ def list_optimal_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 def sample_list_optimal_trials(): diff --git a/google/cloud/aiplatform_v1beta1/services/dataset_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/dataset_service/async_client.py index 624ac1fffe..fe25233152 100644 --- a/google/cloud/aiplatform_v1beta1/services/dataset_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/dataset_service/async_client.py @@ -246,6 +246,13 @@ async def create_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_dataset(): @@ -370,6 +377,13 @@ async def get_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_dataset(): @@ -466,6 +480,13 @@ async def update_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_dataset(): @@ -583,6 +604,13 @@ async def list_datasets( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_datasets(): @@ -691,6 +719,13 @@ async def delete_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_dataset(): @@ -810,6 +845,13 @@ async def import_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_import_data(): @@ -818,7 +860,7 @@ async def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1beta1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1beta1.ImportDataRequest( @@ -937,6 +979,13 @@ async def export_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_export_data(): @@ -1061,6 +1110,13 @@ async def list_data_items( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_data_items(): @@ -1170,6 +1226,13 @@ async def list_saved_queries( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_saved_queries(): @@ -1279,6 +1342,13 @@ async def get_annotation_spec( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_annotation_spec(): @@ -1375,6 +1445,13 @@ async def list_annotations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_annotations(): diff --git a/google/cloud/aiplatform_v1beta1/services/dataset_service/client.py b/google/cloud/aiplatform_v1beta1/services/dataset_service/client.py index 930f62c4d2..bc71190e1d 100644 --- a/google/cloud/aiplatform_v1beta1/services/dataset_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/dataset_service/client.py @@ -559,6 +559,13 @@ def create_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_dataset(): @@ -683,6 +690,13 @@ def get_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_dataset(): @@ -779,6 +793,13 @@ def update_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_dataset(): @@ -896,6 +917,13 @@ def list_datasets( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_datasets(): @@ -1004,6 +1032,13 @@ def delete_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_dataset(): @@ -1123,6 +1158,13 @@ def import_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_import_data(): @@ -1131,7 +1173,7 @@ def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1beta1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1beta1.ImportDataRequest( @@ -1250,6 +1292,13 @@ def export_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_export_data(): @@ -1374,6 +1423,13 @@ def list_data_items( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_data_items(): @@ -1483,6 +1539,13 @@ def list_saved_queries( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_saved_queries(): @@ -1592,6 +1655,13 @@ def get_annotation_spec( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_annotation_spec(): @@ -1688,6 +1758,13 @@ def list_annotations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_annotations(): diff --git a/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/async_client.py index e8aac37bad..f41517d69f 100644 --- a/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/async_client.py @@ -255,6 +255,13 @@ async def create_deployment_resource_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_deployment_resource_pool(): @@ -401,6 +408,13 @@ async def get_deployment_resource_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_deployment_resource_pool(): @@ -503,6 +517,13 @@ async def list_deployment_resource_pools( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_deployment_resource_pools(): @@ -617,6 +638,13 @@ async def delete_deployment_resource_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_deployment_resource_pool(): @@ -740,6 +768,13 @@ async def query_deployed_models( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_query_deployed_models(): diff --git a/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/client.py b/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/client.py index adef374875..d03d9fc044 100644 --- a/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/deployment_resource_pool_service/client.py @@ -509,6 +509,13 @@ def create_deployment_resource_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_deployment_resource_pool(): @@ -662,6 +669,13 @@ def get_deployment_resource_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_deployment_resource_pool(): @@ -768,6 +782,13 @@ def list_deployment_resource_pools( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_deployment_resource_pools(): @@ -888,6 +909,13 @@ def delete_deployment_resource_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_deployment_resource_pool(): @@ -1018,6 +1046,13 @@ def query_deployed_models( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_query_deployed_models(): diff --git a/google/cloud/aiplatform_v1beta1/services/endpoint_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/endpoint_service/async_client.py index 01c2a9de1f..2aa77d2354 100644 --- a/google/cloud/aiplatform_v1beta1/services/endpoint_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/endpoint_service/async_client.py @@ -246,6 +246,13 @@ async def create_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_endpoint(): @@ -384,6 +391,13 @@ async def get_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_endpoint(): @@ -480,6 +494,13 @@ async def list_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_endpoints(): @@ -590,6 +611,13 @@ async def update_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_endpoint(): @@ -700,6 +728,13 @@ async def delete_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_endpoint(): @@ -821,6 +856,13 @@ async def deploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_deploy_model(): @@ -978,6 +1020,13 @@ async def undeploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_undeploy_model(): diff --git a/google/cloud/aiplatform_v1beta1/services/endpoint_service/client.py b/google/cloud/aiplatform_v1beta1/services/endpoint_service/client.py index cecd22e69a..b63460aaaa 100644 --- a/google/cloud/aiplatform_v1beta1/services/endpoint_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/endpoint_service/client.py @@ -540,6 +540,13 @@ def create_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_endpoint(): @@ -678,6 +685,13 @@ def get_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_endpoint(): @@ -774,6 +788,13 @@ def list_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_endpoints(): @@ -884,6 +905,13 @@ def update_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_endpoint(): @@ -994,6 +1022,13 @@ def delete_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_endpoint(): @@ -1115,6 +1150,13 @@ def deploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_deploy_model(): @@ -1271,6 +1313,13 @@ def undeploy_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_undeploy_model(): diff --git a/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/async_client.py index 73eb58164c..ab978182d0 100644 --- a/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/async_client.py @@ -251,6 +251,13 @@ async def read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_read_feature_values(): @@ -259,7 +266,7 @@ async def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ReadFeatureValuesRequest( entity_type="entity_type_value", @@ -363,6 +370,13 @@ def streaming_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_streaming_read_feature_values(): @@ -371,11 +385,11 @@ async def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) @@ -479,6 +493,13 @@ async def write_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_write_feature_values(): diff --git a/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/client.py b/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/client.py index 54fce65e2f..47d59c8287 100644 --- a/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/featurestore_online_serving_service/client.py @@ -459,6 +459,13 @@ def read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_read_feature_values(): @@ -467,7 +474,7 @@ def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ReadFeatureValuesRequest( entity_type="entity_type_value", @@ -571,6 +578,13 @@ def streaming_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_streaming_read_feature_values(): @@ -579,11 +593,11 @@ def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) @@ -693,6 +707,13 @@ def write_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_write_feature_values(): diff --git a/google/cloud/aiplatform_v1beta1/services/featurestore_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/featurestore_service/async_client.py index 62b5b65da4..3311794cb2 100644 --- a/google/cloud/aiplatform_v1beta1/services/featurestore_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/featurestore_service/async_client.py @@ -248,6 +248,13 @@ async def create_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_featurestore(): @@ -385,6 +392,13 @@ async def get_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_featurestore(): @@ -483,6 +497,13 @@ async def list_featurestores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_featurestores(): @@ -593,6 +614,13 @@ async def update_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_featurestore(): @@ -730,6 +758,13 @@ async def delete_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_featurestore(): @@ -862,6 +897,13 @@ async def create_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_entity_type(): @@ -998,6 +1040,13 @@ async def get_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_entity_type(): @@ -1097,6 +1146,13 @@ async def list_entity_types( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_entity_types(): @@ -1207,6 +1263,13 @@ async def update_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_entity_type(): @@ -1338,6 +1401,13 @@ async def delete_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_entity_type(): @@ -1469,6 +1539,13 @@ async def create_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_feature(): @@ -1609,6 +1686,13 @@ async def batch_create_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_create_features(): @@ -1740,6 +1824,13 @@ async def get_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_feature(): @@ -1838,6 +1929,13 @@ async def list_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_features(): @@ -1948,6 +2046,13 @@ async def update_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_feature(): @@ -2073,6 +2178,13 @@ async def delete_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_feature(): @@ -2211,6 +2323,13 @@ async def import_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_import_feature_values(): @@ -2219,7 +2338,7 @@ async def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1beta1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1beta1.FeatureSpec() feature_specs.id = "id_value" @@ -2340,6 +2459,13 @@ async def batch_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_read_feature_values(): @@ -2348,14 +2474,14 @@ async def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1beta1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1beta1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1beta1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, @@ -2468,6 +2594,13 @@ async def export_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_export_feature_values(): @@ -2479,7 +2612,7 @@ async def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ExportFeatureValuesRequest( entity_type="entity_type_value", @@ -2592,6 +2725,13 @@ async def search_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_search_features(): diff --git a/google/cloud/aiplatform_v1beta1/services/featurestore_service/client.py b/google/cloud/aiplatform_v1beta1/services/featurestore_service/client.py index 3ef61a1875..069e10f90d 100644 --- a/google/cloud/aiplatform_v1beta1/services/featurestore_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/featurestore_service/client.py @@ -514,6 +514,13 @@ def create_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_featurestore(): @@ -651,6 +658,13 @@ def get_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_featurestore(): @@ -749,6 +763,13 @@ def list_featurestores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_featurestores(): @@ -859,6 +880,13 @@ def update_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_featurestore(): @@ -996,6 +1024,13 @@ def delete_featurestore( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_featurestore(): @@ -1128,6 +1163,13 @@ def create_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_entity_type(): @@ -1264,6 +1306,13 @@ def get_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_entity_type(): @@ -1363,6 +1412,13 @@ def list_entity_types( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_entity_types(): @@ -1473,6 +1529,13 @@ def update_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_entity_type(): @@ -1604,6 +1667,13 @@ def delete_entity_type( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_entity_type(): @@ -1735,6 +1805,13 @@ def create_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_feature(): @@ -1875,6 +1952,13 @@ def batch_create_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_create_features(): @@ -2006,6 +2090,13 @@ def get_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_feature(): @@ -2104,6 +2195,13 @@ def list_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_features(): @@ -2214,6 +2312,13 @@ def update_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_feature(): @@ -2339,6 +2444,13 @@ def delete_feature( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_feature(): @@ -2477,6 +2589,13 @@ def import_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_import_feature_values(): @@ -2485,7 +2604,7 @@ def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1beta1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1beta1.FeatureSpec() feature_specs.id = "id_value" @@ -2606,6 +2725,13 @@ def batch_read_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_read_feature_values(): @@ -2614,14 +2740,14 @@ def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1beta1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1beta1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1beta1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, @@ -2736,6 +2862,13 @@ def export_feature_values( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_export_feature_values(): @@ -2747,7 +2880,7 @@ def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ExportFeatureValuesRequest( entity_type="entity_type_value", @@ -2860,6 +2993,13 @@ def search_features( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_search_features(): diff --git a/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/async_client.py index 3bd4f951ba..a30c43a923 100644 --- a/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/async_client.py @@ -233,6 +233,13 @@ async def create_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_index_endpoint(): @@ -356,6 +363,13 @@ async def get_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_index_endpoint(): @@ -453,6 +467,13 @@ async def list_index_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_index_endpoints(): @@ -563,6 +584,13 @@ async def update_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_index_endpoint(): @@ -673,6 +701,13 @@ async def delete_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_index_endpoint(): @@ -794,6 +829,13 @@ async def deploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_deploy_index(): @@ -925,6 +967,13 @@ async def undeploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_undeploy_index(): @@ -1051,6 +1100,13 @@ async def mutate_deployed_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_mutate_deployed_index(): diff --git a/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/client.py b/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/client.py index f420b4411f..990305b943 100644 --- a/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/index_endpoint_service/client.py @@ -475,6 +475,13 @@ def create_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_index_endpoint(): @@ -598,6 +605,13 @@ def get_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_index_endpoint(): @@ -695,6 +709,13 @@ def list_index_endpoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_index_endpoints(): @@ -805,6 +826,13 @@ def update_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_index_endpoint(): @@ -915,6 +943,13 @@ def delete_index_endpoint( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_index_endpoint(): @@ -1036,6 +1071,13 @@ def deploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_deploy_index(): @@ -1167,6 +1209,13 @@ def undeploy_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_undeploy_index(): @@ -1293,6 +1342,13 @@ def mutate_deployed_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_mutate_deployed_index(): diff --git a/google/cloud/aiplatform_v1beta1/services/index_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/index_service/async_client.py index 6819240043..b811a6468c 100644 --- a/google/cloud/aiplatform_v1beta1/services/index_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/index_service/async_client.py @@ -232,6 +232,13 @@ async def create_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_index(): @@ -354,6 +361,13 @@ async def get_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_index(): @@ -451,6 +465,13 @@ async def list_indexes( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_indexes(): @@ -561,6 +582,13 @@ async def update_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_index(): @@ -688,6 +716,13 @@ async def delete_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_index(): @@ -805,6 +840,13 @@ async def upsert_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_upsert_datapoints(): @@ -878,6 +920,13 @@ async def remove_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_remove_datapoints(): diff --git a/google/cloud/aiplatform_v1beta1/services/index_service/client.py b/google/cloud/aiplatform_v1beta1/services/index_service/client.py index beac88f4cd..98540734f8 100644 --- a/google/cloud/aiplatform_v1beta1/services/index_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/index_service/client.py @@ -477,6 +477,13 @@ def create_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_index(): @@ -599,6 +606,13 @@ def get_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_index(): @@ -696,6 +710,13 @@ def list_indexes( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_indexes(): @@ -806,6 +827,13 @@ def update_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_index(): @@ -933,6 +961,13 @@ def delete_index( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_index(): @@ -1050,6 +1085,13 @@ def upsert_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_upsert_datapoints(): @@ -1124,6 +1166,13 @@ def remove_datapoints( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_remove_datapoints(): diff --git a/google/cloud/aiplatform_v1beta1/services/job_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/job_service/async_client.py index 9b864e2372..9cee6f342c 100644 --- a/google/cloud/aiplatform_v1beta1/services/job_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/job_service/async_client.py @@ -285,6 +285,13 @@ async def create_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_custom_job(): @@ -399,6 +406,13 @@ async def get_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_custom_job(): @@ -500,6 +514,13 @@ async def list_custom_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_custom_jobs(): @@ -609,6 +630,13 @@ async def delete_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_custom_job(): @@ -739,6 +767,13 @@ async def cancel_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_cancel_custom_job(): @@ -823,6 +858,13 @@ async def create_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_data_labeling_job(): @@ -832,7 +874,7 @@ async def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1beta1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" @@ -937,6 +979,13 @@ async def get_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_data_labeling_job(): @@ -1033,6 +1082,13 @@ async def list_data_labeling_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_data_labeling_jobs(): @@ -1141,6 +1197,13 @@ async def delete_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_data_labeling_job(): @@ -1260,6 +1323,13 @@ async def cancel_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_cancel_data_labeling_job(): @@ -1344,6 +1414,13 @@ async def create_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_hyperparameter_tuning_job(): @@ -1463,6 +1540,13 @@ async def get_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_hyperparameter_tuning_job(): @@ -1561,6 +1645,13 @@ async def list_hyperparameter_tuning_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_hyperparameter_tuning_jobs(): @@ -1670,6 +1761,13 @@ async def delete_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_hyperparameter_tuning_job(): @@ -1801,6 +1899,13 @@ async def cancel_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_cancel_hyperparameter_tuning_job(): @@ -1887,6 +1992,13 @@ async def create_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_batch_prediction_job(): @@ -1896,7 +2008,7 @@ async def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1beta1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" @@ -2004,6 +2116,13 @@ async def get_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_batch_prediction_job(): @@ -2104,6 +2223,13 @@ async def list_batch_prediction_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_batch_prediction_jobs(): @@ -2214,6 +2340,13 @@ async def delete_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_batch_prediction_job(): @@ -2343,6 +2476,13 @@ async def cancel_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_cancel_batch_prediction_job(): @@ -2431,6 +2571,13 @@ async def create_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_model_deployment_monitoring_job(): @@ -2548,6 +2695,13 @@ async def search_model_deployment_monitoring_stats_anomalies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_search_model_deployment_monitoring_stats_anomalies(): @@ -2676,6 +2830,13 @@ async def get_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_model_deployment_monitoring_job(): @@ -2777,6 +2938,13 @@ async def list_model_deployment_monitoring_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_model_deployment_monitoring_jobs(): @@ -2889,6 +3057,13 @@ async def update_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_model_deployment_monitoring_job(): @@ -3048,6 +3223,13 @@ async def delete_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_model_deployment_monitoring_job(): @@ -3171,6 +3353,13 @@ async def pause_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_pause_model_deployment_monitoring_job(): @@ -3259,6 +3448,13 @@ async def resume_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_resume_model_deployment_monitoring_job(): diff --git a/google/cloud/aiplatform_v1beta1/services/job_service/client.py b/google/cloud/aiplatform_v1beta1/services/job_service/client.py index d9482f5dfa..35853d8f9b 100644 --- a/google/cloud/aiplatform_v1beta1/services/job_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/job_service/client.py @@ -703,6 +703,13 @@ def create_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_custom_job(): @@ -817,6 +824,13 @@ def get_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_custom_job(): @@ -918,6 +932,13 @@ def list_custom_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_custom_jobs(): @@ -1027,6 +1048,13 @@ def delete_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_custom_job(): @@ -1157,6 +1185,13 @@ def cancel_custom_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_cancel_custom_job(): @@ -1241,6 +1276,13 @@ def create_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_data_labeling_job(): @@ -1250,7 +1292,7 @@ def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1beta1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" @@ -1355,6 +1397,13 @@ def get_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_data_labeling_job(): @@ -1451,6 +1500,13 @@ def list_data_labeling_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_data_labeling_jobs(): @@ -1559,6 +1615,13 @@ def delete_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_data_labeling_job(): @@ -1678,6 +1741,13 @@ def cancel_data_labeling_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_cancel_data_labeling_job(): @@ -1762,6 +1832,13 @@ def create_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_hyperparameter_tuning_job(): @@ -1883,6 +1960,13 @@ def get_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_hyperparameter_tuning_job(): @@ -1983,6 +2067,13 @@ def list_hyperparameter_tuning_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_hyperparameter_tuning_jobs(): @@ -2094,6 +2185,13 @@ def delete_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_hyperparameter_tuning_job(): @@ -2227,6 +2325,13 @@ def cancel_hyperparameter_tuning_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_cancel_hyperparameter_tuning_job(): @@ -2315,6 +2420,13 @@ def create_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_batch_prediction_job(): @@ -2324,7 +2436,7 @@ def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1beta1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" @@ -2434,6 +2546,13 @@ def get_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_batch_prediction_job(): @@ -2534,6 +2653,13 @@ def list_batch_prediction_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_batch_prediction_jobs(): @@ -2646,6 +2772,13 @@ def delete_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_batch_prediction_job(): @@ -2777,6 +2910,13 @@ def cancel_batch_prediction_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_cancel_batch_prediction_job(): @@ -2867,6 +3007,13 @@ def create_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_model_deployment_monitoring_job(): @@ -2990,6 +3137,13 @@ def search_model_deployment_monitoring_stats_anomalies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_search_model_deployment_monitoring_stats_anomalies(): @@ -3124,6 +3278,13 @@ def get_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_model_deployment_monitoring_job(): @@ -3227,6 +3388,13 @@ def list_model_deployment_monitoring_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_model_deployment_monitoring_jobs(): @@ -3343,6 +3511,13 @@ def update_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_model_deployment_monitoring_job(): @@ -3508,6 +3683,13 @@ def delete_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_model_deployment_monitoring_job(): @@ -3635,6 +3817,13 @@ def pause_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_pause_model_deployment_monitoring_job(): @@ -3727,6 +3916,13 @@ def resume_model_deployment_monitoring_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_resume_model_deployment_monitoring_job(): diff --git a/google/cloud/aiplatform_v1beta1/services/metadata_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/metadata_service/async_client.py index eaaad9cd6a..9a98e4380a 100644 --- a/google/cloud/aiplatform_v1beta1/services/metadata_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/metadata_service/async_client.py @@ -254,6 +254,13 @@ async def create_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_metadata_store(): @@ -390,6 +397,13 @@ async def get_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_metadata_store(): @@ -487,6 +501,13 @@ async def list_metadata_stores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_metadata_stores(): @@ -597,6 +618,13 @@ async def delete_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_metadata_store(): @@ -717,6 +745,13 @@ async def create_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_artifact(): @@ -835,6 +870,13 @@ async def get_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_artifact(): @@ -929,6 +971,13 @@ async def list_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_artifacts(): @@ -1039,6 +1088,13 @@ async def update_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_artifact(): @@ -1148,6 +1204,13 @@ async def delete_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_artifact(): @@ -1266,6 +1329,13 @@ async def purge_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_purge_artifacts(): @@ -1381,6 +1451,13 @@ async def create_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_context(): @@ -1499,6 +1576,13 @@ async def get_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_context(): @@ -1593,6 +1677,13 @@ async def list_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_contexts(): @@ -1703,6 +1794,13 @@ async def update_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_context(): @@ -1811,6 +1909,13 @@ async def delete_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_context(): @@ -1929,6 +2034,13 @@ async def purge_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_purge_contexts(): @@ -2048,6 +2160,13 @@ async def add_context_artifacts_and_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_add_context_artifacts_and_executions(): @@ -2173,6 +2292,13 @@ async def add_context_children( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_add_context_children(): @@ -2283,6 +2409,13 @@ async def query_context_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_query_context_lineage_subgraph(): @@ -2388,6 +2521,13 @@ async def create_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_execution(): @@ -2506,6 +2646,13 @@ async def get_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_execution(): @@ -2600,6 +2747,13 @@ async def list_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_executions(): @@ -2710,6 +2864,13 @@ async def update_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_execution(): @@ -2819,6 +2980,13 @@ async def delete_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_execution(): @@ -2937,6 +3105,13 @@ async def purge_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_purge_executions(): @@ -3055,6 +3230,13 @@ async def add_execution_events( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_add_execution_events(): @@ -3164,6 +3346,13 @@ async def query_execution_inputs_and_outputs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_query_execution_inputs_and_outputs(): @@ -3266,6 +3455,13 @@ async def create_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_metadata_schema(): @@ -3390,6 +3586,13 @@ async def get_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_metadata_schema(): @@ -3484,6 +3687,13 @@ async def list_metadata_schemas( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_metadata_schemas(): @@ -3597,6 +3807,13 @@ async def query_artifact_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_query_artifact_lineage_subgraph(): diff --git a/google/cloud/aiplatform_v1beta1/services/metadata_service/client.py b/google/cloud/aiplatform_v1beta1/services/metadata_service/client.py index 095e60666a..ca72ed8a3a 100644 --- a/google/cloud/aiplatform_v1beta1/services/metadata_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/metadata_service/client.py @@ -563,6 +563,13 @@ def create_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_metadata_store(): @@ -699,6 +706,13 @@ def get_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_metadata_store(): @@ -796,6 +810,13 @@ def list_metadata_stores( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_metadata_stores(): @@ -906,6 +927,13 @@ def delete_metadata_store( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_metadata_store(): @@ -1026,6 +1054,13 @@ def create_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_artifact(): @@ -1144,6 +1179,13 @@ def get_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_artifact(): @@ -1238,6 +1280,13 @@ def list_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_artifacts(): @@ -1348,6 +1397,13 @@ def update_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_artifact(): @@ -1457,6 +1513,13 @@ def delete_artifact( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_artifact(): @@ -1575,6 +1638,13 @@ def purge_artifacts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_purge_artifacts(): @@ -1690,6 +1760,13 @@ def create_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_context(): @@ -1808,6 +1885,13 @@ def get_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_context(): @@ -1902,6 +1986,13 @@ def list_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_contexts(): @@ -2012,6 +2103,13 @@ def update_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_context(): @@ -2120,6 +2218,13 @@ def delete_context( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_context(): @@ -2238,6 +2343,13 @@ def purge_contexts( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_purge_contexts(): @@ -2357,6 +2469,13 @@ def add_context_artifacts_and_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_add_context_artifacts_and_executions(): @@ -2486,6 +2605,13 @@ def add_context_children( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_add_context_children(): @@ -2596,6 +2722,13 @@ def query_context_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_query_context_lineage_subgraph(): @@ -2703,6 +2836,13 @@ def create_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_execution(): @@ -2821,6 +2961,13 @@ def get_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_execution(): @@ -2915,6 +3062,13 @@ def list_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_executions(): @@ -3025,6 +3179,13 @@ def update_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_execution(): @@ -3134,6 +3295,13 @@ def delete_execution( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_execution(): @@ -3252,6 +3420,13 @@ def purge_executions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_purge_executions(): @@ -3370,6 +3545,13 @@ def add_execution_events( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_add_execution_events(): @@ -3479,6 +3661,13 @@ def query_execution_inputs_and_outputs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_query_execution_inputs_and_outputs(): @@ -3585,6 +3774,13 @@ def create_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_metadata_schema(): @@ -3709,6 +3905,13 @@ def get_metadata_schema( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_metadata_schema(): @@ -3803,6 +4006,13 @@ def list_metadata_schemas( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_metadata_schemas(): @@ -3916,6 +4126,13 @@ def query_artifact_lineage_subgraph( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_query_artifact_lineage_subgraph(): diff --git a/google/cloud/aiplatform_v1beta1/services/migration_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/migration_service/async_client.py index dd417d9803..9ae950aee4 100644 --- a/google/cloud/aiplatform_v1beta1/services/migration_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/migration_service/async_client.py @@ -241,6 +241,13 @@ async def search_migratable_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_search_migratable_resources(): @@ -357,6 +364,13 @@ async def batch_migrate_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_migrate_resources(): diff --git a/google/cloud/aiplatform_v1beta1/services/migration_service/client.py b/google/cloud/aiplatform_v1beta1/services/migration_service/client.py index 9581b4dd95..9ab57a863e 100644 --- a/google/cloud/aiplatform_v1beta1/services/migration_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/migration_service/client.py @@ -218,40 +218,40 @@ def parse_dataset_path(path: str) -> Dict[str, str]: @staticmethod def dataset_path( project: str, + location: str, dataset: str, ) -> str: """Returns a fully-qualified dataset string.""" - return "projects/{project}/datasets/{dataset}".format( + return "projects/{project}/locations/{location}/datasets/{dataset}".format( project=project, + location=location, dataset=dataset, ) @staticmethod def parse_dataset_path(path: str) -> Dict[str, str]: """Parses a dataset path into its component segments.""" - m = re.match(r"^projects/(?P.+?)/datasets/(?P.+?)$", path) + m = re.match( + r"^projects/(?P.+?)/locations/(?P.+?)/datasets/(?P.+?)$", + path, + ) return m.groupdict() if m else {} @staticmethod def dataset_path( project: str, - location: str, dataset: str, ) -> str: """Returns a fully-qualified dataset string.""" - return "projects/{project}/locations/{location}/datasets/{dataset}".format( + return "projects/{project}/datasets/{dataset}".format( project=project, - location=location, dataset=dataset, ) @staticmethod def parse_dataset_path(path: str) -> Dict[str, str]: """Parses a dataset path into its component segments.""" - m = re.match( - r"^projects/(?P.+?)/locations/(?P.+?)/datasets/(?P.+?)$", - path, - ) + m = re.match(r"^projects/(?P.+?)/datasets/(?P.+?)$", path) return m.groupdict() if m else {} @staticmethod @@ -579,6 +579,13 @@ def search_migratable_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_search_migratable_resources(): @@ -697,6 +704,13 @@ def batch_migrate_resources( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_migrate_resources(): diff --git a/google/cloud/aiplatform_v1beta1/services/model_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/model_service/async_client.py index 51157fdb99..e1996173b7 100644 --- a/google/cloud/aiplatform_v1beta1/services/model_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/model_service/async_client.py @@ -249,6 +249,13 @@ async def upload_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_upload_model(): @@ -373,6 +380,13 @@ async def get_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_model(): @@ -477,6 +491,13 @@ async def list_models( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_models(): @@ -586,6 +607,13 @@ async def list_model_versions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_model_versions(): @@ -695,6 +723,13 @@ async def update_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_model(): @@ -825,6 +860,13 @@ async def update_explanation_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_explanation_dataset(): @@ -946,6 +988,13 @@ async def delete_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_model(): @@ -1070,6 +1119,13 @@ async def delete_model_version( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_model_version(): @@ -1191,6 +1247,13 @@ async def merge_version_aliases( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_merge_version_aliases(): @@ -1200,7 +1263,7 @@ async def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1beta1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request @@ -1314,6 +1377,13 @@ async def export_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_export_model(): @@ -1440,6 +1510,13 @@ async def import_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_import_model_evaluation(): @@ -1552,6 +1629,13 @@ async def batch_import_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_import_model_evaluation_slices(): @@ -1657,6 +1741,13 @@ async def get_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_model_evaluation(): @@ -1755,6 +1846,13 @@ async def list_model_evaluations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_model_evaluations(): @@ -1864,6 +1962,13 @@ async def get_model_evaluation_slice( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_model_evaluation_slice(): @@ -1962,6 +2067,13 @@ async def list_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_model_evaluation_slices(): diff --git a/google/cloud/aiplatform_v1beta1/services/model_service/client.py b/google/cloud/aiplatform_v1beta1/services/model_service/client.py index 0e5d33e047..2467708cdd 100644 --- a/google/cloud/aiplatform_v1beta1/services/model_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/model_service/client.py @@ -554,6 +554,13 @@ def upload_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_upload_model(): @@ -678,6 +685,13 @@ def get_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_model(): @@ -782,6 +796,13 @@ def list_models( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_models(): @@ -891,6 +912,13 @@ def list_model_versions( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_model_versions(): @@ -1000,6 +1028,13 @@ def update_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_model(): @@ -1130,6 +1165,13 @@ def update_explanation_dataset( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_explanation_dataset(): @@ -1253,6 +1295,13 @@ def delete_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_model(): @@ -1377,6 +1426,13 @@ def delete_model_version( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_model_version(): @@ -1498,6 +1554,13 @@ def merge_version_aliases( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_merge_version_aliases(): @@ -1507,7 +1570,7 @@ def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1beta1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request @@ -1621,6 +1684,13 @@ def export_model( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_export_model(): @@ -1747,6 +1817,13 @@ def import_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_import_model_evaluation(): @@ -1859,6 +1936,13 @@ def batch_import_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_import_model_evaluation_slices(): @@ -1968,6 +2052,13 @@ def get_model_evaluation( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_model_evaluation(): @@ -2066,6 +2157,13 @@ def list_model_evaluations( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_model_evaluations(): @@ -2175,6 +2273,13 @@ def get_model_evaluation_slice( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_model_evaluation_slice(): @@ -2275,6 +2380,13 @@ def list_model_evaluation_slices( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_model_evaluation_slices(): diff --git a/google/cloud/aiplatform_v1beta1/services/pipeline_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/pipeline_service/async_client.py index a12004ab19..0d48e78138 100644 --- a/google/cloud/aiplatform_v1beta1/services/pipeline_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/pipeline_service/async_client.py @@ -261,6 +261,13 @@ async def create_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_training_pipeline(): @@ -376,6 +383,13 @@ async def get_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_training_pipeline(): @@ -476,6 +490,13 @@ async def list_training_pipelines( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_training_pipelines(): @@ -585,6 +606,13 @@ async def delete_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_training_pipeline(): @@ -715,6 +743,13 @@ async def cancel_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_cancel_training_pipeline(): @@ -802,6 +837,13 @@ async def create_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_pipeline_job(): @@ -918,6 +960,13 @@ async def get_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_pipeline_job(): @@ -1013,6 +1062,13 @@ async def list_pipeline_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_pipeline_jobs(): @@ -1122,6 +1178,13 @@ async def delete_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_pipeline_job(): @@ -1252,6 +1315,13 @@ async def cancel_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_cancel_pipeline_job(): diff --git a/google/cloud/aiplatform_v1beta1/services/pipeline_service/client.py b/google/cloud/aiplatform_v1beta1/services/pipeline_service/client.py index 5fd8065763..d7d99ca8bf 100644 --- a/google/cloud/aiplatform_v1beta1/services/pipeline_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/pipeline_service/client.py @@ -645,6 +645,13 @@ def create_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_training_pipeline(): @@ -760,6 +767,13 @@ def get_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_training_pipeline(): @@ -860,6 +874,13 @@ def list_training_pipelines( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_training_pipelines(): @@ -969,6 +990,13 @@ def delete_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_training_pipeline(): @@ -1099,6 +1127,13 @@ def cancel_training_pipeline( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_cancel_training_pipeline(): @@ -1186,6 +1221,13 @@ def create_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_pipeline_job(): @@ -1302,6 +1344,13 @@ def get_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_pipeline_job(): @@ -1397,6 +1446,13 @@ def list_pipeline_jobs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_pipeline_jobs(): @@ -1506,6 +1562,13 @@ def delete_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_pipeline_job(): @@ -1636,6 +1699,13 @@ def cancel_pipeline_job( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_cancel_pipeline_job(): diff --git a/google/cloud/aiplatform_v1beta1/services/prediction_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/prediction_service/async_client.py index 6422055fd9..6bc7c132d2 100644 --- a/google/cloud/aiplatform_v1beta1/services/prediction_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/prediction_service/async_client.py @@ -226,6 +226,13 @@ async def predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_predict(): @@ -368,6 +375,13 @@ async def raw_predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_raw_predict(): @@ -550,6 +564,13 @@ async def explain( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_explain(): diff --git a/google/cloud/aiplatform_v1beta1/services/prediction_service/client.py b/google/cloud/aiplatform_v1beta1/services/prediction_service/client.py index 253b6478b4..922f355f31 100644 --- a/google/cloud/aiplatform_v1beta1/services/prediction_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/prediction_service/client.py @@ -471,6 +471,13 @@ def predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_predict(): @@ -613,6 +620,13 @@ def raw_predict( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_raw_predict(): @@ -795,6 +809,13 @@ def explain( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_explain(): diff --git a/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/async_client.py index dbd9d3ebf8..be319ef66b 100644 --- a/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/async_client.py @@ -242,6 +242,13 @@ async def create_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_specialist_pool(): @@ -372,6 +379,13 @@ async def get_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_specialist_pool(): @@ -478,6 +492,13 @@ async def list_specialist_pools( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_specialist_pools(): @@ -590,6 +611,13 @@ async def delete_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_specialist_pool(): @@ -711,6 +739,13 @@ async def update_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_specialist_pool(): diff --git a/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/client.py b/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/client.py index 883bf5b6f6..9e4ab9ad10 100644 --- a/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/specialist_pool_service/client.py @@ -460,6 +460,13 @@ def create_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_specialist_pool(): @@ -590,6 +597,13 @@ def get_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_specialist_pool(): @@ -696,6 +710,13 @@ def list_specialist_pools( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_specialist_pools(): @@ -808,6 +829,13 @@ def delete_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_specialist_pool(): @@ -929,6 +957,13 @@ def update_specialist_pool( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_specialist_pool(): diff --git a/google/cloud/aiplatform_v1beta1/services/tensorboard_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/tensorboard_service/async_client.py index 9e5b9756d1..89d3d3f5f2 100644 --- a/google/cloud/aiplatform_v1beta1/services/tensorboard_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/tensorboard_service/async_client.py @@ -269,6 +269,13 @@ async def create_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_tensorboard(): @@ -392,6 +399,13 @@ async def get_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_tensorboard(): @@ -492,6 +506,13 @@ async def update_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_tensorboard(): @@ -623,6 +644,13 @@ async def list_tensorboards( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_tensorboards(): @@ -732,6 +760,13 @@ async def delete_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_tensorboard(): @@ -854,6 +889,13 @@ async def create_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_tensorboard_experiment(): @@ -977,6 +1019,13 @@ async def get_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_tensorboard_experiment(): @@ -1078,6 +1127,13 @@ async def update_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_tensorboard_experiment(): @@ -1194,6 +1250,13 @@ async def list_tensorboard_experiments( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_tensorboard_experiments(): @@ -1306,6 +1369,13 @@ async def delete_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_tensorboard_experiment(): @@ -1426,6 +1496,13 @@ async def create_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_tensorboard_run(): @@ -1554,6 +1631,13 @@ async def batch_create_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_create_tensorboard_runs(): @@ -1670,6 +1754,13 @@ async def get_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_tensorboard_run(): @@ -1769,6 +1860,13 @@ async def update_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_tensorboard_run(): @@ -1886,6 +1984,13 @@ async def list_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_tensorboard_runs(): @@ -1996,6 +2101,13 @@ async def delete_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_tensorboard_run(): @@ -2120,6 +2232,13 @@ async def batch_create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_create_tensorboard_time_series(): @@ -2240,6 +2359,13 @@ async def create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_tensorboard_time_series(): @@ -2352,6 +2478,13 @@ async def get_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_tensorboard_time_series(): @@ -2451,6 +2584,13 @@ async def update_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_update_tensorboard_time_series(): @@ -2575,6 +2715,13 @@ async def list_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_tensorboard_time_series(): @@ -2687,6 +2834,13 @@ async def delete_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_tensorboard_time_series(): @@ -2812,6 +2966,13 @@ async def batch_read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_batch_read_tensorboard_time_series_data(): @@ -2821,7 +2982,7 @@ async def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1beta1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request @@ -2921,6 +3082,13 @@ async def read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_read_tensorboard_time_series_data(): @@ -3022,6 +3190,13 @@ def read_tensorboard_blob_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_read_tensorboard_blob_data(): @@ -3128,6 +3303,13 @@ async def write_tensorboard_experiment_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_write_tensorboard_experiment_data(): @@ -3244,6 +3426,13 @@ async def write_tensorboard_run_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_write_tensorboard_run_data(): @@ -3365,6 +3554,13 @@ async def export_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_export_tensorboard_time_series_data(): diff --git a/google/cloud/aiplatform_v1beta1/services/tensorboard_service/client.py b/google/cloud/aiplatform_v1beta1/services/tensorboard_service/client.py index 28f4cd4cca..8e9c1264a1 100644 --- a/google/cloud/aiplatform_v1beta1/services/tensorboard_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/tensorboard_service/client.py @@ -545,6 +545,13 @@ def create_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_tensorboard(): @@ -668,6 +675,13 @@ def get_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_tensorboard(): @@ -768,6 +782,13 @@ def update_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_tensorboard(): @@ -899,6 +920,13 @@ def list_tensorboards( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_tensorboards(): @@ -1008,6 +1036,13 @@ def delete_tensorboard( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_tensorboard(): @@ -1130,6 +1165,13 @@ def create_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_tensorboard_experiment(): @@ -1257,6 +1299,13 @@ def get_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_tensorboard_experiment(): @@ -1360,6 +1409,13 @@ def update_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_tensorboard_experiment(): @@ -1480,6 +1536,13 @@ def list_tensorboard_experiments( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_tensorboard_experiments(): @@ -1596,6 +1659,13 @@ def delete_tensorboard_experiment( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_tensorboard_experiment(): @@ -1720,6 +1790,13 @@ def create_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_tensorboard_run(): @@ -1848,6 +1925,13 @@ def batch_create_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_create_tensorboard_runs(): @@ -1968,6 +2052,13 @@ def get_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_tensorboard_run(): @@ -2067,6 +2158,13 @@ def update_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_tensorboard_run(): @@ -2184,6 +2282,13 @@ def list_tensorboard_runs( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_tensorboard_runs(): @@ -2294,6 +2399,13 @@ def delete_tensorboard_run( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_tensorboard_run(): @@ -2418,6 +2530,13 @@ def batch_create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_create_tensorboard_time_series(): @@ -2544,6 +2663,13 @@ def create_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_tensorboard_time_series(): @@ -2660,6 +2786,13 @@ def get_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_tensorboard_time_series(): @@ -2761,6 +2894,13 @@ def update_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_update_tensorboard_time_series(): @@ -2889,6 +3029,13 @@ def list_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_tensorboard_time_series(): @@ -3005,6 +3152,13 @@ def delete_tensorboard_time_series( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_tensorboard_time_series(): @@ -3134,6 +3288,13 @@ def batch_read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_batch_read_tensorboard_time_series_data(): @@ -3143,7 +3304,7 @@ def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1beta1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request @@ -3249,6 +3410,13 @@ def read_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_read_tensorboard_time_series_data(): @@ -3354,6 +3522,13 @@ def read_tensorboard_blob_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_read_tensorboard_blob_data(): @@ -3462,6 +3637,13 @@ def write_tensorboard_experiment_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_write_tensorboard_experiment_data(): @@ -3582,6 +3764,13 @@ def write_tensorboard_run_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_write_tensorboard_run_data(): @@ -3705,6 +3894,13 @@ def export_tensorboard_time_series_data( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_export_tensorboard_time_series_data(): diff --git a/google/cloud/aiplatform_v1beta1/services/vizier_service/async_client.py b/google/cloud/aiplatform_v1beta1/services/vizier_service/async_client.py index ee17fd0f99..4456ba9a32 100644 --- a/google/cloud/aiplatform_v1beta1/services/vizier_service/async_client.py +++ b/google/cloud/aiplatform_v1beta1/services/vizier_service/async_client.py @@ -234,6 +234,13 @@ async def create_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_study(): @@ -346,6 +353,13 @@ async def get_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_study(): @@ -440,6 +454,13 @@ async def list_studies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_studies(): @@ -549,6 +570,13 @@ async def delete_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_study(): @@ -634,6 +662,13 @@ async def lookup_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_lookup_study(): @@ -732,6 +767,13 @@ async def suggest_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_suggest_trials(): @@ -825,6 +867,13 @@ async def create_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_create_trial(): @@ -931,6 +980,13 @@ async def get_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_get_trial(): @@ -1029,6 +1085,13 @@ async def list_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_trials(): @@ -1139,6 +1202,13 @@ async def add_trial_measurement( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_add_trial_measurement(): @@ -1217,6 +1287,13 @@ async def complete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_complete_trial(): @@ -1294,6 +1371,13 @@ async def delete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_delete_trial(): @@ -1379,6 +1463,13 @@ async def check_trial_early_stopping_state( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_check_trial_early_stopping_state(): @@ -1470,6 +1561,13 @@ async def stop_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_stop_trial(): @@ -1550,6 +1648,13 @@ async def list_optimal_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 async def sample_list_optimal_trials(): diff --git a/google/cloud/aiplatform_v1beta1/services/vizier_service/client.py b/google/cloud/aiplatform_v1beta1/services/vizier_service/client.py index 7a3341335b..5a643a8cbc 100644 --- a/google/cloud/aiplatform_v1beta1/services/vizier_service/client.py +++ b/google/cloud/aiplatform_v1beta1/services/vizier_service/client.py @@ -499,6 +499,13 @@ def create_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_study(): @@ -611,6 +618,13 @@ def get_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_study(): @@ -705,6 +719,13 @@ def list_studies( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_studies(): @@ -814,6 +835,13 @@ def delete_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_study(): @@ -899,6 +927,13 @@ def lookup_study( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_lookup_study(): @@ -997,6 +1032,13 @@ def suggest_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_suggest_trials(): @@ -1091,6 +1133,13 @@ def create_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_create_trial(): @@ -1197,6 +1246,13 @@ def get_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_get_trial(): @@ -1295,6 +1351,13 @@ def list_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_trials(): @@ -1405,6 +1468,13 @@ def add_trial_measurement( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_add_trial_measurement(): @@ -1484,6 +1554,13 @@ def complete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_complete_trial(): @@ -1562,6 +1639,13 @@ def delete_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_delete_trial(): @@ -1647,6 +1731,13 @@ def check_trial_early_stopping_state( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_check_trial_early_stopping_state(): @@ -1741,6 +1832,13 @@ def stop_trial( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_stop_trial(): @@ -1822,6 +1920,13 @@ def list_optimal_trials( .. code-block:: python + # This snippet has been automatically generated and should be regarded as a + # code template only. + # It will require modifications to work: + # - It may require correct/in-range values for request initialization. + # - It may require specifying regional endpoints when creating the service + # client as shown in: + # https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 def sample_list_optimal_trials(): diff --git a/mypy.ini b/mypy.ini index 4505b48543..574c5aed39 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,3 +1,3 @@ [mypy] -python_version = 3.6 +python_version = 3.7 namespace_packages = True diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_async.py index 34d2c2cb05..f97a01035e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_CreateDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_sync.py index d8756ab0e7..518d2cd9e7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_create_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_CreateDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_async.py index 8a9f058d17..6d23bec47f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_DeleteDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_sync.py index b8d91fac1f..f6649a3c2c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_delete_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_DeleteDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_async.py index c3f18a5e52..fdab4fa35b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ExportData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_sync.py index bf501e1f3f..4a68486f43 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_export_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ExportData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_async.py index 1e56b2e25b..1067e94d0f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_GetAnnotationSpec_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_sync.py index 74ace5d895..aed483bc3b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_annotation_spec_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_GetAnnotationSpec_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_async.py index 3f8f590106..0de62a2817 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_GetDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_sync.py index 21ded79723..3bea283aac 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_get_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_GetDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_async.py index 7ecfbdb59d..0d0319d126 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ImportData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,7 +40,7 @@ async def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1.ImportDataRequest( diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_sync.py index 2e0cced2ad..b909c2f70e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_import_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ImportData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,7 +40,7 @@ def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1.ImportDataRequest( diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_async.py index 3d0ee2fc8d..290ffa570e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListAnnotations_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_sync.py index e476b1c5f5..236a22bca7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_annotations_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListAnnotations_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_async.py index 2de31c8715..c3302f0bae 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListDataItems_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_sync.py index 2cb7f59d01..df65ec1428 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_data_items_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListDataItems_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_async.py index 7a634e82b2..4a8212827b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListDatasets_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_sync.py index 5934bde144..1b59c3bfcd 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_datasets_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListDatasets_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_async.py index ae01ca24c1..6ce377975e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListSavedQueries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_sync.py index d53bd9dbdc..a72c9688d9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_list_saved_queries_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_ListSavedQueries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_async.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_async.py index 1fea8b45c3..06705ee62d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_UpdateDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_sync.py b/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_sync.py index 170b3939d8..8e1ed0fbc0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_dataset_service_update_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_DatasetService_UpdateDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_async.py index bc238c831a..6f02e328ce 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_CreateEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_sync.py index 81a24e5df0..9af2865358 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_create_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_CreateEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_async.py index da1f35430b..4380a64553 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_DeleteEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_sync.py index 7042baedf8..8831d44586 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_delete_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_DeleteEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_async.py index 9610eae986..ea76ffc7b0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_DeployModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_sync.py index 448585048b..61db7b62d9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_deploy_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_DeployModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_async.py index 741a75dbdd..fdca5e16ad 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_GetEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_sync.py index 7a39004427..0a3bb7f2c3 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_get_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_GetEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_async.py index 297abfff5a..e2f3438de2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_ListEndpoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_sync.py index 5c4faf7931..d09db4a8c7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_list_endpoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_ListEndpoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_async.py index 88258ff0b7..5224e4260f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_UndeployModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_sync.py index 2178e3340f..ae081afeea 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_undeploy_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_UndeployModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_async.py index c1039cda24..d85b2d7591 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_UpdateEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_sync.py index 8b717bf344..289d5f0592 100644 --- a/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_endpoint_service_update_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_EndpointService_UpdateEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_async.py index 7de0f610c9..8a042598db 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,7 +40,7 @@ async def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ReadFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_sync.py index 9693bb1a66..361b38cfc4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_read_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,7 +40,7 @@ def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ReadFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py index 91e74ea89c..49c7e1ce4c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,11 +40,11 @@ async def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py index 927a65a41b..9d25472036 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,11 +40,11 @@ def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_async.py index 446f602cb6..ac923ecf2f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_BatchCreateFeatures_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_sync.py index 96f958a186..c9348f9b96 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_create_features_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_BatchCreateFeatures_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_async.py index 6f471a7d5e..9365d250af 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_BatchReadFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,14 +40,14 @@ async def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_sync.py index 4926d5a69f..46fb005a17 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_batch_read_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_BatchReadFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,14 +40,14 @@ def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_async.py index 3015072317..eafdd2e9be 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_CreateEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_sync.py index 29189412d3..15e5054f1d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_CreateEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_async.py index 671177a883..2c30c02bd7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_CreateFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_sync.py index cdf4b5e9ad..0a9bc0738f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_CreateFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_async.py index fd5fdcda77..ab331b653f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_CreateFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_sync.py index 7457a55007..2da0ef863c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_create_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_CreateFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_async.py index 09672d6404..b9c44df1e8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_DeleteEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_sync.py index 0a4bbe5610..a1a11894ce 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_DeleteEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_async.py index 53e60c17f5..36336d3599 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_DeleteFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_sync.py index f03ea625be..0d9395a0a0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_DeleteFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_async.py index 52de9bc84c..096d743c80 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_DeleteFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_sync.py index 8556329614..9ec43f9662 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_delete_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_DeleteFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_async.py index f60187c790..b84f6dddbb 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ExportFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -36,7 +43,7 @@ async def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ExportFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_sync.py index 916830e11e..8739aa94b9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_export_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ExportFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -36,7 +43,7 @@ def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1.ExportFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_async.py index 795c12d50b..42a919bbd6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_GetEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_sync.py index 322f1a8c66..7365f9fb3b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_GetEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_async.py index c3274b019b..638fc683ed 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_GetFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_sync.py index ea59add0ad..d217f83ff4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_GetFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_async.py index 16a332c6fa..90cb7ef37c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_GetFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_sync.py index 1de46d7414..5f76347fe5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_get_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_GetFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_async.py index 2c6c0dfd7d..9d754d0931 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ImportFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,7 +40,7 @@ async def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1.FeatureSpec() feature_specs.id = "id_value" diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_sync.py index 1bb06697f3..06f7afaf88 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_import_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ImportFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -33,7 +40,7 @@ def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1.FeatureSpec() feature_specs.id = "id_value" diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_async.py index 36fa20d54c..658b01d403 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ListEntityTypes_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_sync.py index a7a97fa236..616f83be4c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_entity_types_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ListEntityTypes_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_async.py index 493cf3b272..3f0d8047cb 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ListFeatures_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_sync.py index 67e53820f2..3b899ffa1a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_features_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ListFeatures_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_async.py index a6e7fdda8f..11f3b4152a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ListFeaturestores_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_sync.py index 21bafb70b3..32247dba28 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_list_featurestores_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_ListFeaturestores_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_async.py index bf9ec39b73..ca9df1d138 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_SearchFeatures_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_sync.py index 41892e64b4..cf92024f65 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_search_features_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_SearchFeatures_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_async.py index 97e48bcbbf..c5902ba068 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_UpdateEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_sync.py index 431c93fa91..29a16adb98 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_UpdateEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_async.py index 609b6e9e61..850a6dded4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_UpdateFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_sync.py index d86da09498..e721b3763d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_UpdateFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_async.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_async.py index 83501ffe96..4ce73fec32 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_UpdateFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_sync.py b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_sync.py index 64c6fd147a..58ad9b123c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_featurestore_service_update_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_FeaturestoreService_UpdateFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_async.py index 0b77503e53..499617d93f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_CreateIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_sync.py index bfee5ecfce..d67518933a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_create_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_CreateIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_async.py index 0bec262cd3..4f0b892efc 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_DeleteIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_sync.py index 885aa0c4d2..869fe78e83 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_delete_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_DeleteIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_async.py index 45b23cf1bd..3ad4c0ea57 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_DeployIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_sync.py index 0c9402d026..ae9db26f1d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_deploy_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_DeployIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_async.py index db0f322dce..15e8234059 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_GetIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_sync.py index 5935ec4363..e752e9f95a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_get_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_GetIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_async.py index 61510c311e..20dca46dd6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_ListIndexEndpoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_sync.py index 05c733d458..e14c1d8315 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_list_index_endpoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_ListIndexEndpoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_async.py index 032e0807a0..96b31e440d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_MutateDeployedIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_sync.py index 033699b684..0f33a22a16 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_mutate_deployed_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_MutateDeployedIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_async.py index 725285529b..2b4fb061a7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_UndeployIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_sync.py index efd09cfeda..b4eb69f7ee 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_undeploy_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_UndeployIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_async.py index c670d1cb32..d96403570f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_UpdateIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_sync.py index 98669d086c..7b58b738b3 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_endpoint_service_update_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexEndpointService_UpdateIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_async.py index f4b9614d41..dafc33c284 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_CreateIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_sync.py index 60dcc20299..2ec9b4230a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_create_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_CreateIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_async.py index 6f8ab5eae7..6ba844a3fd 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_DeleteIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_sync.py index 68d981526c..c680ee0ec6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_delete_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_DeleteIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_async.py index 7d01bf3a29..ae77310ea0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_GetIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_sync.py index 662e8c9bb0..e9841988f9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_get_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_GetIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_async.py index df114f1694..e5b1b3b09b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_ListIndexes_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_sync.py index 9048e9b3cd..8ccab6b65c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_list_indexes_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_ListIndexes_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_async.py index 03eed55853..9b680158d1 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_RemoveDatapoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_sync.py index ea16db6a04..5cc00597e7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_remove_datapoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_RemoveDatapoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_async.py index a7845d43a7..ae924ac836 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_UpdateIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_sync.py index 315e5aface..109e22514c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_update_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_UpdateIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_async.py b/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_async.py index 82d7362754..20884ef539 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_UpsertDatapoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_sync.py b/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_sync.py index fb6a5c4f49..651ffe19b9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_index_service_upsert_datapoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_IndexService_UpsertDatapoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_async.py index 99f2d28b9b..7127f7a807 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_sync.py index b22147b454..bd5aeabf5c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_async.py index aedd92111b..6e8ac13993 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_sync.py index 4f30c4a526..7b0c30337b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_async.py index bc23ab2ebb..004338f93e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_sync.py index 0e474f9c72..e6f28cb88d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_async.py index 48deaf9ec9..b8ad6b5959 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py index d0928e186f..b0683ed657 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CancelHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_async.py index aa968a2d42..2f73891e86 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ async def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_sync.py index b178256c10..532b993b95 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_async.py index 0964e4a2ea..427b009eb9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_sync.py index 577f365f97..670843c7cf 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_async.py index 810ee2a58a..9aa6c30831 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ async def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_sync.py index 841de30638..3d2c70676b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_async.py index 7e86e06a07..34bca4098d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_sync.py index e18b9f5944..9fb146a791 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_async.py index ce1e65948c..aebcdf1144 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_sync.py index c31da8eb9b..028abf1be8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_create_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_CreateModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_async.py index 67f4b93ab9..514736b6c9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_sync.py index ddf9ce0a02..08aada294e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_async.py index c9b9eb72b2..acd6999d35 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_sync.py index e4b929844c..4a09377edd 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_async.py index 32bd9e7ebf..cdbb2817a7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_sync.py index 3bab4949b3..53de431447 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_async.py index 2eb5320f44..43f445979a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_sync.py index 17ba4828fa..17dead8944 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_async.py index 4522605729..ffe030ddd8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_sync.py index 6a78a8973f..8504e80f39 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_delete_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_DeleteModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_async.py index 4efd8ca1b8..33faeed192 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_sync.py index 5a6ecb7dbb..5dc444da68 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_async.py index 0d7abd11c8..3a85b62799 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_sync.py index 9dc3ba468b..f16aa3cfb6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_async.py index 2050601b23..2ab0920f2f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_sync.py index 89b82894bf..2e1f89519b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_async.py index 6a409e7d31..5d666c34b7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_sync.py index 0931ff5419..5cbf1cc933 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_async.py index 16f2317bf1..d1bd1766f9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_sync.py index 66888d2bff..f382a5e8aa 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_get_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_GetModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_async.py index 710c18549d..0b9f992e74 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListBatchPredictionJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_sync.py index 58afa26785..c85ff6115c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_batch_prediction_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListBatchPredictionJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_async.py index 4abc6f745f..4114247eb8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListCustomJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_sync.py index 28fc039f6b..5d6713ff04 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_custom_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListCustomJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_async.py index f1551703b9..bc6d31ca9c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListDataLabelingJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_sync.py index 147d71dfe8..db2d7c0566 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_data_labeling_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListDataLabelingJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_async.py index 362fcb40a8..13f7730249 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListHyperparameterTuningJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py index 98bf35c6a3..af3d8fd28f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListHyperparameterTuningJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_async.py index c1526e51d5..323886159b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListModelDeploymentMonitoringJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py index 7bfa4bc111..aa5ed2cda5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ListModelDeploymentMonitoringJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_async.py index b16169b7af..6541c6ef8a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_PauseModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_sync.py index 622d2b48f0..45a0e1d7e8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_pause_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_PauseModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_async.py index c354e8081d..bbe6ed2a18 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ResumeModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_sync.py index 01f7513482..e47f9b7519 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_resume_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_ResumeModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py index c5eb2af9a0..e3166064df 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py index cc7f4cc271..65814f1578 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_async.py index ee8df228db..2a90822867 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_UpdateModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_sync.py index 5f5e82da6d..321b8f8b2c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_job_service_update_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_JobService_UpdateModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_async.py index 80c217b969..15a97c758c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_AddContextArtifactsAndExecutions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_sync.py index 74bcf8ea59..0e4eeb0638 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_artifacts_and_executions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_AddContextArtifactsAndExecutions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_async.py index acab4726a8..16a2df4fc8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_AddContextChildren_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_sync.py index 6398876b76..946c2496ca 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_context_children_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_AddContextChildren_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_async.py index 89c4593000..a01c92f8be 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_AddExecutionEvents_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_sync.py index 08ea408a6e..88652a6df1 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_add_execution_events_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_AddExecutionEvents_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_async.py index ff3af7a59e..2c3300b0c7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_sync.py index a6d7bc372d..450c30cc3b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_async.py index ca9e9cc4da..809688920b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_sync.py index 66d45fed18..e35a62669a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_async.py index 4d27a1999f..5febe404de 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_sync.py index 8551cc9a07..843ee8ee65 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_async.py index 435b3f49b0..ba0fde0ab4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateMetadataSchema_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_sync.py index 8d5049d57a..3e7422996f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_schema_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateMetadataSchema_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_async.py index 43b162c7cc..bf0271b2d2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateMetadataStore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_sync.py index 6ed4d538b7..93eba15a93 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_create_metadata_store_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_CreateMetadataStore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_async.py index 0782e6c6e9..89eb6cc41f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_sync.py index e319867bd3..8fe0789886 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_async.py index ca834d7e55..75e823857b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_sync.py index 88d5592809..50a9e1c686 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_async.py index 4292c4d342..1f232c91aa 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_sync.py index 9f053cef44..1b634cdc79 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_async.py index 1d099a727f..f4da145c40 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteMetadataStore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_sync.py index 88a154c397..429c4e53fe 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_delete_metadata_store_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_DeleteMetadataStore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_async.py index 5e7ebf1c1f..57402f5054 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_sync.py index 000f7bf853..3337a4e139 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_async.py index 76aff63c76..ae725a5b82 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_sync.py index 5d3c36ef03..730ed4d50f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_async.py index 0b3d2edd97..960007af7e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_sync.py index f7e6e8ac6c..6db96b9331 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_async.py index fb93d9e1e5..8525d68b88 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetMetadataSchema_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_sync.py index 84a7704069..f94424b6ff 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_schema_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetMetadataSchema_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_async.py index 5a34b49bfc..4fd5443ed8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetMetadataStore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_sync.py index d0b94f904a..23bff9eba1 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_get_metadata_store_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_GetMetadataStore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_async.py index 7c706a7a07..3e293bdbdf 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListArtifacts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_sync.py index a79537af49..33fbfcfa75 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_artifacts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListArtifacts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_async.py index 63fcc14ef0..3e1a81eb95 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListContexts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_sync.py index 1b4413600f..9092e018d8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_contexts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListContexts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_async.py index 0c51f41884..72a289ca95 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListExecutions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_sync.py index ba0f85ed82..76a589ec0e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_executions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListExecutions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_async.py index 2868b533b6..4fcf12f5d6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListMetadataSchemas_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_sync.py index b69851488e..cfe37e11a4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_schemas_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListMetadataSchemas_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_async.py index bc16d158ef..971f1a649b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListMetadataStores_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_sync.py index 2997676bcf..d75d60c809 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_list_metadata_stores_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_ListMetadataStores_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_async.py index d07abcb29e..50e7e64a41 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_PurgeArtifacts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_sync.py index 798eeed330..0732969fa8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_artifacts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_PurgeArtifacts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_async.py index 27cd785e74..f2815e8da3 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_PurgeContexts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_sync.py index 22c2790395..dc7dba8d64 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_contexts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_PurgeContexts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_async.py index 389555139d..5a107c00b3 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_PurgeExecutions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_sync.py index 65faab708e..50640fb5a8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_purge_executions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_PurgeExecutions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_async.py index f3899cedb7..f43e116a6f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_QueryArtifactLineageSubgraph_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py index 8cc1e0b3cc..628cd69507 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_QueryArtifactLineageSubgraph_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_async.py index 3f7957e959..9fed03e57d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_QueryContextLineageSubgraph_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_sync.py index ea51b51346..922f3617f0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_context_lineage_subgraph_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_QueryContextLineageSubgraph_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_async.py index 1674db77fd..7f9270cc6f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_QueryExecutionInputsAndOutputs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py index 25b5bee868..4d9854129a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_QueryExecutionInputsAndOutputs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_async.py index 9449ab0d2d..e4c218ad2b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_UpdateArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_sync.py index 2dabbbb514..8eb8120090 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_UpdateArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_async.py index a3937b1ed7..5d5c98e39e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_UpdateContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_sync.py index c7b1efb0db..bc13be5599 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_UpdateContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_async.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_async.py index 1caf21f5e8..8dde058cba 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_UpdateExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_sync.py b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_sync.py index c44ff97fd0..bb60f8381b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_metadata_service_update_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MetadataService_UpdateExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_async.py b/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_async.py index 296fc1c8d6..42f4966088 100644 --- a/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MigrationService_BatchMigrateResources_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_sync.py b/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_sync.py index a8d6670023..1cecefa5c1 100644 --- a/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_migration_service_batch_migrate_resources_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MigrationService_BatchMigrateResources_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_async.py b/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_async.py index cc0ec495b7..eef4ed827b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MigrationService_SearchMigratableResources_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_sync.py b/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_sync.py index 081e93fa14..cad084d972 100644 --- a/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_migration_service_search_migratable_resources_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_MigrationService_SearchMigratableResources_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_async.py index a847844142..74c69c11cf 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_BatchImportModelEvaluationSlices_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_sync.py index e21358c1ed..f223c5ba6e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_batch_import_model_evaluation_slices_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_BatchImportModelEvaluationSlices_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_async.py index cefd282eea..468f5896ac 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_DeleteModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_sync.py index 88b4f48cc8..f476494029 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_DeleteModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_async.py index cb27c3d9d8..d9d0eb5c12 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_DeleteModelVersion_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_sync.py index 070da48995..b934e2fd3d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_delete_model_version_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_DeleteModelVersion_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_async.py index 6aefde7547..9a72de59d2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ExportModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_sync.py index ef99724551..61f9d6f639 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_export_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ExportModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_async.py index f40e0f6b33..7fcd11a93a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_GetModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_async.py index 3aeb38f93b..debb04108b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_GetModelEvaluation_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_async.py index f9513d9962..a7b8371a97 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_GetModelEvaluationSlice_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_sync.py index 722f24ae6f..3131e28263 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_slice_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_GetModelEvaluationSlice_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_sync.py index 1c0ade5d12..2a365ca607 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_evaluation_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_GetModelEvaluation_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_sync.py index ef2733a3ba..e0eb10b193 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_get_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_GetModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_async.py index d705d6505f..48574e1d7f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ImportModelEvaluation_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_sync.py index f2910ac56e..4a5c1b333e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_import_model_evaluation_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ImportModelEvaluation_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_async.py index eb053302bd..1222afb2ff 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModelEvaluationSlices_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_sync.py index 6b1537fb90..00ee094ab0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluation_slices_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModelEvaluationSlices_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_async.py index 855b1efb42..56a2e5f1d5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModelEvaluations_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_sync.py index 49d2f98139..0a4b1ea676 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_evaluations_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModelEvaluations_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_async.py index f930d0c3a2..6fb67e7396 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModelVersions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_sync.py index 3403c2de8e..1069ca4fea 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_model_versions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModelVersions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_async.py index 17cd1ed4d2..f9428a8e6d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModels_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_sync.py index 9a36fe9e08..2560bdc002 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_list_models_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_ListModels_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_async.py index f48cf4b425..e515fed367 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_MergeVersionAliases_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ async def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_sync.py index b7ac00822d..0981c28b7d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_merge_version_aliases_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_MergeVersionAliases_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_async.py index a9e19dedaf..4a142458f4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_UpdateModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_sync.py index c2721d40c8..44913793f1 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_update_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_UpdateModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_async.py b/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_async.py index 66dcd0d0dd..240140e3da 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_UploadModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_sync.py b/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_sync.py index 47abf4e6aa..313b295ac9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_model_service_upload_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_ModelService_UploadModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_async.py index 4c7f478f37..0e2b04d901 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CancelPipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_sync.py index a65be7ac8e..a88a143725 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CancelPipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_async.py index 69622f77c2..ec2aa263ed 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CancelTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_sync.py index 51f261d32a..62dc1bc52b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_cancel_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CancelTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_async.py index 64a5345922..f1030de763 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CreatePipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_sync.py index 5ade700a43..ec8425abff 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CreatePipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_async.py index 20d89bed38..7218080da2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CreateTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_sync.py index 33bfc0e76a..de7e964367 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_create_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_CreateTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_async.py index 194f78a217..1120d03004 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_DeletePipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_sync.py index 9f0dec1566..becc3def72 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_DeletePipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_async.py index ffe3d6f1f1..654755d605 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_DeleteTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_sync.py index 790fb6a3cd..8cce960dbd 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_delete_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_DeleteTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_async.py index 452220e044..e662aa956e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_GetPipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_sync.py index a03dcab198..c399eb9aeb 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_GetPipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_async.py index 08205ada78..38bacac2ea 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_GetTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_sync.py index 41675e136a..ddc6736dcd 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_get_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_GetTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_async.py index 35a5c83dc9..61d9f8c628 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_ListPipelineJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_sync.py index 23091c2308..987a64cf9d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_pipeline_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_ListPipelineJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_async.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_async.py index b17757b0a1..2db14d8fd2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_ListTrainingPipelines_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_sync.py b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_sync.py index 1ff3c708f1..aabeaf34b6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_pipeline_service_list_training_pipelines_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PipelineService_ListTrainingPipelines_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_async.py b/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_async.py index 5e5d44a881..6f6a6f4037 100644 --- a/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PredictionService_Explain_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_sync.py b/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_sync.py index 7c95bbaa5f..33730408ae 100644 --- a/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_prediction_service_explain_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PredictionService_Explain_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_async.py b/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_async.py index 70c1e46874..28ce221373 100644 --- a/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PredictionService_Predict_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_sync.py b/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_sync.py index d57a908d0a..779dcaa9b2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_prediction_service_predict_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PredictionService_Predict_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_async.py b/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_async.py index b8d3ae2619..a8ae1bb142 100644 --- a/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PredictionService_RawPredict_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_sync.py b/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_sync.py index 86f6e85494..366aced80f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_prediction_service_raw_predict_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_PredictionService_RawPredict_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_async.py index 79033d48e4..eace7d65b5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_CreateSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_sync.py index 03d448f25e..e876cd5e12 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_create_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_CreateSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_async.py index d3bcbc7eec..8c2c72f916 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_DeleteSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_sync.py index c575d152ac..06c28a330a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_delete_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_DeleteSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_async.py index d47c5c9d85..31bb980a79 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_GetSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_sync.py index a08a7b83bb..4c26bbf7ee 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_get_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_GetSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_async.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_async.py index cbba73a939..5ab5a5603a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_ListSpecialistPools_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_sync.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_sync.py index 382fb61856..1af395928c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_list_specialist_pools_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_ListSpecialistPools_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_async.py index e44a1e168e..b4de1c1f1b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_UpdateSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_sync.py index d4fa9f0115..0e07aeb9b5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_specialist_pool_service_update_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_SpecialistPoolService_UpdateSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py index 00eb92475a..e310347c19 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardRuns_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py index d74544e6f7..dd62c05d90 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardRuns_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py index 4406ccc535..6926d5db5e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py index c491c0e0ce..3606a481e9 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py index 6e82e6e7bf..7cd57a422b 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ async def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py index 5bd3676ae4..10fa3dc181 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 @@ -34,7 +41,7 @@ def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_async.py index 021cd448f1..45dd1ba2f5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_async.py index 7d9591c078..df1f3602be 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_sync.py index 063e851b6d..322b92e827 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_async.py index 03b4d5b0af..066a569916 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_sync.py index ecaf504337..7c0f9aeef6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_sync.py index df66cc046e..75752bd56f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_async.py index aeb57161b4..d1612f73a6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_sync.py index ec5996e2bc..2a3d523af4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_create_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_CreateTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_async.py index d534d34371..121a854620 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_async.py index fe3cb985f1..dac09e986f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py index f73f3cba4c..6dcd2b8159 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_async.py index feb3a67c18..9f00d9eccd 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_sync.py index 5a4404e657..10c8f1922a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_sync.py index b1690032ce..2d072138e5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_async.py index 720b9b7493..e009043070 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py index 454690c315..e63e1f7da4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_DeleteTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py index f4b62c9eca..59b1b05167 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ExportTensorboardTimeSeriesData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py index dc56a42717..73564e93b0 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ExportTensorboardTimeSeriesData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_async.py index 6cbb0d2833..a9be3d39bf 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_async.py index 62b03f1654..31e431d70f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_sync.py index 422e366b4b..1eb6604972 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_async.py index 999deb6ce5..bbb9bc7636 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_sync.py index dc8cb3d326..1f8f7b483e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_sync.py index 99d3cf05b5..1a53c0bd55 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_async.py index 0a59fa17ea..24610969c8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_sync.py index a933c092bc..8ceb19defe 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_get_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_GetTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_async.py index 44ffbf98b1..cc7fd1c99e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboardExperiments_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_sync.py index a826f4fe83..c46afe4f62 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_experiments_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboardExperiments_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_async.py index a656b95b1b..e457a431a6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboardRuns_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_sync.py index 1389821241..499a0d13c4 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_runs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboardRuns_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_async.py index 332cf9252b..adc1a684c2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_sync.py index 15b99118cf..135b939cec 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_async.py index cf1586f9fe..a91c68df21 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboards_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_sync.py index f625ede9f8..441d10d9d6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_list_tensorboards_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ListTensorboards_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_async.py index 61bbb8f6d9..059b96ec05 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ReadTensorboardBlobData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py index 04db8236e7..7da12eae2f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ReadTensorboardBlobData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py index 270421cdad..2c04700e01 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ReadTensorboardTimeSeriesData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py index 723f625e8b..5f0301830c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_ReadTensorboardTimeSeriesData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_async.py index 2efcdd6f09..6e9ec2a65a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_async.py index ef1906dfcc..94e848e479 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_sync.py index a7ce7ee31f..63e549b6f1 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_async.py index 355c3542b7..8daffb3097 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_sync.py index d5227007cc..77fca91f58 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_sync.py index d79a4dbad3..5718f09a87 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_async.py index 80de4e9ef4..4d16ed7d37 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_sync.py index 5a666f95ed..e0e12771f2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_update_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_UpdateTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py index cf6790bc7e..b7a99a71bc 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_WriteTensorboardExperimentData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py index 3e9153b5e5..6c68e53b87 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_WriteTensorboardExperimentData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_async.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_async.py index 9164bacb8e..e7fbaeffb3 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_WriteTensorboardRunData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_sync.py b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_sync.py index a75f7b99fc..e7efdb28d6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_tensorboard_service_write_tensorboard_run_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_TensorboardService_WriteTensorboardRunData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_async.py index 9a3f3c590c..db0f511da5 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_AddTrialMeasurement_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_sync.py index 0cdb6f1d48..05c7a43b1e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_add_trial_measurement_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_AddTrialMeasurement_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_async.py index fd15098c55..2d94534f6a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CheckTrialEarlyStoppingState_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_sync.py index 77f2459e5b..7643aefb57 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_check_trial_early_stopping_state_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CheckTrialEarlyStoppingState_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_async.py index cd58f93f6f..13da201f23 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CompleteTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_sync.py index 71118fc50b..aa03054ef7 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_complete_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CompleteTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_async.py index 427fd4e819..333e843aaa 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CreateStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_sync.py index 4ff6c72222..a58b88fc93 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CreateStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_async.py index ce3b895d53..6aa6fda423 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CreateTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_sync.py index 5519fb4182..ba7003380e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_create_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_CreateTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_async.py index cc4fd917bb..d4d6231645 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_DeleteStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_sync.py index 0c4c0e96e1..95ce3fa50a 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_DeleteStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_async.py index 71004f7944..f7e4899eb8 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_DeleteTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_sync.py index a9645fa768..e54be10aa2 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_delete_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_DeleteTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_async.py index 896be0929d..ac45b5bf11 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_GetStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_sync.py index 78403c40f4..9ce2d84efc 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_GetStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_async.py index 8d8f18a296..c8cdca0d32 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_GetTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_sync.py index bbe4b42559..d78245aa1d 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_get_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_GetTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_async.py index 654800e7ba..6ad46f3bae 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_ListOptimalTrials_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_sync.py index afd546b2dc..cad411968c 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_optimal_trials_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_ListOptimalTrials_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_async.py index b0601edaa6..83dc86242e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_ListStudies_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_sync.py index 58d586d9f8..4f877f2c8e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_studies_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_ListStudies_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_async.py index 04acd2d138..e6178bd886 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_ListTrials_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_sync.py index 81b15f8c4a..7bbd0efe00 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_list_trials_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_ListTrials_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_async.py index d02e6d3e9f..bcd2bf0818 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_LookupStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_sync.py index fc63574a92..e44ca9a15f 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_lookup_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_LookupStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_async.py index 9565c230eb..bb0c18876e 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_StopTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_sync.py index 9ee9f9cbf0..88b4b1a300 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_stop_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_StopTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_async.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_async.py index 576fcb4da0..9965ba9ec6 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_async.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_SuggestTrials_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_sync.py b/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_sync.py index 27d99dc261..b3926815a3 100644 --- a/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_sync.py +++ b/samples/generated_samples/aiplatform_v1_generated_vizier_service_suggest_trials_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1_generated_VizierService_SuggestTrials_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_async.py index be32ee2193..00be3074f7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_CreateDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_sync.py index 5fd6715c4b..f4bb18c888 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_create_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_CreateDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_async.py index 630f191611..9d66206298 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_DeleteDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_sync.py index 38cca9813c..1d238ccdf6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_delete_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_DeleteDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_async.py index 4079305540..d51443db29 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ExportData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_sync.py index 18edfe461e..5fea492c82 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_export_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ExportData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_async.py index 91d937dc52..abbb2a88ac 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_GetAnnotationSpec_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_sync.py index 747b3920fa..4df9052b68 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_annotation_spec_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_GetAnnotationSpec_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_async.py index bfbe3efe3a..3b0bbc1ded 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_GetDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_sync.py index dfce9fe3ff..853545a53c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_get_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_GetDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_async.py index 4bf1ee252e..6de455a949 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ImportData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,7 +40,7 @@ async def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1beta1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1beta1.ImportDataRequest( diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_sync.py index f639bf1027..ff288e6560 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_import_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ImportData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,7 +40,7 @@ def sample_import_data(): # Initialize request argument(s) import_configs = aiplatform_v1beta1.ImportDataConfig() - import_configs.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + import_configs.gcs_source.uris = ['uris_value1', 'uris_value2'] import_configs.import_schema_uri = "import_schema_uri_value" request = aiplatform_v1beta1.ImportDataRequest( diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_async.py index efd32c9b48..06429ec0f3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListAnnotations_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_sync.py index a81eb58758..8514b4221e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_annotations_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListAnnotations_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_async.py index 69d9fb12d3..5d9002b7fb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListDataItems_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_sync.py index 7a67c0207c..c0e2bf7d3e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_data_items_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListDataItems_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_async.py index 8848e920d9..dce72ca725 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListDatasets_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_sync.py index 7dce202e99..50d9fc57f0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_datasets_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListDatasets_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_async.py index 4dea71d48c..0af3166f7b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListSavedQueries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_sync.py index 4d22dead35..ba808970ae 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_list_saved_queries_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_ListSavedQueries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_async.py index eafbcd3e12..dc901a9ba5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_UpdateDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_sync.py index 03b78f94e8..6dd3ad3ce1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_dataset_service_update_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DatasetService_UpdateDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_async.py index 5ead7a9e1e..3b99e5ecd1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_CreateDeploymentResourcePool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_sync.py index d88bfdd973..49dc0459db 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_create_deployment_resource_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_CreateDeploymentResourcePool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_async.py index 4210b506e1..352db09322 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_DeleteDeploymentResourcePool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_sync.py index 2a71ec0dc9..869d55c75a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_delete_deployment_resource_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_DeleteDeploymentResourcePool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_async.py index e95c1060f7..e3dad995ea 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_GetDeploymentResourcePool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_sync.py index 646c50268b..aec0844ba8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_get_deployment_resource_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_GetDeploymentResourcePool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_async.py index f23b215a4d..d6f276dbad 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_ListDeploymentResourcePools_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_sync.py index 95468cab06..56cd06f34d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_list_deployment_resource_pools_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_ListDeploymentResourcePools_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_async.py index 457632c97b..cef4e41e89 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_QueryDeployedModels_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_sync.py index 6c79372194..7e90c44819 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_deployment_resource_pool_service_query_deployed_models_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_DeploymentResourcePoolService_QueryDeployedModels_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_async.py index e39f00f51b..c1c9e0ffaf 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_CreateEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_sync.py index 4f8a59f4cd..f7fc45c263 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_create_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_CreateEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_async.py index 29f9baf561..2e2bbb1fb8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_DeleteEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_sync.py index 56d5e4eaa5..c5fe532588 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_delete_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_DeleteEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_async.py index 93cad9575d..430eb39f6d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_DeployModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_sync.py index 9dba9f27f3..66ae84c0f7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_deploy_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_DeployModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_async.py index 602de3b4bb..770b59a95f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_GetEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_sync.py index 79df67a22e..67beeb345a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_get_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_GetEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_async.py index 9bacfc4230..49684215a9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_ListEndpoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_sync.py index 1a39d2b7cb..0a619ae4ca 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_list_endpoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_ListEndpoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_async.py index 0838ddbc7c..ebacb65e27 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_UndeployModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_sync.py index 03443b2c08..eb53cf7a00 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_undeploy_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_UndeployModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_async.py index 42e01ce142..c51c131576 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_UpdateEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_sync.py index c456bc03f4..57007f20e5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_endpoint_service_update_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_EndpointService_UpdateEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_async.py index f7c6963218..ff78499ae5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,7 +40,7 @@ async def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ReadFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_sync.py index 1098ded9e4..85cdf27f4e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_read_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,7 +40,7 @@ def sample_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ReadFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py index b85bacf44b..7f2522f0c6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,11 +40,11 @@ async def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py index 70e59a5409..1e13c7519a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_streaming_read_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,11 +40,11 @@ def sample_streaming_read_feature_values(): # Initialize request argument(s) feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.StreamingReadFeatureValuesRequest( entity_type="entity_type_value", - entity_ids=['entity_ids_value_1', 'entity_ids_value_2'], + entity_ids=['entity_ids_value1', 'entity_ids_value2'], feature_selector=feature_selector, ) diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_async.py index 55d26abe39..a75d89dd9d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_WriteFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_sync.py index c108a5ac40..6e222c5ad1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_online_serving_service_write_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_WriteFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_async.py index 03c577cde7..30c2b302b8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_BatchCreateFeatures_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_sync.py index 1ed56a5a37..e0179730a4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_create_features_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_BatchCreateFeatures_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_async.py index be6bb266ef..b99037191f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_BatchReadFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,14 +40,14 @@ async def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1beta1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1beta1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1beta1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_sync.py index fee4dfdfc1..6715383fe7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_batch_read_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_BatchReadFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,14 +40,14 @@ def sample_batch_read_feature_values(): # Initialize request argument(s) csv_read_instances = aiplatform_v1beta1.CsvSource() - csv_read_instances.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + csv_read_instances.gcs_source.uris = ['uris_value1', 'uris_value2'] destination = aiplatform_v1beta1.FeatureValueDestination() destination.bigquery_destination.output_uri = "output_uri_value" entity_type_specs = aiplatform_v1beta1.EntityTypeSpec() entity_type_specs.entity_type_id = "entity_type_id_value" - entity_type_specs.feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + entity_type_specs.feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.BatchReadFeatureValuesRequest( csv_read_instances=csv_read_instances, diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_async.py index bd07902f04..492c9e5064 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_CreateEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_sync.py index 0dc8e423b1..e76e790e5e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_CreateEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_async.py index 9e6f792ee9..831788e0b0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_CreateFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_sync.py index 3c8a040e19..3da7d63761 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_CreateFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_async.py index 55c0265e60..6625ec4f76 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_CreateFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_sync.py index bae54da7e0..dc713eb52d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_create_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_CreateFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_async.py index 54f4a4f228..c747d5fc05 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_DeleteEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_sync.py index 45e8bed43e..8b31b88160 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_DeleteEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_async.py index 162d4f4953..5ebca6798c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_sync.py index a52680308d..c41948b5de 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_async.py index f6b00a321c..2241e48cc2 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_sync.py index 4ef5be9942..f063484e87 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_delete_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_async.py index 08d208189a..7010d95d98 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ExportFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -36,7 +43,7 @@ async def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ExportFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_sync.py index 11ae90f23e..c0adfecda8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_export_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ExportFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -36,7 +43,7 @@ def sample_export_feature_values(): destination.bigquery_destination.output_uri = "output_uri_value" feature_selector = aiplatform_v1beta1.FeatureSelector() - feature_selector.id_matcher.ids = ['ids_value_1', 'ids_value_2'] + feature_selector.id_matcher.ids = ['ids_value1', 'ids_value2'] request = aiplatform_v1beta1.ExportFeatureValuesRequest( entity_type="entity_type_value", diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_async.py index 55abe4ca8c..f8ce99d220 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_GetEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_sync.py index 7b6337b8c7..fba2167447 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_GetEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_async.py index 51e1f2893a..ca96b177bb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_GetFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_sync.py index 34066681d2..edb259dae6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_GetFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_async.py index e6b01ff9df..0fed2afcf9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_GetFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_sync.py index a370c27282..6ea6b8e760 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_get_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_GetFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_async.py index fbb5550b9e..1d8fbbd736 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ImportFeatureValues_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,7 +40,7 @@ async def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1beta1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1beta1.FeatureSpec() feature_specs.id = "id_value" diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_sync.py index b368090c97..9877917260 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_import_feature_values_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ImportFeatureValues_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -33,7 +40,7 @@ def sample_import_feature_values(): # Initialize request argument(s) avro_source = aiplatform_v1beta1.AvroSource() - avro_source.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + avro_source.gcs_source.uris = ['uris_value1', 'uris_value2'] feature_specs = aiplatform_v1beta1.FeatureSpec() feature_specs.id = "id_value" diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_async.py index b67b8554d6..2eb8ced046 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ListEntityTypes_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_sync.py index 101da137a4..f87ef8fe1d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_entity_types_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ListEntityTypes_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_async.py index 87bae8d617..0415bea309 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ListFeatures_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_sync.py index 97f95073aa..039309c91f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_features_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ListFeatures_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_async.py index fab4bc0252..03e2b09960 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ListFeaturestores_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_sync.py index bae9106bd1..8ac44e0816 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_list_featurestores_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_ListFeaturestores_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_async.py index b5b05cd290..5180c07f77 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_SearchFeatures_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_sync.py index 422eb6df31..d4172a3a98 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_search_features_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_SearchFeatures_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_async.py index 7edcae5f25..02d0ce86d1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_UpdateEntityType_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_sync.py index cead93e903..0596a85eaa 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_entity_type_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_UpdateEntityType_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_async.py index 403b48dff6..8ce4fd90db 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeature_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_sync.py index 4e0513690d..6b89006626 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_feature_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeature_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_async.py index 6137c45be4..4b07cb50b7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeaturestore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_sync.py index 66fc77cda6..2038147872 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_featurestore_service_update_featurestore_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeaturestore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_async.py index 3c6fff682e..a6937a6531 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_CreateIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_sync.py index bac6e73ba6..a65ab68226 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_create_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_CreateIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_async.py index df6eae815e..54bcaedb65 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_DeleteIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_sync.py index 0f0eb7e4cd..3845074a71 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_delete_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_DeleteIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_async.py index 578032ecab..fad642ee1c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_DeployIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_sync.py index c3100783d3..19835e06d5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_deploy_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_DeployIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_async.py index 1083e72b06..7ae09de451 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_GetIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_sync.py index bce70eed7a..00db01637e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_get_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_GetIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_async.py index dd0b43a9fb..e8cccf5d11 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_ListIndexEndpoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_sync.py index dc50814ddb..a59926b921 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_list_index_endpoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_ListIndexEndpoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_async.py index fa6f730deb..d5fa972dae 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_MutateDeployedIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_sync.py index af37ccb450..93dc9cafe9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_mutate_deployed_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_MutateDeployedIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_async.py index c62dd2408b..d5e1872359 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_UndeployIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_sync.py index 8605878dbe..acf640eec1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_undeploy_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_UndeployIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_async.py index 9c29e14327..1dee5eb0d5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_UpdateIndexEndpoint_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_sync.py index c3c213c461..6a91cc1f36 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_endpoint_service_update_index_endpoint_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexEndpointService_UpdateIndexEndpoint_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_async.py index 4424f64bc7..0ca49236ab 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_CreateIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_sync.py index b741299dab..3e8ad1fac7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_create_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_CreateIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_async.py index 02c604c849..9e1610a35d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_DeleteIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_sync.py index b55e86a2d9..95c7d583f1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_delete_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_DeleteIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_async.py index 5be45b1802..c8fd880e30 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_GetIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_sync.py index 5827bff3e4..7da46bf11b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_get_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_GetIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_async.py index 011938c402..b818d16ed9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_ListIndexes_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_sync.py index 8d64d779c9..c3243da71e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_list_indexes_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_ListIndexes_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_async.py index a20f224da9..5a47d51b77 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_RemoveDatapoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_sync.py index c40a288d83..d6d7050cb2 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_remove_datapoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_RemoveDatapoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_async.py index be4999a8c7..b5b84efcc5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_UpdateIndex_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_sync.py index dcc2cb5263..691c3d2fd7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_update_index_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_UpdateIndex_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_async.py index c4f5185689..d6ac795e96 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_UpsertDatapoints_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_sync.py index 250df524b7..8689a50f10 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_index_service_upsert_datapoints_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_IndexService_UpsertDatapoints_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_async.py index ba03ab89e8..d5c42cdcdd 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_sync.py index 3121919254..da27b2c835 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_async.py index 88ad6ef326..9488d0ac7e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_sync.py index 512422f1ae..f3f39a7006 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_async.py index c9a1df76d9..cd10f6aab6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_sync.py index a6e9a38057..23802a45a5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_async.py index 3b8639f0ea..3d7d8fcd9c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py index 12208f4859..5d7842d646 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_cancel_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CancelHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_async.py index a9fc8f3759..6f5bcdc403 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ async def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1beta1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_sync.py index 722d9299ef..d9e459b1b0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ def sample_create_batch_prediction_job(): # Initialize request argument(s) batch_prediction_job = aiplatform_v1beta1.BatchPredictionJob() batch_prediction_job.display_name = "display_name_value" - batch_prediction_job.input_config.gcs_source.uris = ['uris_value_1', 'uris_value_2'] + batch_prediction_job.input_config.gcs_source.uris = ['uris_value1', 'uris_value2'] batch_prediction_job.input_config.instances_format = "instances_format_value" batch_prediction_job.output_config.gcs_destination.output_uri_prefix = "output_uri_prefix_value" batch_prediction_job.output_config.predictions_format = "predictions_format_value" diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_async.py index 6351151c93..c918414a04 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_sync.py index 8b33f1ba39..e8ad25117f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_async.py index 562c7544d7..7447e53677 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ async def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1beta1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_sync.py index 5b2d75e1fb..d364ecc023 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ def sample_create_data_labeling_job(): # Initialize request argument(s) data_labeling_job = aiplatform_v1beta1.DataLabelingJob() data_labeling_job.display_name = "display_name_value" - data_labeling_job.datasets = ['datasets_value_1', 'datasets_value_2'] + data_labeling_job.datasets = ['datasets_value1', 'datasets_value2'] data_labeling_job.labeler_count = 1375 data_labeling_job.instruction_uri = "instruction_uri_value" data_labeling_job.inputs_schema_uri = "inputs_schema_uri_value" diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_async.py index a9efcb8325..c92ac7cdab 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_sync.py index 897a527b33..49e8a3c678 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_async.py index b3254041ce..1f5fe903a7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_sync.py index dcfbd6d5f6..8b23ed7c45 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_create_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_CreateModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_async.py index 5da9337e99..2929edae7f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_sync.py index d629433bff..a572fbddf7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_async.py index 24f6d4cfd1..b47d0c7583 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_sync.py index 6e0f0bd7b4..ec6f56faf5 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_async.py index ed1b757258..d8b6321c4e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_sync.py index 2eab38d6b9..71d60f49ee 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_async.py index 988f314639..b714aacd5b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_sync.py index fa37df05fa..4687b759e7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_async.py index 964cd314f6..2d6258e894 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_sync.py index cf618dd645..f077dda684 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_delete_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_DeleteModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_async.py index 0dd2177c0c..be157a1be8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetBatchPredictionJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_sync.py index 9b239136d3..81693724e3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_batch_prediction_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetBatchPredictionJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_async.py index 50e3451cdd..48eb4ae961 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetCustomJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_sync.py index 24b599eb63..b9d0c86d10 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_custom_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetCustomJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_async.py index 4b99f7417b..a40b00013a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetDataLabelingJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_sync.py index b50e4560cf..4b3c97e573 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_data_labeling_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetDataLabelingJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_async.py index d9442b24e4..f467550100 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetHyperparameterTuningJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_sync.py index 81e81ed50e..fd6fe39ba7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_hyperparameter_tuning_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetHyperparameterTuningJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_async.py index 04c4807aed..c43f47d6a4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_sync.py index 98c2a22367..22ffa48733 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_get_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_GetModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_async.py index 4823327421..09302aa832 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListBatchPredictionJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_sync.py index 2ec0ea59b2..61c12afa67 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_batch_prediction_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListBatchPredictionJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_async.py index 6a337f9030..b51c61981b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListCustomJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_sync.py index 43b3ea4593..8155aeab75 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_custom_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListCustomJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_async.py index 65870edc86..9ca4bd1e61 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListDataLabelingJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_sync.py index 757ba1fa2d..bf99cfa065 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_data_labeling_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListDataLabelingJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_async.py index ba8f21ecfe..b938a662a9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListHyperparameterTuningJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py index 7d884a8d62..ab553ffa6c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_hyperparameter_tuning_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListHyperparameterTuningJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_async.py index 878effea77..c659474aa6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListModelDeploymentMonitoringJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py index 6a502bca9a..d702fef23c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_list_model_deployment_monitoring_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ListModelDeploymentMonitoringJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_async.py index 27721a6378..79e037b5d1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_PauseModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_sync.py index 2053f9e73c..3d10e991da 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_pause_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_PauseModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_async.py index 7980c3cd12..416603c225 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ResumeModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_sync.py index d79d66feda..2b7032ba03 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_resume_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_ResumeModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py index 156bd967ba..e03f583491 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py index b7cf0a6b90..223180fd32 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_search_model_deployment_monitoring_stats_anomalies_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_async.py index 6b0a493fa3..9fe64f64ea 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_UpdateModelDeploymentMonitoringJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_sync.py index 5d989ac975..b78bee268f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_job_service_update_model_deployment_monitoring_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_JobService_UpdateModelDeploymentMonitoringJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_async.py index 3d9f6ea005..6b38ade4e4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_AddContextArtifactsAndExecutions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_sync.py index 562437ffc4..a27b7a3362 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_artifacts_and_executions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_AddContextArtifactsAndExecutions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_async.py index a143de0168..ea10c62000 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_AddContextChildren_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_sync.py index c2edee20bf..b630ca3d13 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_context_children_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_AddContextChildren_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_async.py index f248dc6369..3c6de6c1d8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_AddExecutionEvents_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_sync.py index 51bbbb020f..b1090bc6b9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_add_execution_events_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_AddExecutionEvents_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_async.py index 64cbb8a8cd..1e87a1c3e9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_sync.py index f7c6009dd4..87630c50f7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_async.py index b7ce1f9feb..aa15a8229d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_sync.py index 7aa6f4207c..5fc9c9a378 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_async.py index bed6fd6988..933762ebd9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_sync.py index c44dd94057..fc6bc04553 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_async.py index a6ceab6351..35c71afd4f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateMetadataSchema_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_sync.py index 582ffa9513..132a3da5d3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_schema_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateMetadataSchema_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_async.py index 5aa7ec4ee4..0b90297d95 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateMetadataStore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_sync.py index 9469189ba3..0734190bde 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_create_metadata_store_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_CreateMetadataStore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_async.py index 127f903d9e..c3d185d75f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_sync.py index 5e6ef6a279..88e916f23b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_async.py index c05d6fe148..d419e47b1d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_sync.py index 8d68e0e310..a0ea9ddbad 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_async.py index 468ec45eed..2975a85a09 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_sync.py index d0d0a201da..8917ce87d1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_async.py index 08414e9312..618de0a6e4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteMetadataStore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_sync.py index 3aa38e9029..8309294959 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_delete_metadata_store_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_DeleteMetadataStore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_async.py index 4923dd6f0d..894e29599d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_sync.py index c021c7ef84..6db269e16c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_async.py index 8e09fd86b8..88e2b22d99 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_sync.py index 59eee30ad5..dc9554f9e2 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_async.py index faf0607d94..2c6e33f8e9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_sync.py index 3b235ebbf4..60b8e3df57 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_async.py index 1f51b8c23c..7c8bc2817d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetMetadataSchema_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_sync.py index 4a9996172b..c9886412a8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_schema_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetMetadataSchema_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_async.py index df7987842a..2d61453f3f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetMetadataStore_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_sync.py index 9e3cbd2df1..8f69accd95 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_get_metadata_store_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_GetMetadataStore_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_async.py index 3f4791abb6..6a1bc1409d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListArtifacts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_sync.py index b2f11fe505..cc214b7df8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_artifacts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListArtifacts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_async.py index 62fa6a7e9c..2c51a86f21 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListContexts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_sync.py index 0169b67705..873a959fa3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_contexts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListContexts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_async.py index 10595404a0..ea7fc56900 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListExecutions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_sync.py index fc756c40cd..ed1c00b933 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_executions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListExecutions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_async.py index 564ba0aae0..696e42ff19 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListMetadataSchemas_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_sync.py index d3f897bb7c..0a206296f8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_schemas_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListMetadataSchemas_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_async.py index 4e39c073f0..eab53430dc 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListMetadataStores_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_sync.py index a9f88c782c..b389130dc2 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_list_metadata_stores_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_ListMetadataStores_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_async.py index ec465a555b..96b2b46406 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_PurgeArtifacts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_sync.py index ff0974d79f..c09fe7bd7e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_artifacts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_PurgeArtifacts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_async.py index 74444d67b0..27a2558a1c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_PurgeContexts_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_sync.py index dcd54aaae6..0d89a6736a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_contexts_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_PurgeContexts_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_async.py index 8b92f6cf34..d7b330b47b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_PurgeExecutions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_sync.py index 3f02f62c57..c3003e656b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_purge_executions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_PurgeExecutions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_async.py index 7cd3db523a..6e00891249 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_QueryArtifactLineageSubgraph_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py index 28ba2c5ce4..1ed49c57fa 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_artifact_lineage_subgraph_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_QueryArtifactLineageSubgraph_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_async.py index d48f893219..8ca26c5826 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_QueryContextLineageSubgraph_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_sync.py index 9d766eacd4..caf0e4be79 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_context_lineage_subgraph_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_QueryContextLineageSubgraph_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_async.py index f3d8fdeb60..a213056d49 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_QueryExecutionInputsAndOutputs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py index 370bfd96c1..e4d0189f1d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_query_execution_inputs_and_outputs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_QueryExecutionInputsAndOutputs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_async.py index 74658ab8a7..51c8bf9dca 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_UpdateArtifact_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_sync.py index bdfac1385c..32112c20be 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_artifact_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_UpdateArtifact_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_async.py index f75a50c148..acaf83652f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_UpdateContext_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_sync.py index c4c9c04772..9d3948100d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_context_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_UpdateContext_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_async.py index 2b3ae95e3a..a2629d3045 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_UpdateExecution_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_sync.py index 16d9a5edfa..db108d6d27 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_metadata_service_update_execution_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MetadataService_UpdateExecution_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_async.py index f6cad564df..45355e0c6a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MigrationService_BatchMigrateResources_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_sync.py index bc1e2fc412..ddf9ce8bfb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_batch_migrate_resources_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MigrationService_BatchMigrateResources_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_async.py index d3ac5618e0..8480172d60 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MigrationService_SearchMigratableResources_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_sync.py index af50eb80b4..03dc126813 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_migration_service_search_migratable_resources_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_MigrationService_SearchMigratableResources_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_async.py index 08c8a5e0bb..74d0e3144c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_BatchImportModelEvaluationSlices_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_sync.py index 8857892744..4fbbabf70d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_batch_import_model_evaluation_slices_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_BatchImportModelEvaluationSlices_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_async.py index 0ad8dd565f..8e8b4bd494 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_DeleteModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_sync.py index 657d1a6414..258800dca3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_DeleteModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_async.py index 540cfe1fb1..7148529d7d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_DeleteModelVersion_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_sync.py index d8ee80ef9d..1a682dddc3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_delete_model_version_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_DeleteModelVersion_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_async.py index f3b7465316..d31ee36766 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ExportModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_sync.py index f6dc889c0c..086a25791f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_export_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ExportModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_async.py index f1b8db001b..bf825285e0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_GetModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_async.py index 0bdef4d038..8ad58a1658 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_GetModelEvaluation_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_async.py index 007c432ac0..a1648dd7f6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_GetModelEvaluationSlice_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_sync.py index 5f0f61ad82..729977eea3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_slice_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_GetModelEvaluationSlice_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_sync.py index 9accf1c4c0..05bc2683de 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_evaluation_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_GetModelEvaluation_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_sync.py index fe080717ba..1728582f97 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_get_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_GetModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_async.py index 67a59cf5e5..13c9a70049 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ImportModelEvaluation_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_sync.py index bb92dfdaea..7e741f7a8c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_import_model_evaluation_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ImportModelEvaluation_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_async.py index b0f086c918..cf04847bc7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModelEvaluationSlices_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_sync.py index 3d858362a7..56581438dc 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluation_slices_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModelEvaluationSlices_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_async.py index 4c2d6ce419..e78896e798 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModelEvaluations_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_sync.py index d5b3ac952c..8c97fdd5d2 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_evaluations_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModelEvaluations_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_async.py index a5b5a951a3..8cab3574e8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModelVersions_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_sync.py index d717dd002d..e04c1742e1 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_model_versions_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModelVersions_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_async.py index aa7d4f8ba2..9c4eacdd0a 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModels_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_sync.py index c5e2be1d4f..05e27d99f4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_list_models_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_ListModels_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_async.py index 517425df71..361b08eb57 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_MergeVersionAliases_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ async def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1beta1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_sync.py index fe8cb60202..03b559e60f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_merge_version_aliases_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_MergeVersionAliases_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ def sample_merge_version_aliases(): # Initialize request argument(s) request = aiplatform_v1beta1.MergeVersionAliasesRequest( name="name_value", - version_aliases=['version_aliases_value_1', 'version_aliases_value_2'], + version_aliases=['version_aliases_value1', 'version_aliases_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_async.py index cc070a4f30..a924ee8990 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_UpdateExplanationDataset_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_sync.py index 3f17d7ca8d..d406c966cd 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_explanation_dataset_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_UpdateExplanationDataset_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_async.py index 9a7bf7df62..da4a0a68ce 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_UpdateModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_sync.py index e0ed3b7a65..219ac3698e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_update_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_UpdateModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_async.py index b05244b467..27584e2923 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_UploadModel_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_sync.py index df7f1b66da..125713eb24 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_model_service_upload_model_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_ModelService_UploadModel_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_async.py index 1ae9453393..ccb38eaa7e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CancelPipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_sync.py index a48304dd4b..fe9e1561fd 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CancelPipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_async.py index 818bbf5fbf..7e96c1881e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CancelTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_sync.py index 24a6fc3e58..de9a1d6863 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_cancel_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CancelTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_async.py index c6eb72f73a..d08fd92108 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CreatePipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_sync.py index ee76472f93..63d1aa38fb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CreatePipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_async.py index d7ce61f6ea..16bea0640f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CreateTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_sync.py index fecf6cf314..b8e136041c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_create_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_CreateTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_async.py index 64aafe1369..68eeb10dc3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_DeletePipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_sync.py index fc8b5ea2fa..e65ad669bc 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_DeletePipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_async.py index 097638e8e9..568be660e0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_DeleteTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_sync.py index 1a80bf60c1..be0518ab58 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_delete_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_DeleteTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_async.py index 6eba96b5d1..7119d6836b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_GetPipelineJob_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_sync.py index 37984b5bf8..d9fee85787 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_pipeline_job_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_GetPipelineJob_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_async.py index 5e6de6843e..c06d64547b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_GetTrainingPipeline_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_sync.py index ba5edd03ad..1c6c6c07f6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_get_training_pipeline_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_GetTrainingPipeline_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_async.py index 8318dc13d8..31e8112786 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_ListPipelineJobs_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_sync.py index ec679372b3..330a6a8f99 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_pipeline_jobs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_ListPipelineJobs_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_async.py index b0a84fb3a3..eb0a8bc759 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_ListTrainingPipelines_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_sync.py index f69b7c0ca4..981b8b4ff3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_pipeline_service_list_training_pipelines_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PipelineService_ListTrainingPipelines_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_async.py index 1abbae40a1..a026654580 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PredictionService_Explain_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_sync.py index aa821d19d4..21e0e58f61 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_explain_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PredictionService_Explain_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_async.py index 38da7d92c4..011ae4d6cf 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PredictionService_Predict_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_sync.py index 8e0a96f195..451e990e10 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_predict_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PredictionService_Predict_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_async.py index b347682562..3790f52935 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PredictionService_RawPredict_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_sync.py index 20c7286fa0..ac2825f9e8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_prediction_service_raw_predict_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_PredictionService_RawPredict_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_async.py index 4110e3a04f..b515e125bc 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_CreateSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_sync.py index 1569cc2f2a..53c14b0b91 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_create_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_CreateSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_async.py index 6743cf3a70..7d0343f836 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_DeleteSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_sync.py index 5e02eafb73..565437d4ea 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_delete_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_DeleteSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_async.py index a36e2e76aa..7084801a30 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_GetSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_sync.py index 360e6e7423..dabfd4b9f0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_get_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_GetSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_async.py index d35fe10b3f..3655f8916e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_ListSpecialistPools_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_sync.py index 31270e3d7f..5eb2e66498 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_list_specialist_pools_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_ListSpecialistPools_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_async.py index fa0d8cd115..a8083545fd 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_UpdateSpecialistPool_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_sync.py index 9e314cdd0a..a006048d15 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_specialist_pool_service_update_specialist_pool_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_SpecialistPoolService_UpdateSpecialistPool_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py index 5937240bab..dd86846965 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardRuns_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py index a829aa595f..d85472e6bd 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_runs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardRuns_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py index 409e42451c..00958331f7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py index 4d6dff304c..7aa4e63eaa 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_create_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py index 07ee0f2040..4522a928c8 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ async def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1beta1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py index c14bbb21d9..5e4637b52f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_batch_read_tensorboard_time_series_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 @@ -34,7 +41,7 @@ def sample_batch_read_tensorboard_time_series_data(): # Initialize request argument(s) request = aiplatform_v1beta1.BatchReadTensorboardTimeSeriesDataRequest( tensorboard="tensorboard_value", - time_series=['time_series_value_1', 'time_series_value_2'], + time_series=['time_series_value1', 'time_series_value2'], ) # Make the request diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_async.py index 27ffff4cf4..d9f8599f77 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_async.py index a3ee2e22d4..80dec776eb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_sync.py index 86b25f8d5a..57c08e34eb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_async.py index 4cf5a16922..c3b074397d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_sync.py index 81e50e4b46..9671fb836c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_sync.py index 021008b4b1..a747831c9d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_async.py index 27ac95a98c..df13993b70 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_sync.py index 89f205c530..0f03240ddb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_create_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_async.py index 0fad128744..7bf1a68383 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_async.py index 6a00ba6551..6733b19499 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py index 05bb0f8e3d..4cacaa60ea 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_async.py index a9c126bdbf..ba94c5f954 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_sync.py index 7de2b8038a..c5e7b19913 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_sync.py index e9181c8670..c80060133e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_async.py index 1427937ce3..afc72a0e3f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py index 97d5788320..09f813c2a0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_delete_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py index 9207970d60..ee4569ad8b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ExportTensorboardTimeSeriesData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py index bad73717bc..27a1040ef3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_export_tensorboard_time_series_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ExportTensorboardTimeSeriesData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_async.py index 76db628787..793f7f1d78 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_async.py index 59eaefa0a5..09abb2467d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_sync.py index a4b0be05d6..4ca601ce63 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_async.py index 3b6e6affb3..b11d4f64ad 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_sync.py index 0a68e3959b..d807728e3e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_sync.py index 26a5a65230..446553cfa4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_async.py index 411c0af108..1f136607e2 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_sync.py index 10c0d3f143..70c975e3ea 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_get_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_GetTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_async.py index 4373a11385..0a36460e16 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboardExperiments_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_sync.py index 022518a974..0dc6221c4f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_experiments_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboardExperiments_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_async.py index 8c0b9f265e..ab36e97829 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboardRuns_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_sync.py index 1e3572ada3..0d335274da 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_runs_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboardRuns_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_async.py index 22dd43a6ce..3993a556cd 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_sync.py index 9e8deab9e0..a57044e875 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_async.py index 3ddaf031a1..4565ed87af 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboards_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_sync.py index 9e1ff86334..bde8dc60ee 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_list_tensorboards_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ListTensorboards_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_async.py index 4379e6a244..04205676ce 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardBlobData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py index ba91617037..6bd44e5412 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_blob_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardBlobData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py index 98979860f6..fc97b21c34 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardTimeSeriesData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py index d0d932ad2f..9fbf5bba28 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_read_tensorboard_time_series_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardTimeSeriesData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_async.py index 55d0b0fa73..f768f318f9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboard_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_async.py index 3910a49162..415fe13a27 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardExperiment_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_sync.py index 06a9f08ce7..e53dafafcc 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_experiment_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardExperiment_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_async.py index 505dea8e0d..a318225e16 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardRun_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_sync.py index 2fc6027d82..c3eca2f6f0 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_run_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardRun_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_sync.py index bf762f7170..db4859f9fa 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboard_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_async.py index ece4853f6d..31fe3b0d2e 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardTimeSeries_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_sync.py index 68077f0c73..b0d68109d9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_update_tensorboard_time_series_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardTimeSeries_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py index 51ca02807c..2bb0d21ab3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardExperimentData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py index 527f950cdb..515c4a107c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_experiment_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardExperimentData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_async.py index 70e747c88c..5d80a0066c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardRunData_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_sync.py index 1abe72d656..b9f5317347 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_tensorboard_service_write_tensorboard_run_data_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardRunData_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_async.py index b59c855d2a..2f0a46f420 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_AddTrialMeasurement_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_sync.py index d713f727f4..5f99f0ea97 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_add_trial_measurement_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_AddTrialMeasurement_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_async.py index 7fa5901eb7..31abc3a7ad 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CheckTrialEarlyStoppingState_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_sync.py index 8fc432fbd9..ca53bad33c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_check_trial_early_stopping_state_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CheckTrialEarlyStoppingState_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_async.py index 30fc9af533..a287d71370 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CompleteTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_sync.py index d227e01d15..cd51e8782f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_complete_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CompleteTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_async.py index 1a923afb48..1aabe663f7 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CreateStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_sync.py index 396f45c5be..0006548891 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CreateStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_async.py index 0fa2502f33..e84b61d198 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CreateTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_sync.py index c776e0dcd2..bece4b19c4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_create_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_CreateTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_async.py index 7178b7ffe0..4c034f06c4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_DeleteStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_sync.py index f259e8a0a5..16e55c7fc9 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_DeleteStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_async.py index 0e2b0638f8..430a17e2ad 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_DeleteTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_sync.py index 21fe7a82fc..95cbab5cdb 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_delete_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_DeleteTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_async.py index ed514cada2..899eb0a98d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_GetStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_sync.py index dea4a50945..2342cccb31 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_GetStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_async.py index a8cef49ac7..0a3d6a804c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_GetTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_sync.py index b1c32464f9..9d697a89c4 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_get_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_GetTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_async.py index 5ea4f5d74d..3402d74f13 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_ListOptimalTrials_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_sync.py index 90f9f409bc..ea190408f3 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_optimal_trials_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_ListOptimalTrials_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_async.py index 6040471485..f5d53cea3f 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_ListStudies_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_sync.py index bcd72071d5..47c4033475 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_studies_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_ListStudies_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_async.py index a86618e52c..c3cb20b648 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_ListTrials_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_sync.py index 7d68763af9..02a10b3476 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_list_trials_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_ListTrials_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_async.py index 31d560c32e..bab1585f40 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_LookupStudy_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_sync.py index 458b8dfe43..0664e5d627 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_lookup_study_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_LookupStudy_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_async.py index ca540079db..c15f38b58b 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_StopTrial_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_sync.py index 8859749951..c1ecc8e3f6 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_stop_trial_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_StopTrial_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_async.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_async.py index 25c90f6119..310d40277d 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_async.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_async.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_SuggestTrials_async] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_sync.py b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_sync.py index 8d8b220145..ec02eaad4c 100644 --- a/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_sync.py +++ b/samples/generated_samples/aiplatform_v1beta1_generated_vizier_service_suggest_trials_sync.py @@ -24,6 +24,13 @@ # [START aiplatform_v1beta1_generated_VizierService_SuggestTrials_sync] +# This snippet has been automatically generated and should be regarded as a +# code template only. +# It will require modifications to work: +# - It may require correct/in-range values for request initialization. +# - It may require specifying regional endpoints when creating the service +# client as shown in: +# https://googleapis.dev/python/google-api-core/latest/client_options.html from google.cloud import aiplatform_v1beta1 diff --git a/samples/generated_samples/snippet_metadata_aiplatform_v1.json b/samples/generated_samples/snippet_metadata_aiplatform_v1.json index ef2e33dfc4..a94d338d74 100644 --- a/samples/generated_samples/snippet_metadata_aiplatform_v1.json +++ b/samples/generated_samples/snippet_metadata_aiplatform_v1.json @@ -63,33 +63,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_CreateDataset_async", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -147,33 +147,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_CreateDataset_sync", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -228,33 +228,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_DeleteDataset_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -308,33 +308,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_DeleteDataset_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -393,33 +393,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ExportData_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -477,33 +477,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ExportData_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -558,33 +558,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_GetAnnotationSpec_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -638,33 +638,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_GetAnnotationSpec_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -719,33 +719,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_GetDataset_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -799,33 +799,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_GetDataset_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -884,33 +884,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ImportData_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -968,33 +968,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ImportData_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -1049,33 +1049,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListAnnotations_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1129,33 +1129,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListAnnotations_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1210,33 +1210,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListDataItems_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1290,33 +1290,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListDataItems_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1371,33 +1371,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListDatasets_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1451,33 +1451,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListDatasets_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1532,33 +1532,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListSavedQueries_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1612,33 +1612,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_ListSavedQueries_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, - "type": "CLIENT_INITIALIZATION" + "end": 40, + "start": 38, + "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1697,33 +1697,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_UpdateDataset_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -1781,33 +1781,33 @@ "regionTag": "aiplatform_v1_generated_DatasetService_UpdateDataset_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -1870,33 +1870,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_CreateEndpoint_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -1958,33 +1958,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_CreateEndpoint_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -2039,33 +2039,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_DeleteEndpoint_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -2119,33 +2119,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_DeleteEndpoint_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -2208,33 +2208,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_DeployModel_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -2296,33 +2296,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_DeployModel_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -2377,33 +2377,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_GetEndpoint_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2457,33 +2457,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_GetEndpoint_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2538,33 +2538,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_ListEndpoints_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2618,33 +2618,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_ListEndpoints_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2707,33 +2707,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_UndeployModel_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -2795,33 +2795,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_UndeployModel_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -2880,33 +2880,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_UpdateEndpoint_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -2964,33 +2964,33 @@ "regionTag": "aiplatform_v1_generated_EndpointService_UpdateEndpoint_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -3045,33 +3045,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3125,33 +3125,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3206,33 +3206,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 47, + "end": 58, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3286,33 +3286,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 47, + "end": 58, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3371,33 +3371,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_BatchCreateFeatures_async", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -3455,33 +3455,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_BatchCreateFeatures_sync", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -3536,33 +3536,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_BatchReadFeatureValues_async", "segments": [ { - "end": 61, + "end": 68, "start": 27, "type": "FULL" }, { - "end": 61, + "end": 68, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 51, - "start": 34, + "end": 58, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 58, - "start": 52, + "end": 65, + "start": 59, "type": "REQUEST_EXECUTION" }, { - "end": 62, - "start": 59, + "end": 69, + "start": 66, "type": "RESPONSE_HANDLING" } ], @@ -3616,33 +3616,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_BatchReadFeatureValues_sync", "segments": [ { - "end": 61, + "end": 68, "start": 27, "type": "FULL" }, { - "end": 61, + "end": 68, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 51, - "start": 34, + "end": 58, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 58, - "start": 52, + "end": 65, + "start": 59, "type": "REQUEST_EXECUTION" }, { - "end": 62, - "start": 59, + "end": 69, + "start": 66, "type": "RESPONSE_HANDLING" } ], @@ -3705,33 +3705,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_CreateEntityType_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3793,33 +3793,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_CreateEntityType_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3882,33 +3882,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_CreateFeature_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -3970,33 +3970,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_CreateFeature_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -4059,33 +4059,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_CreateFeaturestore_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4147,33 +4147,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_CreateFeaturestore_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4232,33 +4232,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_DeleteEntityType_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4316,33 +4316,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_DeleteEntityType_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4397,33 +4397,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_DeleteFeature_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4477,33 +4477,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_DeleteFeature_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4562,33 +4562,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_DeleteFeaturestore_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4646,33 +4646,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_DeleteFeaturestore_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4727,33 +4727,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ExportFeatureValues_async", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 47, + "end": 60, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -4807,33 +4807,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ExportFeatureValues_sync", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 47, + "end": 60, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -4888,33 +4888,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_GetEntityType_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -4968,33 +4968,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_GetEntityType_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5049,33 +5049,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_GetFeature_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5129,33 +5129,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_GetFeature_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5210,33 +5210,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_GetFeaturestore_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5290,33 +5290,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_GetFeaturestore_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5371,33 +5371,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ImportFeatureValues_async", "segments": [ { - "end": 57, + "end": 64, "start": 27, "type": "FULL" }, { - "end": 57, + "end": 64, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 54, - "start": 48, + "end": 61, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 58, - "start": 55, + "end": 65, + "start": 62, "type": "RESPONSE_HANDLING" } ], @@ -5451,33 +5451,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ImportFeatureValues_sync", "segments": [ { - "end": 57, + "end": 64, "start": 27, "type": "FULL" }, { - "end": 57, + "end": 64, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 54, - "start": 48, + "end": 61, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 58, - "start": 55, + "end": 65, + "start": 62, "type": "RESPONSE_HANDLING" } ], @@ -5532,33 +5532,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ListEntityTypes_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5612,33 +5612,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ListEntityTypes_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5693,33 +5693,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ListFeatures_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5773,33 +5773,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ListFeatures_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5854,33 +5854,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ListFeaturestores_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5934,33 +5934,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_ListFeaturestores_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6019,33 +6019,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_SearchFeatures_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6103,33 +6103,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_SearchFeatures_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6188,33 +6188,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_UpdateEntityType_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -6272,33 +6272,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_UpdateEntityType_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -6357,33 +6357,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_UpdateFeature_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -6441,33 +6441,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_UpdateFeature_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -6526,33 +6526,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_UpdateFeaturestore_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 38, + "end": 51, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -6610,33 +6610,33 @@ "regionTag": "aiplatform_v1_generated_FeaturestoreService_UpdateFeaturestore_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 38, + "end": 51, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -6695,33 +6695,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_CreateIndexEndpoint_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -6779,33 +6779,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_CreateIndexEndpoint_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -6860,33 +6860,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_DeleteIndexEndpoint_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -6940,33 +6940,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_DeleteIndexEndpoint_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -7025,33 +7025,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_DeployIndex_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -7109,33 +7109,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_DeployIndex_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -7190,33 +7190,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_GetIndexEndpoint_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7270,33 +7270,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_GetIndexEndpoint_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7351,33 +7351,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_ListIndexEndpoints_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7431,33 +7431,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_ListIndexEndpoints_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7516,33 +7516,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_MutateDeployedIndex_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -7600,33 +7600,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_MutateDeployedIndex_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -7685,33 +7685,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_UndeployIndex_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -7769,33 +7769,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_UndeployIndex_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -7854,33 +7854,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_UpdateIndexEndpoint_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, - "type": "REQUEST_EXECUTION" + "end": 51, + "start": 49, + "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -7938,33 +7938,33 @@ "regionTag": "aiplatform_v1_generated_IndexEndpointService_UpdateIndexEndpoint_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -8023,33 +8023,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_CreateIndex_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -8107,33 +8107,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_CreateIndex_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -8188,33 +8188,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_DeleteIndex_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -8268,33 +8268,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_DeleteIndex_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -8349,33 +8349,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_GetIndex_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8429,33 +8429,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_GetIndex_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8510,33 +8510,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_ListIndexes_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8590,33 +8590,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_ListIndexes_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8667,33 +8667,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_RemoveDatapoints_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8743,33 +8743,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_RemoveDatapoints_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8828,33 +8828,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_UpdateIndex_async", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -8912,33 +8912,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_UpdateIndex_sync", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -8989,33 +8989,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_UpsertDatapoints_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9065,33 +9065,33 @@ "regionTag": "aiplatform_v1_generated_IndexService_UpsertDatapoints_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9145,31 +9145,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelBatchPredictionJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9222,31 +9222,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelBatchPredictionJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9300,31 +9300,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelCustomJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9377,31 +9377,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelCustomJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9455,31 +9455,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelDataLabelingJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9532,31 +9532,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelDataLabelingJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9610,31 +9610,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelHyperparameterTuningJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9687,31 +9687,31 @@ "regionTag": "aiplatform_v1_generated_JobService_CancelHyperparameterTuningJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -9770,33 +9770,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateBatchPredictionJob_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 47, + "end": 56, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -9854,33 +9854,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateBatchPredictionJob_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 47, + "end": 56, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -9939,33 +9939,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateCustomJob_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -10023,33 +10023,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateCustomJob_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -10108,33 +10108,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateDataLabelingJob_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -10192,33 +10192,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateDataLabelingJob_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -10277,33 +10277,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateHyperparameterTuningJob_async", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 50, - "start": 34, + "end": 57, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 51, + "end": 60, + "start": 58, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -10361,33 +10361,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateHyperparameterTuningJob_sync", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 50, - "start": 34, + "end": 57, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 51, + "end": 60, + "start": 58, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -10446,33 +10446,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateModelDeploymentMonitoringJob_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -10530,33 +10530,33 @@ "regionTag": "aiplatform_v1_generated_JobService_CreateModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -10611,33 +10611,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteBatchPredictionJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -10691,33 +10691,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteBatchPredictionJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -10772,33 +10772,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteCustomJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -10852,33 +10852,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteCustomJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -10933,33 +10933,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteDataLabelingJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11013,33 +11013,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteDataLabelingJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11094,33 +11094,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteHyperparameterTuningJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11174,33 +11174,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteHyperparameterTuningJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11255,33 +11255,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteModelDeploymentMonitoringJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11335,33 +11335,33 @@ "regionTag": "aiplatform_v1_generated_JobService_DeleteModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11416,33 +11416,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetBatchPredictionJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11496,33 +11496,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetBatchPredictionJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11577,33 +11577,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetCustomJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11657,33 +11657,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetCustomJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11738,33 +11738,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetDataLabelingJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11818,33 +11818,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetDataLabelingJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11899,33 +11899,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetHyperparameterTuningJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -11979,33 +11979,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetHyperparameterTuningJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12060,33 +12060,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetModelDeploymentMonitoringJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12140,33 +12140,33 @@ "regionTag": "aiplatform_v1_generated_JobService_GetModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12221,33 +12221,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListBatchPredictionJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12301,33 +12301,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListBatchPredictionJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12382,33 +12382,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListCustomJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12462,33 +12462,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListCustomJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12543,33 +12543,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListDataLabelingJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12623,33 +12623,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListDataLabelingJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12704,33 +12704,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListHyperparameterTuningJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12784,33 +12784,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListHyperparameterTuningJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, - "type": "CLIENT_INITIALIZATION" + "end": 40, + "start": 38, + "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12865,33 +12865,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListModelDeploymentMonitoringJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12945,33 +12945,33 @@ "regionTag": "aiplatform_v1_generated_JobService_ListModelDeploymentMonitoringJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13025,31 +13025,31 @@ "regionTag": "aiplatform_v1_generated_JobService_PauseModelDeploymentMonitoringJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -13102,31 +13102,31 @@ "regionTag": "aiplatform_v1_generated_JobService_PauseModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -13180,31 +13180,31 @@ "regionTag": "aiplatform_v1_generated_JobService_ResumeModelDeploymentMonitoringJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -13257,31 +13257,31 @@ "regionTag": "aiplatform_v1_generated_JobService_ResumeModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -13340,33 +13340,33 @@ "regionTag": "aiplatform_v1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_async", "segments": [ { - "end": 46, + "end": 53, "start": 27, "type": "FULL" }, { - "end": 46, + "end": 53, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 47, - "start": 43, + "end": 54, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -13424,33 +13424,33 @@ "regionTag": "aiplatform_v1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_sync", "segments": [ { - "end": 46, + "end": 53, "start": 27, "type": "FULL" }, { - "end": 46, + "end": 53, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 47, - "start": 43, + "end": 54, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -13509,33 +13509,33 @@ "regionTag": "aiplatform_v1_generated_JobService_UpdateModelDeploymentMonitoringJob_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -13593,33 +13593,33 @@ "regionTag": "aiplatform_v1_generated_JobService_UpdateModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -13682,33 +13682,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_AddContextArtifactsAndExecutions_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13770,33 +13770,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_AddContextArtifactsAndExecutions_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13855,33 +13855,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_AddContextChildren_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13939,33 +13939,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_AddContextChildren_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14024,33 +14024,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_AddExecutionEvents_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14108,33 +14108,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_AddExecutionEvents_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14197,33 +14197,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateArtifact_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14285,33 +14285,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateArtifact_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14374,33 +14374,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateContext_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14462,33 +14462,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateContext_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14551,33 +14551,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateExecution_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14639,33 +14639,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateExecution_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14728,33 +14728,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateMetadataSchema_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -14816,33 +14816,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateMetadataSchema_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -14905,33 +14905,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateMetadataStore_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -14993,33 +14993,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_CreateMetadataStore_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15074,33 +15074,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteArtifact_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15154,33 +15154,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteArtifact_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15235,33 +15235,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteContext_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15315,33 +15315,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteContext_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15396,33 +15396,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteExecution_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15476,33 +15476,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteExecution_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15557,33 +15557,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteMetadataStore_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15637,33 +15637,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_DeleteMetadataStore_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15718,33 +15718,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetArtifact_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15798,33 +15798,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetArtifact_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15879,33 +15879,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetContext_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15959,33 +15959,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetContext_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16040,33 +16040,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetExecution_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16120,33 +16120,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetExecution_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, - "type": "REQUEST_INITIALIZATION" + "end": 45, + "start": 41, + "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16201,33 +16201,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetMetadataSchema_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16281,33 +16281,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetMetadataSchema_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16362,33 +16362,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetMetadataStore_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16442,33 +16442,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_GetMetadataStore_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16523,33 +16523,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListArtifacts_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16603,33 +16603,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListArtifacts_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16684,33 +16684,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListContexts_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16764,33 +16764,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListContexts_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16845,33 +16845,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListExecutions_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16925,33 +16925,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListExecutions_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17006,33 +17006,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListMetadataSchemas_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17086,33 +17086,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListMetadataSchemas_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17167,33 +17167,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListMetadataStores_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17247,33 +17247,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_ListMetadataStores_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17328,33 +17328,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_PurgeArtifacts_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -17408,33 +17408,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_PurgeArtifacts_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -17489,33 +17489,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_PurgeContexts_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -17569,33 +17569,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_PurgeContexts_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -17650,33 +17650,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_PurgeExecutions_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -17730,33 +17730,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_PurgeExecutions_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -17811,33 +17811,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_QueryArtifactLineageSubgraph_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17891,33 +17891,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_QueryArtifactLineageSubgraph_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17972,33 +17972,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_QueryContextLineageSubgraph_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18052,33 +18052,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_QueryContextLineageSubgraph_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18133,33 +18133,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_QueryExecutionInputsAndOutputs_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18213,33 +18213,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_QueryExecutionInputsAndOutputs_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18298,33 +18298,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_UpdateArtifact_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -18382,33 +18382,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_UpdateArtifact_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -18467,33 +18467,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_UpdateContext_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -18551,33 +18551,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_UpdateContext_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -18636,33 +18636,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_UpdateExecution_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -18720,33 +18720,33 @@ "regionTag": "aiplatform_v1_generated_MetadataService_UpdateExecution_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -18805,33 +18805,33 @@ "regionTag": "aiplatform_v1_generated_MigrationService_BatchMigrateResources_async", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -18889,33 +18889,33 @@ "regionTag": "aiplatform_v1_generated_MigrationService_BatchMigrateResources_sync", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -18970,33 +18970,33 @@ "regionTag": "aiplatform_v1_generated_MigrationService_SearchMigratableResources_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19050,33 +19050,33 @@ "regionTag": "aiplatform_v1_generated_MigrationService_SearchMigratableResources_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19135,33 +19135,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_BatchImportModelEvaluationSlices_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19219,33 +19219,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_BatchImportModelEvaluationSlices_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19300,33 +19300,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_DeleteModelVersion_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -19380,33 +19380,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_DeleteModelVersion_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -19461,33 +19461,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_DeleteModel_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -19541,33 +19541,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_DeleteModel_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -19626,33 +19626,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ExportModel_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -19710,33 +19710,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ExportModel_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -19791,33 +19791,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_GetModelEvaluationSlice_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19871,33 +19871,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_GetModelEvaluationSlice_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19952,33 +19952,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_GetModelEvaluation_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20032,33 +20032,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_GetModelEvaluation_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20113,33 +20113,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_GetModel_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20193,33 +20193,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_GetModel_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20278,33 +20278,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ImportModelEvaluation_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20362,33 +20362,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ImportModelEvaluation_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20443,33 +20443,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModelEvaluationSlices_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20523,33 +20523,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModelEvaluationSlices_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20604,33 +20604,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModelEvaluations_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20684,33 +20684,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModelEvaluations_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20765,33 +20765,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModelVersions_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20845,33 +20845,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModelVersions_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20926,33 +20926,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModels_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21006,33 +21006,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_ListModels_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21091,33 +21091,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_MergeVersionAliases_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -21175,33 +21175,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_MergeVersionAliases_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -21260,33 +21260,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_UpdateModel_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -21344,33 +21344,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_UpdateModel_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -21429,33 +21429,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_UploadModel_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -21513,33 +21513,33 @@ "regionTag": "aiplatform_v1_generated_ModelService_UploadModel_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -21593,31 +21593,31 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CancelPipelineJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -21670,31 +21670,31 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CancelPipelineJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -21748,31 +21748,31 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CancelTrainingPipeline_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -21825,31 +21825,31 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CancelTrainingPipeline_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -21912,33 +21912,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CreatePipelineJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22000,33 +22000,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CreatePipelineJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22085,33 +22085,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CreateTrainingPipeline_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -22169,33 +22169,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_CreateTrainingPipeline_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -22250,33 +22250,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_DeletePipelineJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -22330,33 +22330,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_DeletePipelineJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -22411,33 +22411,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_DeleteTrainingPipeline_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -22491,33 +22491,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_DeleteTrainingPipeline_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -22572,33 +22572,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_GetPipelineJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22652,33 +22652,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_GetPipelineJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22733,33 +22733,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_GetTrainingPipeline_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22813,33 +22813,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_GetTrainingPipeline_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22894,33 +22894,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_ListPipelineJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22974,33 +22974,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_ListPipelineJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23055,33 +23055,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_ListTrainingPipelines_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23135,33 +23135,33 @@ "regionTag": "aiplatform_v1_generated_PipelineService_ListTrainingPipelines_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23228,33 +23228,33 @@ "regionTag": "aiplatform_v1_generated_PredictionService_Explain_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23320,33 +23320,33 @@ "regionTag": "aiplatform_v1_generated_PredictionService_Explain_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23409,33 +23409,33 @@ "regionTag": "aiplatform_v1_generated_PredictionService_Predict_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23497,33 +23497,33 @@ "regionTag": "aiplatform_v1_generated_PredictionService_Predict_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23582,33 +23582,33 @@ "regionTag": "aiplatform_v1_generated_PredictionService_RawPredict_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23666,33 +23666,33 @@ "regionTag": "aiplatform_v1_generated_PredictionService_RawPredict_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23751,33 +23751,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_CreateSpecialistPool_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -23835,33 +23835,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_CreateSpecialistPool_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -23916,33 +23916,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_DeleteSpecialistPool_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23996,33 +23996,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_DeleteSpecialistPool_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, - "type": "REQUEST_EXECUTION" + "end": 52, + "start": 46, + "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -24077,33 +24077,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_GetSpecialistPool_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24157,33 +24157,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_GetSpecialistPool_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24238,33 +24238,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_ListSpecialistPools_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24318,33 +24318,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_ListSpecialistPools_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24403,33 +24403,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_UpdateSpecialistPool_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -24487,33 +24487,33 @@ "regionTag": "aiplatform_v1_generated_SpecialistPoolService_UpdateSpecialistPool_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -24572,33 +24572,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardRuns_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -24656,33 +24656,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardRuns_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -24741,33 +24741,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -24825,33 +24825,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -24906,33 +24906,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -24986,33 +24986,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -25075,33 +25075,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboardExperiment_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -25163,33 +25163,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboardExperiment_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -25252,33 +25252,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboardRun_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -25340,33 +25340,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboardRun_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -25425,33 +25425,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboardTimeSeries_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -25509,33 +25509,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboardTimeSeries_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -25594,33 +25594,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboard_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -25678,33 +25678,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_CreateTensorboard_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -25759,33 +25759,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboardExperiment_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -25839,33 +25839,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboardExperiment_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -25920,33 +25920,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboardRun_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26000,33 +26000,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboardRun_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26081,33 +26081,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboardTimeSeries_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26161,33 +26161,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboardTimeSeries_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26242,33 +26242,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboard_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26322,33 +26322,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_DeleteTensorboard_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26403,33 +26403,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ExportTensorboardTimeSeriesData_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26483,33 +26483,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ExportTensorboardTimeSeriesData_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26564,33 +26564,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboardExperiment_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26644,33 +26644,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboardExperiment_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26725,33 +26725,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboardRun_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26805,33 +26805,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboardRun_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26886,33 +26886,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboardTimeSeries_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -26966,33 +26966,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboardTimeSeries_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27047,33 +27047,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboard_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27127,33 +27127,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_GetTensorboard_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27208,33 +27208,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboardExperiments_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27288,33 +27288,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboardExperiments_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27369,33 +27369,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboardRuns_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27449,33 +27449,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboardRuns_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27530,33 +27530,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboardTimeSeries_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27610,33 +27610,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboardTimeSeries_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27691,33 +27691,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboards_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27771,33 +27771,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ListTensorboards_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27852,33 +27852,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ReadTensorboardBlobData_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27932,33 +27932,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ReadTensorboardBlobData_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28013,33 +28013,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ReadTensorboardTimeSeriesData_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28093,33 +28093,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_ReadTensorboardTimeSeriesData_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28178,33 +28178,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboardExperiment_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -28262,33 +28262,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboardExperiment_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -28347,33 +28347,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboardRun_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -28431,33 +28431,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboardRun_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -28516,33 +28516,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboardTimeSeries_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -28600,33 +28600,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboardTimeSeries_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -28685,33 +28685,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboard_async", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -28769,33 +28769,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_UpdateTensorboard_sync", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -28854,33 +28854,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_WriteTensorboardExperimentData_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -28938,33 +28938,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_WriteTensorboardExperimentData_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -29023,33 +29023,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_WriteTensorboardRunData_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -29107,33 +29107,33 @@ "regionTag": "aiplatform_v1_generated_TensorboardService_WriteTensorboardRunData_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -29184,33 +29184,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_AddTrialMeasurement_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29260,33 +29260,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_AddTrialMeasurement_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29337,33 +29337,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CheckTrialEarlyStoppingState_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -29413,33 +29413,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CheckTrialEarlyStoppingState_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -29490,33 +29490,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CompleteTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29566,33 +29566,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CompleteTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29651,33 +29651,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CreateStudy_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -29735,33 +29735,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CreateStudy_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -29820,33 +29820,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CreateTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29904,33 +29904,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_CreateTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29984,31 +29984,31 @@ "regionTag": "aiplatform_v1_generated_VizierService_DeleteStudy_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -30061,31 +30061,31 @@ "regionTag": "aiplatform_v1_generated_VizierService_DeleteStudy_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -30139,31 +30139,31 @@ "regionTag": "aiplatform_v1_generated_VizierService_DeleteTrial_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -30216,31 +30216,31 @@ "regionTag": "aiplatform_v1_generated_VizierService_DeleteTrial_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -30295,33 +30295,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_GetStudy_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30375,33 +30375,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_GetStudy_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30456,33 +30456,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_GetTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30536,33 +30536,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_GetTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30617,33 +30617,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_ListOptimalTrials_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30697,33 +30697,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_ListOptimalTrials_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30778,33 +30778,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_ListStudies_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30858,33 +30858,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_ListStudies_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30939,33 +30939,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_ListTrials_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31019,33 +31019,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_ListTrials_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31100,33 +31100,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_LookupStudy_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -31180,33 +31180,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_LookupStudy_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -31257,33 +31257,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_StopTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31333,33 +31333,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_StopTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31410,33 +31410,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_SuggestTrials_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 40, - "start": 34, + "end": 47, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 41, + "end": 54, + "start": 48, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -31486,33 +31486,33 @@ "regionTag": "aiplatform_v1_generated_VizierService_SuggestTrials_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 40, - "start": 34, + "end": 47, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 41, + "end": 54, + "start": 48, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], diff --git a/samples/generated_samples/snippet_metadata_aiplatform_v1beta1.json b/samples/generated_samples/snippet_metadata_aiplatform_v1beta1.json index 0546c77a16..12dfc207a5 100644 --- a/samples/generated_samples/snippet_metadata_aiplatform_v1beta1.json +++ b/samples/generated_samples/snippet_metadata_aiplatform_v1beta1.json @@ -63,33 +63,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_CreateDataset_async", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -147,33 +147,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_CreateDataset_sync", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -228,33 +228,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_DeleteDataset_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -308,33 +308,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_DeleteDataset_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -393,33 +393,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ExportData_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -477,33 +477,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ExportData_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -558,33 +558,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_GetAnnotationSpec_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -638,33 +638,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_GetAnnotationSpec_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -719,33 +719,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_GetDataset_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -799,33 +799,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_GetDataset_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -884,33 +884,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ImportData_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -968,33 +968,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ImportData_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -1049,33 +1049,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListAnnotations_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1129,33 +1129,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListAnnotations_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1210,33 +1210,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListDataItems_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1290,33 +1290,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListDataItems_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1371,33 +1371,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListDatasets_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1451,33 +1451,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListDatasets_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1532,33 +1532,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListSavedQueries_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1612,33 +1612,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_ListSavedQueries_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, - "type": "CLIENT_INITIALIZATION" + "end": 40, + "start": 38, + "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -1697,33 +1697,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_UpdateDataset_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -1781,33 +1781,33 @@ "regionTag": "aiplatform_v1beta1_generated_DatasetService_UpdateDataset_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -1870,33 +1870,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_CreateDeploymentResourcePool_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -1958,33 +1958,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_CreateDeploymentResourcePool_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -2039,33 +2039,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_DeleteDeploymentResourcePool_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -2119,33 +2119,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_DeleteDeploymentResourcePool_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -2200,33 +2200,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_GetDeploymentResourcePool_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2280,33 +2280,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_GetDeploymentResourcePool_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2361,33 +2361,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_ListDeploymentResourcePools_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2441,33 +2441,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_ListDeploymentResourcePools_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2522,33 +2522,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_QueryDeployedModels_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2602,33 +2602,33 @@ "regionTag": "aiplatform_v1beta1_generated_DeploymentResourcePoolService_QueryDeployedModels_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -2691,33 +2691,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_CreateEndpoint_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -2779,33 +2779,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_CreateEndpoint_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -2860,33 +2860,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_DeleteEndpoint_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -2940,33 +2940,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_DeleteEndpoint_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -3029,33 +3029,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_DeployModel_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -3117,33 +3117,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_DeployModel_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -3198,34 +3198,34 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_GetEndpoint_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, - "type": "RESPONSE_HANDLING" + "end": 52, + "start": 49, + "type": "RESPONSE_HANDLING" } ], "title": "aiplatform_v1beta1_generated_endpoint_service_get_endpoint_async.py" @@ -3278,33 +3278,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_GetEndpoint_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -3359,33 +3359,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_ListEndpoints_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -3439,33 +3439,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_ListEndpoints_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -3528,33 +3528,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_UndeployModel_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3616,33 +3616,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_UndeployModel_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3701,33 +3701,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_UpdateEndpoint_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -3785,33 +3785,33 @@ "regionTag": "aiplatform_v1beta1_generated_EndpointService_UpdateEndpoint_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -3866,33 +3866,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -3946,33 +3946,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_ReadFeatureValues_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4027,33 +4027,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 47, + "end": 58, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4107,33 +4107,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_StreamingReadFeatureValues_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 47, + "end": 58, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4192,33 +4192,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_WriteFeatureValues_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4276,33 +4276,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreOnlineServingService_WriteFeatureValues_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -4361,33 +4361,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_BatchCreateFeatures_async", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -4445,33 +4445,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_BatchCreateFeatures_sync", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -4526,33 +4526,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_BatchReadFeatureValues_async", "segments": [ { - "end": 61, + "end": 68, "start": 27, "type": "FULL" }, { - "end": 61, + "end": 68, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 51, - "start": 34, + "end": 58, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 58, - "start": 52, + "end": 65, + "start": 59, "type": "REQUEST_EXECUTION" }, { - "end": 62, - "start": 59, + "end": 69, + "start": 66, "type": "RESPONSE_HANDLING" } ], @@ -4606,33 +4606,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_BatchReadFeatureValues_sync", "segments": [ { - "end": 61, + "end": 68, "start": 27, "type": "FULL" }, { - "end": 61, + "end": 68, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 51, - "start": 34, + "end": 58, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 58, - "start": 52, + "end": 65, + "start": 59, "type": "REQUEST_EXECUTION" }, { - "end": 62, - "start": 59, + "end": 69, + "start": 66, "type": "RESPONSE_HANDLING" } ], @@ -4695,33 +4695,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_CreateEntityType_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4783,33 +4783,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_CreateEntityType_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -4872,33 +4872,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_CreateFeature_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -4960,33 +4960,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_CreateFeature_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -5049,33 +5049,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_CreateFeaturestore_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -5137,33 +5137,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_CreateFeaturestore_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -5222,33 +5222,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_DeleteEntityType_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -5306,33 +5306,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_DeleteEntityType_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -5387,33 +5387,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeature_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -5467,33 +5467,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeature_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -5552,33 +5552,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeaturestore_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -5636,33 +5636,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_DeleteFeaturestore_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -5717,33 +5717,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ExportFeatureValues_async", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 47, + "end": 60, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -5797,33 +5797,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ExportFeatureValues_sync", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 47, + "end": 60, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -5878,33 +5878,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_GetEntityType_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -5958,33 +5958,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_GetEntityType_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6039,33 +6039,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_GetFeature_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6119,33 +6119,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_GetFeature_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6200,33 +6200,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_GetFeaturestore_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6280,33 +6280,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_GetFeaturestore_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, - "type": "REQUEST_INITIALIZATION" + "end": 45, + "start": 41, + "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6361,33 +6361,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ImportFeatureValues_async", "segments": [ { - "end": 57, + "end": 64, "start": 27, "type": "FULL" }, { - "end": 57, + "end": 64, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 54, - "start": 48, + "end": 61, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 58, - "start": 55, + "end": 65, + "start": 62, "type": "RESPONSE_HANDLING" } ], @@ -6441,33 +6441,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ImportFeatureValues_sync", "segments": [ { - "end": 57, + "end": 64, "start": 27, "type": "FULL" }, { - "end": 57, + "end": 64, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 54, - "start": 48, + "end": 61, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 58, - "start": 55, + "end": 65, + "start": 62, "type": "RESPONSE_HANDLING" } ], @@ -6522,33 +6522,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ListEntityTypes_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6602,33 +6602,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ListEntityTypes_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6683,33 +6683,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ListFeatures_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6763,33 +6763,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ListFeatures_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6844,33 +6844,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ListFeaturestores_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -6924,33 +6924,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_ListFeaturestores_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7009,33 +7009,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_SearchFeatures_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7093,33 +7093,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_SearchFeatures_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -7178,33 +7178,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_UpdateEntityType_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -7262,33 +7262,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_UpdateEntityType_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -7347,33 +7347,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeature_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -7431,33 +7431,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeature_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -7516,33 +7516,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeaturestore_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 38, + "end": 51, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -7600,33 +7600,33 @@ "regionTag": "aiplatform_v1beta1_generated_FeaturestoreService_UpdateFeaturestore_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 38, + "end": 51, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -7685,33 +7685,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_CreateIndexEndpoint_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -7769,33 +7769,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_CreateIndexEndpoint_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -7850,33 +7850,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_DeleteIndexEndpoint_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -7930,33 +7930,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_DeleteIndexEndpoint_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -8015,33 +8015,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_DeployIndex_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -8099,33 +8099,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_DeployIndex_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -8180,33 +8180,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_GetIndexEndpoint_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8260,33 +8260,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_GetIndexEndpoint_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8341,33 +8341,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_ListIndexEndpoints_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8421,33 +8421,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_ListIndexEndpoints_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -8506,33 +8506,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_MutateDeployedIndex_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -8590,33 +8590,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_MutateDeployedIndex_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -8675,33 +8675,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_UndeployIndex_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -8759,33 +8759,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_UndeployIndex_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -8844,33 +8844,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_UpdateIndexEndpoint_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -8928,33 +8928,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexEndpointService_UpdateIndexEndpoint_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -9013,33 +9013,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_CreateIndex_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -9097,33 +9097,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_CreateIndex_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -9178,33 +9178,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_DeleteIndex_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -9258,33 +9258,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_DeleteIndex_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -9339,33 +9339,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_GetIndex_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9419,33 +9419,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_GetIndex_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9500,33 +9500,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_ListIndexes_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9580,33 +9580,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_ListIndexes_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9657,33 +9657,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_RemoveDatapoints_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9733,33 +9733,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_RemoveDatapoints_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -9818,33 +9818,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_UpdateIndex_async", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -9902,33 +9902,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_UpdateIndex_sync", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -9979,33 +9979,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_UpsertDatapoints_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -10055,33 +10055,33 @@ "regionTag": "aiplatform_v1beta1_generated_IndexService_UpsertDatapoints_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -10135,31 +10135,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelBatchPredictionJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10212,31 +10212,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelBatchPredictionJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10290,31 +10290,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelCustomJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10367,31 +10367,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelCustomJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10445,31 +10445,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelDataLabelingJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10522,31 +10522,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelDataLabelingJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10600,31 +10600,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelHyperparameterTuningJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10677,31 +10677,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CancelHyperparameterTuningJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -10760,33 +10760,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateBatchPredictionJob_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 47, + "end": 56, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -10844,33 +10844,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateBatchPredictionJob_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 46, - "start": 34, + "end": 53, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 47, + "end": 56, + "start": 54, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -10929,33 +10929,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateCustomJob_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -11013,33 +11013,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateCustomJob_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -11098,33 +11098,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateDataLabelingJob_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -11182,33 +11182,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateDataLabelingJob_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -11267,33 +11267,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateHyperparameterTuningJob_async", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 50, - "start": 34, + "end": 57, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 51, + "end": 60, + "start": 58, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -11351,33 +11351,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateHyperparameterTuningJob_sync", "segments": [ { - "end": 56, + "end": 63, "start": 27, "type": "FULL" }, { - "end": 56, + "end": 63, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 50, - "start": 34, + "end": 57, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 53, - "start": 51, + "end": 60, + "start": 58, "type": "REQUEST_EXECUTION" }, { - "end": 57, - "start": 54, + "end": 64, + "start": 61, "type": "RESPONSE_HANDLING" } ], @@ -11436,33 +11436,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateModelDeploymentMonitoringJob_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -11520,33 +11520,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_CreateModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -11601,33 +11601,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteBatchPredictionJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11681,33 +11681,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteBatchPredictionJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11762,33 +11762,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteCustomJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11842,33 +11842,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteCustomJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -11923,33 +11923,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteDataLabelingJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -12003,33 +12003,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteDataLabelingJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -12084,33 +12084,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteHyperparameterTuningJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -12164,33 +12164,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteHyperparameterTuningJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -12245,33 +12245,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteModelDeploymentMonitoringJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -12325,33 +12325,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_DeleteModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -12406,33 +12406,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetBatchPredictionJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12486,33 +12486,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetBatchPredictionJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12567,33 +12567,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetCustomJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12647,33 +12647,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetCustomJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12728,33 +12728,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetDataLabelingJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12808,33 +12808,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetDataLabelingJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12889,33 +12889,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetHyperparameterTuningJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -12969,33 +12969,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetHyperparameterTuningJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13050,33 +13050,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetModelDeploymentMonitoringJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13130,33 +13130,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_GetModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13211,33 +13211,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListBatchPredictionJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13291,33 +13291,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListBatchPredictionJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13372,33 +13372,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListCustomJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13452,33 +13452,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListCustomJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13533,33 +13533,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListDataLabelingJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13613,33 +13613,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListDataLabelingJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13694,33 +13694,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListHyperparameterTuningJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13774,33 +13774,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListHyperparameterTuningJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13855,33 +13855,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListModelDeploymentMonitoringJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -13935,33 +13935,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ListModelDeploymentMonitoringJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14015,31 +14015,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_PauseModelDeploymentMonitoringJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -14092,31 +14092,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_PauseModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -14170,31 +14170,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ResumeModelDeploymentMonitoringJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -14247,31 +14247,31 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_ResumeModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -14330,33 +14330,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_async", "segments": [ { - "end": 46, + "end": 53, "start": 27, "type": "FULL" }, { - "end": 46, + "end": 53, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 47, - "start": 43, + "end": 54, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -14414,33 +14414,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_SearchModelDeploymentMonitoringStatsAnomalies_sync", "segments": [ { - "end": 46, + "end": 53, "start": 27, "type": "FULL" }, { - "end": 46, + "end": 53, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 47, - "start": 43, + "end": 54, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -14499,33 +14499,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_UpdateModelDeploymentMonitoringJob_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -14583,33 +14583,33 @@ "regionTag": "aiplatform_v1beta1_generated_JobService_UpdateModelDeploymentMonitoringJob_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -14672,33 +14672,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_AddContextArtifactsAndExecutions_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14760,33 +14760,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_AddContextArtifactsAndExecutions_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14845,33 +14845,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_AddContextChildren_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -14929,33 +14929,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_AddContextChildren_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15014,33 +15014,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_AddExecutionEvents_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15098,33 +15098,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_AddExecutionEvents_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15187,33 +15187,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateArtifact_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15275,33 +15275,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateArtifact_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15364,33 +15364,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateContext_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15452,33 +15452,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateContext_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15541,33 +15541,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateExecution_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15629,33 +15629,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateExecution_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -15718,33 +15718,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateMetadataSchema_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15806,33 +15806,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateMetadataSchema_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15895,33 +15895,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateMetadataStore_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -15983,33 +15983,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_CreateMetadataStore_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16064,33 +16064,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteArtifact_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16144,33 +16144,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteArtifact_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16225,33 +16225,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteContext_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16305,33 +16305,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteContext_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16386,33 +16386,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteExecution_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16466,33 +16466,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteExecution_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16547,33 +16547,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteMetadataStore_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16627,33 +16627,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_DeleteMetadataStore_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -16708,33 +16708,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetArtifact_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16788,33 +16788,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetArtifact_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16869,33 +16869,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetContext_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -16949,33 +16949,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetContext_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17030,33 +17030,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetExecution_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17110,33 +17110,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetExecution_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17191,33 +17191,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetMetadataSchema_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17271,33 +17271,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetMetadataSchema_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17352,33 +17352,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetMetadataStore_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17432,33 +17432,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_GetMetadataStore_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17513,33 +17513,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListArtifacts_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17593,33 +17593,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListArtifacts_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17674,33 +17674,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListContexts_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17754,33 +17754,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListContexts_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17835,33 +17835,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListExecutions_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17915,33 +17915,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListExecutions_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -17996,33 +17996,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListMetadataSchemas_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18076,33 +18076,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListMetadataSchemas_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18157,33 +18157,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListMetadataStores_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18237,33 +18237,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_ListMetadataStores_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18318,33 +18318,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_PurgeArtifacts_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -18398,33 +18398,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_PurgeArtifacts_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -18479,33 +18479,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_PurgeContexts_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -18559,33 +18559,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_PurgeContexts_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -18640,33 +18640,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_PurgeExecutions_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -18720,33 +18720,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_PurgeExecutions_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 40, + "end": 53, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -18801,33 +18801,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_QueryArtifactLineageSubgraph_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18881,33 +18881,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_QueryArtifactLineageSubgraph_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -18962,33 +18962,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_QueryContextLineageSubgraph_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19042,33 +19042,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_QueryContextLineageSubgraph_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19123,33 +19123,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_QueryExecutionInputsAndOutputs_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19203,33 +19203,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_QueryExecutionInputsAndOutputs_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -19288,33 +19288,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_UpdateArtifact_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -19372,33 +19372,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_UpdateArtifact_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -19457,33 +19457,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_UpdateContext_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -19541,33 +19541,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_UpdateContext_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -19626,33 +19626,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_UpdateExecution_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -19710,33 +19710,33 @@ "regionTag": "aiplatform_v1beta1_generated_MetadataService_UpdateExecution_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -19795,33 +19795,33 @@ "regionTag": "aiplatform_v1beta1_generated_MigrationService_BatchMigrateResources_async", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -19879,33 +19879,33 @@ "regionTag": "aiplatform_v1beta1_generated_MigrationService_BatchMigrateResources_sync", "segments": [ { - "end": 54, + "end": 61, "start": 27, "type": "FULL" }, { - "end": 54, + "end": 61, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 51, - "start": 45, + "end": 58, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 55, - "start": 52, + "end": 62, + "start": 59, "type": "RESPONSE_HANDLING" } ], @@ -19960,33 +19960,33 @@ "regionTag": "aiplatform_v1beta1_generated_MigrationService_SearchMigratableResources_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20040,33 +20040,33 @@ "regionTag": "aiplatform_v1beta1_generated_MigrationService_SearchMigratableResources_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20125,33 +20125,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_BatchImportModelEvaluationSlices_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20209,33 +20209,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_BatchImportModelEvaluationSlices_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20290,33 +20290,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_DeleteModelVersion_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -20370,33 +20370,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_DeleteModelVersion_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -20451,33 +20451,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_DeleteModel_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -20531,33 +20531,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_DeleteModel_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -20616,33 +20616,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ExportModel_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -20700,33 +20700,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ExportModel_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -20781,33 +20781,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_GetModelEvaluationSlice_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20861,33 +20861,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_GetModelEvaluationSlice_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -20942,33 +20942,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_GetModelEvaluation_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21022,33 +21022,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_GetModelEvaluation_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21103,33 +21103,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_GetModel_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21183,33 +21183,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_GetModel_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21268,33 +21268,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ImportModelEvaluation_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21352,33 +21352,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ImportModelEvaluation_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21433,33 +21433,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModelEvaluationSlices_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21513,33 +21513,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModelEvaluationSlices_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21594,33 +21594,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModelEvaluations_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21674,33 +21674,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModelEvaluations_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21755,33 +21755,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModelVersions_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21835,33 +21835,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModelVersions_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21916,33 +21916,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModels_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -21996,33 +21996,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_ListModels_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -22081,33 +22081,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_MergeVersionAliases_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -22165,33 +22165,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_MergeVersionAliases_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -22246,33 +22246,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_UpdateExplanationDataset_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -22326,33 +22326,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_UpdateExplanationDataset_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -22411,33 +22411,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_UpdateModel_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -22495,33 +22495,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_UpdateModel_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -22580,33 +22580,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_UploadModel_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -22664,33 +22664,33 @@ "regionTag": "aiplatform_v1beta1_generated_ModelService_UploadModel_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -22744,31 +22744,31 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CancelPipelineJob_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -22821,31 +22821,31 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CancelPipelineJob_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -22899,31 +22899,31 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CancelTrainingPipeline_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -22976,31 +22976,31 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CancelTrainingPipeline_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -23063,33 +23063,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CreatePipelineJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23151,33 +23151,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CreatePipelineJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23236,33 +23236,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CreateTrainingPipeline_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -23320,33 +23320,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_CreateTrainingPipeline_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -23401,33 +23401,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_DeletePipelineJob_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23481,33 +23481,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_DeletePipelineJob_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23562,33 +23562,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_DeleteTrainingPipeline_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23642,33 +23642,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_DeleteTrainingPipeline_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -23723,33 +23723,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_GetPipelineJob_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23803,33 +23803,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_GetPipelineJob_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23884,33 +23884,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_GetTrainingPipeline_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -23964,33 +23964,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_GetTrainingPipeline_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24045,33 +24045,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_ListPipelineJobs_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24125,33 +24125,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_ListPipelineJobs_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24206,33 +24206,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_ListTrainingPipelines_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24286,33 +24286,33 @@ "regionTag": "aiplatform_v1beta1_generated_PipelineService_ListTrainingPipelines_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24379,33 +24379,33 @@ "regionTag": "aiplatform_v1beta1_generated_PredictionService_Explain_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -24471,33 +24471,33 @@ "regionTag": "aiplatform_v1beta1_generated_PredictionService_Explain_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -24560,33 +24560,33 @@ "regionTag": "aiplatform_v1beta1_generated_PredictionService_Predict_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -24648,33 +24648,33 @@ "regionTag": "aiplatform_v1beta1_generated_PredictionService_Predict_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -24733,33 +24733,33 @@ "regionTag": "aiplatform_v1beta1_generated_PredictionService_RawPredict_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24817,33 +24817,33 @@ "regionTag": "aiplatform_v1beta1_generated_PredictionService_RawPredict_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -24902,33 +24902,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_CreateSpecialistPool_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -24986,33 +24986,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_CreateSpecialistPool_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 44, + "end": 57, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -25067,33 +25067,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_DeleteSpecialistPool_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -25147,33 +25147,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_DeleteSpecialistPool_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -25228,33 +25228,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_GetSpecialistPool_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -25308,33 +25308,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_GetSpecialistPool_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -25389,33 +25389,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_ListSpecialistPools_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -25469,33 +25469,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_ListSpecialistPools_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -25554,33 +25554,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_UpdateSpecialistPool_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -25638,33 +25638,33 @@ "regionTag": "aiplatform_v1beta1_generated_SpecialistPoolService_UpdateSpecialistPool_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -25723,33 +25723,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardRuns_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -25807,33 +25807,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardRuns_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -25892,33 +25892,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -25976,33 +25976,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_BatchCreateTensorboardTimeSeries_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -26057,33 +26057,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -26137,33 +26137,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_BatchReadTensorboardTimeSeriesData_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -26226,33 +26226,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardExperiment_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -26314,33 +26314,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardExperiment_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -26403,33 +26403,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardRun_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -26491,33 +26491,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardRun_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -26576,33 +26576,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardTimeSeries_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -26660,33 +26660,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboardTimeSeries_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -26745,33 +26745,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboard_async", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -26829,33 +26829,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_CreateTensorboard_sync", "segments": [ { - "end": 52, + "end": 59, "start": 27, "type": "FULL" }, { - "end": 52, + "end": 59, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 49, - "start": 43, + "end": 56, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 53, - "start": 50, + "end": 60, + "start": 57, "type": "RESPONSE_HANDLING" } ], @@ -26910,33 +26910,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardExperiment_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -26990,33 +26990,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardExperiment_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27071,33 +27071,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardRun_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27151,33 +27151,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardRun_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27232,33 +27232,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardTimeSeries_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27312,33 +27312,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboardTimeSeries_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27393,33 +27393,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboard_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27473,33 +27473,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_DeleteTensorboard_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -27554,33 +27554,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ExportTensorboardTimeSeriesData_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27634,33 +27634,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ExportTensorboardTimeSeriesData_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27715,33 +27715,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboardExperiment_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27795,33 +27795,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboardExperiment_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27876,33 +27876,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboardRun_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -27956,33 +27956,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboardRun_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28037,33 +28037,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboardTimeSeries_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28117,33 +28117,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboardTimeSeries_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28198,33 +28198,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboard_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28278,33 +28278,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_GetTensorboard_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28359,33 +28359,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboardExperiments_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28439,33 +28439,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboardExperiments_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28520,33 +28520,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboardRuns_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28600,33 +28600,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboardRuns_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28681,33 +28681,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboardTimeSeries_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28761,33 +28761,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboardTimeSeries_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28842,33 +28842,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboards_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -28922,33 +28922,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ListTensorboards_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29003,33 +29003,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardBlobData_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29083,33 +29083,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardBlobData_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29164,33 +29164,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardTimeSeriesData_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29244,33 +29244,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_ReadTensorboardTimeSeriesData_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -29329,33 +29329,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardExperiment_async", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -29413,33 +29413,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardExperiment_sync", "segments": [ { - "end": 43, + "end": 50, "start": 27, "type": "FULL" }, { - "end": 43, + "end": 50, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 37, - "start": 34, + "end": 44, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 40, - "start": 38, + "end": 47, + "start": 45, "type": "REQUEST_EXECUTION" }, { - "end": 44, - "start": 41, + "end": 51, + "start": 48, "type": "RESPONSE_HANDLING" } ], @@ -29498,33 +29498,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardRun_async", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -29582,33 +29582,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardRun_sync", "segments": [ { - "end": 47, + "end": 54, "start": 27, "type": "FULL" }, { - "end": 47, + "end": 54, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 44, - "start": 42, + "end": 51, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 48, - "start": 45, + "end": 55, + "start": 52, "type": "RESPONSE_HANDLING" } ], @@ -29667,33 +29667,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardTimeSeries_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -29751,33 +29751,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboardTimeSeries_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 42, - "start": 34, + "end": 49, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 43, + "end": 52, + "start": 50, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -29836,33 +29836,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboard_async", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -29920,33 +29920,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_UpdateTensorboard_sync", "segments": [ { - "end": 51, + "end": 58, "start": 27, "type": "FULL" }, { - "end": 51, + "end": 58, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 41, - "start": 34, + "end": 48, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 48, - "start": 42, + "end": 55, + "start": 49, "type": "REQUEST_EXECUTION" }, { - "end": 52, - "start": 49, + "end": 59, + "start": 56, "type": "RESPONSE_HANDLING" } ], @@ -30005,33 +30005,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardExperimentData_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -30089,33 +30089,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardExperimentData_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 44, - "start": 34, + "end": 51, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 45, + "end": 54, + "start": 52, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -30174,33 +30174,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardRunData_async", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -30258,33 +30258,33 @@ "regionTag": "aiplatform_v1beta1_generated_TensorboardService_WriteTensorboardRunData_sync", "segments": [ { - "end": 49, + "end": 56, "start": 27, "type": "FULL" }, { - "end": 49, + "end": 56, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 43, - "start": 34, + "end": 50, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 46, - "start": 44, + "end": 53, + "start": 51, "type": "REQUEST_EXECUTION" }, { - "end": 50, - "start": 47, + "end": 57, + "start": 54, "type": "RESPONSE_HANDLING" } ], @@ -30335,33 +30335,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_AddTrialMeasurement_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30411,33 +30411,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_AddTrialMeasurement_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30488,33 +30488,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CheckTrialEarlyStoppingState_async", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -30564,33 +30564,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CheckTrialEarlyStoppingState_sync", "segments": [ { - "end": 48, + "end": 55, "start": 27, "type": "FULL" }, { - "end": 48, + "end": 55, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 45, - "start": 39, + "end": 52, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 49, - "start": 46, + "end": 56, + "start": 53, "type": "RESPONSE_HANDLING" } ], @@ -30641,33 +30641,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CompleteTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30717,33 +30717,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CompleteTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -30802,33 +30802,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CreateStudy_async", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -30886,33 +30886,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CreateStudy_sync", "segments": [ { - "end": 53, + "end": 60, "start": 27, "type": "FULL" }, { - "end": 53, + "end": 60, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 47, - "start": 34, + "end": 54, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 50, - "start": 48, + "end": 57, + "start": 55, "type": "REQUEST_EXECUTION" }, { - "end": 54, - "start": 51, + "end": 61, + "start": 58, "type": "RESPONSE_HANDLING" } ], @@ -30971,33 +30971,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CreateTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31055,33 +31055,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_CreateTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31135,31 +31135,31 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_DeleteStudy_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -31212,31 +31212,31 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_DeleteStudy_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -31290,31 +31290,31 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_DeleteTrial_async", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -31367,31 +31367,31 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_DeleteTrial_sync", "segments": [ { - "end": 42, + "end": 49, "start": 27, "type": "FULL" }, { - "end": 42, + "end": 49, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "start": 39, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 43, + "end": 50, "type": "RESPONSE_HANDLING" } ], @@ -31446,33 +31446,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_GetStudy_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31526,33 +31526,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_GetStudy_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31607,33 +31607,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_GetTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31687,33 +31687,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_GetTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31768,33 +31768,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_ListOptimalTrials_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31848,33 +31848,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_ListOptimalTrials_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -31929,33 +31929,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_ListStudies_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -32009,33 +32009,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_ListStudies_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -32090,33 +32090,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_ListTrials_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -32170,33 +32170,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_ListTrials_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 42, + "end": 53, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -32251,33 +32251,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_LookupStudy_async", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -32331,33 +32331,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_LookupStudy_sync", "segments": [ { - "end": 45, + "end": 52, "start": 27, "type": "FULL" }, { - "end": 45, + "end": 52, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 39, - "start": 34, + "end": 46, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 42, - "start": 40, + "end": 49, + "start": 47, "type": "REQUEST_EXECUTION" }, { - "end": 46, - "start": 43, + "end": 53, + "start": 50, "type": "RESPONSE_HANDLING" } ], @@ -32408,33 +32408,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_StopTrial_async", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -32484,33 +32484,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_StopTrial_sync", "segments": [ { - "end": 44, + "end": 51, "start": 27, "type": "FULL" }, { - "end": 44, + "end": 51, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 38, - "start": 34, + "end": 45, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 41, - "start": 39, + "end": 48, + "start": 46, "type": "REQUEST_EXECUTION" }, { - "end": 45, - "start": 42, + "end": 52, + "start": 49, "type": "RESPONSE_HANDLING" } ], @@ -32561,33 +32561,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_SuggestTrials_async", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 40, - "start": 34, + "end": 47, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 41, + "end": 54, + "start": 48, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], @@ -32637,33 +32637,33 @@ "regionTag": "aiplatform_v1beta1_generated_VizierService_SuggestTrials_sync", "segments": [ { - "end": 50, + "end": 57, "start": 27, "type": "FULL" }, { - "end": 50, + "end": 57, "start": 27, "type": "SHORT" }, { - "end": 33, - "start": 31, + "end": 40, + "start": 38, "type": "CLIENT_INITIALIZATION" }, { - "end": 40, - "start": 34, + "end": 47, + "start": 41, "type": "REQUEST_INITIALIZATION" }, { - "end": 47, - "start": 41, + "end": 54, + "start": 48, "type": "REQUEST_EXECUTION" }, { - "end": 51, - "start": 48, + "end": 58, + "start": 55, "type": "RESPONSE_HANDLING" } ], diff --git a/tests/unit/gapic/aiplatform_v1/test_dataset_service.py b/tests/unit/gapic/aiplatform_v1/test_dataset_service.py index 3e5afb3c7a..bfb2b00cd2 100644 --- a/tests/unit/gapic/aiplatform_v1/test_dataset_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_dataset_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py b/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py index 9efca8a21b..42997ad5be 100644 --- a/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py b/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py index 37da436327..8ed04c307c 100644 --- a/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py b/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py index 2f4a1ada75..610a9fa571 100644 --- a/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py b/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py index de829a7b34..2880f88076 100644 --- a/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_index_service.py b/tests/unit/gapic/aiplatform_v1/test_index_service.py index 081c0420b8..2eaac736bd 100644 --- a/tests/unit/gapic/aiplatform_v1/test_index_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_index_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_job_service.py b/tests/unit/gapic/aiplatform_v1/test_job_service.py index d424daf151..2893dcfc0e 100644 --- a/tests/unit/gapic/aiplatform_v1/test_job_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_job_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_metadata_service.py b/tests/unit/gapic/aiplatform_v1/test_metadata_service.py index ce02d70764..c5e9882cc4 100644 --- a/tests/unit/gapic/aiplatform_v1/test_metadata_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_metadata_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_migration_service.py b/tests/unit/gapic/aiplatform_v1/test_migration_service.py index ba01e7f9c9..a4af7011cc 100644 --- a/tests/unit/gapic/aiplatform_v1/test_migration_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_migration_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc @@ -2004,22 +2004,19 @@ def test_parse_annotated_dataset_path(): def test_dataset_path(): project = "cuttlefish" - location = "mussel" - dataset = "winkle" - expected = "projects/{project}/locations/{location}/datasets/{dataset}".format( + dataset = "mussel" + expected = "projects/{project}/datasets/{dataset}".format( project=project, - location=location, dataset=dataset, ) - actual = MigrationServiceClient.dataset_path(project, location, dataset) + actual = MigrationServiceClient.dataset_path(project, dataset) assert expected == actual def test_parse_dataset_path(): expected = { - "project": "nautilus", - "location": "scallop", - "dataset": "abalone", + "project": "winkle", + "dataset": "nautilus", } path = MigrationServiceClient.dataset_path(**expected) @@ -2029,19 +2026,22 @@ def test_parse_dataset_path(): def test_dataset_path(): - project = "squid" - dataset = "clam" - expected = "projects/{project}/datasets/{dataset}".format( + project = "scallop" + location = "abalone" + dataset = "squid" + expected = "projects/{project}/locations/{location}/datasets/{dataset}".format( project=project, + location=location, dataset=dataset, ) - actual = MigrationServiceClient.dataset_path(project, dataset) + actual = MigrationServiceClient.dataset_path(project, location, dataset) assert expected == actual def test_parse_dataset_path(): expected = { - "project": "whelk", + "project": "clam", + "location": "whelk", "dataset": "octopus", } path = MigrationServiceClient.dataset_path(**expected) diff --git a/tests/unit/gapic/aiplatform_v1/test_model_service.py b/tests/unit/gapic/aiplatform_v1/test_model_service.py index ae0a44a4b2..f7096076f1 100644 --- a/tests/unit/gapic/aiplatform_v1/test_model_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_model_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py b/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py index ff9f34ce79..cc35138954 100644 --- a/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_prediction_service.py b/tests/unit/gapic/aiplatform_v1/test_prediction_service.py index 81df0b7e4f..3a361e5562 100644 --- a/tests/unit/gapic/aiplatform_v1/test_prediction_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_prediction_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py b/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py index d48eb114ec..ead8245d24 100644 --- a/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py b/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py index 7dbc333e9c..483d989ad2 100644 --- a/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1/test_vizier_service.py b/tests/unit/gapic/aiplatform_v1/test_vizier_service.py index 408af0431d..ce4514a932 100644 --- a/tests/unit/gapic/aiplatform_v1/test_vizier_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_vizier_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py index 79e174ef0e..07ef4b8c1a 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py index 1a866df55e..14dbaac85f 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py index 2b929d3cc0..e8e1977505 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py index 5f0afe70f9..f622c2bbf6 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py index 0d0498791d..6294a4ddb9 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py index 801ac54a05..becd34576f 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py index 10b669ae69..ea6276e0de 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py index 9e67143173..f745143a89 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py index d62d463690..dc269d3015 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py index 9f659c8a92..d3f3fb552d 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc @@ -2032,19 +2032,22 @@ def test_parse_dataset_path(): def test_dataset_path(): project = "squid" - dataset = "clam" - expected = "projects/{project}/datasets/{dataset}".format( + location = "clam" + dataset = "whelk" + expected = "projects/{project}/locations/{location}/datasets/{dataset}".format( project=project, + location=location, dataset=dataset, ) - actual = MigrationServiceClient.dataset_path(project, dataset) + actual = MigrationServiceClient.dataset_path(project, location, dataset) assert expected == actual def test_parse_dataset_path(): expected = { - "project": "whelk", - "dataset": "octopus", + "project": "octopus", + "location": "oyster", + "dataset": "nudibranch", } path = MigrationServiceClient.dataset_path(**expected) @@ -2054,22 +2057,19 @@ def test_parse_dataset_path(): def test_dataset_path(): - project = "oyster" - location = "nudibranch" - dataset = "cuttlefish" - expected = "projects/{project}/locations/{location}/datasets/{dataset}".format( + project = "cuttlefish" + dataset = "mussel" + expected = "projects/{project}/datasets/{dataset}".format( project=project, - location=location, dataset=dataset, ) - actual = MigrationServiceClient.dataset_path(project, location, dataset) + actual = MigrationServiceClient.dataset_path(project, dataset) assert expected == actual def test_parse_dataset_path(): expected = { - "project": "mussel", - "location": "winkle", + "project": "winkle", "dataset": "nautilus", } path = MigrationServiceClient.dataset_path(**expected) diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py index e223850fce..2f531d61eb 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py index 77303c9f9c..b16e4d7013 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py index bfaa4af614..9f417c156f 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py index ba68c0d504..c6f3e8dc80 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py index e900aee1a2..7c8bed1b17 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py index ce0d37e293..33199a9816 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py @@ -18,8 +18,8 @@ # try/except added for compatibility with python < 3.8 try: from unittest import mock - from unittest.mock import AsyncMock -except ImportError: + from unittest.mock import AsyncMock # pragma: NO COVER +except ImportError: # pragma: NO COVER import mock import grpc From b03e0e6690bcfb973c1790375dc320a3bdb29388 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 15:50:15 +0000 Subject: [PATCH 06/12] chore: use gapic generator python 1.4.1 (#1655) - [ ] Regenerate this pull request now. PiperOrigin-RevId: 473833416 Source-Link: https://github.com/googleapis/googleapis/commit/565a5508869557a3228b871101e4e4ebd8f93d11 Source-Link: https://github.com/googleapis/googleapis-gen/commit/1ee1a06c6de3ca8b843572c1fde0548f84236989 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMWVlMWEwNmM2ZGUzY2E4Yjg0MzU3MmMxZmRlMDU0OGY4NDIzNjk4OSJ9 --- .../services/migration_service/client.py | 18 ++++++------ .../aiplatform_v1/test_dataset_service.py | 2 +- .../aiplatform_v1/test_endpoint_service.py | 2 +- ...est_featurestore_online_serving_service.py | 2 +- .../test_featurestore_service.py | 2 +- .../test_index_endpoint_service.py | 2 +- .../gapic/aiplatform_v1/test_index_service.py | 2 +- .../gapic/aiplatform_v1/test_job_service.py | 2 +- .../aiplatform_v1/test_metadata_service.py | 2 +- .../aiplatform_v1/test_migration_service.py | 28 +++++++++---------- .../gapic/aiplatform_v1/test_model_service.py | 2 +- .../aiplatform_v1/test_pipeline_service.py | 2 +- .../aiplatform_v1/test_prediction_service.py | 2 +- .../test_specialist_pool_service.py | 2 +- .../aiplatform_v1/test_tensorboard_service.py | 2 +- .../aiplatform_v1/test_vizier_service.py | 2 +- .../test_dataset_service.py | 2 +- .../test_deployment_resource_pool_service.py | 2 +- .../test_endpoint_service.py | 2 +- ...est_featurestore_online_serving_service.py | 2 +- .../test_featurestore_service.py | 2 +- .../test_index_endpoint_service.py | 2 +- .../aiplatform_v1beta1/test_index_service.py | 2 +- .../aiplatform_v1beta1/test_job_service.py | 2 +- .../test_metadata_service.py | 2 +- .../test_migration_service.py | 2 +- .../aiplatform_v1beta1/test_model_service.py | 2 +- .../test_pipeline_service.py | 2 +- .../test_prediction_service.py | 2 +- .../test_specialist_pool_service.py | 2 +- .../test_tensorboard_service.py | 2 +- .../aiplatform_v1beta1/test_vizier_service.py | 2 +- 32 files changed, 53 insertions(+), 53 deletions(-) diff --git a/google/cloud/aiplatform_v1/services/migration_service/client.py b/google/cloud/aiplatform_v1/services/migration_service/client.py index 0a839ceb21..fd40440124 100644 --- a/google/cloud/aiplatform_v1/services/migration_service/client.py +++ b/google/cloud/aiplatform_v1/services/migration_service/client.py @@ -196,40 +196,40 @@ def parse_annotated_dataset_path(path: str) -> Dict[str, str]: @staticmethod def dataset_path( project: str, + location: str, dataset: str, ) -> str: """Returns a fully-qualified dataset string.""" - return "projects/{project}/datasets/{dataset}".format( + return "projects/{project}/locations/{location}/datasets/{dataset}".format( project=project, + location=location, dataset=dataset, ) @staticmethod def parse_dataset_path(path: str) -> Dict[str, str]: """Parses a dataset path into its component segments.""" - m = re.match(r"^projects/(?P.+?)/datasets/(?P.+?)$", path) + m = re.match( + r"^projects/(?P.+?)/locations/(?P.+?)/datasets/(?P.+?)$", + path, + ) return m.groupdict() if m else {} @staticmethod def dataset_path( project: str, - location: str, dataset: str, ) -> str: """Returns a fully-qualified dataset string.""" - return "projects/{project}/locations/{location}/datasets/{dataset}".format( + return "projects/{project}/datasets/{dataset}".format( project=project, - location=location, dataset=dataset, ) @staticmethod def parse_dataset_path(path: str) -> Dict[str, str]: """Parses a dataset path into its component segments.""" - m = re.match( - r"^projects/(?P.+?)/locations/(?P.+?)/datasets/(?P.+?)$", - path, - ) + m = re.match(r"^projects/(?P.+?)/datasets/(?P.+?)$", path) return m.groupdict() if m else {} @staticmethod diff --git a/tests/unit/gapic/aiplatform_v1/test_dataset_service.py b/tests/unit/gapic/aiplatform_v1/test_dataset_service.py index bfb2b00cd2..92cc816eac 100644 --- a/tests/unit/gapic/aiplatform_v1/test_dataset_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_dataset_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py b/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py index 42997ad5be..ced2aa8726 100644 --- a/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_endpoint_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py b/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py index 8ed04c307c..2907c81054 100644 --- a/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_featurestore_online_serving_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py b/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py index 610a9fa571..96f45db553 100644 --- a/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_featurestore_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py b/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py index 2880f88076..b9b9dda0e7 100644 --- a/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_index_endpoint_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_index_service.py b/tests/unit/gapic/aiplatform_v1/test_index_service.py index 2eaac736bd..2d60850059 100644 --- a/tests/unit/gapic/aiplatform_v1/test_index_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_index_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_job_service.py b/tests/unit/gapic/aiplatform_v1/test_job_service.py index 2893dcfc0e..d97749d184 100644 --- a/tests/unit/gapic/aiplatform_v1/test_job_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_job_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_metadata_service.py b/tests/unit/gapic/aiplatform_v1/test_metadata_service.py index c5e9882cc4..522769b7c0 100644 --- a/tests/unit/gapic/aiplatform_v1/test_metadata_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_metadata_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_migration_service.py b/tests/unit/gapic/aiplatform_v1/test_migration_service.py index a4af7011cc..9055645a91 100644 --- a/tests/unit/gapic/aiplatform_v1/test_migration_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_migration_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions @@ -2004,19 +2004,22 @@ def test_parse_annotated_dataset_path(): def test_dataset_path(): project = "cuttlefish" - dataset = "mussel" - expected = "projects/{project}/datasets/{dataset}".format( + location = "mussel" + dataset = "winkle" + expected = "projects/{project}/locations/{location}/datasets/{dataset}".format( project=project, + location=location, dataset=dataset, ) - actual = MigrationServiceClient.dataset_path(project, dataset) + actual = MigrationServiceClient.dataset_path(project, location, dataset) assert expected == actual def test_parse_dataset_path(): expected = { - "project": "winkle", - "dataset": "nautilus", + "project": "nautilus", + "location": "scallop", + "dataset": "abalone", } path = MigrationServiceClient.dataset_path(**expected) @@ -2026,22 +2029,19 @@ def test_parse_dataset_path(): def test_dataset_path(): - project = "scallop" - location = "abalone" - dataset = "squid" - expected = "projects/{project}/locations/{location}/datasets/{dataset}".format( + project = "squid" + dataset = "clam" + expected = "projects/{project}/datasets/{dataset}".format( project=project, - location=location, dataset=dataset, ) - actual = MigrationServiceClient.dataset_path(project, location, dataset) + actual = MigrationServiceClient.dataset_path(project, dataset) assert expected == actual def test_parse_dataset_path(): expected = { - "project": "clam", - "location": "whelk", + "project": "whelk", "dataset": "octopus", } path = MigrationServiceClient.dataset_path(**expected) diff --git a/tests/unit/gapic/aiplatform_v1/test_model_service.py b/tests/unit/gapic/aiplatform_v1/test_model_service.py index f7096076f1..f24a884b32 100644 --- a/tests/unit/gapic/aiplatform_v1/test_model_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_model_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py b/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py index cc35138954..652bd9734e 100644 --- a/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_pipeline_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_prediction_service.py b/tests/unit/gapic/aiplatform_v1/test_prediction_service.py index 3a361e5562..9c0144cbc4 100644 --- a/tests/unit/gapic/aiplatform_v1/test_prediction_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_prediction_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api import httpbody_pb2 # type: ignore from google.api_core import client_options diff --git a/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py b/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py index ead8245d24..e82cf42277 100644 --- a/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_specialist_pool_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py b/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py index 483d989ad2..c90185a641 100644 --- a/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_tensorboard_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1/test_vizier_service.py b/tests/unit/gapic/aiplatform_v1/test_vizier_service.py index ce4514a932..93577f18e9 100644 --- a/tests/unit/gapic/aiplatform_v1/test_vizier_service.py +++ b/tests/unit/gapic/aiplatform_v1/test_vizier_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py index 07ef4b8c1a..addc5abbd8 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_dataset_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py index 14dbaac85f..01de157360 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_deployment_resource_pool_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py index e8e1977505..0c9264b83a 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_endpoint_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py index f622c2bbf6..7ad48592b9 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_online_serving_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py index 6294a4ddb9..76ad292dac 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_featurestore_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py index becd34576f..7e9451c659 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_index_endpoint_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py index ea6276e0de..15fc295404 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_index_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py index f745143a89..4d5df0fde0 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_job_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py index dc269d3015..e2cf4eeb84 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_metadata_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py index d3f3fb552d..8a52fe213b 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_migration_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py index 2f531d61eb..54700bad74 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_model_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py index b16e4d7013..7866f2ba56 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_pipeline_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py index 9f417c156f..ff83fc4318 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_prediction_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api import httpbody_pb2 # type: ignore from google.api_core import client_options diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py index c6f3e8dc80..f411320765 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_specialist_pool_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py index 7c8bed1b17..8e35f90647 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_tensorboard_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions diff --git a/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py b/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py index 33199a9816..0b7d470fc5 100644 --- a/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py +++ b/tests/unit/gapic/aiplatform_v1beta1/test_vizier_service.py @@ -27,7 +27,7 @@ import math import pytest from proto.marshal.rules.dates import DurationRule, TimestampRule - +from proto.marshal.rules import wrappers from google.api_core import client_options from google.api_core import exceptions as core_exceptions From bd5ade8496f82a8238cc01c220a6e2a0ee106b9e Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 17:18:15 +0000 Subject: [PATCH 07/12] chore: detect samples tests in nested directories (#1657) Source-Link: https://github.com/googleapis/synthtool/commit/50db768f450a50d7c1fd62513c113c9bb96fd434 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:e09366bdf0fd9c8976592988390b24d53583dd9f002d476934da43725adbb978 --- .github/.OwlBot.lock.yaml | 2 +- samples/model-builder/noxfile.py | 4 ++-- samples/snippets/noxfile.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index b8dcb4a4af..aa547962eb 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -13,4 +13,4 @@ # limitations under the License. docker: image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest - digest: sha256:993a058718e84a82fda04c3177e58f0a43281a996c7c395e0a56ccc4d6d210d7 + digest: sha256:e09366bdf0fd9c8976592988390b24d53583dd9f002d476934da43725adbb978 diff --git a/samples/model-builder/noxfile.py b/samples/model-builder/noxfile.py index 5fcb9d7461..0398d72ff6 100644 --- a/samples/model-builder/noxfile.py +++ b/samples/model-builder/noxfile.py @@ -207,8 +207,8 @@ def _session_tests( session: nox.sessions.Session, post_install: Callable = None ) -> None: # check for presence of tests - test_list = glob.glob("*_test.py") + glob.glob("test_*.py") - test_list.extend(glob.glob("tests")) + test_list = glob.glob("**/*_test.py", recursive=True) + glob.glob("**/test_*.py", recursive=True) + test_list.extend(glob.glob("**/tests", recursive=True)) if len(test_list) == 0: print("No tests found, skipping directory.") diff --git a/samples/snippets/noxfile.py b/samples/snippets/noxfile.py index 5fcb9d7461..0398d72ff6 100644 --- a/samples/snippets/noxfile.py +++ b/samples/snippets/noxfile.py @@ -207,8 +207,8 @@ def _session_tests( session: nox.sessions.Session, post_install: Callable = None ) -> None: # check for presence of tests - test_list = glob.glob("*_test.py") + glob.glob("test_*.py") - test_list.extend(glob.glob("tests")) + test_list = glob.glob("**/*_test.py", recursive=True) + glob.glob("**/test_*.py", recursive=True) + test_list.extend(glob.glob("**/tests", recursive=True)) if len(test_list) == 0: print("No tests found, skipping directory.") From a3cc5a332f6b5dc2132c875836313215dcb20c49 Mon Sep 17 00:00:00 2001 From: sasha-gitg <44654632+sasha-gitg@users.noreply.github.com> Date: Tue, 13 Sep 2022 16:52:38 -0700 Subject: [PATCH 08/12] chore: Replace collections.Iterable reference to collections.abc.Iterable for Python 3.10 (#1659) Fixes [b/246541115](http://b/246541115) --- .../metadata/experiment_run_resource.py | 4 +- tests/unit/aiplatform/test_metadata.py | 99 +++++++++++++++++++ tests/unit/aiplatform/test_pipeline_jobs.py | 23 ++++- 3 files changed, 123 insertions(+), 3 deletions(-) diff --git a/google/cloud/aiplatform/metadata/experiment_run_resource.py b/google/cloud/aiplatform/metadata/experiment_run_resource.py index 41bd59a4c3..d61b62b7b2 100644 --- a/google/cloud/aiplatform/metadata/experiment_run_resource.py +++ b/google/cloud/aiplatform/metadata/experiment_run_resource.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import collections +from collections import abc import concurrent.futures import functools from typing import Callable, Dict, List, Optional, Set, Union, Any @@ -1171,7 +1171,7 @@ def wrapper(*args, **kwargs): artifacts = [] executions = [] for value in [*args, *kwargs.values()]: - value = value if isinstance(value, collections.Iterable) else [value] + value = value if isinstance(value, abc.Iterable) else [value] for item in value: if isinstance(item, execution.Execution): executions.append(item) diff --git a/tests/unit/aiplatform/test_metadata.py b/tests/unit/aiplatform/test_metadata.py index ffade4976d..ba5a527683 100644 --- a/tests/unit/aiplatform/test_metadata.py +++ b/tests/unit/aiplatform/test_metadata.py @@ -76,6 +76,7 @@ _TEST_PIPELINE = _TEST_EXPERIMENT _TEST_RUN = "run-1" _TEST_OTHER_RUN = "run-2" +_TEST_DISPLAY_NAME = "test-display-name" # resource attributes _TEST_METADATA = {"test-param1": 1, "test-param2": "test-value", "test-param3": True} @@ -94,6 +95,15 @@ _TEST_EXECUTION_NAME = f"{_TEST_PARENT}/executions/{_TEST_EXECUTION_ID}" _TEST_OTHER_EXECUTION_ID = f"{_TEST_EXPERIMENT}-{_TEST_OTHER_RUN}" _TEST_OTHER_EXECUTION_NAME = f"{_TEST_PARENT}/executions/{_TEST_OTHER_EXECUTION_ID}" +_TEST_SCHEMA_TITLE = "test.Schema" + +_TEST_EXECUTION = GapicExecution( + name=_TEST_EXECUTION_NAME, + schema_title=_TEST_SCHEMA_TITLE, + display_name=_TEST_DISPLAY_NAME, + metadata=_TEST_METADATA, + state=GapicExecution.State.RUNNING, +) # artifact _TEST_ARTIFACT_ID = f"{_TEST_EXPERIMENT}-{_TEST_RUN}-metrics" @@ -612,6 +622,15 @@ def update_experiment_run_context_to_running(): yield update_context_mock +@pytest.fixture +def create_execution_mock(): + with patch.object( + MetadataServiceClient, "create_execution" + ) as create_execution_mock: + create_execution_mock.side_effect = [_TEST_EXECUTION] + yield create_execution_mock + + @pytest.fixture def update_context_mock_v2(): with patch.object(MetadataServiceClient, "update_context") as update_context_mock: @@ -1246,6 +1265,86 @@ def test_log_params_nest_value_raises_error(self): with pytest.raises(TypeError): aiplatform.log_params({"test": {"nested": "string"}}) + @pytest.mark.usefixtures( + "get_metadata_store_mock", + "get_experiment_mock", + "create_experiment_run_context_mock", + "add_context_children_mock", + "get_artifact_mock", + ) + def test_start_execution_and_assign_artifact( + self, + create_execution_mock, + add_execution_events_mock, + add_context_artifacts_and_executions_mock, + update_execution_mock, + ): + aiplatform.init( + project=_TEST_PROJECT, location=_TEST_LOCATION, experiment=_TEST_EXPERIMENT + ) + aiplatform.start_run(_TEST_RUN) + + in_artifact = aiplatform.Artifact(_TEST_ARTIFACT_ID) + out_artifact = aiplatform.Artifact(_TEST_ARTIFACT_ID) + + with aiplatform.start_execution( + schema_title=_TEST_SCHEMA_TITLE, + display_name=_TEST_DISPLAY_NAME, + metadata=_TEST_METADATA, + ) as exc: + + exc.assign_input_artifacts([in_artifact]) + exc.assign_output_artifacts([out_artifact]) + + _created_execution = copy.deepcopy(_TEST_EXECUTION) + _created_execution.name = None + + create_execution_mock.assert_called_once_with( + parent=_TEST_PARENT, execution=_created_execution, execution_id=None + ) + + in_event = gca_event.Event( + artifact=_TEST_ARTIFACT_NAME, + type_=gca_event.Event.Type.INPUT, + ) + + out_event = gca_event.Event( + artifact=_TEST_ARTIFACT_NAME, + type_=gca_event.Event.Type.OUTPUT, + ) + + add_execution_events_mock.assert_has_calls( + [ + call(execution=_TEST_EXECUTION.name, events=[in_event]), + call(execution=_TEST_EXECUTION.name, events=[out_event]), + ] + ) + + add_context_artifacts_and_executions_mock.assert_has_calls( + [ + call( + context=_TEST_EXPERIMENT_RUN_CONTEXT_NAME, + artifacts=None, + executions=[_TEST_EXECUTION.name], + ), + call( + context=_TEST_EXPERIMENT_RUN_CONTEXT_NAME, + artifacts=[_TEST_ARTIFACT_NAME], + executions=[], + ), + call( + context=_TEST_EXPERIMENT_RUN_CONTEXT_NAME, + artifacts=[_TEST_ARTIFACT_NAME], + executions=[], + ), + ] + ) + + updated_execution = copy.deepcopy(_TEST_EXECUTION) + updated_execution.state = GapicExecution.State.COMPLETE + + update_execution_mock.assert_called_once_with(execution=updated_execution) + @pytest.mark.usefixtures( "get_metadata_store_mock", "get_experiment_mock", diff --git a/tests/unit/aiplatform/test_pipeline_jobs.py b/tests/unit/aiplatform/test_pipeline_jobs.py index 4e24332450..4976fd6d4c 100644 --- a/tests/unit/aiplatform/test_pipeline_jobs.py +++ b/tests/unit/aiplatform/test_pipeline_jobs.py @@ -15,7 +15,6 @@ # limitations under the License. # -import yaml import pytest import json @@ -462,6 +461,8 @@ def test_run_call_pipeline_service_create( mock_load_yaml_and_json, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -543,6 +544,8 @@ def test_run_call_pipeline_service_create_artifact_registry( mock_load_yaml_and_json, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -626,6 +629,8 @@ def test_run_call_pipeline_service_create_with_timeout( mock_load_yaml_and_json, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -708,6 +713,8 @@ def test_run_call_pipeline_service_create_with_timeout_not_explicitly_set( mock_load_yaml_and_json, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -791,6 +798,8 @@ def test_run_call_pipeline_service_create_with_failure_policy( failure_policy, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -875,6 +884,8 @@ def test_run_call_pipeline_service_create_legacy( mock_load_yaml_and_json, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -957,6 +968,8 @@ def test_run_call_pipeline_service_create_tfx( mock_load_yaml_and_json, sync, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -1034,6 +1047,8 @@ def test_submit_call_pipeline_service_pipeline_job_create( job_spec, mock_load_yaml_and_json, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -1187,6 +1202,8 @@ def test_submit_call_pipeline_service_pipeline_job_create_legacy( job_spec, mock_load_yaml_and_json, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -1422,6 +1439,8 @@ def test_clone_pipeline_job( job_spec, mock_load_yaml_and_json, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, @@ -1500,6 +1519,8 @@ def test_clone_pipeline_job_with_all_args( job_spec, mock_load_yaml_and_json, ): + import yaml + aiplatform.init( project=_TEST_PROJECT, staging_bucket=_TEST_GCS_BUCKET_NAME, From 627fdf9542e177d9ee07849c7c7ca6857381a83d Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Wed, 14 Sep 2022 09:23:24 -0400 Subject: [PATCH 09/12] feat: add enable_simple_view to PipelineJob.list() (#1614) * feat: add enable_simple_view to PipelineJob.list() * updates to pipelinejob.list read_mask * run linter * update to read_mask * add placeholder for read_mask to system tests * unit test fix * add system test for read_mask filter * move read mask fields to constants file * add read_mask docstrings * remove class name check Co-authored-by: sasha-gitg <44654632+sasha-gitg@users.noreply.github.com> --- google/cloud/aiplatform/base.py | 25 ++++++++ google/cloud/aiplatform/constants/pipeline.py | 17 ++++++ google/cloud/aiplatform/pipeline_jobs.py | 24 ++++++++ tests/system/aiplatform/test_pipeline_job.py | 13 +++++ tests/unit/aiplatform/test_pipeline_jobs.py | 57 +++++++++++++++++++ 5 files changed, 136 insertions(+) diff --git a/google/cloud/aiplatform/base.py b/google/cloud/aiplatform/base.py index 55ca1c7829..d9c3994d26 100644 --- a/google/cloud/aiplatform/base.py +++ b/google/cloud/aiplatform/base.py @@ -48,6 +48,7 @@ from google.cloud.aiplatform.compat.types import encryption_spec as gca_encryption_spec from google.cloud.aiplatform.constants import base as base_constants from google.protobuf import json_format +from google.protobuf import field_mask_pb2 as field_mask # This is the default retry callback to be used with get methods. _DEFAULT_RETRY = retry.Retry() @@ -1030,6 +1031,7 @@ def _list( cls_filter: Callable[[proto.Message], bool] = lambda _: True, filter: Optional[str] = None, order_by: Optional[str] = None, + read_mask: Optional[field_mask.FieldMask] = None, project: Optional[str] = None, location: Optional[str] = None, credentials: Optional[auth_credentials.Credentials] = None, @@ -1052,6 +1054,14 @@ def _list( Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: `display_name`, `create_time`, `update_time` + read_mask (field_mask.FieldMask): + Optional. A FieldMask with a list of strings passed via `paths` + indicating which fields to return for each resource in the response. + For example, passing + field_mask.FieldMask(paths=["create_time", "update_time"]) + as `read_mask` would result in each returned VertexAiResourceNoun + in the result list only having the "create_time" and + "update_time" attributes. project (str): Optional. Project to retrieve list from. If not set, project set in aiplatform.init will be used. @@ -1067,6 +1077,7 @@ def _list( Returns: List[VertexAiResourceNoun] - A list of SDK resource objects """ + resource = cls._empty_constructor( project=project, location=location, credentials=credentials ) @@ -1083,6 +1094,10 @@ def _list( ), } + # `read_mask` is only passed from PipelineJob.list() for now + if read_mask is not None: + list_request["read_mask"] = read_mask + if filter: list_request["filter"] = filter @@ -1105,6 +1120,7 @@ def _list_with_local_order( cls_filter: Callable[[proto.Message], bool] = lambda _: True, filter: Optional[str] = None, order_by: Optional[str] = None, + read_mask: Optional[field_mask.FieldMask] = None, project: Optional[str] = None, location: Optional[str] = None, credentials: Optional[auth_credentials.Credentials] = None, @@ -1127,6 +1143,14 @@ def _list_with_local_order( Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: `display_name`, `create_time`, `update_time` + read_mask (field_mask.FieldMask): + Optional. A FieldMask with a list of strings passed via `paths` + indicating which fields to return for each resource in the response. + For example, passing + field_mask.FieldMask(paths=["create_time", "update_time"]) + as `read_mask` would result in each returned VertexAiResourceNoun + in the result list only having the "create_time" and + "update_time" attributes. project (str): Optional. Project to retrieve list from. If not set, project set in aiplatform.init will be used. @@ -1145,6 +1169,7 @@ def _list_with_local_order( cls_filter=cls_filter, filter=filter, order_by=None, # This method will handle the ordering locally + read_mask=read_mask, project=project, location=location, credentials=credentials, diff --git a/google/cloud/aiplatform/constants/pipeline.py b/google/cloud/aiplatform/constants/pipeline.py index d4ff2aa32e..12acf8a52e 100644 --- a/google/cloud/aiplatform/constants/pipeline.py +++ b/google/cloud/aiplatform/constants/pipeline.py @@ -37,3 +37,20 @@ # Pattern for an Artifact Registry URL. _VALID_AR_URL = re.compile(r"^https:\/\/([\w-]+)-kfp\.pkg\.dev\/.*") + +# Fields to include in returned PipelineJob when enable_simple_view=True in PipelineJob.list() +_READ_MASK_FIELDS = [ + "name", + "state", + "display_name", + "pipeline_spec.pipeline_info", + "create_time", + "start_time", + "end_time", + "update_time", + "labels", + "template_uri", + "template_metadata.version", + "job_detail.pipeline_run_context", + "job_detail.pipeline_context", +] diff --git a/google/cloud/aiplatform/pipeline_jobs.py b/google/cloud/aiplatform/pipeline_jobs.py index afc5dd86ad..4b9e95730c 100644 --- a/google/cloud/aiplatform/pipeline_jobs.py +++ b/google/cloud/aiplatform/pipeline_jobs.py @@ -38,6 +38,7 @@ from google.cloud.aiplatform.utils import yaml_utils from google.cloud.aiplatform.utils import pipeline_utils from google.protobuf import json_format +from google.protobuf import field_mask_pb2 as field_mask from google.cloud.aiplatform.compat.types import ( pipeline_job as gca_pipeline_job, @@ -56,6 +57,8 @@ # Pattern for an Artifact Registry URL. _VALID_AR_URL = pipeline_constants._VALID_AR_URL +_READ_MASK_FIELDS = pipeline_constants._READ_MASK_FIELDS + def _get_current_time() -> datetime.datetime: """Gets the current timestamp.""" @@ -509,6 +512,7 @@ def list( cls, filter: Optional[str] = None, order_by: Optional[str] = None, + enable_simple_view: Optional[bool] = False, project: Optional[str] = None, location: Optional[str] = None, credentials: Optional[auth_credentials.Credentials] = None, @@ -530,6 +534,17 @@ def list( Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: `display_name`, `create_time`, `update_time` + enable_simple_view (bool): + Optional. Whether to pass the `read_mask` parameter to the list call. + This will improve the performance of calling list(). However, the + returned PipelineJob list will not include all fields for each PipelineJob. + Setting this to True will exclude the following fields in your response: + `runtime_config`, `service_account`, `network`, and some subfields of + `pipeline_spec` and `job_detail`. The following fields will be included in + each PipelineJob resource in your response: `state`, `display_name`, + `pipeline_spec.pipeline_info`, `create_time`, `start_time`, `end_time`, + `update_time`, `labels`, `template_uri`, `template_metadata.version`, + `job_detail.pipeline_run_context`, `job_detail.pipeline_context`. project (str): Optional. Project to retrieve list from. If not set, project set in aiplatform.init will be used. @@ -544,9 +559,18 @@ def list( List[PipelineJob] - A list of PipelineJob resource objects """ + read_mask_fields = None + + if enable_simple_view: + read_mask_fields = field_mask.FieldMask(paths=_READ_MASK_FIELDS) + _LOGGER.warn( + "By enabling simple view, the PipelineJob resources returned from this method will not contain all fields." + ) + return cls._list_with_local_order( filter=filter, order_by=order_by, + read_mask=read_mask_fields, project=project, location=location, credentials=credentials, diff --git a/tests/system/aiplatform/test_pipeline_job.py b/tests/system/aiplatform/test_pipeline_job.py index 004ad768a3..13d8207a1d 100644 --- a/tests/system/aiplatform/test_pipeline_job.py +++ b/tests/system/aiplatform/test_pipeline_job.py @@ -20,6 +20,8 @@ from google.cloud import aiplatform from tests.system.aiplatform import e2e_base +from google.protobuf.json_format import MessageToDict + @pytest.mark.usefixtures("tear_down_resources") class TestPipelineJob(e2e_base.TestEndToEnd): @@ -59,3 +61,14 @@ def training_pipeline(number_of_epochs: int = 10): shared_state.setdefault("resources", []).append(job) job.wait() + + list_with_read_mask = aiplatform.PipelineJob.list(enable_simple_view=True) + list_without_read_mask = aiplatform.PipelineJob.list() + + # enable_simple_view=True should apply the `read_mask` filter to limit PipelineJob fields returned + assert "serviceAccount" in MessageToDict( + list_without_read_mask[0].gca_resource._pb + ) + assert "serviceAccount" not in MessageToDict( + list_with_read_mask[0].gca_resource._pb + ) diff --git a/tests/unit/aiplatform/test_pipeline_jobs.py b/tests/unit/aiplatform/test_pipeline_jobs.py index 4976fd6d4c..a608e7df07 100644 --- a/tests/unit/aiplatform/test_pipeline_jobs.py +++ b/tests/unit/aiplatform/test_pipeline_jobs.py @@ -28,6 +28,7 @@ from google.cloud import aiplatform from google.cloud.aiplatform import base from google.cloud.aiplatform import initializer +from google.cloud.aiplatform.constants import pipeline as pipeline_constants from google.cloud.aiplatform_v1 import Context as GapicContext from google.cloud.aiplatform_v1 import MetadataStore as GapicMetadataStore from google.cloud.aiplatform.metadata import constants @@ -37,6 +38,7 @@ from google.cloud.aiplatform.utils import gcs_utils from google.cloud import storage from google.protobuf import json_format +from google.protobuf import field_mask_pb2 as field_mask from google.cloud.aiplatform.compat.services import ( pipeline_service_client, @@ -62,6 +64,9 @@ _TEST_NETWORK = f"projects/{_TEST_PROJECT}/global/networks/{_TEST_PIPELINE_JOB_ID}" _TEST_PIPELINE_JOB_NAME = f"projects/{_TEST_PROJECT}/locations/{_TEST_LOCATION}/pipelineJobs/{_TEST_PIPELINE_JOB_ID}" +_TEST_PIPELINE_JOB_LIST_READ_MASK = field_mask.FieldMask( + paths=pipeline_constants._READ_MASK_FIELDS +) _TEST_PIPELINE_PARAMETER_VALUES_LEGACY = {"string_param": "hello"} _TEST_PIPELINE_PARAMETER_VALUES = { @@ -332,6 +337,17 @@ def mock_pipeline_service_list(): with mock.patch.object( pipeline_service_client.PipelineServiceClient, "list_pipeline_jobs" ) as mock_list_pipeline_jobs: + mock_list_pipeline_jobs.return_value = [ + make_pipeline_job( + gca_pipeline_state.PipelineState.PIPELINE_STATE_SUCCEEDED + ), + make_pipeline_job( + gca_pipeline_state.PipelineState.PIPELINE_STATE_SUCCEEDED + ), + make_pipeline_job( + gca_pipeline_state.PipelineState.PIPELINE_STATE_SUCCEEDED + ), + ] yield mock_list_pipeline_jobs @@ -1354,6 +1370,47 @@ def test_list_pipeline_job( request={"parent": _TEST_PARENT} ) + @pytest.mark.usefixtures( + "mock_pipeline_service_create", + "mock_pipeline_service_get", + "mock_pipeline_bucket_exists", + ) + @pytest.mark.parametrize( + "job_spec", + [ + _TEST_PIPELINE_SPEC_JSON, + _TEST_PIPELINE_SPEC_YAML, + _TEST_PIPELINE_JOB, + _TEST_PIPELINE_SPEC_LEGACY_JSON, + _TEST_PIPELINE_SPEC_LEGACY_YAML, + _TEST_PIPELINE_JOB_LEGACY, + ], + ) + def test_list_pipeline_job_with_read_mask( + self, mock_pipeline_service_list, mock_load_yaml_and_json + ): + aiplatform.init( + project=_TEST_PROJECT, + staging_bucket=_TEST_GCS_BUCKET_NAME, + credentials=_TEST_CREDENTIALS, + ) + + job = pipeline_jobs.PipelineJob( + display_name=_TEST_PIPELINE_JOB_DISPLAY_NAME, + template_path=_TEST_TEMPLATE_PATH, + job_id=_TEST_PIPELINE_JOB_ID, + ) + + job.run() + job.list(enable_simple_view=True) + + mock_pipeline_service_list.assert_called_once_with( + request={ + "parent": _TEST_PARENT, + "read_mask": _TEST_PIPELINE_JOB_LIST_READ_MASK, + }, + ) + @pytest.mark.usefixtures( "mock_pipeline_service_create", "mock_pipeline_service_get", From f2d06e3b1d143c78ca43d08737162b05715b59a9 Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Wed, 14 Sep 2022 13:05:22 -0400 Subject: [PATCH 10/12] chore: change enable_simple_view default to False (#1665) * chore: change enable_simple_view default to False * chore: reorder args * Update google/cloud/aiplatform/pipeline_jobs.py Co-authored-by: sasha-gitg <44654632+sasha-gitg@users.noreply.github.com> Co-authored-by: sasha-gitg <44654632+sasha-gitg@users.noreply.github.com> --- google/cloud/aiplatform/pipeline_jobs.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/google/cloud/aiplatform/pipeline_jobs.py b/google/cloud/aiplatform/pipeline_jobs.py index 4b9e95730c..abc4f8eb56 100644 --- a/google/cloud/aiplatform/pipeline_jobs.py +++ b/google/cloud/aiplatform/pipeline_jobs.py @@ -512,7 +512,7 @@ def list( cls, filter: Optional[str] = None, order_by: Optional[str] = None, - enable_simple_view: Optional[bool] = False, + enable_simple_view: bool = False, project: Optional[str] = None, location: Optional[str] = None, credentials: Optional[auth_credentials.Credentials] = None, @@ -536,10 +536,10 @@ def list( Supported fields: `display_name`, `create_time`, `update_time` enable_simple_view (bool): Optional. Whether to pass the `read_mask` parameter to the list call. - This will improve the performance of calling list(). However, the - returned PipelineJob list will not include all fields for each PipelineJob. - Setting this to True will exclude the following fields in your response: - `runtime_config`, `service_account`, `network`, and some subfields of + Defaults to False if not provided. This will improve the performance of calling + list(). However, the returned PipelineJob list will not include all fields for + each PipelineJob. Setting this to True will exclude the following fields in your + response: `runtime_config`, `service_account`, `network`, and some subfields of `pipeline_spec` and `job_detail`. The following fields will be included in each PipelineJob resource in your response: `state`, `display_name`, `pipeline_spec.pipeline_info`, `create_time`, `start_time`, `end_time`, From b54d65930bc48d675679fe3fc99943c418b4a5f5 Mon Sep 17 00:00:00 2001 From: Sara Robinson Date: Thu, 15 Sep 2022 10:06:04 -0400 Subject: [PATCH 11/12] chore: release 1.17.1 (#1668) Release-As: 1.17.1 From 95855a28413ba547c36b22c41065e687d309f062 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Thu, 15 Sep 2022 12:39:05 -0400 Subject: [PATCH 12/12] chore(main): release 1.17.1 (#1652) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 14 ++++++++++++++ google/cloud/aiplatform/version.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8595fce03..c54e34b227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.17.1](https://github.com/googleapis/python-aiplatform/compare/v1.17.0...v1.17.1) (2022-09-15) + + +### Features + +* Add enable_simple_view to PipelineJob.list() ([#1614](https://github.com/googleapis/python-aiplatform/issues/1614)) ([627fdf9](https://github.com/googleapis/python-aiplatform/commit/627fdf9542e177d9ee07849c7c7ca6857381a83d)) +* Add eval metrics types to get_experiment_df ([#1648](https://github.com/googleapis/python-aiplatform/issues/1648)) ([944b03f](https://github.com/googleapis/python-aiplatform/commit/944b03fc9bd7f1d69f6852c65286b72f49f425df)) +* Adding Python 3.10 support + updating google-vizier version ([#1644](https://github.com/googleapis/python-aiplatform/issues/1644)) ([f4766dc](https://github.com/googleapis/python-aiplatform/commit/f4766dc288904ae504e9559c535907c7497e04a9)) + + +### Miscellaneous Chores + +* Release 1.17.1 ([#1668](https://github.com/googleapis/python-aiplatform/issues/1668)) ([b54d659](https://github.com/googleapis/python-aiplatform/commit/b54d65930bc48d675679fe3fc99943c418b4a5f5)) + ## [1.17.0](https://github.com/googleapis/python-aiplatform/compare/v1.16.1...v1.17.0) (2022-09-07) diff --git a/google/cloud/aiplatform/version.py b/google/cloud/aiplatform/version.py index 931cd43034..3b815c9e91 100644 --- a/google/cloud/aiplatform/version.py +++ b/google/cloud/aiplatform/version.py @@ -15,4 +15,4 @@ # limitations under the License. # -__version__ = "1.17.0" +__version__ = "1.17.1"