KosmoKrator

data

Google Vertex AI Lua API for KosmoKrator Agents

Agent-facing Lua documentation and function reference for the Google Vertex AI KosmoKrator integration.

Lua Namespace

Agents call this integration through app.integrations.google_vertex_ai.*. Use lua_read_doc("integrations.google-vertex-ai") inside KosmoKrator to discover the same reference at runtime.

Call Lua from the Headless CLI

Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic Google Vertex AI workflow without starting an interactive agent session.

Inline Lua call
kosmo integrations:lua --eval 'dump(app.integrations.google_vertex_ai.reasoning_engines_stream_query({}))' --json
Read Lua docs headlessly
kosmo integrations:lua --eval 'print(docs.read("google-vertex-ai"))' --json
kosmo integrations:lua --eval 'print(docs.read("google-vertex-ai.reasoning_engines_stream_query"))' --json

Workflow file

Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.

workflow.lua
local google_vertex_ai = app.integrations.google_vertex_ai
local result = google_vertex_ai.reasoning_engines_stream_query({})

dump(result)
Run the workflow
kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json
Namespace note. integrations:lua exposes app.integrations.google_vertex_ai, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.google_vertex_ai.default.* or app.integrations.google_vertex_ai.work.* when you configured named credential accounts.

MCP-only Lua

If the script only needs configured MCP servers and does not need Google Vertex AI, use the narrower mcp:lua command.

MCP Lua command
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json

Agent-Facing Lua Docs

This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.

Google Vertex AI - Lua API Reference

Google Vertex AI tools are exposed under app.integrations.google_vertex_ai. This package is generated from Google’s official AI Platform v1 Discovery document and exposes 1003 REST methods.

Configure access_token with a Google OAuth token that has Vertex AI or cloud-platform scopes. The default base URL is https://aiplatform.googleapis.com.

Each method-specific tool accepts Discovery path parameters as top-level arguments, known query parameters as top-level shortcuts or inside query, and request resources inside body. Resource path parameters preserve /, so pass full names like projects/example/locations/us-central1/models/model-id.

Examples

local models = app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_models_list({
  parent = "projects/example-project/locations/us-central1",
  pageSize = 20
})

local prediction = app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_endpoints_predict({
  endpoint = "projects/example-project/locations/us-central1/endpoints/123",
  body = { instances = { { text = "hello" } } }
})

local generated = app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_publishers_models_generate_content({
  model = "projects/example-project/locations/us-central1/publishers/google/models/gemini-1.5-pro",
  body = { contents = { { role = "user", parts = { { text = "hello" } } } } }
})

Multi-Account Usage

app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_models_list({ parent = "projects/example/locations/us-central1" })
app.integrations.google_vertex_ai.default.google_vertex_ai_projects_locations_models_list({ parent = "projects/example/locations/us-central1" })
app.integrations.google_vertex_ai.production.google_vertex_ai_projects_locations_models_list({ parent = "projects/example/locations/us-central1" })

Annotations

  • google_vertex_ai_datasets_data_items_annotations_operations_get - GET /v1/{+name} - Datasets Data Items Annotations Operations Get
  • google_vertex_ai_datasets_data_items_annotations_operations_delete - DELETE /v1/{+name} - Datasets Data Items Annotations Operations Delete
  • google_vertex_ai_datasets_data_items_annotations_operations_list - GET /v1/{+name}/operations - Datasets Data Items Annotations Operations List
  • google_vertex_ai_datasets_data_items_annotations_operations_cancel - POST /v1/{+name}:cancel - Datasets Data Items Annotations Operations Cancel
  • google_vertex_ai_datasets_data_items_annotations_operations_wait - POST /v1/{+name}:wait - Datasets Data Items Annotations Operations Wait

Ask Contexts

  • google_vertex_ai_projects_locations_ask_contexts - POST /v1/{+parent}:askContexts - Projects Locations Ask Contexts

Async Query

  • google_vertex_ai_reasoning_engines_async_query - POST /v1/{+name}:asyncQuery - Reasoning Engines Async Query

Async Retrieve Contexts

  • google_vertex_ai_projects_locations_async_retrieve_contexts - POST /v1/{+parent}:asyncRetrieveContexts - Projects Locations Async Retrieve Contexts

Augment Prompt

  • google_vertex_ai_projects_locations_augment_prompt - POST /v1/{+parent}:augmentPrompt - Projects Locations Augment Prompt

Batch Prediction Jobs

  • google_vertex_ai_projects_locations_batch_prediction_jobs_delete - DELETE /v1/{+name} - Projects Locations Batch Prediction Jobs Delete
  • google_vertex_ai_projects_locations_batch_prediction_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Batch Prediction Jobs Cancel
  • google_vertex_ai_projects_locations_batch_prediction_jobs_create - POST /v1/{+parent}/batchPredictionJobs - Projects Locations Batch Prediction Jobs Create
  • google_vertex_ai_projects_locations_batch_prediction_jobs_list - GET /v1/{+parent}/batchPredictionJobs - Projects Locations Batch Prediction Jobs List
  • google_vertex_ai_projects_locations_batch_prediction_jobs_get - GET /v1/{+name} - Projects Locations Batch Prediction Jobs Get

Cached Contents

  • google_vertex_ai_projects_locations_cached_contents_get - GET /v1/{+name} - Projects Locations Cached Contents Get
  • google_vertex_ai_projects_locations_cached_contents_create - POST /v1/{+parent}/cachedContents - Projects Locations Cached Contents Create
  • google_vertex_ai_projects_locations_cached_contents_patch - PATCH /v1/{+name} - Projects Locations Cached Contents Patch
  • google_vertex_ai_projects_locations_cached_contents_list - GET /v1/{+parent}/cachedContents - Projects Locations Cached Contents List
  • google_vertex_ai_projects_locations_cached_contents_delete - DELETE /v1/{+name} - Projects Locations Cached Contents Delete

Cancel

  • google_vertex_ai_reasoning_engines_operations_cancel - POST /v1/{+name}:cancel - Reasoning Engines Operations Cancel
  • google_vertex_ai_schedules_operations_cancel - POST /v1/{+name}:cancel - Schedules Operations Cancel
  • google_vertex_ai_custom_jobs_operations_cancel - POST /v1/{+name}:cancel - Custom Jobs Operations Cancel
  • google_vertex_ai_studies_operations_cancel - POST /v1/{+name}:cancel - Studies Operations Cancel
  • google_vertex_ai_data_labeling_jobs_operations_cancel - POST /v1/{+name}:cancel - Data Labeling Jobs Operations Cancel
  • google_vertex_ai_tuning_jobs_operations_cancel - POST /v1/{+name}:cancel - Tuning Jobs Operations Cancel
  • google_vertex_ai_migratable_resources_operations_cancel - POST /v1/{+name}:cancel - Migratable Resources Operations Cancel
  • google_vertex_ai_notebook_runtimes_operations_cancel - POST /v1/{+name}:cancel - Notebook Runtimes Operations Cancel
  • google_vertex_ai_model_deployment_monitoring_jobs_operations_cancel - POST /v1/{+name}:cancel - Model Deployment Monitoring Jobs Operations Cancel
  • google_vertex_ai_operations_cancel - POST /v1/{+name}:cancel - Operations Cancel
  • google_vertex_ai_models_operations_cancel - POST /v1/{+name}:cancel - Models Operations Cancel
  • google_vertex_ai_notebook_runtime_templates_operations_cancel - POST /v1/{+name}:cancel - Notebook Runtime Templates Operations Cancel
  • google_vertex_ai_deployment_resource_pools_operations_cancel - POST /v1/{+name}:cancel - Deployment Resource Pools Operations Cancel
  • google_vertex_ai_specialist_pools_operations_cancel - POST /v1/{+name}:cancel - Specialist Pools Operations Cancel
  • google_vertex_ai_persistent_resources_operations_cancel - POST /v1/{+name}:cancel - Persistent Resources Operations Cancel
  • google_vertex_ai_index_endpoints_operations_cancel - POST /v1/{+name}:cancel - Index Endpoints Operations Cancel
  • google_vertex_ai_hyperparameter_tuning_jobs_operations_cancel - POST /v1/{+name}:cancel - Hyperparameter Tuning Jobs Operations Cancel
  • google_vertex_ai_indexes_operations_cancel - POST /v1/{+name}:cancel - Indexes Operations Cancel
  • google_vertex_ai_training_pipelines_operations_cancel - POST /v1/{+name}:cancel - Training Pipelines Operations Cancel
  • google_vertex_ai_skills_operations_cancel - POST /v1/{+name}:cancel - Skills Operations Cancel
  • google_vertex_ai_endpoints_operations_cancel - POST /v1/{+name}:cancel - Endpoints Operations Cancel
  • google_vertex_ai_pipeline_jobs_operations_cancel - POST /v1/{+name}:cancel - Pipeline Jobs Operations Cancel
  • google_vertex_ai_rag_corpora_operations_cancel - POST /v1/{+name}:cancel - Rag Corpora Operations Cancel
  • google_vertex_ai_tensorboards_operations_cancel - POST /v1/{+name}:cancel - Tensorboards Operations Cancel
  • google_vertex_ai_notebook_execution_jobs_operations_cancel - POST /v1/{+name}:cancel - Notebook Execution Jobs Operations Cancel
  • google_vertex_ai_rag_engine_config_operations_cancel - POST /v1/{+name}:cancel - Rag Engine Config Operations Cancel
  • google_vertex_ai_datasets_operations_cancel - POST /v1/{+name}:cancel - Datasets Operations Cancel
  • google_vertex_ai_featurestores_operations_cancel - POST /v1/{+name}:cancel - Featurestores Operations Cancel
  • google_vertex_ai_metadata_stores_operations_cancel - POST /v1/{+name}:cancel - Metadata Stores Operations Cancel

Completions

  • google_vertex_ai_endpoints_chat_completions - POST /v1/{+endpoint}/chat/completions - Endpoints Chat Completions

Compute Tokens

  • google_vertex_ai_endpoints_compute_tokens - POST /v1/{+endpoint}:computeTokens - Endpoints Compute Tokens
  • google_vertex_ai_publishers_models_compute_tokens - POST /v1/{+endpoint}:computeTokens - Publishers Models Compute Tokens

Corroborate Content

  • google_vertex_ai_projects_locations_corroborate_content - POST /v1/{+parent}:corroborateContent - Projects Locations Corroborate Content

Count Tokens

  • google_vertex_ai_endpoints_count_tokens - POST /v1/{+endpoint}:countTokens - Endpoints Count Tokens
  • google_vertex_ai_publishers_models_count_tokens - POST /v1/{+endpoint}:countTokens - Publishers Models Count Tokens

Create

  • google_vertex_ai_reasoning_engines_create - POST /v1/reasoningEngines - Reasoning Engines Create
  • google_vertex_ai_reasoning_engines_sandbox_environments_create - POST /v1/{+parent}/sandboxEnvironments - Reasoning Engines Sandbox Environments Create
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_create - POST /v1/{+parent}/sandboxEnvironmentTemplates - Reasoning Engines Sandbox Environment Templates Create
  • google_vertex_ai_datasets_create - POST /v1/datasets - Datasets Create
  • google_vertex_ai_datasets_dataset_versions_create - POST /v1/{+parent}/datasetVersions - Datasets Dataset Versions Create
  • google_vertex_ai_batch_prediction_jobs_create - POST /v1/batchPredictionJobs - Batch Prediction Jobs Create

Custom Jobs

  • google_vertex_ai_projects_locations_custom_jobs_get - GET /v1/{+name} - Projects Locations Custom Jobs Get
  • google_vertex_ai_projects_locations_custom_jobs_create - POST /v1/{+parent}/customJobs - Projects Locations Custom Jobs Create
  • google_vertex_ai_projects_locations_custom_jobs_list - GET /v1/{+parent}/customJobs - Projects Locations Custom Jobs List
  • google_vertex_ai_projects_locations_custom_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Custom Jobs Cancel
  • google_vertex_ai_projects_locations_custom_jobs_delete - DELETE /v1/{+name} - Projects Locations Custom Jobs Delete
  • google_vertex_ai_projects_locations_custom_jobs_operations_get - GET /v1/{+name} - Projects Locations Custom Jobs Operations Get
  • google_vertex_ai_projects_locations_custom_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Custom Jobs Operations Cancel
  • google_vertex_ai_projects_locations_custom_jobs_operations_wait - POST /v1/{+name}:wait - Projects Locations Custom Jobs Operations Wait
  • google_vertex_ai_projects_locations_custom_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Custom Jobs Operations List
  • google_vertex_ai_projects_locations_custom_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Custom Jobs Operations Delete

Data Labeling Jobs

  • google_vertex_ai_projects_locations_data_labeling_jobs_delete - DELETE /v1/{+name} - Projects Locations Data Labeling Jobs Delete
  • google_vertex_ai_projects_locations_data_labeling_jobs_create - POST /v1/{+parent}/dataLabelingJobs - Projects Locations Data Labeling Jobs Create
  • google_vertex_ai_projects_locations_data_labeling_jobs_list - GET /v1/{+parent}/dataLabelingJobs - Projects Locations Data Labeling Jobs List
  • google_vertex_ai_projects_locations_data_labeling_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Data Labeling Jobs Cancel
  • google_vertex_ai_projects_locations_data_labeling_jobs_get - GET /v1/{+name} - Projects Locations Data Labeling Jobs Get
  • google_vertex_ai_projects_locations_data_labeling_jobs_operations_get - GET /v1/{+name} - Projects Locations Data Labeling Jobs Operations Get
  • google_vertex_ai_projects_locations_data_labeling_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Data Labeling Jobs Operations Delete
  • google_vertex_ai_projects_locations_data_labeling_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Data Labeling Jobs Operations List
  • google_vertex_ai_projects_locations_data_labeling_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Data Labeling Jobs Operations Cancel
  • google_vertex_ai_projects_locations_data_labeling_jobs_operations_wait - POST /v1/{+name}:wait - Projects Locations Data Labeling Jobs Operations Wait

Datasets

  • google_vertex_ai_projects_locations_datasets_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Datasets Set Iam Policy
  • google_vertex_ai_projects_locations_datasets_create - POST /v1/{+parent}/datasets - Projects Locations Datasets Create
  • google_vertex_ai_projects_locations_datasets_get - GET /v1/{+name} - Projects Locations Datasets Get
  • google_vertex_ai_projects_locations_datasets_import - POST /v1/{+name}:import - Projects Locations Datasets Import
  • google_vertex_ai_projects_locations_datasets_delete - DELETE /v1/{+name} - Projects Locations Datasets Delete
  • google_vertex_ai_projects_locations_datasets_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Datasets Test Iam Permissions
  • google_vertex_ai_projects_locations_datasets_export - POST /v1/{+name}:export - Projects Locations Datasets Export
  • google_vertex_ai_projects_locations_datasets_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Datasets Get Iam Policy
  • google_vertex_ai_projects_locations_datasets_patch - PATCH /v1/{+name} - Projects Locations Datasets Patch
  • google_vertex_ai_projects_locations_datasets_list - GET /v1/{+parent}/datasets - Projects Locations Datasets List
  • google_vertex_ai_projects_locations_datasets_search_data_items - GET /v1/{+dataset}:searchDataItems - Projects Locations Datasets Search Data Items
  • google_vertex_ai_projects_locations_datasets_data_items_list - GET /v1/{+parent}/dataItems - Projects Locations Datasets Data Items List
  • google_vertex_ai_projects_locations_datasets_data_items_annotations_list - GET /v1/{+parent}/annotations - Projects Locations Datasets Data Items Annotations List
  • google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_get - GET /v1/{+name} - Projects Locations Datasets Data Items Annotations Operations Get
  • google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_list - GET /v1/{+name}/operations - Projects Locations Datasets Data Items Annotations Operations List
  • google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Datasets Data Items Annotations Operations Cancel
  • google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_wait - POST /v1/{+name}:wait - Projects Locations Datasets Data Items Annotations Operations Wait
  • google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_delete - DELETE /v1/{+name} - Projects Locations Datasets Data Items Annotations Operations Delete
  • google_vertex_ai_projects_locations_datasets_data_items_operations_get - GET /v1/{+name} - Projects Locations Datasets Data Items Operations Get
  • google_vertex_ai_projects_locations_datasets_data_items_operations_delete - DELETE /v1/{+name} - Projects Locations Datasets Data Items Operations Delete
  • google_vertex_ai_projects_locations_datasets_data_items_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Datasets Data Items Operations Cancel
  • google_vertex_ai_projects_locations_datasets_data_items_operations_wait - POST /v1/{+name}:wait - Projects Locations Datasets Data Items Operations Wait
  • google_vertex_ai_projects_locations_datasets_data_items_operations_list - GET /v1/{+name}/operations - Projects Locations Datasets Data Items Operations List
  • google_vertex_ai_projects_locations_datasets_annotation_specs_get - GET /v1/{+name} - Projects Locations Datasets Annotation Specs Get
  • google_vertex_ai_projects_locations_datasets_annotation_specs_operations_delete - DELETE /v1/{+name} - Projects Locations Datasets Annotation Specs Operations Delete
  • google_vertex_ai_projects_locations_datasets_annotation_specs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Datasets Annotation Specs Operations Cancel
  • google_vertex_ai_projects_locations_datasets_annotation_specs_operations_wait - POST /v1/{+name}:wait - Projects Locations Datasets Annotation Specs Operations Wait
  • google_vertex_ai_projects_locations_datasets_annotation_specs_operations_list - GET /v1/{+name}/operations - Projects Locations Datasets Annotation Specs Operations List
  • google_vertex_ai_projects_locations_datasets_annotation_specs_operations_get - GET /v1/{+name} - Projects Locations Datasets Annotation Specs Operations Get
  • google_vertex_ai_projects_locations_datasets_dataset_versions_get - GET /v1/{+name} - Projects Locations Datasets Dataset Versions Get
  • google_vertex_ai_projects_locations_datasets_dataset_versions_create - POST /v1/{+parent}/datasetVersions - Projects Locations Datasets Dataset Versions Create
  • google_vertex_ai_projects_locations_datasets_dataset_versions_patch - PATCH /v1/{+name} - Projects Locations Datasets Dataset Versions Patch
  • google_vertex_ai_projects_locations_datasets_dataset_versions_list - GET /v1/{+parent}/datasetVersions - Projects Locations Datasets Dataset Versions List
  • google_vertex_ai_projects_locations_datasets_dataset_versions_delete - DELETE /v1/{+name} - Projects Locations Datasets Dataset Versions Delete
  • google_vertex_ai_projects_locations_datasets_dataset_versions_restore - GET /v1/{+name}:restore - Projects Locations Datasets Dataset Versions Restore
  • google_vertex_ai_projects_locations_datasets_operations_get - GET /v1/{+name} - Projects Locations Datasets Operations Get
  • google_vertex_ai_projects_locations_datasets_operations_delete - DELETE /v1/{+name} - Projects Locations Datasets Operations Delete
  • google_vertex_ai_projects_locations_datasets_operations_list - GET /v1/{+name}/operations - Projects Locations Datasets Operations List
  • google_vertex_ai_projects_locations_datasets_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Datasets Operations Cancel
  • google_vertex_ai_projects_locations_datasets_operations_wait - POST /v1/{+name}:wait - Projects Locations Datasets Operations Wait
  • google_vertex_ai_projects_locations_datasets_saved_queries_list - GET /v1/{+parent}/savedQueries - Projects Locations Datasets Saved Queries List
  • google_vertex_ai_projects_locations_datasets_saved_queries_delete - DELETE /v1/{+name} - Projects Locations Datasets Saved Queries Delete
  • google_vertex_ai_projects_locations_datasets_saved_queries_operations_delete - DELETE /v1/{+name} - Projects Locations Datasets Saved Queries Operations Delete
  • google_vertex_ai_projects_locations_datasets_saved_queries_operations_list - GET /v1/{+name}/operations - Projects Locations Datasets Saved Queries Operations List
  • google_vertex_ai_projects_locations_datasets_saved_queries_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Datasets Saved Queries Operations Cancel
  • google_vertex_ai_projects_locations_datasets_saved_queries_operations_wait - POST /v1/{+name}:wait - Projects Locations Datasets Saved Queries Operations Wait
  • google_vertex_ai_projects_locations_datasets_saved_queries_operations_get - GET /v1/{+name} - Projects Locations Datasets Saved Queries Operations Get

Delete

  • google_vertex_ai_reasoning_engines_delete - DELETE /v1/{+name} - Reasoning Engines Delete
  • google_vertex_ai_reasoning_engines_sandbox_environments_delete - DELETE /v1/{+name} - Reasoning Engines Sandbox Environments Delete
  • google_vertex_ai_reasoning_engines_operations_delete - DELETE /v1/{+name} - Reasoning Engines Operations Delete
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_delete - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Delete
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_delete - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Templates Delete
  • google_vertex_ai_schedules_operations_delete - DELETE /v1/{+name} - Schedules Operations Delete
  • google_vertex_ai_custom_jobs_operations_delete - DELETE /v1/{+name} - Custom Jobs Operations Delete
  • google_vertex_ai_studies_operations_delete - DELETE /v1/{+name} - Studies Operations Delete
  • google_vertex_ai_data_labeling_jobs_operations_delete - DELETE /v1/{+name} - Data Labeling Jobs Operations Delete
  • google_vertex_ai_tuning_jobs_operations_delete - DELETE /v1/{+name} - Tuning Jobs Operations Delete
  • google_vertex_ai_migratable_resources_operations_delete - DELETE /v1/{+name} - Migratable Resources Operations Delete
  • google_vertex_ai_notebook_runtimes_operations_delete - DELETE /v1/{+name} - Notebook Runtimes Operations Delete
  • google_vertex_ai_model_deployment_monitoring_jobs_operations_delete - DELETE /v1/{+name} - Model Deployment Monitoring Jobs Operations Delete
  • google_vertex_ai_operations_delete - DELETE /v1/{+name} - Operations Delete
  • google_vertex_ai_models_operations_delete - DELETE /v1/{+name} - Models Operations Delete
  • google_vertex_ai_notebook_runtime_templates_operations_delete - DELETE /v1/{+name} - Notebook Runtime Templates Operations Delete
  • google_vertex_ai_feature_groups_operations_delete - DELETE /v1/{+name} - Feature Groups Operations Delete
  • google_vertex_ai_deployment_resource_pools_operations_delete - DELETE /v1/{+name} - Deployment Resource Pools Operations Delete
  • google_vertex_ai_specialist_pools_operations_delete - DELETE /v1/{+name} - Specialist Pools Operations Delete
  • google_vertex_ai_persistent_resources_operations_delete - DELETE /v1/{+name} - Persistent Resources Operations Delete
  • google_vertex_ai_index_endpoints_operations_delete - DELETE /v1/{+name} - Index Endpoints Operations Delete
  • google_vertex_ai_hyperparameter_tuning_jobs_operations_delete - DELETE /v1/{+name} - Hyperparameter Tuning Jobs Operations Delete
  • google_vertex_ai_indexes_operations_delete - DELETE /v1/{+name} - Indexes Operations Delete
  • google_vertex_ai_training_pipelines_operations_delete - DELETE /v1/{+name} - Training Pipelines Operations Delete
  • google_vertex_ai_skills_operations_delete - DELETE /v1/{+name} - Skills Operations Delete
  • google_vertex_ai_endpoints_operations_delete - DELETE /v1/{+name} - Endpoints Operations Delete
  • google_vertex_ai_pipeline_jobs_operations_delete - DELETE /v1/{+name} - Pipeline Jobs Operations Delete
  • google_vertex_ai_rag_corpora_operations_delete - DELETE /v1/{+name} - Rag Corpora Operations Delete
  • google_vertex_ai_tensorboards_operations_delete - DELETE /v1/{+name} - Tensorboards Operations Delete
  • google_vertex_ai_notebook_execution_jobs_operations_delete - DELETE /v1/{+name} - Notebook Execution Jobs Operations Delete
  • google_vertex_ai_rag_engine_config_operations_delete - DELETE /v1/{+name} - Rag Engine Config Operations Delete
  • google_vertex_ai_feature_online_stores_operations_delete - DELETE /v1/{+name} - Feature Online Stores Operations Delete
  • google_vertex_ai_datasets_delete - DELETE /v1/{+name} - Datasets Delete
  • google_vertex_ai_datasets_operations_delete - DELETE /v1/{+name} - Datasets Operations Delete
  • google_vertex_ai_datasets_dataset_versions_delete - DELETE /v1/{+name} - Datasets Dataset Versions Delete
  • google_vertex_ai_featurestores_operations_delete - DELETE /v1/{+name} - Featurestores Operations Delete
  • google_vertex_ai_metadata_stores_operations_delete - DELETE /v1/{+name} - Metadata Stores Operations Delete

Deploy

  • google_vertex_ai_projects_locations_deploy - POST /v1/{+destination}:deploy - Projects Locations Deploy

Deployment Resource Pools

  • google_vertex_ai_projects_locations_deployment_resource_pools_delete - DELETE /v1/{+name} - Projects Locations Deployment Resource Pools Delete
  • google_vertex_ai_projects_locations_deployment_resource_pools_create - POST /v1/{+parent}/deploymentResourcePools - Projects Locations Deployment Resource Pools Create
  • google_vertex_ai_projects_locations_deployment_resource_pools_list - GET /v1/{+parent}/deploymentResourcePools - Projects Locations Deployment Resource Pools List
  • google_vertex_ai_projects_locations_deployment_resource_pools_patch - PATCH /v1/{+name} - Projects Locations Deployment Resource Pools Patch
  • google_vertex_ai_projects_locations_deployment_resource_pools_get - GET /v1/{+name} - Projects Locations Deployment Resource Pools Get
  • google_vertex_ai_projects_locations_deployment_resource_pools_query_deployed_models - GET /v1/{+deploymentResourcePool}:queryDeployedModels - Projects Locations Deployment Resource Pools Query Deployed Models
  • google_vertex_ai_projects_locations_deployment_resource_pools_operations_delete - DELETE /v1/{+name} - Projects Locations Deployment Resource Pools Operations Delete
  • google_vertex_ai_projects_locations_deployment_resource_pools_operations_list - GET /v1/{+name}/operations - Projects Locations Deployment Resource Pools Operations List
  • google_vertex_ai_projects_locations_deployment_resource_pools_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Deployment Resource Pools Operations Cancel
  • google_vertex_ai_projects_locations_deployment_resource_pools_operations_wait - POST /v1/{+name}:wait - Projects Locations Deployment Resource Pools Operations Wait
  • google_vertex_ai_projects_locations_deployment_resource_pools_operations_get - GET /v1/{+name} - Projects Locations Deployment Resource Pools Operations Get

Endpoints

  • google_vertex_ai_projects_locations_endpoints_direct_raw_predict - POST /v1/{+endpoint}:directRawPredict - Projects Locations Endpoints Direct Raw Predict
  • google_vertex_ai_projects_locations_endpoints_stream_generate_content - POST /v1/{+model}:streamGenerateContent - Projects Locations Endpoints Stream Generate Content
  • google_vertex_ai_projects_locations_endpoints_raw_predict - POST /v1/{+endpoint}:rawPredict - Projects Locations Endpoints Raw Predict
  • google_vertex_ai_projects_locations_endpoints_generate_content - POST /v1/{+model}:generateContent - Projects Locations Endpoints Generate Content
  • google_vertex_ai_projects_locations_endpoints_deploy_model - POST /v1/{+endpoint}:deployModel - Projects Locations Endpoints Deploy Model
  • google_vertex_ai_projects_locations_endpoints_list - GET /v1/{+parent}/endpoints - Projects Locations Endpoints List
  • google_vertex_ai_projects_locations_endpoints_compute_tokens - POST /v1/{+endpoint}:computeTokens - Projects Locations Endpoints Compute Tokens
  • google_vertex_ai_projects_locations_endpoints_server_streaming_predict - POST /v1/{+endpoint}:serverStreamingPredict - Projects Locations Endpoints Server Streaming Predict
  • google_vertex_ai_projects_locations_endpoints_undeploy_model - POST /v1/{+endpoint}:undeployModel - Projects Locations Endpoints Undeploy Model
  • google_vertex_ai_projects_locations_endpoints_predict - POST /v1/{+endpoint}:predict - Projects Locations Endpoints Predict
  • google_vertex_ai_projects_locations_endpoints_direct_predict - POST /v1/{+endpoint}:directPredict - Projects Locations Endpoints Direct Predict
  • google_vertex_ai_projects_locations_endpoints_create - POST /v1/{+parent}/endpoints - Projects Locations Endpoints Create
  • google_vertex_ai_projects_locations_endpoints_update - POST /v1/{+name}:update - Projects Locations Endpoints Update
  • google_vertex_ai_projects_locations_endpoints_mutate_deployed_model - POST /v1/{+endpoint}:mutateDeployedModel - Projects Locations Endpoints Mutate Deployed Model
  • google_vertex_ai_projects_locations_endpoints_delete - DELETE /v1/{+name} - Projects Locations Endpoints Delete
  • google_vertex_ai_projects_locations_endpoints_count_tokens - POST /v1/{+endpoint}:countTokens - Projects Locations Endpoints Count Tokens
  • google_vertex_ai_projects_locations_endpoints_patch - PATCH /v1/{+name} - Projects Locations Endpoints Patch
  • google_vertex_ai_projects_locations_endpoints_fetch_predict_operation - POST /v1/{+endpoint}:fetchPredictOperation - Projects Locations Endpoints Fetch Predict Operation
  • google_vertex_ai_projects_locations_endpoints_get - GET /v1/{+name} - Projects Locations Endpoints Get
  • google_vertex_ai_projects_locations_endpoints_predict_long_running - POST /v1/{+endpoint}:predictLongRunning - Projects Locations Endpoints Predict Long Running
  • google_vertex_ai_projects_locations_endpoints_stream_raw_predict - POST /v1/{+endpoint}:streamRawPredict - Projects Locations Endpoints Stream Raw Predict
  • google_vertex_ai_projects_locations_endpoints_explain - POST /v1/{+endpoint}:explain - Projects Locations Endpoints Explain
  • google_vertex_ai_projects_locations_endpoints_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Endpoints Operations Cancel
  • google_vertex_ai_projects_locations_endpoints_operations_wait - POST /v1/{+name}:wait - Projects Locations Endpoints Operations Wait
  • google_vertex_ai_projects_locations_endpoints_operations_list - GET /v1/{+name}/operations - Projects Locations Endpoints Operations List
  • google_vertex_ai_projects_locations_endpoints_operations_delete - DELETE /v1/{+name} - Projects Locations Endpoints Operations Delete
  • google_vertex_ai_projects_locations_endpoints_operations_get - GET /v1/{+name} - Projects Locations Endpoints Operations Get
  • google_vertex_ai_projects_locations_endpoints_invoke_invoke - POST /v1/{+endpoint}/invoke/{+invokeId} - Projects Locations Endpoints Invoke Invoke
  • google_vertex_ai_projects_locations_endpoints_openapi_responses - POST /v1/{+endpoint}/responses - Projects Locations Endpoints Openapi Responses
  • google_vertex_ai_projects_locations_endpoints_openapi_completions - POST /v1/{+endpoint}/completions - Projects Locations Endpoints Openapi Completions
  • google_vertex_ai_projects_locations_endpoints_openapi_embeddings - POST /v1/{+endpoint}/embeddings - Projects Locations Endpoints Openapi Embeddings
  • google_vertex_ai_projects_locations_endpoints_chat_completions - POST /v1/{+endpoint}/chat/completions - Projects Locations Endpoints Chat Completions
  • google_vertex_ai_projects_locations_endpoints_deployed_models_invoke_invoke - POST /v1/{+endpoint}/deployedModels/{deployedModelId}/invoke/{+invokeId} - Projects Locations Endpoints Deployed Models Invoke Invoke
  • google_vertex_ai_projects_locations_endpoints_google_science_inference - POST /v1/{+endpoint}/science/inference - Projects Locations Endpoints Google Science Inference

Evaluate Dataset

  • google_vertex_ai_v1_evaluate_dataset - POST /v1:evaluateDataset - V1 Evaluate Dataset
  • google_vertex_ai_projects_locations_evaluate_dataset - POST /v1/{+location}:evaluateDataset - Projects Locations Evaluate Dataset

Evaluate Instances

  • google_vertex_ai_v1_evaluate_instances - POST /v1:evaluateInstances - V1 Evaluate Instances
  • google_vertex_ai_projects_locations_evaluate_instances - POST /v1/{+location}:evaluateInstances - Projects Locations Evaluate Instances

Evaluation Items

  • google_vertex_ai_projects_locations_evaluation_items_create - POST /v1/{+parent}/evaluationItems - Projects Locations Evaluation Items Create
  • google_vertex_ai_projects_locations_evaluation_items_list - GET /v1/{+parent}/evaluationItems - Projects Locations Evaluation Items List
  • google_vertex_ai_projects_locations_evaluation_items_delete - DELETE /v1/{+name} - Projects Locations Evaluation Items Delete
  • google_vertex_ai_projects_locations_evaluation_items_get - GET /v1/{+name} - Projects Locations Evaluation Items Get

Evaluation Runs

  • google_vertex_ai_projects_locations_evaluation_runs_create - POST /v1/{+parent}/evaluationRuns - Projects Locations Evaluation Runs Create
  • google_vertex_ai_projects_locations_evaluation_runs_list - GET /v1/{+parent}/evaluationRuns - Projects Locations Evaluation Runs List
  • google_vertex_ai_projects_locations_evaluation_runs_cancel - POST /v1/{+name}:cancel - Projects Locations Evaluation Runs Cancel
  • google_vertex_ai_projects_locations_evaluation_runs_delete - DELETE /v1/{+name} - Projects Locations Evaluation Runs Delete
  • google_vertex_ai_projects_locations_evaluation_runs_get - GET /v1/{+name} - Projects Locations Evaluation Runs Get

Evaluation Sets

  • google_vertex_ai_projects_locations_evaluation_sets_delete - DELETE /v1/{+name} - Projects Locations Evaluation Sets Delete
  • google_vertex_ai_projects_locations_evaluation_sets_create - POST /v1/{+parent}/evaluationSets - Projects Locations Evaluation Sets Create
  • google_vertex_ai_projects_locations_evaluation_sets_list - GET /v1/{+parent}/evaluationSets - Projects Locations Evaluation Sets List
  • google_vertex_ai_projects_locations_evaluation_sets_patch - PATCH /v1/{+name} - Projects Locations Evaluation Sets Patch
  • google_vertex_ai_projects_locations_evaluation_sets_get - GET /v1/{+name} - Projects Locations Evaluation Sets Get

Execute

  • google_vertex_ai_reasoning_engines_sandbox_environments_execute - POST /v1/{+name}:execute - Reasoning Engines Sandbox Environments Execute

Execute Code

  • google_vertex_ai_reasoning_engines_execute_code - POST /v1/{+name}:executeCode - Reasoning Engines Execute Code

Feature Groups

  • google_vertex_ai_projects_locations_feature_groups_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Feature Groups Test Iam Permissions
  • google_vertex_ai_projects_locations_feature_groups_delete - DELETE /v1/{+name} - Projects Locations Feature Groups Delete
  • google_vertex_ai_projects_locations_feature_groups_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Feature Groups Get Iam Policy
  • google_vertex_ai_projects_locations_feature_groups_create - POST /v1/{+parent}/featureGroups - Projects Locations Feature Groups Create
  • google_vertex_ai_projects_locations_feature_groups_list - GET /v1/{+parent}/featureGroups - Projects Locations Feature Groups List
  • google_vertex_ai_projects_locations_feature_groups_patch - PATCH /v1/{+name} - Projects Locations Feature Groups Patch
  • google_vertex_ai_projects_locations_feature_groups_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Feature Groups Set Iam Policy
  • google_vertex_ai_projects_locations_feature_groups_get - GET /v1/{+name} - Projects Locations Feature Groups Get
  • google_vertex_ai_projects_locations_feature_groups_operations_wait - POST /v1/{+name}:wait - Projects Locations Feature Groups Operations Wait
  • google_vertex_ai_projects_locations_feature_groups_operations_list_wait - GET /v1/{+name}:wait - Projects Locations Feature Groups Operations List Wait
  • google_vertex_ai_projects_locations_feature_groups_operations_delete - DELETE /v1/{+name} - Projects Locations Feature Groups Operations Delete
  • google_vertex_ai_projects_locations_feature_groups_operations_get - GET /v1/{+name} - Projects Locations Feature Groups Operations Get
  • google_vertex_ai_projects_locations_feature_groups_features_delete - DELETE /v1/{+name} - Projects Locations Feature Groups Features Delete
  • google_vertex_ai_projects_locations_feature_groups_features_create - POST /v1/{+parent}/features - Projects Locations Feature Groups Features Create
  • google_vertex_ai_projects_locations_feature_groups_features_list - GET /v1/{+parent}/features - Projects Locations Feature Groups Features List
  • google_vertex_ai_projects_locations_feature_groups_features_patch - PATCH /v1/{+name} - Projects Locations Feature Groups Features Patch
  • google_vertex_ai_projects_locations_feature_groups_features_batch_create - POST /v1/{+parent}/features:batchCreate - Projects Locations Feature Groups Features Batch Create
  • google_vertex_ai_projects_locations_feature_groups_features_get - GET /v1/{+name} - Projects Locations Feature Groups Features Get
  • google_vertex_ai_projects_locations_feature_groups_features_operations_get - GET /v1/{+name} - Projects Locations Feature Groups Features Operations Get
  • google_vertex_ai_projects_locations_feature_groups_features_operations_delete - DELETE /v1/{+name} - Projects Locations Feature Groups Features Operations Delete
  • google_vertex_ai_projects_locations_feature_groups_features_operations_list_wait - GET /v1/{+name}:wait - Projects Locations Feature Groups Features Operations List Wait
  • google_vertex_ai_projects_locations_feature_groups_features_operations_wait - POST /v1/{+name}:wait - Projects Locations Feature Groups Features Operations Wait

Feature Online Stores

  • google_vertex_ai_projects_locations_feature_online_stores_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Feature Online Stores Set Iam Policy
  • google_vertex_ai_projects_locations_feature_online_stores_get - GET /v1/{+name} - Projects Locations Feature Online Stores Get
  • google_vertex_ai_projects_locations_feature_online_stores_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Feature Online Stores Get Iam Policy
  • google_vertex_ai_projects_locations_feature_online_stores_create - POST /v1/{+parent}/featureOnlineStores - Projects Locations Feature Online Stores Create
  • google_vertex_ai_projects_locations_feature_online_stores_list - GET /v1/{+parent}/featureOnlineStores - Projects Locations Feature Online Stores List
  • google_vertex_ai_projects_locations_feature_online_stores_patch - PATCH /v1/{+name} - Projects Locations Feature Online Stores Patch
  • google_vertex_ai_projects_locations_feature_online_stores_delete - DELETE /v1/{+name} - Projects Locations Feature Online Stores Delete
  • google_vertex_ai_projects_locations_feature_online_stores_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Feature Online Stores Test Iam Permissions
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Feature Online Stores Feature Views Set Iam Policy
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Feature Online Stores Feature Views Get Iam Policy
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_list - GET /v1/{+parent}/featureViews - Projects Locations Feature Online Stores Feature Views List
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Feature Online Stores Feature Views Test Iam Permissions
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_search_nearest_entities - POST /v1/{+featureView}:searchNearestEntities - Projects Locations Feature Online Stores Feature Views Search Nearest Entities
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_generate_fetch_access_token - POST /v1/{+featureView}:generateFetchAccessToken - Projects Locations Feature Online Stores Feature Views Generate Fetch Access Token
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_sync - POST /v1/{+featureView}:sync - Projects Locations Feature Online Stores Feature Views Sync
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_create - POST /v1/{+parent}/featureViews - Projects Locations Feature Online Stores Feature Views Create
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_patch - PATCH /v1/{+name} - Projects Locations Feature Online Stores Feature Views Patch
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_delete - DELETE /v1/{+name} - Projects Locations Feature Online Stores Feature Views Delete
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_get - GET /v1/{+name} - Projects Locations Feature Online Stores Feature Views Get
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_fetch_feature_values - POST /v1/{+featureView}:fetchFeatureValues - Projects Locations Feature Online Stores Feature Views Fetch Feature Values
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_direct_write - POST /v1/{+featureView}:directWrite - Projects Locations Feature Online Stores Feature Views Direct Write
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_feature_view_syncs_get - GET /v1/{+name} - Projects Locations Feature Online Stores Feature Views Feature View Syncs Get
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_feature_view_syncs_list - GET /v1/{+parent}/featureViewSyncs - Projects Locations Feature Online Stores Feature Views Feature View Syncs List
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_wait - POST /v1/{+name}:wait - Projects Locations Feature Online Stores Feature Views Operations Wait
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_list_wait - GET /v1/{+name}:wait - Projects Locations Feature Online Stores Feature Views Operations List Wait
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_delete - DELETE /v1/{+name} - Projects Locations Feature Online Stores Feature Views Operations Delete
  • google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_get - GET /v1/{+name} - Projects Locations Feature Online Stores Feature Views Operations Get
  • google_vertex_ai_projects_locations_feature_online_stores_operations_get - GET /v1/{+name} - Projects Locations Feature Online Stores Operations Get
  • google_vertex_ai_projects_locations_feature_online_stores_operations_delete - DELETE /v1/{+name} - Projects Locations Feature Online Stores Operations Delete
  • google_vertex_ai_projects_locations_feature_online_stores_operations_list_wait - GET /v1/{+name}:wait - Projects Locations Feature Online Stores Operations List Wait
  • google_vertex_ai_projects_locations_feature_online_stores_operations_wait - POST /v1/{+name}:wait - Projects Locations Feature Online Stores Operations Wait

Features

  • google_vertex_ai_featurestores_entity_types_features_operations_delete - DELETE /v1/{+name} - Featurestores Entity Types Features Operations Delete
  • google_vertex_ai_featurestores_entity_types_features_operations_list - GET /v1/{+name}/operations - Featurestores Entity Types Features Operations List
  • google_vertex_ai_featurestores_entity_types_features_operations_cancel - POST /v1/{+name}:cancel - Featurestores Entity Types Features Operations Cancel
  • google_vertex_ai_featurestores_entity_types_features_operations_wait - POST /v1/{+name}:wait - Featurestores Entity Types Features Operations Wait
  • google_vertex_ai_featurestores_entity_types_features_operations_get - GET /v1/{+name} - Featurestores Entity Types Features Operations Get

Featurestores

  • google_vertex_ai_projects_locations_featurestores_get - GET /v1/{+name} - Projects Locations Featurestores Get
  • google_vertex_ai_projects_locations_featurestores_search_features - GET /v1/{+location}/featurestores:searchFeatures - Projects Locations Featurestores Search Features
  • google_vertex_ai_projects_locations_featurestores_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Featurestores Get Iam Policy
  • google_vertex_ai_projects_locations_featurestores_list - GET /v1/{+parent}/featurestores - Projects Locations Featurestores List
  • google_vertex_ai_projects_locations_featurestores_patch - PATCH /v1/{+name} - Projects Locations Featurestores Patch
  • google_vertex_ai_projects_locations_featurestores_batch_read_feature_values - POST /v1/{+featurestore}:batchReadFeatureValues - Projects Locations Featurestores Batch Read Feature Values
  • google_vertex_ai_projects_locations_featurestores_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Featurestores Test Iam Permissions
  • google_vertex_ai_projects_locations_featurestores_delete - DELETE /v1/{+name} - Projects Locations Featurestores Delete
  • google_vertex_ai_projects_locations_featurestores_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Featurestores Set Iam Policy
  • google_vertex_ai_projects_locations_featurestores_create - POST /v1/{+parent}/featurestores - Projects Locations Featurestores Create
  • google_vertex_ai_projects_locations_featurestores_entity_types_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Featurestores Entity Types Get Iam Policy
  • google_vertex_ai_projects_locations_featurestores_entity_types_list - GET /v1/{+parent}/entityTypes - Projects Locations Featurestores Entity Types List
  • google_vertex_ai_projects_locations_featurestores_entity_types_import_feature_values - POST /v1/{+entityType}:importFeatureValues - Projects Locations Featurestores Entity Types Import Feature Values
  • google_vertex_ai_projects_locations_featurestores_entity_types_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Featurestores Entity Types Test Iam Permissions
  • google_vertex_ai_projects_locations_featurestores_entity_types_read_feature_values - POST /v1/{+entityType}:readFeatureValues - Projects Locations Featurestores Entity Types Read Feature Values
  • google_vertex_ai_projects_locations_featurestores_entity_types_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Featurestores Entity Types Set Iam Policy
  • google_vertex_ai_projects_locations_featurestores_entity_types_streaming_read_feature_values - POST /v1/{+entityType}:streamingReadFeatureValues - Projects Locations Featurestores Entity Types Streaming Read Feature Values
  • google_vertex_ai_projects_locations_featurestores_entity_types_get - GET /v1/{+name} - Projects Locations Featurestores Entity Types Get
  • google_vertex_ai_projects_locations_featurestores_entity_types_export_feature_values - POST /v1/{+entityType}:exportFeatureValues - Projects Locations Featurestores Entity Types Export Feature Values
  • google_vertex_ai_projects_locations_featurestores_entity_types_patch - PATCH /v1/{+name} - Projects Locations Featurestores Entity Types Patch
  • google_vertex_ai_projects_locations_featurestores_entity_types_write_feature_values - POST /v1/{+entityType}:writeFeatureValues - Projects Locations Featurestores Entity Types Write Feature Values
  • google_vertex_ai_projects_locations_featurestores_entity_types_delete - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Delete
  • google_vertex_ai_projects_locations_featurestores_entity_types_delete_feature_values - POST /v1/{+entityType}:deleteFeatureValues - Projects Locations Featurestores Entity Types Delete Feature Values
  • google_vertex_ai_projects_locations_featurestores_entity_types_create - POST /v1/{+parent}/entityTypes - Projects Locations Featurestores Entity Types Create
  • google_vertex_ai_projects_locations_featurestores_entity_types_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Featurestores Entity Types Operations Cancel
  • google_vertex_ai_projects_locations_featurestores_entity_types_operations_wait - POST /v1/{+name}:wait - Projects Locations Featurestores Entity Types Operations Wait
  • google_vertex_ai_projects_locations_featurestores_entity_types_operations_list - GET /v1/{+name}/operations - Projects Locations Featurestores Entity Types Operations List
  • google_vertex_ai_projects_locations_featurestores_entity_types_operations_delete - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Operations Delete
  • google_vertex_ai_projects_locations_featurestores_entity_types_operations_get - GET /v1/{+name} - Projects Locations Featurestores Entity Types Operations Get
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_get - GET /v1/{+name} - Projects Locations Featurestores Entity Types Features Get
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_delete - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Features Delete
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_create - POST /v1/{+parent}/features - Projects Locations Featurestores Entity Types Features Create
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_list - GET /v1/{+parent}/features - Projects Locations Featurestores Entity Types Features List
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_patch - PATCH /v1/{+name} - Projects Locations Featurestores Entity Types Features Patch
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_batch_create - POST /v1/{+parent}/features:batchCreate - Projects Locations Featurestores Entity Types Features Batch Create
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Featurestores Entity Types Features Operations Cancel
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_wait - POST /v1/{+name}:wait - Projects Locations Featurestores Entity Types Features Operations Wait
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_list - GET /v1/{+name}/operations - Projects Locations Featurestores Entity Types Features Operations List
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_delete - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Features Operations Delete
  • google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_get - GET /v1/{+name} - Projects Locations Featurestores Entity Types Features Operations Get
  • google_vertex_ai_projects_locations_featurestores_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Featurestores Operations Cancel
  • google_vertex_ai_projects_locations_featurestores_operations_wait - POST /v1/{+name}:wait - Projects Locations Featurestores Operations Wait
  • google_vertex_ai_projects_locations_featurestores_operations_list - GET /v1/{+name}/operations - Projects Locations Featurestores Operations List
  • google_vertex_ai_projects_locations_featurestores_operations_delete - DELETE /v1/{+name} - Projects Locations Featurestores Operations Delete
  • google_vertex_ai_projects_locations_featurestores_operations_get - GET /v1/{+name} - Projects Locations Featurestores Operations Get

Fetch Predict Operation

  • google_vertex_ai_endpoints_fetch_predict_operation - POST /v1/{+endpoint}:fetchPredictOperation - Endpoints Fetch Predict Operation
  • google_vertex_ai_publishers_models_fetch_predict_operation - POST /v1/{+endpoint}:fetchPredictOperation - Publishers Models Fetch Predict Operation

Generate Content

  • google_vertex_ai_endpoints_generate_content - POST /v1/{+model}:generateContent - Endpoints Generate Content
  • google_vertex_ai_publishers_models_generate_content - POST /v1/{+model}:generateContent - Publishers Models Generate Content

Generate Instance Rubrics

  • google_vertex_ai_v1_generate_instance_rubrics - POST /v1:generateInstanceRubrics - V1 Generate Instance Rubrics
  • google_vertex_ai_projects_locations_generate_instance_rubrics - POST /v1/{+location}:generateInstanceRubrics - Projects Locations Generate Instance Rubrics

Generate Synthetic Data

  • google_vertex_ai_projects_locations_generate_synthetic_data - POST /v1/{+location}:generateSyntheticData - Projects Locations Generate Synthetic Data

Get

  • google_vertex_ai_reasoning_engines_get - GET /v1/{+name} - Reasoning Engines Get
  • google_vertex_ai_reasoning_engines_sandbox_environments_get - GET /v1/{+name} - Reasoning Engines Sandbox Environments Get
  • google_vertex_ai_reasoning_engines_operations_get - GET /v1/{+name} - Reasoning Engines Operations Get
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_get - GET /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Get
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_get - GET /v1/{+name} - Reasoning Engines Sandbox Environment Templates Get
  • google_vertex_ai_schedules_operations_get - GET /v1/{+name} - Schedules Operations Get
  • google_vertex_ai_custom_jobs_operations_get - GET /v1/{+name} - Custom Jobs Operations Get
  • google_vertex_ai_studies_operations_get - GET /v1/{+name} - Studies Operations Get
  • google_vertex_ai_data_labeling_jobs_operations_get - GET /v1/{+name} - Data Labeling Jobs Operations Get
  • google_vertex_ai_tuning_jobs_operations_get - GET /v1/{+name} - Tuning Jobs Operations Get
  • google_vertex_ai_migratable_resources_operations_get - GET /v1/{+name} - Migratable Resources Operations Get
  • google_vertex_ai_notebook_runtimes_operations_get - GET /v1/{+name} - Notebook Runtimes Operations Get
  • google_vertex_ai_model_deployment_monitoring_jobs_operations_get - GET /v1/{+name} - Model Deployment Monitoring Jobs Operations Get
  • google_vertex_ai_operations_get - GET /v1/{+name} - Operations Get
  • google_vertex_ai_models_operations_get - GET /v1/{+name} - Models Operations Get
  • google_vertex_ai_notebook_runtime_templates_operations_get - GET /v1/{+name} - Notebook Runtime Templates Operations Get
  • google_vertex_ai_feature_groups_operations_get - GET /v1/{+name} - Feature Groups Operations Get
  • google_vertex_ai_projects_locations_get - GET /v1/{+name} - Projects Locations Get
  • google_vertex_ai_deployment_resource_pools_operations_get - GET /v1/{+name} - Deployment Resource Pools Operations Get
  • google_vertex_ai_specialist_pools_operations_get - GET /v1/{+name} - Specialist Pools Operations Get
  • google_vertex_ai_persistent_resources_operations_get - GET /v1/{+name} - Persistent Resources Operations Get
  • google_vertex_ai_index_endpoints_operations_get - GET /v1/{+name} - Index Endpoints Operations Get
  • google_vertex_ai_hyperparameter_tuning_jobs_operations_get - GET /v1/{+name} - Hyperparameter Tuning Jobs Operations Get
  • google_vertex_ai_indexes_operations_get - GET /v1/{+name} - Indexes Operations Get
  • google_vertex_ai_training_pipelines_operations_get - GET /v1/{+name} - Training Pipelines Operations Get
  • google_vertex_ai_skills_operations_get - GET /v1/{+name} - Skills Operations Get
  • google_vertex_ai_endpoints_operations_get - GET /v1/{+name} - Endpoints Operations Get
  • google_vertex_ai_pipeline_jobs_operations_get - GET /v1/{+name} - Pipeline Jobs Operations Get
  • google_vertex_ai_rag_corpora_operations_get - GET /v1/{+name} - Rag Corpora Operations Get
  • google_vertex_ai_tensorboards_operations_get - GET /v1/{+name} - Tensorboards Operations Get
  • google_vertex_ai_notebook_execution_jobs_operations_get - GET /v1/{+name} - Notebook Execution Jobs Operations Get
  • google_vertex_ai_rag_engine_config_operations_get - GET /v1/{+name} - Rag Engine Config Operations Get
  • google_vertex_ai_feature_online_stores_operations_get - GET /v1/{+name} - Feature Online Stores Operations Get
  • google_vertex_ai_datasets_get - GET /v1/{+name} - Datasets Get
  • google_vertex_ai_datasets_operations_get - GET /v1/{+name} - Datasets Operations Get
  • google_vertex_ai_datasets_dataset_versions_get - GET /v1/{+name} - Datasets Dataset Versions Get
  • google_vertex_ai_publishers_models_get - GET /v1/{+name} - Publishers Models Get
  • google_vertex_ai_featurestores_operations_get - GET /v1/{+name} - Featurestores Operations Get
  • google_vertex_ai_metadata_stores_operations_get - GET /v1/{+name} - Metadata Stores Operations Get
  • google_vertex_ai_batch_prediction_jobs_get - GET /v1/{+name} - Batch Prediction Jobs Get

Get Cache Config

  • google_vertex_ai_projects_get_cache_config - GET /v1/{+name} - Projects Get Cache Config

Get Rag Engine Config

  • google_vertex_ai_projects_locations_get_rag_engine_config - GET /v1/{+name} - Projects Locations Get Rag Engine Config

Hyperparameter Tuning Jobs

  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_get - GET /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Get
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Hyperparameter Tuning Jobs Cancel
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_create - POST /v1/{+parent}/hyperparameterTuningJobs - Projects Locations Hyperparameter Tuning Jobs Create
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_list - GET /v1/{+parent}/hyperparameterTuningJobs - Projects Locations Hyperparameter Tuning Jobs List
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_delete - DELETE /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Delete
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_get - GET /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Operations Get
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Operations Delete
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Hyperparameter Tuning Jobs Operations List
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Hyperparameter Tuning Jobs Operations Cancel
  • google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_wait - POST /v1/{+name}:wait - Projects Locations Hyperparameter Tuning Jobs Operations Wait

Index Endpoints

  • google_vertex_ai_projects_locations_index_endpoints_create - POST /v1/{+parent}/indexEndpoints - Projects Locations Index Endpoints Create
  • google_vertex_ai_projects_locations_index_endpoints_deploy_index - POST /v1/{+indexEndpoint}:deployIndex - Projects Locations Index Endpoints Deploy Index
  • google_vertex_ai_projects_locations_index_endpoints_find_neighbors - POST /v1/{+indexEndpoint}:findNeighbors - Projects Locations Index Endpoints Find Neighbors
  • google_vertex_ai_projects_locations_index_endpoints_undeploy_index - POST /v1/{+indexEndpoint}:undeployIndex - Projects Locations Index Endpoints Undeploy Index
  • google_vertex_ai_projects_locations_index_endpoints_read_index_datapoints - POST /v1/{+indexEndpoint}:readIndexDatapoints - Projects Locations Index Endpoints Read Index Datapoints
  • google_vertex_ai_projects_locations_index_endpoints_list - GET /v1/{+parent}/indexEndpoints - Projects Locations Index Endpoints List
  • google_vertex_ai_projects_locations_index_endpoints_patch - PATCH /v1/{+name} - Projects Locations Index Endpoints Patch
  • google_vertex_ai_projects_locations_index_endpoints_delete - DELETE /v1/{+name} - Projects Locations Index Endpoints Delete
  • google_vertex_ai_projects_locations_index_endpoints_mutate_deployed_index - POST /v1/{+indexEndpoint}:mutateDeployedIndex - Projects Locations Index Endpoints Mutate Deployed Index
  • google_vertex_ai_projects_locations_index_endpoints_get - GET /v1/{+name} - Projects Locations Index Endpoints Get
  • google_vertex_ai_projects_locations_index_endpoints_operations_get - GET /v1/{+name} - Projects Locations Index Endpoints Operations Get
  • google_vertex_ai_projects_locations_index_endpoints_operations_delete - DELETE /v1/{+name} - Projects Locations Index Endpoints Operations Delete
  • google_vertex_ai_projects_locations_index_endpoints_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Index Endpoints Operations Cancel
  • google_vertex_ai_projects_locations_index_endpoints_operations_wait - POST /v1/{+name}:wait - Projects Locations Index Endpoints Operations Wait
  • google_vertex_ai_projects_locations_index_endpoints_operations_list - GET /v1/{+name}/operations - Projects Locations Index Endpoints Operations List

Indexes

  • google_vertex_ai_projects_locations_indexes_upsert_datapoints - POST /v1/{+index}:upsertDatapoints - Projects Locations Indexes Upsert Datapoints
  • google_vertex_ai_projects_locations_indexes_create - POST /v1/{+parent}/indexes - Projects Locations Indexes Create
  • google_vertex_ai_projects_locations_indexes_list - GET /v1/{+parent}/indexes - Projects Locations Indexes List
  • google_vertex_ai_projects_locations_indexes_patch - PATCH /v1/{+name} - Projects Locations Indexes Patch
  • google_vertex_ai_projects_locations_indexes_delete - DELETE /v1/{+name} - Projects Locations Indexes Delete
  • google_vertex_ai_projects_locations_indexes_remove_datapoints - POST /v1/{+index}:removeDatapoints - Projects Locations Indexes Remove Datapoints
  • google_vertex_ai_projects_locations_indexes_get - GET /v1/{+name} - Projects Locations Indexes Get
  • google_vertex_ai_projects_locations_indexes_operations_list - GET /v1/{+name}/operations - Projects Locations Indexes Operations List
  • google_vertex_ai_projects_locations_indexes_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Indexes Operations Cancel
  • google_vertex_ai_projects_locations_indexes_operations_wait - POST /v1/{+name}:wait - Projects Locations Indexes Operations Wait
  • google_vertex_ai_projects_locations_indexes_operations_delete - DELETE /v1/{+name} - Projects Locations Indexes Operations Delete
  • google_vertex_ai_projects_locations_indexes_operations_get - GET /v1/{+name} - Projects Locations Indexes Operations Get

List

  • google_vertex_ai_reasoning_engines_list - GET /v1/reasoningEngines - Reasoning Engines List
  • google_vertex_ai_reasoning_engines_sandbox_environments_list - GET /v1/{+parent}/sandboxEnvironments - Reasoning Engines Sandbox Environments List
  • google_vertex_ai_reasoning_engines_operations_list - GET /v1/{+name}/operations - Reasoning Engines Operations List
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_list - GET /v1/{+parent}/sandboxEnvironmentSnapshots - Reasoning Engines Sandbox Environment Snapshots List
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_list - GET /v1/{+parent}/sandboxEnvironmentTemplates - Reasoning Engines Sandbox Environment Templates List
  • google_vertex_ai_schedules_operations_list - GET /v1/{+name}/operations - Schedules Operations List
  • google_vertex_ai_custom_jobs_operations_list - GET /v1/{+name}/operations - Custom Jobs Operations List
  • google_vertex_ai_studies_operations_list - GET /v1/{+name}/operations - Studies Operations List
  • google_vertex_ai_data_labeling_jobs_operations_list - GET /v1/{+name}/operations - Data Labeling Jobs Operations List
  • google_vertex_ai_tuning_jobs_operations_list - GET /v1/{+name}/operations - Tuning Jobs Operations List
  • google_vertex_ai_migratable_resources_operations_list - GET /v1/{+name}/operations - Migratable Resources Operations List
  • google_vertex_ai_notebook_runtimes_operations_list - GET /v1/{+name}/operations - Notebook Runtimes Operations List
  • google_vertex_ai_model_deployment_monitoring_jobs_operations_list - GET /v1/{+name}/operations - Model Deployment Monitoring Jobs Operations List
  • google_vertex_ai_operations_list - GET /v1/operations - Operations List
  • google_vertex_ai_models_operations_list - GET /v1/{+name}/operations - Models Operations List
  • google_vertex_ai_notebook_runtime_templates_operations_list - GET /v1/{+name}/operations - Notebook Runtime Templates Operations List
  • google_vertex_ai_projects_locations_list - GET /v1/{+name}/locations - Projects Locations List
  • google_vertex_ai_deployment_resource_pools_operations_list - GET /v1/{+name}/operations - Deployment Resource Pools Operations List
  • google_vertex_ai_specialist_pools_operations_list - GET /v1/{+name}/operations - Specialist Pools Operations List
  • google_vertex_ai_persistent_resources_operations_list - GET /v1/{+name}/operations - Persistent Resources Operations List
  • google_vertex_ai_index_endpoints_operations_list - GET /v1/{+name}/operations - Index Endpoints Operations List
  • google_vertex_ai_hyperparameter_tuning_jobs_operations_list - GET /v1/{+name}/operations - Hyperparameter Tuning Jobs Operations List
  • google_vertex_ai_indexes_operations_list - GET /v1/{+name}/operations - Indexes Operations List
  • google_vertex_ai_training_pipelines_operations_list - GET /v1/{+name}/operations - Training Pipelines Operations List
  • google_vertex_ai_skills_operations_list - GET /v1/{+name}/operations - Skills Operations List
  • google_vertex_ai_endpoints_operations_list - GET /v1/{+name}/operations - Endpoints Operations List
  • google_vertex_ai_pipeline_jobs_operations_list - GET /v1/{+name}/operations - Pipeline Jobs Operations List
  • google_vertex_ai_rag_corpora_operations_list - GET /v1/{+name}/operations - Rag Corpora Operations List
  • google_vertex_ai_tensorboards_operations_list - GET /v1/{+name}/operations - Tensorboards Operations List
  • google_vertex_ai_notebook_execution_jobs_operations_list - GET /v1/{+name}/operations - Notebook Execution Jobs Operations List
  • google_vertex_ai_rag_engine_config_operations_list - GET /v1/{+name}/operations - Rag Engine Config Operations List
  • google_vertex_ai_datasets_list - GET /v1/datasets - Datasets List
  • google_vertex_ai_datasets_operations_list - GET /v1/{+name}/operations - Datasets Operations List
  • google_vertex_ai_datasets_dataset_versions_list - GET /v1/{+parent}/datasetVersions - Datasets Dataset Versions List
  • google_vertex_ai_featurestores_operations_list - GET /v1/{+name}/operations - Featurestores Operations List
  • google_vertex_ai_metadata_stores_operations_list - GET /v1/{+name}/operations - Metadata Stores Operations List
  • google_vertex_ai_batch_prediction_jobs_list - GET /v1/batchPredictionJobs - Batch Prediction Jobs List

List Wait

  • google_vertex_ai_feature_groups_operations_list_wait - GET /v1/{+name}:wait - Feature Groups Operations List Wait
  • google_vertex_ai_feature_online_stores_operations_list_wait - GET /v1/{+name}:wait - Feature Online Stores Operations List Wait

Metadata Stores

  • google_vertex_ai_projects_locations_metadata_stores_get - GET /v1/{+name} - Projects Locations Metadata Stores Get
  • google_vertex_ai_projects_locations_metadata_stores_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Delete
  • google_vertex_ai_projects_locations_metadata_stores_create - POST /v1/{+parent}/metadataStores - Projects Locations Metadata Stores Create
  • google_vertex_ai_projects_locations_metadata_stores_list - GET /v1/{+parent}/metadataStores - Projects Locations Metadata Stores List
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Artifacts Delete
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_create - POST /v1/{+parent}/artifacts - Projects Locations Metadata Stores Artifacts Create
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_list - GET /v1/{+parent}/artifacts - Projects Locations Metadata Stores Artifacts List
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_patch - PATCH /v1/{+name} - Projects Locations Metadata Stores Artifacts Patch
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_get - GET /v1/{+name} - Projects Locations Metadata Stores Artifacts Get
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_query_artifact_lineage_subgraph - GET /v1/{+artifact}:queryArtifactLineageSubgraph - Projects Locations Metadata Stores Artifacts Query Artifact Lineage Subgraph
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_purge - POST /v1/{+parent}/artifacts:purge - Projects Locations Metadata Stores Artifacts Purge
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Artifacts Operations Delete
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_list - GET /v1/{+name}/operations - Projects Locations Metadata Stores Artifacts Operations List
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Artifacts Operations Cancel
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_wait - POST /v1/{+name}:wait - Projects Locations Metadata Stores Artifacts Operations Wait
  • google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_get - GET /v1/{+name} - Projects Locations Metadata Stores Artifacts Operations Get
  • google_vertex_ai_projects_locations_metadata_stores_contexts_purge - POST /v1/{+parent}/contexts:purge - Projects Locations Metadata Stores Contexts Purge
  • google_vertex_ai_projects_locations_metadata_stores_contexts_query_context_lineage_subgraph - GET /v1/{+context}:queryContextLineageSubgraph - Projects Locations Metadata Stores Contexts Query Context Lineage Subgraph
  • google_vertex_ai_projects_locations_metadata_stores_contexts_add_context_children - POST /v1/{+context}:addContextChildren - Projects Locations Metadata Stores Contexts Add Context Children
  • google_vertex_ai_projects_locations_metadata_stores_contexts_create - POST /v1/{+parent}/contexts - Projects Locations Metadata Stores Contexts Create
  • google_vertex_ai_projects_locations_metadata_stores_contexts_remove_context_children - POST /v1/{+context}:removeContextChildren - Projects Locations Metadata Stores Contexts Remove Context Children
  • google_vertex_ai_projects_locations_metadata_stores_contexts_get - GET /v1/{+name} - Projects Locations Metadata Stores Contexts Get
  • google_vertex_ai_projects_locations_metadata_stores_contexts_list - GET /v1/{+parent}/contexts - Projects Locations Metadata Stores Contexts List
  • google_vertex_ai_projects_locations_metadata_stores_contexts_patch - PATCH /v1/{+name} - Projects Locations Metadata Stores Contexts Patch
  • google_vertex_ai_projects_locations_metadata_stores_contexts_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Contexts Delete
  • google_vertex_ai_projects_locations_metadata_stores_contexts_add_context_artifacts_and_executions - POST /v1/{+context}:addContextArtifactsAndExecutions - Projects Locations Metadata Stores Contexts Add Context Artifacts And Executions
  • google_vertex_ai_projects_locations_metadata_stores_contexts_operations_get - GET /v1/{+name} - Projects Locations Metadata Stores Contexts Operations Get
  • google_vertex_ai_projects_locations_metadata_stores_contexts_operations_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Contexts Operations Delete
  • google_vertex_ai_projects_locations_metadata_stores_contexts_operations_list - GET /v1/{+name}/operations - Projects Locations Metadata Stores Contexts Operations List
  • google_vertex_ai_projects_locations_metadata_stores_contexts_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Contexts Operations Cancel
  • google_vertex_ai_projects_locations_metadata_stores_contexts_operations_wait - POST /v1/{+name}:wait - Projects Locations Metadata Stores Contexts Operations Wait
  • google_vertex_ai_projects_locations_metadata_stores_executions_purge - POST /v1/{+parent}/executions:purge - Projects Locations Metadata Stores Executions Purge
  • google_vertex_ai_projects_locations_metadata_stores_executions_get - GET /v1/{+name} - Projects Locations Metadata Stores Executions Get
  • google_vertex_ai_projects_locations_metadata_stores_executions_add_execution_events - POST /v1/{+execution}:addExecutionEvents - Projects Locations Metadata Stores Executions Add Execution Events
  • google_vertex_ai_projects_locations_metadata_stores_executions_create - POST /v1/{+parent}/executions - Projects Locations Metadata Stores Executions Create
  • google_vertex_ai_projects_locations_metadata_stores_executions_list - GET /v1/{+parent}/executions - Projects Locations Metadata Stores Executions List
  • google_vertex_ai_projects_locations_metadata_stores_executions_patch - PATCH /v1/{+name} - Projects Locations Metadata Stores Executions Patch
  • google_vertex_ai_projects_locations_metadata_stores_executions_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Executions Delete
  • google_vertex_ai_projects_locations_metadata_stores_executions_query_execution_inputs_and_outputs - GET /v1/{+execution}:queryExecutionInputsAndOutputs - Projects Locations Metadata Stores Executions Query Execution Inputs And Outputs
  • google_vertex_ai_projects_locations_metadata_stores_executions_operations_get - GET /v1/{+name} - Projects Locations Metadata Stores Executions Operations Get
  • google_vertex_ai_projects_locations_metadata_stores_executions_operations_list - GET /v1/{+name}/operations - Projects Locations Metadata Stores Executions Operations List
  • google_vertex_ai_projects_locations_metadata_stores_executions_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Executions Operations Cancel
  • google_vertex_ai_projects_locations_metadata_stores_executions_operations_wait - POST /v1/{+name}:wait - Projects Locations Metadata Stores Executions Operations Wait
  • google_vertex_ai_projects_locations_metadata_stores_executions_operations_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Executions Operations Delete
  • google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_get - GET /v1/{+name} - Projects Locations Metadata Stores Metadata Schemas Get
  • google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_create - POST /v1/{+parent}/metadataSchemas - Projects Locations Metadata Stores Metadata Schemas Create
  • google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_list - GET /v1/{+parent}/metadataSchemas - Projects Locations Metadata Stores Metadata Schemas List
  • google_vertex_ai_projects_locations_metadata_stores_operations_get - GET /v1/{+name} - Projects Locations Metadata Stores Operations Get
  • google_vertex_ai_projects_locations_metadata_stores_operations_delete - DELETE /v1/{+name} - Projects Locations Metadata Stores Operations Delete
  • google_vertex_ai_projects_locations_metadata_stores_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Operations Cancel
  • google_vertex_ai_projects_locations_metadata_stores_operations_wait - POST /v1/{+name}:wait - Projects Locations Metadata Stores Operations Wait
  • google_vertex_ai_projects_locations_metadata_stores_operations_list - GET /v1/{+name}/operations - Projects Locations Metadata Stores Operations List

Migratable Resources

  • google_vertex_ai_projects_locations_migratable_resources_batch_migrate - POST /v1/{+parent}/migratableResources:batchMigrate - Projects Locations Migratable Resources Batch Migrate
  • google_vertex_ai_projects_locations_migratable_resources_search - POST /v1/{+parent}/migratableResources:search - Projects Locations Migratable Resources Search
  • google_vertex_ai_projects_locations_migratable_resources_operations_get - GET /v1/{+name} - Projects Locations Migratable Resources Operations Get
  • google_vertex_ai_projects_locations_migratable_resources_operations_list - GET /v1/{+name}/operations - Projects Locations Migratable Resources Operations List
  • google_vertex_ai_projects_locations_migratable_resources_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Migratable Resources Operations Cancel
  • google_vertex_ai_projects_locations_migratable_resources_operations_wait - POST /v1/{+name}:wait - Projects Locations Migratable Resources Operations Wait
  • google_vertex_ai_projects_locations_migratable_resources_operations_delete - DELETE /v1/{+name} - Projects Locations Migratable Resources Operations Delete

Model Deployment Monitoring Jobs

  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_delete - DELETE /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Delete
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_create - POST /v1/{+parent}/modelDeploymentMonitoringJobs - Projects Locations Model Deployment Monitoring Jobs Create
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_list - GET /v1/{+parent}/modelDeploymentMonitoringJobs - Projects Locations Model Deployment Monitoring Jobs List
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_patch - PATCH /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Patch
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_get - GET /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Get
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_pause - POST /v1/{+name}:pause - Projects Locations Model Deployment Monitoring Jobs Pause
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_search_model_deployment_monitoring_stats_anomalies - POST /v1/{+modelDeploymentMonitoringJob}:searchModelDeploymentMonitoringStatsAnomalies - Projects Locations Model Deployment Monitoring Jobs Search Model Deployment Monitoring Stats Anomalies
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_resume - POST /v1/{+name}:resume - Projects Locations Model Deployment Monitoring Jobs Resume
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_get - GET /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Operations Get
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Operations Delete
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Model Deployment Monitoring Jobs Operations List
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Model Deployment Monitoring Jobs Operations Cancel
  • google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_wait - POST /v1/{+name}:wait - Projects Locations Model Deployment Monitoring Jobs Operations Wait

Models

  • google_vertex_ai_projects_locations_models_patch - PATCH /v1/{+name} - Projects Locations Models Patch
  • google_vertex_ai_projects_locations_models_copy - POST /v1/{+parent}/models:copy - Projects Locations Models Copy
  • google_vertex_ai_projects_locations_models_delete - DELETE /v1/{+name} - Projects Locations Models Delete
  • google_vertex_ai_projects_locations_models_get - GET /v1/{+name} - Projects Locations Models Get
  • google_vertex_ai_projects_locations_models_upload - POST /v1/{+parent}/models:upload - Projects Locations Models Upload
  • google_vertex_ai_projects_locations_models_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Models Get Iam Policy
  • google_vertex_ai_projects_locations_models_list - GET /v1/{+parent}/models - Projects Locations Models List
  • google_vertex_ai_projects_locations_models_export - POST /v1/{+name}:export - Projects Locations Models Export
  • google_vertex_ai_projects_locations_models_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Models Test Iam Permissions
  • google_vertex_ai_projects_locations_models_delete_version - DELETE /v1/{+name}:deleteVersion - Projects Locations Models Delete Version
  • google_vertex_ai_projects_locations_models_merge_version_aliases - POST /v1/{+name}:mergeVersionAliases - Projects Locations Models Merge Version Aliases
  • google_vertex_ai_projects_locations_models_list_checkpoints - GET /v1/{+name}:listCheckpoints - Projects Locations Models List Checkpoints
  • google_vertex_ai_projects_locations_models_list_versions - GET /v1/{+name}:listVersions - Projects Locations Models List Versions
  • google_vertex_ai_projects_locations_models_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Models Set Iam Policy
  • google_vertex_ai_projects_locations_models_update_explanation_dataset - POST /v1/{+model}:updateExplanationDataset - Projects Locations Models Update Explanation Dataset
  • google_vertex_ai_projects_locations_models_operations_delete - DELETE /v1/{+name} - Projects Locations Models Operations Delete
  • google_vertex_ai_projects_locations_models_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Models Operations Cancel
  • google_vertex_ai_projects_locations_models_operations_wait - POST /v1/{+name}:wait - Projects Locations Models Operations Wait
  • google_vertex_ai_projects_locations_models_operations_list - GET /v1/{+name}/operations - Projects Locations Models Operations List
  • google_vertex_ai_projects_locations_models_operations_get - GET /v1/{+name} - Projects Locations Models Operations Get
  • google_vertex_ai_projects_locations_models_evaluations_import - POST /v1/{+parent}/evaluations:import - Projects Locations Models Evaluations Import
  • google_vertex_ai_projects_locations_models_evaluations_list - GET /v1/{+parent}/evaluations - Projects Locations Models Evaluations List
  • google_vertex_ai_projects_locations_models_evaluations_get - GET /v1/{+name} - Projects Locations Models Evaluations Get
  • google_vertex_ai_projects_locations_models_evaluations_operations_get - GET /v1/{+name} - Projects Locations Models Evaluations Operations Get
  • google_vertex_ai_projects_locations_models_evaluations_operations_delete - DELETE /v1/{+name} - Projects Locations Models Evaluations Operations Delete
  • google_vertex_ai_projects_locations_models_evaluations_operations_list - GET /v1/{+name}/operations - Projects Locations Models Evaluations Operations List
  • google_vertex_ai_projects_locations_models_evaluations_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Models Evaluations Operations Cancel
  • google_vertex_ai_projects_locations_models_evaluations_operations_wait - POST /v1/{+name}:wait - Projects Locations Models Evaluations Operations Wait
  • google_vertex_ai_projects_locations_models_evaluations_slices_list - GET /v1/{+parent}/slices - Projects Locations Models Evaluations Slices List
  • google_vertex_ai_projects_locations_models_evaluations_slices_batch_import - POST /v1/{+parent}:batchImport - Projects Locations Models Evaluations Slices Batch Import
  • google_vertex_ai_projects_locations_models_evaluations_slices_get - GET /v1/{+name} - Projects Locations Models Evaluations Slices Get

Nas Jobs

  • google_vertex_ai_projects_locations_nas_jobs_delete - DELETE /v1/{+name} - Projects Locations Nas Jobs Delete
  • google_vertex_ai_projects_locations_nas_jobs_create - POST /v1/{+parent}/nasJobs - Projects Locations Nas Jobs Create
  • google_vertex_ai_projects_locations_nas_jobs_list - GET /v1/{+parent}/nasJobs - Projects Locations Nas Jobs List
  • google_vertex_ai_projects_locations_nas_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Nas Jobs Cancel
  • google_vertex_ai_projects_locations_nas_jobs_get - GET /v1/{+name} - Projects Locations Nas Jobs Get
  • google_vertex_ai_projects_locations_nas_jobs_nas_trial_details_get - GET /v1/{+name} - Projects Locations Nas Jobs Nas Trial Details Get
  • google_vertex_ai_projects_locations_nas_jobs_nas_trial_details_list - GET /v1/{+parent}/nasTrialDetails - Projects Locations Nas Jobs Nas Trial Details List

Notebook Execution Jobs

  • google_vertex_ai_projects_locations_notebook_execution_jobs_create - POST /v1/{+parent}/notebookExecutionJobs - Projects Locations Notebook Execution Jobs Create
  • google_vertex_ai_projects_locations_notebook_execution_jobs_list - GET /v1/{+parent}/notebookExecutionJobs - Projects Locations Notebook Execution Jobs List
  • google_vertex_ai_projects_locations_notebook_execution_jobs_get - GET /v1/{+name} - Projects Locations Notebook Execution Jobs Get
  • google_vertex_ai_projects_locations_notebook_execution_jobs_delete - DELETE /v1/{+name} - Projects Locations Notebook Execution Jobs Delete
  • google_vertex_ai_projects_locations_notebook_execution_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Notebook Execution Jobs Operations Delete
  • google_vertex_ai_projects_locations_notebook_execution_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Notebook Execution Jobs Operations List
  • google_vertex_ai_projects_locations_notebook_execution_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Notebook Execution Jobs Operations Cancel
  • google_vertex_ai_projects_locations_notebook_execution_jobs_operations_wait - POST /v1/{+name}:wait - Projects Locations Notebook Execution Jobs Operations Wait
  • google_vertex_ai_projects_locations_notebook_execution_jobs_operations_get - GET /v1/{+name} - Projects Locations Notebook Execution Jobs Operations Get

Notebook Runtime Templates

  • google_vertex_ai_projects_locations_notebook_runtime_templates_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Notebook Runtime Templates Set Iam Policy
  • google_vertex_ai_projects_locations_notebook_runtime_templates_get - GET /v1/{+name} - Projects Locations Notebook Runtime Templates Get
  • google_vertex_ai_projects_locations_notebook_runtime_templates_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Notebook Runtime Templates Get Iam Policy
  • google_vertex_ai_projects_locations_notebook_runtime_templates_create - POST /v1/{+parent}/notebookRuntimeTemplates - Projects Locations Notebook Runtime Templates Create
  • google_vertex_ai_projects_locations_notebook_runtime_templates_list - GET /v1/{+parent}/notebookRuntimeTemplates - Projects Locations Notebook Runtime Templates List
  • google_vertex_ai_projects_locations_notebook_runtime_templates_patch - PATCH /v1/{+name} - Projects Locations Notebook Runtime Templates Patch
  • google_vertex_ai_projects_locations_notebook_runtime_templates_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Notebook Runtime Templates Test Iam Permissions
  • google_vertex_ai_projects_locations_notebook_runtime_templates_delete - DELETE /v1/{+name} - Projects Locations Notebook Runtime Templates Delete
  • google_vertex_ai_projects_locations_notebook_runtime_templates_operations_list - GET /v1/{+name}/operations - Projects Locations Notebook Runtime Templates Operations List
  • google_vertex_ai_projects_locations_notebook_runtime_templates_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Notebook Runtime Templates Operations Cancel
  • google_vertex_ai_projects_locations_notebook_runtime_templates_operations_wait - POST /v1/{+name}:wait - Projects Locations Notebook Runtime Templates Operations Wait
  • google_vertex_ai_projects_locations_notebook_runtime_templates_operations_delete - DELETE /v1/{+name} - Projects Locations Notebook Runtime Templates Operations Delete
  • google_vertex_ai_projects_locations_notebook_runtime_templates_operations_get - GET /v1/{+name} - Projects Locations Notebook Runtime Templates Operations Get

Notebook Runtimes

  • google_vertex_ai_projects_locations_notebook_runtimes_delete - DELETE /v1/{+name} - Projects Locations Notebook Runtimes Delete
  • google_vertex_ai_projects_locations_notebook_runtimes_upgrade - POST /v1/{+name}:upgrade - Projects Locations Notebook Runtimes Upgrade
  • google_vertex_ai_projects_locations_notebook_runtimes_start - POST /v1/{+name}:start - Projects Locations Notebook Runtimes Start
  • google_vertex_ai_projects_locations_notebook_runtimes_list - GET /v1/{+parent}/notebookRuntimes - Projects Locations Notebook Runtimes List
  • google_vertex_ai_projects_locations_notebook_runtimes_assign - POST /v1/{+parent}/notebookRuntimes:assign - Projects Locations Notebook Runtimes Assign
  • google_vertex_ai_projects_locations_notebook_runtimes_get - GET /v1/{+name} - Projects Locations Notebook Runtimes Get
  • google_vertex_ai_projects_locations_notebook_runtimes_stop - POST /v1/{+name}:stop - Projects Locations Notebook Runtimes Stop
  • google_vertex_ai_projects_locations_notebook_runtimes_operations_get - GET /v1/{+name} - Projects Locations Notebook Runtimes Operations Get
  • google_vertex_ai_projects_locations_notebook_runtimes_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Notebook Runtimes Operations Cancel
  • google_vertex_ai_projects_locations_notebook_runtimes_operations_wait - POST /v1/{+name}:wait - Projects Locations Notebook Runtimes Operations Wait
  • google_vertex_ai_projects_locations_notebook_runtimes_operations_list - GET /v1/{+name}/operations - Projects Locations Notebook Runtimes Operations List
  • google_vertex_ai_projects_locations_notebook_runtimes_operations_delete - DELETE /v1/{+name} - Projects Locations Notebook Runtimes Operations Delete

Operations

  • google_vertex_ai_reasoning_engines_sandbox_environments_operations_cancel - POST /v1/{+name}:cancel - Reasoning Engines Sandbox Environments Operations Cancel
  • google_vertex_ai_reasoning_engines_sandbox_environments_operations_wait - POST /v1/{+name}:wait - Reasoning Engines Sandbox Environments Operations Wait
  • google_vertex_ai_reasoning_engines_sandbox_environments_operations_get - GET /v1/{+name} - Reasoning Engines Sandbox Environments Operations Get
  • google_vertex_ai_reasoning_engines_sandbox_environments_operations_delete - DELETE /v1/{+name} - Reasoning Engines Sandbox Environments Operations Delete
  • google_vertex_ai_reasoning_engines_sessions_operations_delete - DELETE /v1/{+name} - Reasoning Engines Sessions Operations Delete
  • google_vertex_ai_reasoning_engines_sessions_operations_list - GET /v1/{+name}/operations - Reasoning Engines Sessions Operations List
  • google_vertex_ai_reasoning_engines_sessions_operations_cancel - POST /v1/{+name}:cancel - Reasoning Engines Sessions Operations Cancel
  • google_vertex_ai_reasoning_engines_sessions_operations_wait - POST /v1/{+name}:wait - Reasoning Engines Sessions Operations Wait
  • google_vertex_ai_reasoning_engines_sessions_operations_get - GET /v1/{+name} - Reasoning Engines Sessions Operations Get
  • google_vertex_ai_reasoning_engines_memories_operations_get - GET /v1/{+name} - Reasoning Engines Memories Operations Get
  • google_vertex_ai_reasoning_engines_memories_operations_cancel - POST /v1/{+name}:cancel - Reasoning Engines Memories Operations Cancel
  • google_vertex_ai_reasoning_engines_memories_operations_wait - POST /v1/{+name}:wait - Reasoning Engines Memories Operations Wait
  • google_vertex_ai_reasoning_engines_memories_operations_list - GET /v1/{+name}/operations - Reasoning Engines Memories Operations List
  • google_vertex_ai_reasoning_engines_memories_operations_delete - DELETE /v1/{+name} - Reasoning Engines Memories Operations Delete
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_cancel - POST /v1/{+name}:cancel - Reasoning Engines Sandbox Environment Snapshots Operations Cancel
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_wait - POST /v1/{+name}:wait - Reasoning Engines Sandbox Environment Snapshots Operations Wait
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_delete - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Operations Delete
  • google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_get - GET /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Operations Get
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_delete - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Templates Operations Delete
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_get - GET /v1/{+name} - Reasoning Engines Sandbox Environment Templates Operations Get
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_cancel - POST /v1/{+name}:cancel - Reasoning Engines Sandbox Environment Templates Operations Cancel
  • google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_wait - POST /v1/{+name}:wait - Reasoning Engines Sandbox Environment Templates Operations Wait
  • google_vertex_ai_studies_trials_operations_list - GET /v1/{+name}/operations - Studies Trials Operations List
  • google_vertex_ai_studies_trials_operations_cancel - POST /v1/{+name}:cancel - Studies Trials Operations Cancel
  • google_vertex_ai_studies_trials_operations_wait - POST /v1/{+name}:wait - Studies Trials Operations Wait
  • google_vertex_ai_studies_trials_operations_delete - DELETE /v1/{+name} - Studies Trials Operations Delete
  • google_vertex_ai_studies_trials_operations_get - GET /v1/{+name} - Studies Trials Operations Get
  • google_vertex_ai_models_evaluations_operations_cancel - POST /v1/{+name}:cancel - Models Evaluations Operations Cancel
  • google_vertex_ai_models_evaluations_operations_wait - POST /v1/{+name}:wait - Models Evaluations Operations Wait
  • google_vertex_ai_models_evaluations_operations_list - GET /v1/{+name}/operations - Models Evaluations Operations List
  • google_vertex_ai_models_evaluations_operations_delete - DELETE /v1/{+name} - Models Evaluations Operations Delete
  • google_vertex_ai_models_evaluations_operations_get - GET /v1/{+name} - Models Evaluations Operations Get
  • google_vertex_ai_feature_groups_features_operations_list_wait - GET /v1/{+name}:wait - Feature Groups Features Operations List Wait
  • google_vertex_ai_feature_groups_features_operations_wait - POST /v1/{+name}:wait - Feature Groups Features Operations Wait
  • google_vertex_ai_feature_groups_features_operations_get - GET /v1/{+name} - Feature Groups Features Operations Get
  • google_vertex_ai_feature_groups_features_operations_delete - DELETE /v1/{+name} - Feature Groups Features Operations Delete
  • google_vertex_ai_projects_locations_operations_delete - DELETE /v1/{+name} - Projects Locations Operations Delete
  • google_vertex_ai_projects_locations_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Operations Cancel
  • google_vertex_ai_projects_locations_operations_wait - POST /v1/{+name}:wait - Projects Locations Operations Wait
  • google_vertex_ai_projects_locations_operations_list - GET /v1/{+name}/operations - Projects Locations Operations List
  • google_vertex_ai_projects_locations_operations_get - GET /v1/{+name} - Projects Locations Operations Get
  • google_vertex_ai_rag_corpora_rag_files_operations_get - GET /v1/{+name} - Rag Corpora Rag Files Operations Get
  • google_vertex_ai_rag_corpora_rag_files_operations_list - GET /v1/{+name}/operations - Rag Corpora Rag Files Operations List
  • google_vertex_ai_rag_corpora_rag_files_operations_cancel - POST /v1/{+name}:cancel - Rag Corpora Rag Files Operations Cancel
  • google_vertex_ai_rag_corpora_rag_files_operations_wait - POST /v1/{+name}:wait - Rag Corpora Rag Files Operations Wait
  • google_vertex_ai_rag_corpora_rag_files_operations_delete - DELETE /v1/{+name} - Rag Corpora Rag Files Operations Delete
  • google_vertex_ai_tensorboards_experiments_operations_cancel - POST /v1/{+name}:cancel - Tensorboards Experiments Operations Cancel
  • google_vertex_ai_tensorboards_experiments_operations_wait - POST /v1/{+name}:wait - Tensorboards Experiments Operations Wait
  • google_vertex_ai_tensorboards_experiments_operations_list - GET /v1/{+name}/operations - Tensorboards Experiments Operations List
  • google_vertex_ai_tensorboards_experiments_operations_delete - DELETE /v1/{+name} - Tensorboards Experiments Operations Delete
  • google_vertex_ai_tensorboards_experiments_operations_get - GET /v1/{+name} - Tensorboards Experiments Operations Get
  • google_vertex_ai_feature_online_stores_feature_views_operations_wait - POST /v1/{+name}:wait - Feature Online Stores Feature Views Operations Wait
  • google_vertex_ai_feature_online_stores_feature_views_operations_list_wait - GET /v1/{+name}:wait - Feature Online Stores Feature Views Operations List Wait
  • google_vertex_ai_feature_online_stores_feature_views_operations_delete - DELETE /v1/{+name} - Feature Online Stores Feature Views Operations Delete
  • google_vertex_ai_feature_online_stores_feature_views_operations_get - GET /v1/{+name} - Feature Online Stores Feature Views Operations Get
  • google_vertex_ai_datasets_saved_queries_operations_delete - DELETE /v1/{+name} - Datasets Saved Queries Operations Delete
  • google_vertex_ai_datasets_saved_queries_operations_list - GET /v1/{+name}/operations - Datasets Saved Queries Operations List
  • google_vertex_ai_datasets_saved_queries_operations_cancel - POST /v1/{+name}:cancel - Datasets Saved Queries Operations Cancel
  • google_vertex_ai_datasets_saved_queries_operations_wait - POST /v1/{+name}:wait - Datasets Saved Queries Operations Wait
  • google_vertex_ai_datasets_saved_queries_operations_get - GET /v1/{+name} - Datasets Saved Queries Operations Get
  • google_vertex_ai_datasets_annotation_specs_operations_delete - DELETE /v1/{+name} - Datasets Annotation Specs Operations Delete
  • google_vertex_ai_datasets_annotation_specs_operations_cancel - POST /v1/{+name}:cancel - Datasets Annotation Specs Operations Cancel
  • google_vertex_ai_datasets_annotation_specs_operations_wait - POST /v1/{+name}:wait - Datasets Annotation Specs Operations Wait
  • google_vertex_ai_datasets_annotation_specs_operations_list - GET /v1/{+name}/operations - Datasets Annotation Specs Operations List
  • google_vertex_ai_datasets_annotation_specs_operations_get - GET /v1/{+name} - Datasets Annotation Specs Operations Get
  • google_vertex_ai_datasets_data_items_operations_cancel - POST /v1/{+name}:cancel - Datasets Data Items Operations Cancel
  • google_vertex_ai_datasets_data_items_operations_wait - POST /v1/{+name}:wait - Datasets Data Items Operations Wait
  • google_vertex_ai_datasets_data_items_operations_list - GET /v1/{+name}/operations - Datasets Data Items Operations List
  • google_vertex_ai_datasets_data_items_operations_delete - DELETE /v1/{+name} - Datasets Data Items Operations Delete
  • google_vertex_ai_datasets_data_items_operations_get - GET /v1/{+name} - Datasets Data Items Operations Get
  • google_vertex_ai_featurestores_entity_types_operations_delete - DELETE /v1/{+name} - Featurestores Entity Types Operations Delete
  • google_vertex_ai_featurestores_entity_types_operations_cancel - POST /v1/{+name}:cancel - Featurestores Entity Types Operations Cancel
  • google_vertex_ai_featurestores_entity_types_operations_wait - POST /v1/{+name}:wait - Featurestores Entity Types Operations Wait
  • google_vertex_ai_featurestores_entity_types_operations_list - GET /v1/{+name}/operations - Featurestores Entity Types Operations List
  • google_vertex_ai_featurestores_entity_types_operations_get - GET /v1/{+name} - Featurestores Entity Types Operations Get
  • google_vertex_ai_metadata_stores_artifacts_operations_delete - DELETE /v1/{+name} - Metadata Stores Artifacts Operations Delete
  • google_vertex_ai_metadata_stores_artifacts_operations_cancel - POST /v1/{+name}:cancel - Metadata Stores Artifacts Operations Cancel
  • google_vertex_ai_metadata_stores_artifacts_operations_wait - POST /v1/{+name}:wait - Metadata Stores Artifacts Operations Wait
  • google_vertex_ai_metadata_stores_artifacts_operations_list - GET /v1/{+name}/operations - Metadata Stores Artifacts Operations List
  • google_vertex_ai_metadata_stores_artifacts_operations_get - GET /v1/{+name} - Metadata Stores Artifacts Operations Get
  • google_vertex_ai_metadata_stores_contexts_operations_get - GET /v1/{+name} - Metadata Stores Contexts Operations Get
  • google_vertex_ai_metadata_stores_contexts_operations_delete - DELETE /v1/{+name} - Metadata Stores Contexts Operations Delete
  • google_vertex_ai_metadata_stores_contexts_operations_cancel - POST /v1/{+name}:cancel - Metadata Stores Contexts Operations Cancel
  • google_vertex_ai_metadata_stores_contexts_operations_wait - POST /v1/{+name}:wait - Metadata Stores Contexts Operations Wait
  • google_vertex_ai_metadata_stores_contexts_operations_list - GET /v1/{+name}/operations - Metadata Stores Contexts Operations List
  • google_vertex_ai_metadata_stores_executions_operations_get - GET /v1/{+name} - Metadata Stores Executions Operations Get
  • google_vertex_ai_metadata_stores_executions_operations_delete - DELETE /v1/{+name} - Metadata Stores Executions Operations Delete
  • google_vertex_ai_metadata_stores_executions_operations_list - GET /v1/{+name}/operations - Metadata Stores Executions Operations List
  • google_vertex_ai_metadata_stores_executions_operations_cancel - POST /v1/{+name}:cancel - Metadata Stores Executions Operations Cancel
  • google_vertex_ai_metadata_stores_executions_operations_wait - POST /v1/{+name}:wait - Metadata Stores Executions Operations Wait

Patch

  • google_vertex_ai_reasoning_engines_patch - PATCH /v1/{+name} - Reasoning Engines Patch
  • google_vertex_ai_datasets_patch - PATCH /v1/{+name} - Datasets Patch
  • google_vertex_ai_datasets_dataset_versions_patch - PATCH /v1/{+name} - Datasets Dataset Versions Patch

Persistent Resources

  • google_vertex_ai_projects_locations_persistent_resources_delete - DELETE /v1/{+name} - Projects Locations Persistent Resources Delete
  • google_vertex_ai_projects_locations_persistent_resources_create - POST /v1/{+parent}/persistentResources - Projects Locations Persistent Resources Create
  • google_vertex_ai_projects_locations_persistent_resources_list - GET /v1/{+parent}/persistentResources - Projects Locations Persistent Resources List
  • google_vertex_ai_projects_locations_persistent_resources_patch - PATCH /v1/{+name} - Projects Locations Persistent Resources Patch
  • google_vertex_ai_projects_locations_persistent_resources_get - GET /v1/{+name} - Projects Locations Persistent Resources Get
  • google_vertex_ai_projects_locations_persistent_resources_reboot - POST /v1/{+name}:reboot - Projects Locations Persistent Resources Reboot
  • google_vertex_ai_projects_locations_persistent_resources_operations_delete - DELETE /v1/{+name} - Projects Locations Persistent Resources Operations Delete
  • google_vertex_ai_projects_locations_persistent_resources_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Persistent Resources Operations Cancel
  • google_vertex_ai_projects_locations_persistent_resources_operations_wait - POST /v1/{+name}:wait - Projects Locations Persistent Resources Operations Wait
  • google_vertex_ai_projects_locations_persistent_resources_operations_list - GET /v1/{+name}/operations - Projects Locations Persistent Resources Operations List
  • google_vertex_ai_projects_locations_persistent_resources_operations_get - GET /v1/{+name} - Projects Locations Persistent Resources Operations Get

Pipeline Jobs

  • google_vertex_ai_projects_locations_pipeline_jobs_delete - DELETE /v1/{+name} - Projects Locations Pipeline Jobs Delete
  • google_vertex_ai_projects_locations_pipeline_jobs_batch_delete - POST /v1/{+parent}/pipelineJobs:batchDelete - Projects Locations Pipeline Jobs Batch Delete
  • google_vertex_ai_projects_locations_pipeline_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Pipeline Jobs Cancel
  • google_vertex_ai_projects_locations_pipeline_jobs_create - POST /v1/{+parent}/pipelineJobs - Projects Locations Pipeline Jobs Create
  • google_vertex_ai_projects_locations_pipeline_jobs_list - GET /v1/{+parent}/pipelineJobs - Projects Locations Pipeline Jobs List
  • google_vertex_ai_projects_locations_pipeline_jobs_batch_cancel - POST /v1/{+parent}/pipelineJobs:batchCancel - Projects Locations Pipeline Jobs Batch Cancel
  • google_vertex_ai_projects_locations_pipeline_jobs_get - GET /v1/{+name} - Projects Locations Pipeline Jobs Get
  • google_vertex_ai_projects_locations_pipeline_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Pipeline Jobs Operations Cancel
  • google_vertex_ai_projects_locations_pipeline_jobs_operations_wait - POST /v1/{+name}:wait - Projects Locations Pipeline Jobs Operations Wait
  • google_vertex_ai_projects_locations_pipeline_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Pipeline Jobs Operations List
  • google_vertex_ai_projects_locations_pipeline_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Pipeline Jobs Operations Delete
  • google_vertex_ai_projects_locations_pipeline_jobs_operations_get - GET /v1/{+name} - Projects Locations Pipeline Jobs Operations Get

Predict

  • google_vertex_ai_endpoints_predict - POST /v1/{+endpoint}:predict - Endpoints Predict
  • google_vertex_ai_publishers_models_predict - POST /v1/{+endpoint}:predict - Publishers Models Predict

Predict Long Running

  • google_vertex_ai_endpoints_predict_long_running - POST /v1/{+endpoint}:predictLongRunning - Endpoints Predict Long Running
  • google_vertex_ai_publishers_models_predict_long_running - POST /v1/{+endpoint}:predictLongRunning - Publishers Models Predict Long Running

Publishers

  • google_vertex_ai_projects_locations_publishers_models_stream_generate_content - POST /v1/{+model}:streamGenerateContent - Projects Locations Publishers Models Stream Generate Content
  • google_vertex_ai_projects_locations_publishers_models_predict - POST /v1/{+endpoint}:predict - Projects Locations Publishers Models Predict
  • google_vertex_ai_projects_locations_publishers_models_embed_content - POST /v1/{+model}:embedContent - Projects Locations Publishers Models Embed Content
  • google_vertex_ai_projects_locations_publishers_models_stream_raw_predict - POST /v1/{+endpoint}:streamRawPredict - Projects Locations Publishers Models Stream Raw Predict
  • google_vertex_ai_projects_locations_publishers_models_server_streaming_predict - POST /v1/{+endpoint}:serverStreamingPredict - Projects Locations Publishers Models Server Streaming Predict
  • google_vertex_ai_projects_locations_publishers_models_predict_long_running - POST /v1/{+endpoint}:predictLongRunning - Projects Locations Publishers Models Predict Long Running
  • google_vertex_ai_projects_locations_publishers_models_fetch_predict_operation - POST /v1/{+endpoint}:fetchPredictOperation - Projects Locations Publishers Models Fetch Predict Operation
  • google_vertex_ai_projects_locations_publishers_models_compute_tokens - POST /v1/{+endpoint}:computeTokens - Projects Locations Publishers Models Compute Tokens
  • google_vertex_ai_projects_locations_publishers_models_count_tokens - POST /v1/{+endpoint}:countTokens - Projects Locations Publishers Models Count Tokens
  • google_vertex_ai_projects_locations_publishers_models_generate_content - POST /v1/{+model}:generateContent - Projects Locations Publishers Models Generate Content
  • google_vertex_ai_projects_locations_publishers_models_raw_predict - POST /v1/{+endpoint}:rawPredict - Projects Locations Publishers Models Raw Predict
  • google_vertex_ai_projects_locations_publishers_models_invoke_invoke - POST /v1/{+endpoint}/invoke/{+invokeId} - Projects Locations Publishers Models Invoke Invoke

Query

  • google_vertex_ai_reasoning_engines_query - POST /v1/{+name}:query - Reasoning Engines Query
  • google_vertex_ai_reasoning_engines_runtime_revisions_query - POST /v1/{+name}:query - Reasoning Engines Runtime Revisions Query

Rag Corpora

  • google_vertex_ai_projects_locations_rag_corpora_create - POST /v1/{+parent}/ragCorpora - Projects Locations Rag Corpora Create
  • google_vertex_ai_projects_locations_rag_corpora_patch - PATCH /v1/{+name} - Projects Locations Rag Corpora Patch
  • google_vertex_ai_projects_locations_rag_corpora_list - GET /v1/{+parent}/ragCorpora - Projects Locations Rag Corpora List
  • google_vertex_ai_projects_locations_rag_corpora_delete - DELETE /v1/{+name} - Projects Locations Rag Corpora Delete
  • google_vertex_ai_projects_locations_rag_corpora_get - GET /v1/{+name} - Projects Locations Rag Corpora Get
  • google_vertex_ai_projects_locations_rag_corpora_operations_get - GET /v1/{+name} - Projects Locations Rag Corpora Operations Get
  • google_vertex_ai_projects_locations_rag_corpora_operations_list - GET /v1/{+name}/operations - Projects Locations Rag Corpora Operations List
  • google_vertex_ai_projects_locations_rag_corpora_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Rag Corpora Operations Cancel
  • google_vertex_ai_projects_locations_rag_corpora_operations_wait - POST /v1/{+name}:wait - Projects Locations Rag Corpora Operations Wait
  • google_vertex_ai_projects_locations_rag_corpora_operations_delete - DELETE /v1/{+name} - Projects Locations Rag Corpora Operations Delete
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_get - GET /v1/{+name} - Projects Locations Rag Corpora Rag Files Get
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_delete - DELETE /v1/{+name} - Projects Locations Rag Corpora Rag Files Delete
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_import - POST /v1/{+parent}/ragFiles:import - Projects Locations Rag Corpora Rag Files Import
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_list - GET /v1/{+parent}/ragFiles - Projects Locations Rag Corpora Rag Files List
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_list - GET /v1/{+name}/operations - Projects Locations Rag Corpora Rag Files Operations List
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Rag Corpora Rag Files Operations Cancel
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_wait - POST /v1/{+name}:wait - Projects Locations Rag Corpora Rag Files Operations Wait
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_delete - DELETE /v1/{+name} - Projects Locations Rag Corpora Rag Files Operations Delete
  • google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_get - GET /v1/{+name} - Projects Locations Rag Corpora Rag Files Operations Get

Rag Engine Config

  • google_vertex_ai_projects_locations_rag_engine_config_operations_list - GET /v1/{+name}/operations - Projects Locations Rag Engine Config Operations List
  • google_vertex_ai_projects_locations_rag_engine_config_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Rag Engine Config Operations Cancel
  • google_vertex_ai_projects_locations_rag_engine_config_operations_wait - POST /v1/{+name}:wait - Projects Locations Rag Engine Config Operations Wait
  • google_vertex_ai_projects_locations_rag_engine_config_operations_delete - DELETE /v1/{+name} - Projects Locations Rag Engine Config Operations Delete
  • google_vertex_ai_projects_locations_rag_engine_config_operations_get - GET /v1/{+name} - Projects Locations Rag Engine Config Operations Get

Reasoning Engines

  • google_vertex_ai_projects_locations_reasoning_engines_set_iam_policy - POST /v1/{+resource}:setIamPolicy - Projects Locations Reasoning Engines Set Iam Policy
  • google_vertex_ai_projects_locations_reasoning_engines_execute_code - POST /v1/{+name}:executeCode - Projects Locations Reasoning Engines Execute Code
  • google_vertex_ai_projects_locations_reasoning_engines_create - POST /v1/{+parent}/reasoningEngines - Projects Locations Reasoning Engines Create
  • google_vertex_ai_projects_locations_reasoning_engines_get - GET /v1/{+name} - Projects Locations Reasoning Engines Get
  • google_vertex_ai_projects_locations_reasoning_engines_query - POST /v1/{+name}:query - Projects Locations Reasoning Engines Query
  • google_vertex_ai_projects_locations_reasoning_engines_test_iam_permissions - POST /v1/{+resource}:testIamPermissions - Projects Locations Reasoning Engines Test Iam Permissions
  • google_vertex_ai_projects_locations_reasoning_engines_stream_query - POST /v1/{+name}:streamQuery - Projects Locations Reasoning Engines Stream Query
  • google_vertex_ai_projects_locations_reasoning_engines_async_query - POST /v1/{+name}:asyncQuery - Projects Locations Reasoning Engines Async Query
  • google_vertex_ai_projects_locations_reasoning_engines_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Delete
  • google_vertex_ai_projects_locations_reasoning_engines_get_iam_policy - POST /v1/{+resource}:getIamPolicy - Projects Locations Reasoning Engines Get Iam Policy
  • google_vertex_ai_projects_locations_reasoning_engines_list - GET /v1/{+parent}/reasoningEngines - Projects Locations Reasoning Engines List
  • google_vertex_ai_projects_locations_reasoning_engines_patch - PATCH /v1/{+name} - Projects Locations Reasoning Engines Patch
  • google_vertex_ai_projects_locations_reasoning_engines_memories_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Memories Delete
  • google_vertex_ai_projects_locations_reasoning_engines_memories_patch - PATCH /v1/{+name} - Projects Locations Reasoning Engines Memories Patch
  • google_vertex_ai_projects_locations_reasoning_engines_memories_list - GET /v1/{+parent}/memories - Projects Locations Reasoning Engines Memories List
  • google_vertex_ai_projects_locations_reasoning_engines_memories_generate - POST /v1/{+parent}/memories:generate - Projects Locations Reasoning Engines Memories Generate
  • google_vertex_ai_projects_locations_reasoning_engines_memories_get - GET /v1/{+name} - Projects Locations Reasoning Engines Memories Get
  • google_vertex_ai_projects_locations_reasoning_engines_memories_create - POST /v1/{+parent}/memories - Projects Locations Reasoning Engines Memories Create
  • google_vertex_ai_projects_locations_reasoning_engines_memories_retrieve - POST /v1/{+parent}/memories:retrieve - Projects Locations Reasoning Engines Memories Retrieve
  • google_vertex_ai_projects_locations_reasoning_engines_memories_purge - POST /v1/{+parent}/memories:purge - Projects Locations Reasoning Engines Memories Purge
  • google_vertex_ai_projects_locations_reasoning_engines_memories_rollback - POST /v1/{+name}:rollback - Projects Locations Reasoning Engines Memories Rollback
  • google_vertex_ai_projects_locations_reasoning_engines_memories_operations_get - GET /v1/{+name} - Projects Locations Reasoning Engines Memories Operations Get
  • google_vertex_ai_projects_locations_reasoning_engines_memories_operations_list - GET /v1/{+name}/operations - Projects Locations Reasoning Engines Memories Operations List
  • google_vertex_ai_projects_locations_reasoning_engines_memories_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Memories Operations Cancel
  • google_vertex_ai_projects_locations_reasoning_engines_memories_operations_wait - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Memories Operations Wait
  • google_vertex_ai_projects_locations_reasoning_engines_memories_operations_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Memories Operations Delete
  • google_vertex_ai_projects_locations_reasoning_engines_memories_revisions_get - GET /v1/{+name} - Projects Locations Reasoning Engines Memories Revisions Get
  • google_vertex_ai_projects_locations_reasoning_engines_memories_revisions_list - GET /v1/{+parent}/revisions - Projects Locations Reasoning Engines Memories Revisions List
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_list - GET /v1/{+parent}/sandboxEnvironmentSnapshots - Projects Locations Reasoning Engines Sandbox Environment Snapshots List
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Get
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Cancel
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_wait - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Wait
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Get
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_create - POST /v1/{+parent}/sandboxEnvironmentTemplates - Projects Locations Reasoning Engines Sandbox Environment Templates Create
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_list - GET /v1/{+parent}/sandboxEnvironmentTemplates - Projects Locations Reasoning Engines Sandbox Environment Templates List
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Get
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Get
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Cancel
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_wait - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Wait
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sessions Get
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sessions Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_append_event - POST /v1/{+name}:appendEvent - Projects Locations Reasoning Engines Sessions Append Event
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_create - POST /v1/{+parent}/sessions - Projects Locations Reasoning Engines Sessions Create
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_list - GET /v1/{+parent}/sessions - Projects Locations Reasoning Engines Sessions List
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_patch - PATCH /v1/{+name} - Projects Locations Reasoning Engines Sessions Patch
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sessions Operations Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_list - GET /v1/{+name}/operations - Projects Locations Reasoning Engines Sessions Operations List
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sessions Operations Cancel
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_wait - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sessions Operations Wait
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sessions Operations Get
  • google_vertex_ai_projects_locations_reasoning_engines_sessions_events_list - GET /v1/{+parent}/events - Projects Locations Reasoning Engines Sessions Events List
  • google_vertex_ai_projects_locations_reasoning_engines_operations_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Operations Delete
  • google_vertex_ai_projects_locations_reasoning_engines_operations_list - GET /v1/{+name}/operations - Projects Locations Reasoning Engines Operations List
  • google_vertex_ai_projects_locations_reasoning_engines_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Operations Cancel
  • google_vertex_ai_projects_locations_reasoning_engines_operations_wait - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Operations Wait
  • google_vertex_ai_projects_locations_reasoning_engines_operations_get - GET /v1/{+name} - Projects Locations Reasoning Engines Operations Get
  • google_vertex_ai_projects_locations_reasoning_engines_runtime_revisions_stream_query - POST /v1/{+name}:streamQuery - Projects Locations Reasoning Engines Runtime Revisions Stream Query
  • google_vertex_ai_projects_locations_reasoning_engines_runtime_revisions_query - POST /v1/{+name}:query - Projects Locations Reasoning Engines Runtime Revisions Query
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_snapshot - POST /v1/{+name}:snapshot - Projects Locations Reasoning Engines Sandbox Environments Snapshot
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Get
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_create - POST /v1/{+parent}/sandboxEnvironments - Projects Locations Reasoning Engines Sandbox Environments Create
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_list - GET /v1/{+parent}/sandboxEnvironments - Projects Locations Reasoning Engines Sandbox Environments List
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_execute - POST /v1/{+name}:execute - Projects Locations Reasoning Engines Sandbox Environments Execute
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sandbox Environments Operations Cancel
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_wait - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sandbox Environments Operations Wait
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_delete - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Operations Delete
  • google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_get - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Operations Get

Restore

  • google_vertex_ai_datasets_dataset_versions_restore - GET /v1/{+name}:restore - Datasets Dataset Versions Restore

Retrieve Contexts

  • google_vertex_ai_projects_locations_retrieve_contexts - POST /v1/{+parent}:retrieveContexts - Projects Locations Retrieve Contexts

Runs

  • google_vertex_ai_tensorboards_experiments_runs_operations_delete - DELETE /v1/{+name} - Tensorboards Experiments Runs Operations Delete
  • google_vertex_ai_tensorboards_experiments_runs_operations_cancel - POST /v1/{+name}:cancel - Tensorboards Experiments Runs Operations Cancel
  • google_vertex_ai_tensorboards_experiments_runs_operations_wait - POST /v1/{+name}:wait - Tensorboards Experiments Runs Operations Wait
  • google_vertex_ai_tensorboards_experiments_runs_operations_list - GET /v1/{+name}/operations - Tensorboards Experiments Runs Operations List
  • google_vertex_ai_tensorboards_experiments_runs_operations_get - GET /v1/{+name} - Tensorboards Experiments Runs Operations Get
  • google_vertex_ai_tensorboards_experiments_runs_time_series_operations_delete - DELETE /v1/{+name} - Tensorboards Experiments Runs Time Series Operations Delete
  • google_vertex_ai_tensorboards_experiments_runs_time_series_operations_cancel - POST /v1/{+name}:cancel - Tensorboards Experiments Runs Time Series Operations Cancel
  • google_vertex_ai_tensorboards_experiments_runs_time_series_operations_wait - POST /v1/{+name}:wait - Tensorboards Experiments Runs Time Series Operations Wait
  • google_vertex_ai_tensorboards_experiments_runs_time_series_operations_list - GET /v1/{+name}/operations - Tensorboards Experiments Runs Time Series Operations List
  • google_vertex_ai_tensorboards_experiments_runs_time_series_operations_get - GET /v1/{+name} - Tensorboards Experiments Runs Time Series Operations Get

Schedules

  • google_vertex_ai_projects_locations_schedules_create - POST /v1/{+parent}/schedules - Projects Locations Schedules Create
  • google_vertex_ai_projects_locations_schedules_list - GET /v1/{+parent}/schedules - Projects Locations Schedules List
  • google_vertex_ai_projects_locations_schedules_patch - PATCH /v1/{+name} - Projects Locations Schedules Patch
  • google_vertex_ai_projects_locations_schedules_delete - DELETE /v1/{+name} - Projects Locations Schedules Delete
  • google_vertex_ai_projects_locations_schedules_resume - POST /v1/{+name}:resume - Projects Locations Schedules Resume
  • google_vertex_ai_projects_locations_schedules_pause - POST /v1/{+name}:pause - Projects Locations Schedules Pause
  • google_vertex_ai_projects_locations_schedules_get - GET /v1/{+name} - Projects Locations Schedules Get
  • google_vertex_ai_projects_locations_schedules_operations_delete - DELETE /v1/{+name} - Projects Locations Schedules Operations Delete
  • google_vertex_ai_projects_locations_schedules_operations_list - GET /v1/{+name}/operations - Projects Locations Schedules Operations List
  • google_vertex_ai_projects_locations_schedules_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Schedules Operations Cancel
  • google_vertex_ai_projects_locations_schedules_operations_wait - POST /v1/{+name}:wait - Projects Locations Schedules Operations Wait
  • google_vertex_ai_projects_locations_schedules_operations_get - GET /v1/{+name} - Projects Locations Schedules Operations Get

Skills

  • google_vertex_ai_projects_locations_skills_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Skills Operations Cancel
  • google_vertex_ai_projects_locations_skills_operations_wait - POST /v1/{+name}:wait - Projects Locations Skills Operations Wait
  • google_vertex_ai_projects_locations_skills_operations_list - GET /v1/{+name}/operations - Projects Locations Skills Operations List
  • google_vertex_ai_projects_locations_skills_operations_delete - DELETE /v1/{+name} - Projects Locations Skills Operations Delete
  • google_vertex_ai_projects_locations_skills_operations_get - GET /v1/{+name} - Projects Locations Skills Operations Get

Snapshot

  • google_vertex_ai_reasoning_engines_sandbox_environments_snapshot - POST /v1/{+name}:snapshot - Reasoning Engines Sandbox Environments Snapshot

Specialist Pools

  • google_vertex_ai_projects_locations_specialist_pools_get - GET /v1/{+name} - Projects Locations Specialist Pools Get
  • google_vertex_ai_projects_locations_specialist_pools_delete - DELETE /v1/{+name} - Projects Locations Specialist Pools Delete
  • google_vertex_ai_projects_locations_specialist_pools_create - POST /v1/{+parent}/specialistPools - Projects Locations Specialist Pools Create
  • google_vertex_ai_projects_locations_specialist_pools_list - GET /v1/{+parent}/specialistPools - Projects Locations Specialist Pools List
  • google_vertex_ai_projects_locations_specialist_pools_patch - PATCH /v1/{+name} - Projects Locations Specialist Pools Patch
  • google_vertex_ai_projects_locations_specialist_pools_operations_delete - DELETE /v1/{+name} - Projects Locations Specialist Pools Operations Delete
  • google_vertex_ai_projects_locations_specialist_pools_operations_list - GET /v1/{+name}/operations - Projects Locations Specialist Pools Operations List
  • google_vertex_ai_projects_locations_specialist_pools_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Specialist Pools Operations Cancel
  • google_vertex_ai_projects_locations_specialist_pools_operations_wait - POST /v1/{+name}:wait - Projects Locations Specialist Pools Operations Wait
  • google_vertex_ai_projects_locations_specialist_pools_operations_get - GET /v1/{+name} - Projects Locations Specialist Pools Operations Get

Stream Generate Content

  • google_vertex_ai_endpoints_stream_generate_content - POST /v1/{+model}:streamGenerateContent - Endpoints Stream Generate Content
  • google_vertex_ai_publishers_models_stream_generate_content - POST /v1/{+model}:streamGenerateContent - Publishers Models Stream Generate Content

Stream Query

  • google_vertex_ai_reasoning_engines_stream_query - POST /v1/{+name}:streamQuery - Reasoning Engines Stream Query
  • google_vertex_ai_reasoning_engines_runtime_revisions_stream_query - POST /v1/{+name}:streamQuery - Reasoning Engines Runtime Revisions Stream Query

Studies

  • google_vertex_ai_projects_locations_studies_delete - DELETE /v1/{+name} - Projects Locations Studies Delete
  • google_vertex_ai_projects_locations_studies_create - POST /v1/{+parent}/studies - Projects Locations Studies Create
  • google_vertex_ai_projects_locations_studies_list - GET /v1/{+parent}/studies - Projects Locations Studies List
  • google_vertex_ai_projects_locations_studies_lookup - POST /v1/{+parent}/studies:lookup - Projects Locations Studies Lookup
  • google_vertex_ai_projects_locations_studies_get - GET /v1/{+name} - Projects Locations Studies Get
  • google_vertex_ai_projects_locations_studies_operations_get - GET /v1/{+name} - Projects Locations Studies Operations Get
  • google_vertex_ai_projects_locations_studies_operations_delete - DELETE /v1/{+name} - Projects Locations Studies Operations Delete
  • google_vertex_ai_projects_locations_studies_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Studies Operations Cancel
  • google_vertex_ai_projects_locations_studies_operations_wait - POST /v1/{+name}:wait - Projects Locations Studies Operations Wait
  • google_vertex_ai_projects_locations_studies_operations_list - GET /v1/{+name}/operations - Projects Locations Studies Operations List
  • google_vertex_ai_projects_locations_studies_trials_suggest - POST /v1/{+parent}/trials:suggest - Projects Locations Studies Trials Suggest
  • google_vertex_ai_projects_locations_studies_trials_get - GET /v1/{+name} - Projects Locations Studies Trials Get
  • google_vertex_ai_projects_locations_studies_trials_stop - POST /v1/{+name}:stop - Projects Locations Studies Trials Stop
  • google_vertex_ai_projects_locations_studies_trials_add_trial_measurement - POST /v1/{+trialName}:addTrialMeasurement - Projects Locations Studies Trials Add Trial Measurement
  • google_vertex_ai_projects_locations_studies_trials_delete - DELETE /v1/{+name} - Projects Locations Studies Trials Delete
  • google_vertex_ai_projects_locations_studies_trials_list - GET /v1/{+parent}/trials - Projects Locations Studies Trials List
  • google_vertex_ai_projects_locations_studies_trials_list_optimal_trials - POST /v1/{+parent}/trials:listOptimalTrials - Projects Locations Studies Trials List Optimal Trials
  • google_vertex_ai_projects_locations_studies_trials_check_trial_early_stopping_state - POST /v1/{+trialName}:checkTrialEarlyStoppingState - Projects Locations Studies Trials Check Trial Early Stopping State
  • google_vertex_ai_projects_locations_studies_trials_create - POST /v1/{+parent}/trials - Projects Locations Studies Trials Create
  • google_vertex_ai_projects_locations_studies_trials_complete - POST /v1/{+name}:complete - Projects Locations Studies Trials Complete
  • google_vertex_ai_projects_locations_studies_trials_operations_get - GET /v1/{+name} - Projects Locations Studies Trials Operations Get
  • google_vertex_ai_projects_locations_studies_trials_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Studies Trials Operations Cancel
  • google_vertex_ai_projects_locations_studies_trials_operations_wait - POST /v1/{+name}:wait - Projects Locations Studies Trials Operations Wait
  • google_vertex_ai_projects_locations_studies_trials_operations_list - GET /v1/{+name}/operations - Projects Locations Studies Trials Operations List
  • google_vertex_ai_projects_locations_studies_trials_operations_delete - DELETE /v1/{+name} - Projects Locations Studies Trials Operations Delete

Tensorboards

  • google_vertex_ai_projects_locations_tensorboards_get - GET /v1/{+name} - Projects Locations Tensorboards Get
  • google_vertex_ai_projects_locations_tensorboards_read_size - GET /v1/{+tensorboard}:readSize - Projects Locations Tensorboards Read Size
  • google_vertex_ai_projects_locations_tensorboards_batch_read - GET /v1/{+tensorboard}:batchRead - Projects Locations Tensorboards Batch Read
  • google_vertex_ai_projects_locations_tensorboards_create - POST /v1/{+parent}/tensorboards - Projects Locations Tensorboards Create
  • google_vertex_ai_projects_locations_tensorboards_patch - PATCH /v1/{+name} - Projects Locations Tensorboards Patch
  • google_vertex_ai_projects_locations_tensorboards_list - GET /v1/{+parent}/tensorboards - Projects Locations Tensorboards List
  • google_vertex_ai_projects_locations_tensorboards_read_usage - GET /v1/{+tensorboard}:readUsage - Projects Locations Tensorboards Read Usage
  • google_vertex_ai_projects_locations_tensorboards_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_create - POST /v1/{+parent}/experiments - Projects Locations Tensorboards Experiments Create
  • google_vertex_ai_projects_locations_tensorboards_experiments_patch - PATCH /v1/{+name} - Projects Locations Tensorboards Experiments Patch
  • google_vertex_ai_projects_locations_tensorboards_experiments_list - GET /v1/{+parent}/experiments - Projects Locations Tensorboards Experiments List
  • google_vertex_ai_projects_locations_tensorboards_experiments_batch_create - POST /v1/{+parent}:batchCreate - Projects Locations Tensorboards Experiments Batch Create
  • google_vertex_ai_projects_locations_tensorboards_experiments_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_get - GET /v1/{+name} - Projects Locations Tensorboards Experiments Get
  • google_vertex_ai_projects_locations_tensorboards_experiments_write - POST /v1/{+tensorboardExperiment}:write - Projects Locations Tensorboards Experiments Write
  • google_vertex_ai_projects_locations_tensorboards_experiments_operations_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Operations Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Tensorboards Experiments Operations Cancel
  • google_vertex_ai_projects_locations_tensorboards_experiments_operations_wait - POST /v1/{+name}:wait - Projects Locations Tensorboards Experiments Operations Wait
  • google_vertex_ai_projects_locations_tensorboards_experiments_operations_list - GET /v1/{+name}/operations - Projects Locations Tensorboards Experiments Operations List
  • google_vertex_ai_projects_locations_tensorboards_experiments_operations_get - GET /v1/{+name} - Projects Locations Tensorboards Experiments Operations Get
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_batch_create - POST /v1/{+parent}/runs:batchCreate - Projects Locations Tensorboards Experiments Runs Batch Create
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_create - POST /v1/{+parent}/runs - Projects Locations Tensorboards Experiments Runs Create
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_patch - PATCH /v1/{+name} - Projects Locations Tensorboards Experiments Runs Patch
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_list - GET /v1/{+parent}/runs - Projects Locations Tensorboards Experiments Runs List
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_get - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Get
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_write - POST /v1/{+tensorboardRun}:write - Projects Locations Tensorboards Experiments Runs Write
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Operations Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Tensorboards Experiments Runs Operations Cancel
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_wait - POST /v1/{+name}:wait - Projects Locations Tensorboards Experiments Runs Operations Wait
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_list - GET /v1/{+name}/operations - Projects Locations Tensorboards Experiments Runs Operations List
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_get - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Operations Get
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_export_tensorboard_time_series - POST /v1/{+tensorboardTimeSeries}:exportTensorboardTimeSeries - Projects Locations Tensorboards Experiments Runs Time Series Export Tensorboard Time Series
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_read - GET /v1/{+tensorboardTimeSeries}:read - Projects Locations Tensorboards Experiments Runs Time Series Read
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_create - POST /v1/{+parent}/timeSeries - Projects Locations Tensorboards Experiments Runs Time Series Create
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_patch - PATCH /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Patch
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_list - GET /v1/{+parent}/timeSeries - Projects Locations Tensorboards Experiments Runs Time Series List
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_get - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Get
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_read_blob_data - GET /v1/{+timeSeries}:readBlobData - Projects Locations Tensorboards Experiments Runs Time Series Read Blob Data
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_get - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Operations Get
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Operations Delete
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_list - GET /v1/{+name}/operations - Projects Locations Tensorboards Experiments Runs Time Series Operations List
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Tensorboards Experiments Runs Time Series Operations Cancel
  • google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_wait - POST /v1/{+name}:wait - Projects Locations Tensorboards Experiments Runs Time Series Operations Wait
  • google_vertex_ai_projects_locations_tensorboards_operations_delete - DELETE /v1/{+name} - Projects Locations Tensorboards Operations Delete
  • google_vertex_ai_projects_locations_tensorboards_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Tensorboards Operations Cancel
  • google_vertex_ai_projects_locations_tensorboards_operations_wait - POST /v1/{+name}:wait - Projects Locations Tensorboards Operations Wait
  • google_vertex_ai_projects_locations_tensorboards_operations_list - GET /v1/{+name}/operations - Projects Locations Tensorboards Operations List
  • google_vertex_ai_projects_locations_tensorboards_operations_get - GET /v1/{+name} - Projects Locations Tensorboards Operations Get

Training Pipelines

  • google_vertex_ai_projects_locations_training_pipelines_cancel - POST /v1/{+name}:cancel - Projects Locations Training Pipelines Cancel
  • google_vertex_ai_projects_locations_training_pipelines_create - POST /v1/{+parent}/trainingPipelines - Projects Locations Training Pipelines Create
  • google_vertex_ai_projects_locations_training_pipelines_list - GET /v1/{+parent}/trainingPipelines - Projects Locations Training Pipelines List
  • google_vertex_ai_projects_locations_training_pipelines_delete - DELETE /v1/{+name} - Projects Locations Training Pipelines Delete
  • google_vertex_ai_projects_locations_training_pipelines_get - GET /v1/{+name} - Projects Locations Training Pipelines Get
  • google_vertex_ai_projects_locations_training_pipelines_operations_get - GET /v1/{+name} - Projects Locations Training Pipelines Operations Get
  • google_vertex_ai_projects_locations_training_pipelines_operations_list - GET /v1/{+name}/operations - Projects Locations Training Pipelines Operations List
  • google_vertex_ai_projects_locations_training_pipelines_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Training Pipelines Operations Cancel
  • google_vertex_ai_projects_locations_training_pipelines_operations_wait - POST /v1/{+name}:wait - Projects Locations Training Pipelines Operations Wait
  • google_vertex_ai_projects_locations_training_pipelines_operations_delete - DELETE /v1/{+name} - Projects Locations Training Pipelines Operations Delete

Tuning Jobs

  • google_vertex_ai_projects_locations_tuning_jobs_create - POST /v1/{+parent}/tuningJobs - Projects Locations Tuning Jobs Create
  • google_vertex_ai_projects_locations_tuning_jobs_list - GET /v1/{+parent}/tuningJobs - Projects Locations Tuning Jobs List
  • google_vertex_ai_projects_locations_tuning_jobs_rebase_tuned_model - POST /v1/{+parent}/tuningJobs:rebaseTunedModel - Projects Locations Tuning Jobs Rebase Tuned Model
  • google_vertex_ai_projects_locations_tuning_jobs_cancel - POST /v1/{+name}:cancel - Projects Locations Tuning Jobs Cancel
  • google_vertex_ai_projects_locations_tuning_jobs_get - GET /v1/{+name} - Projects Locations Tuning Jobs Get
  • google_vertex_ai_projects_locations_tuning_jobs_operations_cancel - POST /v1/{+name}:cancel - Projects Locations Tuning Jobs Operations Cancel
  • google_vertex_ai_projects_locations_tuning_jobs_operations_list - GET /v1/{+name}/operations - Projects Locations Tuning Jobs Operations List
  • google_vertex_ai_projects_locations_tuning_jobs_operations_delete - DELETE /v1/{+name} - Projects Locations Tuning Jobs Operations Delete
  • google_vertex_ai_projects_locations_tuning_jobs_operations_get - GET /v1/{+name} - Projects Locations Tuning Jobs Operations Get

Update Cache Config

  • google_vertex_ai_projects_update_cache_config - PATCH /v1/{+name} - Projects Update Cache Config

Update Rag Engine Config

  • google_vertex_ai_projects_locations_update_rag_engine_config - PATCH /v1/{+name} - Projects Locations Update Rag Engine Config

Upload

  • google_vertex_ai_media_upload - POST /v1/{+parent}/ragFiles:upload - Media Upload

Wait

  • google_vertex_ai_reasoning_engines_operations_wait - POST /v1/{+name}:wait - Reasoning Engines Operations Wait
  • google_vertex_ai_schedules_operations_wait - POST /v1/{+name}:wait - Schedules Operations Wait
  • google_vertex_ai_custom_jobs_operations_wait - POST /v1/{+name}:wait - Custom Jobs Operations Wait
  • google_vertex_ai_studies_operations_wait - POST /v1/{+name}:wait - Studies Operations Wait
  • google_vertex_ai_data_labeling_jobs_operations_wait - POST /v1/{+name}:wait - Data Labeling Jobs Operations Wait
  • google_vertex_ai_migratable_resources_operations_wait - POST /v1/{+name}:wait - Migratable Resources Operations Wait
  • google_vertex_ai_notebook_runtimes_operations_wait - POST /v1/{+name}:wait - Notebook Runtimes Operations Wait
  • google_vertex_ai_model_deployment_monitoring_jobs_operations_wait - POST /v1/{+name}:wait - Model Deployment Monitoring Jobs Operations Wait
  • google_vertex_ai_operations_wait - POST /v1/{+name}:wait - Operations Wait
  • google_vertex_ai_models_operations_wait - POST /v1/{+name}:wait - Models Operations Wait
  • google_vertex_ai_notebook_runtime_templates_operations_wait - POST /v1/{+name}:wait - Notebook Runtime Templates Operations Wait
  • google_vertex_ai_feature_groups_operations_wait - POST /v1/{+name}:wait - Feature Groups Operations Wait
  • google_vertex_ai_deployment_resource_pools_operations_wait - POST /v1/{+name}:wait - Deployment Resource Pools Operations Wait
  • google_vertex_ai_specialist_pools_operations_wait - POST /v1/{+name}:wait - Specialist Pools Operations Wait
  • google_vertex_ai_persistent_resources_operations_wait - POST /v1/{+name}:wait - Persistent Resources Operations Wait
  • google_vertex_ai_index_endpoints_operations_wait - POST /v1/{+name}:wait - Index Endpoints Operations Wait
  • google_vertex_ai_hyperparameter_tuning_jobs_operations_wait - POST /v1/{+name}:wait - Hyperparameter Tuning Jobs Operations Wait
  • google_vertex_ai_indexes_operations_wait - POST /v1/{+name}:wait - Indexes Operations Wait
  • google_vertex_ai_training_pipelines_operations_wait - POST /v1/{+name}:wait - Training Pipelines Operations Wait
  • google_vertex_ai_skills_operations_wait - POST /v1/{+name}:wait - Skills Operations Wait
  • google_vertex_ai_endpoints_operations_wait - POST /v1/{+name}:wait - Endpoints Operations Wait
  • google_vertex_ai_pipeline_jobs_operations_wait - POST /v1/{+name}:wait - Pipeline Jobs Operations Wait
  • google_vertex_ai_rag_corpora_operations_wait - POST /v1/{+name}:wait - Rag Corpora Operations Wait
  • google_vertex_ai_tensorboards_operations_wait - POST /v1/{+name}:wait - Tensorboards Operations Wait
  • google_vertex_ai_notebook_execution_jobs_operations_wait - POST /v1/{+name}:wait - Notebook Execution Jobs Operations Wait
  • google_vertex_ai_rag_engine_config_operations_wait - POST /v1/{+name}:wait - Rag Engine Config Operations Wait
  • google_vertex_ai_feature_online_stores_operations_wait - POST /v1/{+name}:wait - Feature Online Stores Operations Wait
  • google_vertex_ai_datasets_operations_wait - POST /v1/{+name}:wait - Datasets Operations Wait
  • google_vertex_ai_featurestores_operations_wait - POST /v1/{+name}:wait - Featurestores Operations Wait
  • google_vertex_ai_metadata_stores_operations_wait - POST /v1/{+name}:wait - Metadata Stores Operations Wait
Raw agent markdown
# Google Vertex AI - Lua API Reference

Google Vertex AI tools are exposed under `app.integrations.google_vertex_ai`. This package is generated from Google's official AI Platform v1 Discovery document and exposes 1003 REST methods.

Configure `access_token` with a Google OAuth token that has Vertex AI or cloud-platform scopes. The default base URL is `https://aiplatform.googleapis.com`.

Each method-specific tool accepts Discovery path parameters as top-level arguments, known query parameters as top-level shortcuts or inside `query`, and request resources inside `body`. Resource path parameters preserve `/`, so pass full names like `projects/example/locations/us-central1/models/model-id`.

## Examples

```lua
local models = app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_models_list({
  parent = "projects/example-project/locations/us-central1",
  pageSize = 20
})

local prediction = app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_endpoints_predict({
  endpoint = "projects/example-project/locations/us-central1/endpoints/123",
  body = { instances = { { text = "hello" } } }
})

local generated = app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_publishers_models_generate_content({
  model = "projects/example-project/locations/us-central1/publishers/google/models/gemini-1.5-pro",
  body = { contents = { { role = "user", parts = { { text = "hello" } } } } }
})
```

## Multi-Account Usage

```lua
app.integrations.google_vertex_ai.google_vertex_ai_projects_locations_models_list({ parent = "projects/example/locations/us-central1" })
app.integrations.google_vertex_ai.default.google_vertex_ai_projects_locations_models_list({ parent = "projects/example/locations/us-central1" })
app.integrations.google_vertex_ai.production.google_vertex_ai_projects_locations_models_list({ parent = "projects/example/locations/us-central1" })
```

## Annotations

- `google_vertex_ai_datasets_data_items_annotations_operations_get` - GET /v1/{+name} - Datasets Data Items Annotations Operations Get
- `google_vertex_ai_datasets_data_items_annotations_operations_delete` - DELETE /v1/{+name} - Datasets Data Items Annotations Operations Delete
- `google_vertex_ai_datasets_data_items_annotations_operations_list` - GET /v1/{+name}/operations - Datasets Data Items Annotations Operations List
- `google_vertex_ai_datasets_data_items_annotations_operations_cancel` - POST /v1/{+name}:cancel - Datasets Data Items Annotations Operations Cancel
- `google_vertex_ai_datasets_data_items_annotations_operations_wait` - POST /v1/{+name}:wait - Datasets Data Items Annotations Operations Wait

## Ask Contexts

- `google_vertex_ai_projects_locations_ask_contexts` - POST /v1/{+parent}:askContexts - Projects Locations Ask Contexts

## Async Query

- `google_vertex_ai_reasoning_engines_async_query` - POST /v1/{+name}:asyncQuery - Reasoning Engines Async Query

## Async Retrieve Contexts

- `google_vertex_ai_projects_locations_async_retrieve_contexts` - POST /v1/{+parent}:asyncRetrieveContexts - Projects Locations Async Retrieve Contexts

## Augment Prompt

- `google_vertex_ai_projects_locations_augment_prompt` - POST /v1/{+parent}:augmentPrompt - Projects Locations Augment Prompt

## Batch Prediction Jobs

- `google_vertex_ai_projects_locations_batch_prediction_jobs_delete` - DELETE /v1/{+name} - Projects Locations Batch Prediction Jobs Delete
- `google_vertex_ai_projects_locations_batch_prediction_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Batch Prediction Jobs Cancel
- `google_vertex_ai_projects_locations_batch_prediction_jobs_create` - POST /v1/{+parent}/batchPredictionJobs - Projects Locations Batch Prediction Jobs Create
- `google_vertex_ai_projects_locations_batch_prediction_jobs_list` - GET /v1/{+parent}/batchPredictionJobs - Projects Locations Batch Prediction Jobs List
- `google_vertex_ai_projects_locations_batch_prediction_jobs_get` - GET /v1/{+name} - Projects Locations Batch Prediction Jobs Get

## Cached Contents

- `google_vertex_ai_projects_locations_cached_contents_get` - GET /v1/{+name} - Projects Locations Cached Contents Get
- `google_vertex_ai_projects_locations_cached_contents_create` - POST /v1/{+parent}/cachedContents - Projects Locations Cached Contents Create
- `google_vertex_ai_projects_locations_cached_contents_patch` - PATCH /v1/{+name} - Projects Locations Cached Contents Patch
- `google_vertex_ai_projects_locations_cached_contents_list` - GET /v1/{+parent}/cachedContents - Projects Locations Cached Contents List
- `google_vertex_ai_projects_locations_cached_contents_delete` - DELETE /v1/{+name} - Projects Locations Cached Contents Delete

## Cancel

- `google_vertex_ai_reasoning_engines_operations_cancel` - POST /v1/{+name}:cancel - Reasoning Engines Operations Cancel
- `google_vertex_ai_schedules_operations_cancel` - POST /v1/{+name}:cancel - Schedules Operations Cancel
- `google_vertex_ai_custom_jobs_operations_cancel` - POST /v1/{+name}:cancel - Custom Jobs Operations Cancel
- `google_vertex_ai_studies_operations_cancel` - POST /v1/{+name}:cancel - Studies Operations Cancel
- `google_vertex_ai_data_labeling_jobs_operations_cancel` - POST /v1/{+name}:cancel - Data Labeling Jobs Operations Cancel
- `google_vertex_ai_tuning_jobs_operations_cancel` - POST /v1/{+name}:cancel - Tuning Jobs Operations Cancel
- `google_vertex_ai_migratable_resources_operations_cancel` - POST /v1/{+name}:cancel - Migratable Resources Operations Cancel
- `google_vertex_ai_notebook_runtimes_operations_cancel` - POST /v1/{+name}:cancel - Notebook Runtimes Operations Cancel
- `google_vertex_ai_model_deployment_monitoring_jobs_operations_cancel` - POST /v1/{+name}:cancel - Model Deployment Monitoring Jobs Operations Cancel
- `google_vertex_ai_operations_cancel` - POST /v1/{+name}:cancel - Operations Cancel
- `google_vertex_ai_models_operations_cancel` - POST /v1/{+name}:cancel - Models Operations Cancel
- `google_vertex_ai_notebook_runtime_templates_operations_cancel` - POST /v1/{+name}:cancel - Notebook Runtime Templates Operations Cancel
- `google_vertex_ai_deployment_resource_pools_operations_cancel` - POST /v1/{+name}:cancel - Deployment Resource Pools Operations Cancel
- `google_vertex_ai_specialist_pools_operations_cancel` - POST /v1/{+name}:cancel - Specialist Pools Operations Cancel
- `google_vertex_ai_persistent_resources_operations_cancel` - POST /v1/{+name}:cancel - Persistent Resources Operations Cancel
- `google_vertex_ai_index_endpoints_operations_cancel` - POST /v1/{+name}:cancel - Index Endpoints Operations Cancel
- `google_vertex_ai_hyperparameter_tuning_jobs_operations_cancel` - POST /v1/{+name}:cancel - Hyperparameter Tuning Jobs Operations Cancel
- `google_vertex_ai_indexes_operations_cancel` - POST /v1/{+name}:cancel - Indexes Operations Cancel
- `google_vertex_ai_training_pipelines_operations_cancel` - POST /v1/{+name}:cancel - Training Pipelines Operations Cancel
- `google_vertex_ai_skills_operations_cancel` - POST /v1/{+name}:cancel - Skills Operations Cancel
- `google_vertex_ai_endpoints_operations_cancel` - POST /v1/{+name}:cancel - Endpoints Operations Cancel
- `google_vertex_ai_pipeline_jobs_operations_cancel` - POST /v1/{+name}:cancel - Pipeline Jobs Operations Cancel
- `google_vertex_ai_rag_corpora_operations_cancel` - POST /v1/{+name}:cancel - Rag Corpora Operations Cancel
- `google_vertex_ai_tensorboards_operations_cancel` - POST /v1/{+name}:cancel - Tensorboards Operations Cancel
- `google_vertex_ai_notebook_execution_jobs_operations_cancel` - POST /v1/{+name}:cancel - Notebook Execution Jobs Operations Cancel
- `google_vertex_ai_rag_engine_config_operations_cancel` - POST /v1/{+name}:cancel - Rag Engine Config Operations Cancel
- `google_vertex_ai_datasets_operations_cancel` - POST /v1/{+name}:cancel - Datasets Operations Cancel
- `google_vertex_ai_featurestores_operations_cancel` - POST /v1/{+name}:cancel - Featurestores Operations Cancel
- `google_vertex_ai_metadata_stores_operations_cancel` - POST /v1/{+name}:cancel - Metadata Stores Operations Cancel

## Completions

- `google_vertex_ai_endpoints_chat_completions` - POST /v1/{+endpoint}/chat/completions - Endpoints Chat Completions

## Compute Tokens

- `google_vertex_ai_endpoints_compute_tokens` - POST /v1/{+endpoint}:computeTokens - Endpoints Compute Tokens
- `google_vertex_ai_publishers_models_compute_tokens` - POST /v1/{+endpoint}:computeTokens - Publishers Models Compute Tokens

## Corroborate Content

- `google_vertex_ai_projects_locations_corroborate_content` - POST /v1/{+parent}:corroborateContent - Projects Locations Corroborate Content

## Count Tokens

- `google_vertex_ai_endpoints_count_tokens` - POST /v1/{+endpoint}:countTokens - Endpoints Count Tokens
- `google_vertex_ai_publishers_models_count_tokens` - POST /v1/{+endpoint}:countTokens - Publishers Models Count Tokens

## Create

- `google_vertex_ai_reasoning_engines_create` - POST /v1/reasoningEngines - Reasoning Engines Create
- `google_vertex_ai_reasoning_engines_sandbox_environments_create` - POST /v1/{+parent}/sandboxEnvironments - Reasoning Engines Sandbox Environments Create
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_create` - POST /v1/{+parent}/sandboxEnvironmentTemplates - Reasoning Engines Sandbox Environment Templates Create
- `google_vertex_ai_datasets_create` - POST /v1/datasets - Datasets Create
- `google_vertex_ai_datasets_dataset_versions_create` - POST /v1/{+parent}/datasetVersions - Datasets Dataset Versions Create
- `google_vertex_ai_batch_prediction_jobs_create` - POST /v1/batchPredictionJobs - Batch Prediction Jobs Create

## Custom Jobs

- `google_vertex_ai_projects_locations_custom_jobs_get` - GET /v1/{+name} - Projects Locations Custom Jobs Get
- `google_vertex_ai_projects_locations_custom_jobs_create` - POST /v1/{+parent}/customJobs - Projects Locations Custom Jobs Create
- `google_vertex_ai_projects_locations_custom_jobs_list` - GET /v1/{+parent}/customJobs - Projects Locations Custom Jobs List
- `google_vertex_ai_projects_locations_custom_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Custom Jobs Cancel
- `google_vertex_ai_projects_locations_custom_jobs_delete` - DELETE /v1/{+name} - Projects Locations Custom Jobs Delete
- `google_vertex_ai_projects_locations_custom_jobs_operations_get` - GET /v1/{+name} - Projects Locations Custom Jobs Operations Get
- `google_vertex_ai_projects_locations_custom_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Custom Jobs Operations Cancel
- `google_vertex_ai_projects_locations_custom_jobs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Custom Jobs Operations Wait
- `google_vertex_ai_projects_locations_custom_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Custom Jobs Operations List
- `google_vertex_ai_projects_locations_custom_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Custom Jobs Operations Delete

## Data Labeling Jobs

- `google_vertex_ai_projects_locations_data_labeling_jobs_delete` - DELETE /v1/{+name} - Projects Locations Data Labeling Jobs Delete
- `google_vertex_ai_projects_locations_data_labeling_jobs_create` - POST /v1/{+parent}/dataLabelingJobs - Projects Locations Data Labeling Jobs Create
- `google_vertex_ai_projects_locations_data_labeling_jobs_list` - GET /v1/{+parent}/dataLabelingJobs - Projects Locations Data Labeling Jobs List
- `google_vertex_ai_projects_locations_data_labeling_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Data Labeling Jobs Cancel
- `google_vertex_ai_projects_locations_data_labeling_jobs_get` - GET /v1/{+name} - Projects Locations Data Labeling Jobs Get
- `google_vertex_ai_projects_locations_data_labeling_jobs_operations_get` - GET /v1/{+name} - Projects Locations Data Labeling Jobs Operations Get
- `google_vertex_ai_projects_locations_data_labeling_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Data Labeling Jobs Operations Delete
- `google_vertex_ai_projects_locations_data_labeling_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Data Labeling Jobs Operations List
- `google_vertex_ai_projects_locations_data_labeling_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Data Labeling Jobs Operations Cancel
- `google_vertex_ai_projects_locations_data_labeling_jobs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Data Labeling Jobs Operations Wait

## Datasets

- `google_vertex_ai_projects_locations_datasets_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Datasets Set Iam Policy
- `google_vertex_ai_projects_locations_datasets_create` - POST /v1/{+parent}/datasets - Projects Locations Datasets Create
- `google_vertex_ai_projects_locations_datasets_get` - GET /v1/{+name} - Projects Locations Datasets Get
- `google_vertex_ai_projects_locations_datasets_import` - POST /v1/{+name}:import - Projects Locations Datasets Import
- `google_vertex_ai_projects_locations_datasets_delete` - DELETE /v1/{+name} - Projects Locations Datasets Delete
- `google_vertex_ai_projects_locations_datasets_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Datasets Test Iam Permissions
- `google_vertex_ai_projects_locations_datasets_export` - POST /v1/{+name}:export - Projects Locations Datasets Export
- `google_vertex_ai_projects_locations_datasets_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Datasets Get Iam Policy
- `google_vertex_ai_projects_locations_datasets_patch` - PATCH /v1/{+name} - Projects Locations Datasets Patch
- `google_vertex_ai_projects_locations_datasets_list` - GET /v1/{+parent}/datasets - Projects Locations Datasets List
- `google_vertex_ai_projects_locations_datasets_search_data_items` - GET /v1/{+dataset}:searchDataItems - Projects Locations Datasets Search Data Items
- `google_vertex_ai_projects_locations_datasets_data_items_list` - GET /v1/{+parent}/dataItems - Projects Locations Datasets Data Items List
- `google_vertex_ai_projects_locations_datasets_data_items_annotations_list` - GET /v1/{+parent}/annotations - Projects Locations Datasets Data Items Annotations List
- `google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_get` - GET /v1/{+name} - Projects Locations Datasets Data Items Annotations Operations Get
- `google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_list` - GET /v1/{+name}/operations - Projects Locations Datasets Data Items Annotations Operations List
- `google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Datasets Data Items Annotations Operations Cancel
- `google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_wait` - POST /v1/{+name}:wait - Projects Locations Datasets Data Items Annotations Operations Wait
- `google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_delete` - DELETE /v1/{+name} - Projects Locations Datasets Data Items Annotations Operations Delete
- `google_vertex_ai_projects_locations_datasets_data_items_operations_get` - GET /v1/{+name} - Projects Locations Datasets Data Items Operations Get
- `google_vertex_ai_projects_locations_datasets_data_items_operations_delete` - DELETE /v1/{+name} - Projects Locations Datasets Data Items Operations Delete
- `google_vertex_ai_projects_locations_datasets_data_items_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Datasets Data Items Operations Cancel
- `google_vertex_ai_projects_locations_datasets_data_items_operations_wait` - POST /v1/{+name}:wait - Projects Locations Datasets Data Items Operations Wait
- `google_vertex_ai_projects_locations_datasets_data_items_operations_list` - GET /v1/{+name}/operations - Projects Locations Datasets Data Items Operations List
- `google_vertex_ai_projects_locations_datasets_annotation_specs_get` - GET /v1/{+name} - Projects Locations Datasets Annotation Specs Get
- `google_vertex_ai_projects_locations_datasets_annotation_specs_operations_delete` - DELETE /v1/{+name} - Projects Locations Datasets Annotation Specs Operations Delete
- `google_vertex_ai_projects_locations_datasets_annotation_specs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Datasets Annotation Specs Operations Cancel
- `google_vertex_ai_projects_locations_datasets_annotation_specs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Datasets Annotation Specs Operations Wait
- `google_vertex_ai_projects_locations_datasets_annotation_specs_operations_list` - GET /v1/{+name}/operations - Projects Locations Datasets Annotation Specs Operations List
- `google_vertex_ai_projects_locations_datasets_annotation_specs_operations_get` - GET /v1/{+name} - Projects Locations Datasets Annotation Specs Operations Get
- `google_vertex_ai_projects_locations_datasets_dataset_versions_get` - GET /v1/{+name} - Projects Locations Datasets Dataset Versions Get
- `google_vertex_ai_projects_locations_datasets_dataset_versions_create` - POST /v1/{+parent}/datasetVersions - Projects Locations Datasets Dataset Versions Create
- `google_vertex_ai_projects_locations_datasets_dataset_versions_patch` - PATCH /v1/{+name} - Projects Locations Datasets Dataset Versions Patch
- `google_vertex_ai_projects_locations_datasets_dataset_versions_list` - GET /v1/{+parent}/datasetVersions - Projects Locations Datasets Dataset Versions List
- `google_vertex_ai_projects_locations_datasets_dataset_versions_delete` - DELETE /v1/{+name} - Projects Locations Datasets Dataset Versions Delete
- `google_vertex_ai_projects_locations_datasets_dataset_versions_restore` - GET /v1/{+name}:restore - Projects Locations Datasets Dataset Versions Restore
- `google_vertex_ai_projects_locations_datasets_operations_get` - GET /v1/{+name} - Projects Locations Datasets Operations Get
- `google_vertex_ai_projects_locations_datasets_operations_delete` - DELETE /v1/{+name} - Projects Locations Datasets Operations Delete
- `google_vertex_ai_projects_locations_datasets_operations_list` - GET /v1/{+name}/operations - Projects Locations Datasets Operations List
- `google_vertex_ai_projects_locations_datasets_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Datasets Operations Cancel
- `google_vertex_ai_projects_locations_datasets_operations_wait` - POST /v1/{+name}:wait - Projects Locations Datasets Operations Wait
- `google_vertex_ai_projects_locations_datasets_saved_queries_list` - GET /v1/{+parent}/savedQueries - Projects Locations Datasets Saved Queries List
- `google_vertex_ai_projects_locations_datasets_saved_queries_delete` - DELETE /v1/{+name} - Projects Locations Datasets Saved Queries Delete
- `google_vertex_ai_projects_locations_datasets_saved_queries_operations_delete` - DELETE /v1/{+name} - Projects Locations Datasets Saved Queries Operations Delete
- `google_vertex_ai_projects_locations_datasets_saved_queries_operations_list` - GET /v1/{+name}/operations - Projects Locations Datasets Saved Queries Operations List
- `google_vertex_ai_projects_locations_datasets_saved_queries_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Datasets Saved Queries Operations Cancel
- `google_vertex_ai_projects_locations_datasets_saved_queries_operations_wait` - POST /v1/{+name}:wait - Projects Locations Datasets Saved Queries Operations Wait
- `google_vertex_ai_projects_locations_datasets_saved_queries_operations_get` - GET /v1/{+name} - Projects Locations Datasets Saved Queries Operations Get

## Delete

- `google_vertex_ai_reasoning_engines_delete` - DELETE /v1/{+name} - Reasoning Engines Delete
- `google_vertex_ai_reasoning_engines_sandbox_environments_delete` - DELETE /v1/{+name} - Reasoning Engines Sandbox Environments Delete
- `google_vertex_ai_reasoning_engines_operations_delete` - DELETE /v1/{+name} - Reasoning Engines Operations Delete
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_delete` - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Delete
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_delete` - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Templates Delete
- `google_vertex_ai_schedules_operations_delete` - DELETE /v1/{+name} - Schedules Operations Delete
- `google_vertex_ai_custom_jobs_operations_delete` - DELETE /v1/{+name} - Custom Jobs Operations Delete
- `google_vertex_ai_studies_operations_delete` - DELETE /v1/{+name} - Studies Operations Delete
- `google_vertex_ai_data_labeling_jobs_operations_delete` - DELETE /v1/{+name} - Data Labeling Jobs Operations Delete
- `google_vertex_ai_tuning_jobs_operations_delete` - DELETE /v1/{+name} - Tuning Jobs Operations Delete
- `google_vertex_ai_migratable_resources_operations_delete` - DELETE /v1/{+name} - Migratable Resources Operations Delete
- `google_vertex_ai_notebook_runtimes_operations_delete` - DELETE /v1/{+name} - Notebook Runtimes Operations Delete
- `google_vertex_ai_model_deployment_monitoring_jobs_operations_delete` - DELETE /v1/{+name} - Model Deployment Monitoring Jobs Operations Delete
- `google_vertex_ai_operations_delete` - DELETE /v1/{+name} - Operations Delete
- `google_vertex_ai_models_operations_delete` - DELETE /v1/{+name} - Models Operations Delete
- `google_vertex_ai_notebook_runtime_templates_operations_delete` - DELETE /v1/{+name} - Notebook Runtime Templates Operations Delete
- `google_vertex_ai_feature_groups_operations_delete` - DELETE /v1/{+name} - Feature Groups Operations Delete
- `google_vertex_ai_deployment_resource_pools_operations_delete` - DELETE /v1/{+name} - Deployment Resource Pools Operations Delete
- `google_vertex_ai_specialist_pools_operations_delete` - DELETE /v1/{+name} - Specialist Pools Operations Delete
- `google_vertex_ai_persistent_resources_operations_delete` - DELETE /v1/{+name} - Persistent Resources Operations Delete
- `google_vertex_ai_index_endpoints_operations_delete` - DELETE /v1/{+name} - Index Endpoints Operations Delete
- `google_vertex_ai_hyperparameter_tuning_jobs_operations_delete` - DELETE /v1/{+name} - Hyperparameter Tuning Jobs Operations Delete
- `google_vertex_ai_indexes_operations_delete` - DELETE /v1/{+name} - Indexes Operations Delete
- `google_vertex_ai_training_pipelines_operations_delete` - DELETE /v1/{+name} - Training Pipelines Operations Delete
- `google_vertex_ai_skills_operations_delete` - DELETE /v1/{+name} - Skills Operations Delete
- `google_vertex_ai_endpoints_operations_delete` - DELETE /v1/{+name} - Endpoints Operations Delete
- `google_vertex_ai_pipeline_jobs_operations_delete` - DELETE /v1/{+name} - Pipeline Jobs Operations Delete
- `google_vertex_ai_rag_corpora_operations_delete` - DELETE /v1/{+name} - Rag Corpora Operations Delete
- `google_vertex_ai_tensorboards_operations_delete` - DELETE /v1/{+name} - Tensorboards Operations Delete
- `google_vertex_ai_notebook_execution_jobs_operations_delete` - DELETE /v1/{+name} - Notebook Execution Jobs Operations Delete
- `google_vertex_ai_rag_engine_config_operations_delete` - DELETE /v1/{+name} - Rag Engine Config Operations Delete
- `google_vertex_ai_feature_online_stores_operations_delete` - DELETE /v1/{+name} - Feature Online Stores Operations Delete
- `google_vertex_ai_datasets_delete` - DELETE /v1/{+name} - Datasets Delete
- `google_vertex_ai_datasets_operations_delete` - DELETE /v1/{+name} - Datasets Operations Delete
- `google_vertex_ai_datasets_dataset_versions_delete` - DELETE /v1/{+name} - Datasets Dataset Versions Delete
- `google_vertex_ai_featurestores_operations_delete` - DELETE /v1/{+name} - Featurestores Operations Delete
- `google_vertex_ai_metadata_stores_operations_delete` - DELETE /v1/{+name} - Metadata Stores Operations Delete

## Deploy

- `google_vertex_ai_projects_locations_deploy` - POST /v1/{+destination}:deploy - Projects Locations Deploy

## Deployment Resource Pools

- `google_vertex_ai_projects_locations_deployment_resource_pools_delete` - DELETE /v1/{+name} - Projects Locations Deployment Resource Pools Delete
- `google_vertex_ai_projects_locations_deployment_resource_pools_create` - POST /v1/{+parent}/deploymentResourcePools - Projects Locations Deployment Resource Pools Create
- `google_vertex_ai_projects_locations_deployment_resource_pools_list` - GET /v1/{+parent}/deploymentResourcePools - Projects Locations Deployment Resource Pools List
- `google_vertex_ai_projects_locations_deployment_resource_pools_patch` - PATCH /v1/{+name} - Projects Locations Deployment Resource Pools Patch
- `google_vertex_ai_projects_locations_deployment_resource_pools_get` - GET /v1/{+name} - Projects Locations Deployment Resource Pools Get
- `google_vertex_ai_projects_locations_deployment_resource_pools_query_deployed_models` - GET /v1/{+deploymentResourcePool}:queryDeployedModels - Projects Locations Deployment Resource Pools Query Deployed Models
- `google_vertex_ai_projects_locations_deployment_resource_pools_operations_delete` - DELETE /v1/{+name} - Projects Locations Deployment Resource Pools Operations Delete
- `google_vertex_ai_projects_locations_deployment_resource_pools_operations_list` - GET /v1/{+name}/operations - Projects Locations Deployment Resource Pools Operations List
- `google_vertex_ai_projects_locations_deployment_resource_pools_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Deployment Resource Pools Operations Cancel
- `google_vertex_ai_projects_locations_deployment_resource_pools_operations_wait` - POST /v1/{+name}:wait - Projects Locations Deployment Resource Pools Operations Wait
- `google_vertex_ai_projects_locations_deployment_resource_pools_operations_get` - GET /v1/{+name} - Projects Locations Deployment Resource Pools Operations Get

## Endpoints

- `google_vertex_ai_projects_locations_endpoints_direct_raw_predict` - POST /v1/{+endpoint}:directRawPredict - Projects Locations Endpoints Direct Raw Predict
- `google_vertex_ai_projects_locations_endpoints_stream_generate_content` - POST /v1/{+model}:streamGenerateContent - Projects Locations Endpoints Stream Generate Content
- `google_vertex_ai_projects_locations_endpoints_raw_predict` - POST /v1/{+endpoint}:rawPredict - Projects Locations Endpoints Raw Predict
- `google_vertex_ai_projects_locations_endpoints_generate_content` - POST /v1/{+model}:generateContent - Projects Locations Endpoints Generate Content
- `google_vertex_ai_projects_locations_endpoints_deploy_model` - POST /v1/{+endpoint}:deployModel - Projects Locations Endpoints Deploy Model
- `google_vertex_ai_projects_locations_endpoints_list` - GET /v1/{+parent}/endpoints - Projects Locations Endpoints List
- `google_vertex_ai_projects_locations_endpoints_compute_tokens` - POST /v1/{+endpoint}:computeTokens - Projects Locations Endpoints Compute Tokens
- `google_vertex_ai_projects_locations_endpoints_server_streaming_predict` - POST /v1/{+endpoint}:serverStreamingPredict - Projects Locations Endpoints Server Streaming Predict
- `google_vertex_ai_projects_locations_endpoints_undeploy_model` - POST /v1/{+endpoint}:undeployModel - Projects Locations Endpoints Undeploy Model
- `google_vertex_ai_projects_locations_endpoints_predict` - POST /v1/{+endpoint}:predict - Projects Locations Endpoints Predict
- `google_vertex_ai_projects_locations_endpoints_direct_predict` - POST /v1/{+endpoint}:directPredict - Projects Locations Endpoints Direct Predict
- `google_vertex_ai_projects_locations_endpoints_create` - POST /v1/{+parent}/endpoints - Projects Locations Endpoints Create
- `google_vertex_ai_projects_locations_endpoints_update` - POST /v1/{+name}:update - Projects Locations Endpoints Update
- `google_vertex_ai_projects_locations_endpoints_mutate_deployed_model` - POST /v1/{+endpoint}:mutateDeployedModel - Projects Locations Endpoints Mutate Deployed Model
- `google_vertex_ai_projects_locations_endpoints_delete` - DELETE /v1/{+name} - Projects Locations Endpoints Delete
- `google_vertex_ai_projects_locations_endpoints_count_tokens` - POST /v1/{+endpoint}:countTokens - Projects Locations Endpoints Count Tokens
- `google_vertex_ai_projects_locations_endpoints_patch` - PATCH /v1/{+name} - Projects Locations Endpoints Patch
- `google_vertex_ai_projects_locations_endpoints_fetch_predict_operation` - POST /v1/{+endpoint}:fetchPredictOperation - Projects Locations Endpoints Fetch Predict Operation
- `google_vertex_ai_projects_locations_endpoints_get` - GET /v1/{+name} - Projects Locations Endpoints Get
- `google_vertex_ai_projects_locations_endpoints_predict_long_running` - POST /v1/{+endpoint}:predictLongRunning - Projects Locations Endpoints Predict Long Running
- `google_vertex_ai_projects_locations_endpoints_stream_raw_predict` - POST /v1/{+endpoint}:streamRawPredict - Projects Locations Endpoints Stream Raw Predict
- `google_vertex_ai_projects_locations_endpoints_explain` - POST /v1/{+endpoint}:explain - Projects Locations Endpoints Explain
- `google_vertex_ai_projects_locations_endpoints_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Endpoints Operations Cancel
- `google_vertex_ai_projects_locations_endpoints_operations_wait` - POST /v1/{+name}:wait - Projects Locations Endpoints Operations Wait
- `google_vertex_ai_projects_locations_endpoints_operations_list` - GET /v1/{+name}/operations - Projects Locations Endpoints Operations List
- `google_vertex_ai_projects_locations_endpoints_operations_delete` - DELETE /v1/{+name} - Projects Locations Endpoints Operations Delete
- `google_vertex_ai_projects_locations_endpoints_operations_get` - GET /v1/{+name} - Projects Locations Endpoints Operations Get
- `google_vertex_ai_projects_locations_endpoints_invoke_invoke` - POST /v1/{+endpoint}/invoke/{+invokeId} - Projects Locations Endpoints Invoke Invoke
- `google_vertex_ai_projects_locations_endpoints_openapi_responses` - POST /v1/{+endpoint}/responses - Projects Locations Endpoints Openapi Responses
- `google_vertex_ai_projects_locations_endpoints_openapi_completions` - POST /v1/{+endpoint}/completions - Projects Locations Endpoints Openapi Completions
- `google_vertex_ai_projects_locations_endpoints_openapi_embeddings` - POST /v1/{+endpoint}/embeddings - Projects Locations Endpoints Openapi Embeddings
- `google_vertex_ai_projects_locations_endpoints_chat_completions` - POST /v1/{+endpoint}/chat/completions - Projects Locations Endpoints Chat Completions
- `google_vertex_ai_projects_locations_endpoints_deployed_models_invoke_invoke` - POST /v1/{+endpoint}/deployedModels/{deployedModelId}/invoke/{+invokeId} - Projects Locations Endpoints Deployed Models Invoke Invoke
- `google_vertex_ai_projects_locations_endpoints_google_science_inference` - POST /v1/{+endpoint}/science/inference - Projects Locations Endpoints Google Science Inference

## Evaluate Dataset

- `google_vertex_ai_v1_evaluate_dataset` - POST /v1:evaluateDataset - V1 Evaluate Dataset
- `google_vertex_ai_projects_locations_evaluate_dataset` - POST /v1/{+location}:evaluateDataset - Projects Locations Evaluate Dataset

## Evaluate Instances

- `google_vertex_ai_v1_evaluate_instances` - POST /v1:evaluateInstances - V1 Evaluate Instances
- `google_vertex_ai_projects_locations_evaluate_instances` - POST /v1/{+location}:evaluateInstances - Projects Locations Evaluate Instances

## Evaluation Items

- `google_vertex_ai_projects_locations_evaluation_items_create` - POST /v1/{+parent}/evaluationItems - Projects Locations Evaluation Items Create
- `google_vertex_ai_projects_locations_evaluation_items_list` - GET /v1/{+parent}/evaluationItems - Projects Locations Evaluation Items List
- `google_vertex_ai_projects_locations_evaluation_items_delete` - DELETE /v1/{+name} - Projects Locations Evaluation Items Delete
- `google_vertex_ai_projects_locations_evaluation_items_get` - GET /v1/{+name} - Projects Locations Evaluation Items Get

## Evaluation Runs

- `google_vertex_ai_projects_locations_evaluation_runs_create` - POST /v1/{+parent}/evaluationRuns - Projects Locations Evaluation Runs Create
- `google_vertex_ai_projects_locations_evaluation_runs_list` - GET /v1/{+parent}/evaluationRuns - Projects Locations Evaluation Runs List
- `google_vertex_ai_projects_locations_evaluation_runs_cancel` - POST /v1/{+name}:cancel - Projects Locations Evaluation Runs Cancel
- `google_vertex_ai_projects_locations_evaluation_runs_delete` - DELETE /v1/{+name} - Projects Locations Evaluation Runs Delete
- `google_vertex_ai_projects_locations_evaluation_runs_get` - GET /v1/{+name} - Projects Locations Evaluation Runs Get

## Evaluation Sets

- `google_vertex_ai_projects_locations_evaluation_sets_delete` - DELETE /v1/{+name} - Projects Locations Evaluation Sets Delete
- `google_vertex_ai_projects_locations_evaluation_sets_create` - POST /v1/{+parent}/evaluationSets - Projects Locations Evaluation Sets Create
- `google_vertex_ai_projects_locations_evaluation_sets_list` - GET /v1/{+parent}/evaluationSets - Projects Locations Evaluation Sets List
- `google_vertex_ai_projects_locations_evaluation_sets_patch` - PATCH /v1/{+name} - Projects Locations Evaluation Sets Patch
- `google_vertex_ai_projects_locations_evaluation_sets_get` - GET /v1/{+name} - Projects Locations Evaluation Sets Get

## Execute

- `google_vertex_ai_reasoning_engines_sandbox_environments_execute` - POST /v1/{+name}:execute - Reasoning Engines Sandbox Environments Execute

## Execute Code

- `google_vertex_ai_reasoning_engines_execute_code` - POST /v1/{+name}:executeCode - Reasoning Engines Execute Code

## Feature Groups

- `google_vertex_ai_projects_locations_feature_groups_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Feature Groups Test Iam Permissions
- `google_vertex_ai_projects_locations_feature_groups_delete` - DELETE /v1/{+name} - Projects Locations Feature Groups Delete
- `google_vertex_ai_projects_locations_feature_groups_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Feature Groups Get Iam Policy
- `google_vertex_ai_projects_locations_feature_groups_create` - POST /v1/{+parent}/featureGroups - Projects Locations Feature Groups Create
- `google_vertex_ai_projects_locations_feature_groups_list` - GET /v1/{+parent}/featureGroups - Projects Locations Feature Groups List
- `google_vertex_ai_projects_locations_feature_groups_patch` - PATCH /v1/{+name} - Projects Locations Feature Groups Patch
- `google_vertex_ai_projects_locations_feature_groups_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Feature Groups Set Iam Policy
- `google_vertex_ai_projects_locations_feature_groups_get` - GET /v1/{+name} - Projects Locations Feature Groups Get
- `google_vertex_ai_projects_locations_feature_groups_operations_wait` - POST /v1/{+name}:wait - Projects Locations Feature Groups Operations Wait
- `google_vertex_ai_projects_locations_feature_groups_operations_list_wait` - GET /v1/{+name}:wait - Projects Locations Feature Groups Operations List Wait
- `google_vertex_ai_projects_locations_feature_groups_operations_delete` - DELETE /v1/{+name} - Projects Locations Feature Groups Operations Delete
- `google_vertex_ai_projects_locations_feature_groups_operations_get` - GET /v1/{+name} - Projects Locations Feature Groups Operations Get
- `google_vertex_ai_projects_locations_feature_groups_features_delete` - DELETE /v1/{+name} - Projects Locations Feature Groups Features Delete
- `google_vertex_ai_projects_locations_feature_groups_features_create` - POST /v1/{+parent}/features - Projects Locations Feature Groups Features Create
- `google_vertex_ai_projects_locations_feature_groups_features_list` - GET /v1/{+parent}/features - Projects Locations Feature Groups Features List
- `google_vertex_ai_projects_locations_feature_groups_features_patch` - PATCH /v1/{+name} - Projects Locations Feature Groups Features Patch
- `google_vertex_ai_projects_locations_feature_groups_features_batch_create` - POST /v1/{+parent}/features:batchCreate - Projects Locations Feature Groups Features Batch Create
- `google_vertex_ai_projects_locations_feature_groups_features_get` - GET /v1/{+name} - Projects Locations Feature Groups Features Get
- `google_vertex_ai_projects_locations_feature_groups_features_operations_get` - GET /v1/{+name} - Projects Locations Feature Groups Features Operations Get
- `google_vertex_ai_projects_locations_feature_groups_features_operations_delete` - DELETE /v1/{+name} - Projects Locations Feature Groups Features Operations Delete
- `google_vertex_ai_projects_locations_feature_groups_features_operations_list_wait` - GET /v1/{+name}:wait - Projects Locations Feature Groups Features Operations List Wait
- `google_vertex_ai_projects_locations_feature_groups_features_operations_wait` - POST /v1/{+name}:wait - Projects Locations Feature Groups Features Operations Wait

## Feature Online Stores

- `google_vertex_ai_projects_locations_feature_online_stores_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Feature Online Stores Set Iam Policy
- `google_vertex_ai_projects_locations_feature_online_stores_get` - GET /v1/{+name} - Projects Locations Feature Online Stores Get
- `google_vertex_ai_projects_locations_feature_online_stores_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Feature Online Stores Get Iam Policy
- `google_vertex_ai_projects_locations_feature_online_stores_create` - POST /v1/{+parent}/featureOnlineStores - Projects Locations Feature Online Stores Create
- `google_vertex_ai_projects_locations_feature_online_stores_list` - GET /v1/{+parent}/featureOnlineStores - Projects Locations Feature Online Stores List
- `google_vertex_ai_projects_locations_feature_online_stores_patch` - PATCH /v1/{+name} - Projects Locations Feature Online Stores Patch
- `google_vertex_ai_projects_locations_feature_online_stores_delete` - DELETE /v1/{+name} - Projects Locations Feature Online Stores Delete
- `google_vertex_ai_projects_locations_feature_online_stores_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Feature Online Stores Test Iam Permissions
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Feature Online Stores Feature Views Set Iam Policy
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Feature Online Stores Feature Views Get Iam Policy
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_list` - GET /v1/{+parent}/featureViews - Projects Locations Feature Online Stores Feature Views List
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Feature Online Stores Feature Views Test Iam Permissions
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_search_nearest_entities` - POST /v1/{+featureView}:searchNearestEntities - Projects Locations Feature Online Stores Feature Views Search Nearest Entities
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_generate_fetch_access_token` - POST /v1/{+featureView}:generateFetchAccessToken - Projects Locations Feature Online Stores Feature Views Generate Fetch Access Token
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_sync` - POST /v1/{+featureView}:sync - Projects Locations Feature Online Stores Feature Views Sync
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_create` - POST /v1/{+parent}/featureViews - Projects Locations Feature Online Stores Feature Views Create
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_patch` - PATCH /v1/{+name} - Projects Locations Feature Online Stores Feature Views Patch
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_delete` - DELETE /v1/{+name} - Projects Locations Feature Online Stores Feature Views Delete
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_get` - GET /v1/{+name} - Projects Locations Feature Online Stores Feature Views Get
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_fetch_feature_values` - POST /v1/{+featureView}:fetchFeatureValues - Projects Locations Feature Online Stores Feature Views Fetch Feature Values
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_direct_write` - POST /v1/{+featureView}:directWrite - Projects Locations Feature Online Stores Feature Views Direct Write
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_feature_view_syncs_get` - GET /v1/{+name} - Projects Locations Feature Online Stores Feature Views Feature View Syncs Get
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_feature_view_syncs_list` - GET /v1/{+parent}/featureViewSyncs - Projects Locations Feature Online Stores Feature Views Feature View Syncs List
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_wait` - POST /v1/{+name}:wait - Projects Locations Feature Online Stores Feature Views Operations Wait
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_list_wait` - GET /v1/{+name}:wait - Projects Locations Feature Online Stores Feature Views Operations List Wait
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_delete` - DELETE /v1/{+name} - Projects Locations Feature Online Stores Feature Views Operations Delete
- `google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_get` - GET /v1/{+name} - Projects Locations Feature Online Stores Feature Views Operations Get
- `google_vertex_ai_projects_locations_feature_online_stores_operations_get` - GET /v1/{+name} - Projects Locations Feature Online Stores Operations Get
- `google_vertex_ai_projects_locations_feature_online_stores_operations_delete` - DELETE /v1/{+name} - Projects Locations Feature Online Stores Operations Delete
- `google_vertex_ai_projects_locations_feature_online_stores_operations_list_wait` - GET /v1/{+name}:wait - Projects Locations Feature Online Stores Operations List Wait
- `google_vertex_ai_projects_locations_feature_online_stores_operations_wait` - POST /v1/{+name}:wait - Projects Locations Feature Online Stores Operations Wait

## Features

- `google_vertex_ai_featurestores_entity_types_features_operations_delete` - DELETE /v1/{+name} - Featurestores Entity Types Features Operations Delete
- `google_vertex_ai_featurestores_entity_types_features_operations_list` - GET /v1/{+name}/operations - Featurestores Entity Types Features Operations List
- `google_vertex_ai_featurestores_entity_types_features_operations_cancel` - POST /v1/{+name}:cancel - Featurestores Entity Types Features Operations Cancel
- `google_vertex_ai_featurestores_entity_types_features_operations_wait` - POST /v1/{+name}:wait - Featurestores Entity Types Features Operations Wait
- `google_vertex_ai_featurestores_entity_types_features_operations_get` - GET /v1/{+name} - Featurestores Entity Types Features Operations Get

## Featurestores

- `google_vertex_ai_projects_locations_featurestores_get` - GET /v1/{+name} - Projects Locations Featurestores Get
- `google_vertex_ai_projects_locations_featurestores_search_features` - GET /v1/{+location}/featurestores:searchFeatures - Projects Locations Featurestores Search Features
- `google_vertex_ai_projects_locations_featurestores_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Featurestores Get Iam Policy
- `google_vertex_ai_projects_locations_featurestores_list` - GET /v1/{+parent}/featurestores - Projects Locations Featurestores List
- `google_vertex_ai_projects_locations_featurestores_patch` - PATCH /v1/{+name} - Projects Locations Featurestores Patch
- `google_vertex_ai_projects_locations_featurestores_batch_read_feature_values` - POST /v1/{+featurestore}:batchReadFeatureValues - Projects Locations Featurestores Batch Read Feature Values
- `google_vertex_ai_projects_locations_featurestores_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Featurestores Test Iam Permissions
- `google_vertex_ai_projects_locations_featurestores_delete` - DELETE /v1/{+name} - Projects Locations Featurestores Delete
- `google_vertex_ai_projects_locations_featurestores_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Featurestores Set Iam Policy
- `google_vertex_ai_projects_locations_featurestores_create` - POST /v1/{+parent}/featurestores - Projects Locations Featurestores Create
- `google_vertex_ai_projects_locations_featurestores_entity_types_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Featurestores Entity Types Get Iam Policy
- `google_vertex_ai_projects_locations_featurestores_entity_types_list` - GET /v1/{+parent}/entityTypes - Projects Locations Featurestores Entity Types List
- `google_vertex_ai_projects_locations_featurestores_entity_types_import_feature_values` - POST /v1/{+entityType}:importFeatureValues - Projects Locations Featurestores Entity Types Import Feature Values
- `google_vertex_ai_projects_locations_featurestores_entity_types_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Featurestores Entity Types Test Iam Permissions
- `google_vertex_ai_projects_locations_featurestores_entity_types_read_feature_values` - POST /v1/{+entityType}:readFeatureValues - Projects Locations Featurestores Entity Types Read Feature Values
- `google_vertex_ai_projects_locations_featurestores_entity_types_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Featurestores Entity Types Set Iam Policy
- `google_vertex_ai_projects_locations_featurestores_entity_types_streaming_read_feature_values` - POST /v1/{+entityType}:streamingReadFeatureValues - Projects Locations Featurestores Entity Types Streaming Read Feature Values
- `google_vertex_ai_projects_locations_featurestores_entity_types_get` - GET /v1/{+name} - Projects Locations Featurestores Entity Types Get
- `google_vertex_ai_projects_locations_featurestores_entity_types_export_feature_values` - POST /v1/{+entityType}:exportFeatureValues - Projects Locations Featurestores Entity Types Export Feature Values
- `google_vertex_ai_projects_locations_featurestores_entity_types_patch` - PATCH /v1/{+name} - Projects Locations Featurestores Entity Types Patch
- `google_vertex_ai_projects_locations_featurestores_entity_types_write_feature_values` - POST /v1/{+entityType}:writeFeatureValues - Projects Locations Featurestores Entity Types Write Feature Values
- `google_vertex_ai_projects_locations_featurestores_entity_types_delete` - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Delete
- `google_vertex_ai_projects_locations_featurestores_entity_types_delete_feature_values` - POST /v1/{+entityType}:deleteFeatureValues - Projects Locations Featurestores Entity Types Delete Feature Values
- `google_vertex_ai_projects_locations_featurestores_entity_types_create` - POST /v1/{+parent}/entityTypes - Projects Locations Featurestores Entity Types Create
- `google_vertex_ai_projects_locations_featurestores_entity_types_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Featurestores Entity Types Operations Cancel
- `google_vertex_ai_projects_locations_featurestores_entity_types_operations_wait` - POST /v1/{+name}:wait - Projects Locations Featurestores Entity Types Operations Wait
- `google_vertex_ai_projects_locations_featurestores_entity_types_operations_list` - GET /v1/{+name}/operations - Projects Locations Featurestores Entity Types Operations List
- `google_vertex_ai_projects_locations_featurestores_entity_types_operations_delete` - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Operations Delete
- `google_vertex_ai_projects_locations_featurestores_entity_types_operations_get` - GET /v1/{+name} - Projects Locations Featurestores Entity Types Operations Get
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_get` - GET /v1/{+name} - Projects Locations Featurestores Entity Types Features Get
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_delete` - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Features Delete
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_create` - POST /v1/{+parent}/features - Projects Locations Featurestores Entity Types Features Create
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_list` - GET /v1/{+parent}/features - Projects Locations Featurestores Entity Types Features List
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_patch` - PATCH /v1/{+name} - Projects Locations Featurestores Entity Types Features Patch
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_batch_create` - POST /v1/{+parent}/features:batchCreate - Projects Locations Featurestores Entity Types Features Batch Create
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Featurestores Entity Types Features Operations Cancel
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_wait` - POST /v1/{+name}:wait - Projects Locations Featurestores Entity Types Features Operations Wait
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_list` - GET /v1/{+name}/operations - Projects Locations Featurestores Entity Types Features Operations List
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_delete` - DELETE /v1/{+name} - Projects Locations Featurestores Entity Types Features Operations Delete
- `google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_get` - GET /v1/{+name} - Projects Locations Featurestores Entity Types Features Operations Get
- `google_vertex_ai_projects_locations_featurestores_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Featurestores Operations Cancel
- `google_vertex_ai_projects_locations_featurestores_operations_wait` - POST /v1/{+name}:wait - Projects Locations Featurestores Operations Wait
- `google_vertex_ai_projects_locations_featurestores_operations_list` - GET /v1/{+name}/operations - Projects Locations Featurestores Operations List
- `google_vertex_ai_projects_locations_featurestores_operations_delete` - DELETE /v1/{+name} - Projects Locations Featurestores Operations Delete
- `google_vertex_ai_projects_locations_featurestores_operations_get` - GET /v1/{+name} - Projects Locations Featurestores Operations Get

## Fetch Predict Operation

- `google_vertex_ai_endpoints_fetch_predict_operation` - POST /v1/{+endpoint}:fetchPredictOperation - Endpoints Fetch Predict Operation
- `google_vertex_ai_publishers_models_fetch_predict_operation` - POST /v1/{+endpoint}:fetchPredictOperation - Publishers Models Fetch Predict Operation

## Generate Content

- `google_vertex_ai_endpoints_generate_content` - POST /v1/{+model}:generateContent - Endpoints Generate Content
- `google_vertex_ai_publishers_models_generate_content` - POST /v1/{+model}:generateContent - Publishers Models Generate Content

## Generate Instance Rubrics

- `google_vertex_ai_v1_generate_instance_rubrics` - POST /v1:generateInstanceRubrics - V1 Generate Instance Rubrics
- `google_vertex_ai_projects_locations_generate_instance_rubrics` - POST /v1/{+location}:generateInstanceRubrics - Projects Locations Generate Instance Rubrics

## Generate Synthetic Data

- `google_vertex_ai_projects_locations_generate_synthetic_data` - POST /v1/{+location}:generateSyntheticData - Projects Locations Generate Synthetic Data

## Get

- `google_vertex_ai_reasoning_engines_get` - GET /v1/{+name} - Reasoning Engines Get
- `google_vertex_ai_reasoning_engines_sandbox_environments_get` - GET /v1/{+name} - Reasoning Engines Sandbox Environments Get
- `google_vertex_ai_reasoning_engines_operations_get` - GET /v1/{+name} - Reasoning Engines Operations Get
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_get` - GET /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Get
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_get` - GET /v1/{+name} - Reasoning Engines Sandbox Environment Templates Get
- `google_vertex_ai_schedules_operations_get` - GET /v1/{+name} - Schedules Operations Get
- `google_vertex_ai_custom_jobs_operations_get` - GET /v1/{+name} - Custom Jobs Operations Get
- `google_vertex_ai_studies_operations_get` - GET /v1/{+name} - Studies Operations Get
- `google_vertex_ai_data_labeling_jobs_operations_get` - GET /v1/{+name} - Data Labeling Jobs Operations Get
- `google_vertex_ai_tuning_jobs_operations_get` - GET /v1/{+name} - Tuning Jobs Operations Get
- `google_vertex_ai_migratable_resources_operations_get` - GET /v1/{+name} - Migratable Resources Operations Get
- `google_vertex_ai_notebook_runtimes_operations_get` - GET /v1/{+name} - Notebook Runtimes Operations Get
- `google_vertex_ai_model_deployment_monitoring_jobs_operations_get` - GET /v1/{+name} - Model Deployment Monitoring Jobs Operations Get
- `google_vertex_ai_operations_get` - GET /v1/{+name} - Operations Get
- `google_vertex_ai_models_operations_get` - GET /v1/{+name} - Models Operations Get
- `google_vertex_ai_notebook_runtime_templates_operations_get` - GET /v1/{+name} - Notebook Runtime Templates Operations Get
- `google_vertex_ai_feature_groups_operations_get` - GET /v1/{+name} - Feature Groups Operations Get
- `google_vertex_ai_projects_locations_get` - GET /v1/{+name} - Projects Locations Get
- `google_vertex_ai_deployment_resource_pools_operations_get` - GET /v1/{+name} - Deployment Resource Pools Operations Get
- `google_vertex_ai_specialist_pools_operations_get` - GET /v1/{+name} - Specialist Pools Operations Get
- `google_vertex_ai_persistent_resources_operations_get` - GET /v1/{+name} - Persistent Resources Operations Get
- `google_vertex_ai_index_endpoints_operations_get` - GET /v1/{+name} - Index Endpoints Operations Get
- `google_vertex_ai_hyperparameter_tuning_jobs_operations_get` - GET /v1/{+name} - Hyperparameter Tuning Jobs Operations Get
- `google_vertex_ai_indexes_operations_get` - GET /v1/{+name} - Indexes Operations Get
- `google_vertex_ai_training_pipelines_operations_get` - GET /v1/{+name} - Training Pipelines Operations Get
- `google_vertex_ai_skills_operations_get` - GET /v1/{+name} - Skills Operations Get
- `google_vertex_ai_endpoints_operations_get` - GET /v1/{+name} - Endpoints Operations Get
- `google_vertex_ai_pipeline_jobs_operations_get` - GET /v1/{+name} - Pipeline Jobs Operations Get
- `google_vertex_ai_rag_corpora_operations_get` - GET /v1/{+name} - Rag Corpora Operations Get
- `google_vertex_ai_tensorboards_operations_get` - GET /v1/{+name} - Tensorboards Operations Get
- `google_vertex_ai_notebook_execution_jobs_operations_get` - GET /v1/{+name} - Notebook Execution Jobs Operations Get
- `google_vertex_ai_rag_engine_config_operations_get` - GET /v1/{+name} - Rag Engine Config Operations Get
- `google_vertex_ai_feature_online_stores_operations_get` - GET /v1/{+name} - Feature Online Stores Operations Get
- `google_vertex_ai_datasets_get` - GET /v1/{+name} - Datasets Get
- `google_vertex_ai_datasets_operations_get` - GET /v1/{+name} - Datasets Operations Get
- `google_vertex_ai_datasets_dataset_versions_get` - GET /v1/{+name} - Datasets Dataset Versions Get
- `google_vertex_ai_publishers_models_get` - GET /v1/{+name} - Publishers Models Get
- `google_vertex_ai_featurestores_operations_get` - GET /v1/{+name} - Featurestores Operations Get
- `google_vertex_ai_metadata_stores_operations_get` - GET /v1/{+name} - Metadata Stores Operations Get
- `google_vertex_ai_batch_prediction_jobs_get` - GET /v1/{+name} - Batch Prediction Jobs Get

## Get Cache Config

- `google_vertex_ai_projects_get_cache_config` - GET /v1/{+name} - Projects Get Cache Config

## Get Rag Engine Config

- `google_vertex_ai_projects_locations_get_rag_engine_config` - GET /v1/{+name} - Projects Locations Get Rag Engine Config

## Hyperparameter Tuning Jobs

- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_get` - GET /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Get
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Hyperparameter Tuning Jobs Cancel
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_create` - POST /v1/{+parent}/hyperparameterTuningJobs - Projects Locations Hyperparameter Tuning Jobs Create
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_list` - GET /v1/{+parent}/hyperparameterTuningJobs - Projects Locations Hyperparameter Tuning Jobs List
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_delete` - DELETE /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Delete
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_get` - GET /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Operations Get
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Hyperparameter Tuning Jobs Operations Delete
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Hyperparameter Tuning Jobs Operations List
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Hyperparameter Tuning Jobs Operations Cancel
- `google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Hyperparameter Tuning Jobs Operations Wait

## Index Endpoints

- `google_vertex_ai_projects_locations_index_endpoints_create` - POST /v1/{+parent}/indexEndpoints - Projects Locations Index Endpoints Create
- `google_vertex_ai_projects_locations_index_endpoints_deploy_index` - POST /v1/{+indexEndpoint}:deployIndex - Projects Locations Index Endpoints Deploy Index
- `google_vertex_ai_projects_locations_index_endpoints_find_neighbors` - POST /v1/{+indexEndpoint}:findNeighbors - Projects Locations Index Endpoints Find Neighbors
- `google_vertex_ai_projects_locations_index_endpoints_undeploy_index` - POST /v1/{+indexEndpoint}:undeployIndex - Projects Locations Index Endpoints Undeploy Index
- `google_vertex_ai_projects_locations_index_endpoints_read_index_datapoints` - POST /v1/{+indexEndpoint}:readIndexDatapoints - Projects Locations Index Endpoints Read Index Datapoints
- `google_vertex_ai_projects_locations_index_endpoints_list` - GET /v1/{+parent}/indexEndpoints - Projects Locations Index Endpoints List
- `google_vertex_ai_projects_locations_index_endpoints_patch` - PATCH /v1/{+name} - Projects Locations Index Endpoints Patch
- `google_vertex_ai_projects_locations_index_endpoints_delete` - DELETE /v1/{+name} - Projects Locations Index Endpoints Delete
- `google_vertex_ai_projects_locations_index_endpoints_mutate_deployed_index` - POST /v1/{+indexEndpoint}:mutateDeployedIndex - Projects Locations Index Endpoints Mutate Deployed Index
- `google_vertex_ai_projects_locations_index_endpoints_get` - GET /v1/{+name} - Projects Locations Index Endpoints Get
- `google_vertex_ai_projects_locations_index_endpoints_operations_get` - GET /v1/{+name} - Projects Locations Index Endpoints Operations Get
- `google_vertex_ai_projects_locations_index_endpoints_operations_delete` - DELETE /v1/{+name} - Projects Locations Index Endpoints Operations Delete
- `google_vertex_ai_projects_locations_index_endpoints_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Index Endpoints Operations Cancel
- `google_vertex_ai_projects_locations_index_endpoints_operations_wait` - POST /v1/{+name}:wait - Projects Locations Index Endpoints Operations Wait
- `google_vertex_ai_projects_locations_index_endpoints_operations_list` - GET /v1/{+name}/operations - Projects Locations Index Endpoints Operations List

## Indexes

- `google_vertex_ai_projects_locations_indexes_upsert_datapoints` - POST /v1/{+index}:upsertDatapoints - Projects Locations Indexes Upsert Datapoints
- `google_vertex_ai_projects_locations_indexes_create` - POST /v1/{+parent}/indexes - Projects Locations Indexes Create
- `google_vertex_ai_projects_locations_indexes_list` - GET /v1/{+parent}/indexes - Projects Locations Indexes List
- `google_vertex_ai_projects_locations_indexes_patch` - PATCH /v1/{+name} - Projects Locations Indexes Patch
- `google_vertex_ai_projects_locations_indexes_delete` - DELETE /v1/{+name} - Projects Locations Indexes Delete
- `google_vertex_ai_projects_locations_indexes_remove_datapoints` - POST /v1/{+index}:removeDatapoints - Projects Locations Indexes Remove Datapoints
- `google_vertex_ai_projects_locations_indexes_get` - GET /v1/{+name} - Projects Locations Indexes Get
- `google_vertex_ai_projects_locations_indexes_operations_list` - GET /v1/{+name}/operations - Projects Locations Indexes Operations List
- `google_vertex_ai_projects_locations_indexes_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Indexes Operations Cancel
- `google_vertex_ai_projects_locations_indexes_operations_wait` - POST /v1/{+name}:wait - Projects Locations Indexes Operations Wait
- `google_vertex_ai_projects_locations_indexes_operations_delete` - DELETE /v1/{+name} - Projects Locations Indexes Operations Delete
- `google_vertex_ai_projects_locations_indexes_operations_get` - GET /v1/{+name} - Projects Locations Indexes Operations Get

## List

- `google_vertex_ai_reasoning_engines_list` - GET /v1/reasoningEngines - Reasoning Engines List
- `google_vertex_ai_reasoning_engines_sandbox_environments_list` - GET /v1/{+parent}/sandboxEnvironments - Reasoning Engines Sandbox Environments List
- `google_vertex_ai_reasoning_engines_operations_list` - GET /v1/{+name}/operations - Reasoning Engines Operations List
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_list` - GET /v1/{+parent}/sandboxEnvironmentSnapshots - Reasoning Engines Sandbox Environment Snapshots List
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_list` - GET /v1/{+parent}/sandboxEnvironmentTemplates - Reasoning Engines Sandbox Environment Templates List
- `google_vertex_ai_schedules_operations_list` - GET /v1/{+name}/operations - Schedules Operations List
- `google_vertex_ai_custom_jobs_operations_list` - GET /v1/{+name}/operations - Custom Jobs Operations List
- `google_vertex_ai_studies_operations_list` - GET /v1/{+name}/operations - Studies Operations List
- `google_vertex_ai_data_labeling_jobs_operations_list` - GET /v1/{+name}/operations - Data Labeling Jobs Operations List
- `google_vertex_ai_tuning_jobs_operations_list` - GET /v1/{+name}/operations - Tuning Jobs Operations List
- `google_vertex_ai_migratable_resources_operations_list` - GET /v1/{+name}/operations - Migratable Resources Operations List
- `google_vertex_ai_notebook_runtimes_operations_list` - GET /v1/{+name}/operations - Notebook Runtimes Operations List
- `google_vertex_ai_model_deployment_monitoring_jobs_operations_list` - GET /v1/{+name}/operations - Model Deployment Monitoring Jobs Operations List
- `google_vertex_ai_operations_list` - GET /v1/operations - Operations List
- `google_vertex_ai_models_operations_list` - GET /v1/{+name}/operations - Models Operations List
- `google_vertex_ai_notebook_runtime_templates_operations_list` - GET /v1/{+name}/operations - Notebook Runtime Templates Operations List
- `google_vertex_ai_projects_locations_list` - GET /v1/{+name}/locations - Projects Locations List
- `google_vertex_ai_deployment_resource_pools_operations_list` - GET /v1/{+name}/operations - Deployment Resource Pools Operations List
- `google_vertex_ai_specialist_pools_operations_list` - GET /v1/{+name}/operations - Specialist Pools Operations List
- `google_vertex_ai_persistent_resources_operations_list` - GET /v1/{+name}/operations - Persistent Resources Operations List
- `google_vertex_ai_index_endpoints_operations_list` - GET /v1/{+name}/operations - Index Endpoints Operations List
- `google_vertex_ai_hyperparameter_tuning_jobs_operations_list` - GET /v1/{+name}/operations - Hyperparameter Tuning Jobs Operations List
- `google_vertex_ai_indexes_operations_list` - GET /v1/{+name}/operations - Indexes Operations List
- `google_vertex_ai_training_pipelines_operations_list` - GET /v1/{+name}/operations - Training Pipelines Operations List
- `google_vertex_ai_skills_operations_list` - GET /v1/{+name}/operations - Skills Operations List
- `google_vertex_ai_endpoints_operations_list` - GET /v1/{+name}/operations - Endpoints Operations List
- `google_vertex_ai_pipeline_jobs_operations_list` - GET /v1/{+name}/operations - Pipeline Jobs Operations List
- `google_vertex_ai_rag_corpora_operations_list` - GET /v1/{+name}/operations - Rag Corpora Operations List
- `google_vertex_ai_tensorboards_operations_list` - GET /v1/{+name}/operations - Tensorboards Operations List
- `google_vertex_ai_notebook_execution_jobs_operations_list` - GET /v1/{+name}/operations - Notebook Execution Jobs Operations List
- `google_vertex_ai_rag_engine_config_operations_list` - GET /v1/{+name}/operations - Rag Engine Config Operations List
- `google_vertex_ai_datasets_list` - GET /v1/datasets - Datasets List
- `google_vertex_ai_datasets_operations_list` - GET /v1/{+name}/operations - Datasets Operations List
- `google_vertex_ai_datasets_dataset_versions_list` - GET /v1/{+parent}/datasetVersions - Datasets Dataset Versions List
- `google_vertex_ai_featurestores_operations_list` - GET /v1/{+name}/operations - Featurestores Operations List
- `google_vertex_ai_metadata_stores_operations_list` - GET /v1/{+name}/operations - Metadata Stores Operations List
- `google_vertex_ai_batch_prediction_jobs_list` - GET /v1/batchPredictionJobs - Batch Prediction Jobs List

## List Wait

- `google_vertex_ai_feature_groups_operations_list_wait` - GET /v1/{+name}:wait - Feature Groups Operations List Wait
- `google_vertex_ai_feature_online_stores_operations_list_wait` - GET /v1/{+name}:wait - Feature Online Stores Operations List Wait

## Metadata Stores

- `google_vertex_ai_projects_locations_metadata_stores_get` - GET /v1/{+name} - Projects Locations Metadata Stores Get
- `google_vertex_ai_projects_locations_metadata_stores_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Delete
- `google_vertex_ai_projects_locations_metadata_stores_create` - POST /v1/{+parent}/metadataStores - Projects Locations Metadata Stores Create
- `google_vertex_ai_projects_locations_metadata_stores_list` - GET /v1/{+parent}/metadataStores - Projects Locations Metadata Stores List
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Artifacts Delete
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_create` - POST /v1/{+parent}/artifacts - Projects Locations Metadata Stores Artifacts Create
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_list` - GET /v1/{+parent}/artifacts - Projects Locations Metadata Stores Artifacts List
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_patch` - PATCH /v1/{+name} - Projects Locations Metadata Stores Artifacts Patch
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_get` - GET /v1/{+name} - Projects Locations Metadata Stores Artifacts Get
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_query_artifact_lineage_subgraph` - GET /v1/{+artifact}:queryArtifactLineageSubgraph - Projects Locations Metadata Stores Artifacts Query Artifact Lineage Subgraph
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_purge` - POST /v1/{+parent}/artifacts:purge - Projects Locations Metadata Stores Artifacts Purge
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Artifacts Operations Delete
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_list` - GET /v1/{+name}/operations - Projects Locations Metadata Stores Artifacts Operations List
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Artifacts Operations Cancel
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_wait` - POST /v1/{+name}:wait - Projects Locations Metadata Stores Artifacts Operations Wait
- `google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_get` - GET /v1/{+name} - Projects Locations Metadata Stores Artifacts Operations Get
- `google_vertex_ai_projects_locations_metadata_stores_contexts_purge` - POST /v1/{+parent}/contexts:purge - Projects Locations Metadata Stores Contexts Purge
- `google_vertex_ai_projects_locations_metadata_stores_contexts_query_context_lineage_subgraph` - GET /v1/{+context}:queryContextLineageSubgraph - Projects Locations Metadata Stores Contexts Query Context Lineage Subgraph
- `google_vertex_ai_projects_locations_metadata_stores_contexts_add_context_children` - POST /v1/{+context}:addContextChildren - Projects Locations Metadata Stores Contexts Add Context Children
- `google_vertex_ai_projects_locations_metadata_stores_contexts_create` - POST /v1/{+parent}/contexts - Projects Locations Metadata Stores Contexts Create
- `google_vertex_ai_projects_locations_metadata_stores_contexts_remove_context_children` - POST /v1/{+context}:removeContextChildren - Projects Locations Metadata Stores Contexts Remove Context Children
- `google_vertex_ai_projects_locations_metadata_stores_contexts_get` - GET /v1/{+name} - Projects Locations Metadata Stores Contexts Get
- `google_vertex_ai_projects_locations_metadata_stores_contexts_list` - GET /v1/{+parent}/contexts - Projects Locations Metadata Stores Contexts List
- `google_vertex_ai_projects_locations_metadata_stores_contexts_patch` - PATCH /v1/{+name} - Projects Locations Metadata Stores Contexts Patch
- `google_vertex_ai_projects_locations_metadata_stores_contexts_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Contexts Delete
- `google_vertex_ai_projects_locations_metadata_stores_contexts_add_context_artifacts_and_executions` - POST /v1/{+context}:addContextArtifactsAndExecutions - Projects Locations Metadata Stores Contexts Add Context Artifacts And Executions
- `google_vertex_ai_projects_locations_metadata_stores_contexts_operations_get` - GET /v1/{+name} - Projects Locations Metadata Stores Contexts Operations Get
- `google_vertex_ai_projects_locations_metadata_stores_contexts_operations_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Contexts Operations Delete
- `google_vertex_ai_projects_locations_metadata_stores_contexts_operations_list` - GET /v1/{+name}/operations - Projects Locations Metadata Stores Contexts Operations List
- `google_vertex_ai_projects_locations_metadata_stores_contexts_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Contexts Operations Cancel
- `google_vertex_ai_projects_locations_metadata_stores_contexts_operations_wait` - POST /v1/{+name}:wait - Projects Locations Metadata Stores Contexts Operations Wait
- `google_vertex_ai_projects_locations_metadata_stores_executions_purge` - POST /v1/{+parent}/executions:purge - Projects Locations Metadata Stores Executions Purge
- `google_vertex_ai_projects_locations_metadata_stores_executions_get` - GET /v1/{+name} - Projects Locations Metadata Stores Executions Get
- `google_vertex_ai_projects_locations_metadata_stores_executions_add_execution_events` - POST /v1/{+execution}:addExecutionEvents - Projects Locations Metadata Stores Executions Add Execution Events
- `google_vertex_ai_projects_locations_metadata_stores_executions_create` - POST /v1/{+parent}/executions - Projects Locations Metadata Stores Executions Create
- `google_vertex_ai_projects_locations_metadata_stores_executions_list` - GET /v1/{+parent}/executions - Projects Locations Metadata Stores Executions List
- `google_vertex_ai_projects_locations_metadata_stores_executions_patch` - PATCH /v1/{+name} - Projects Locations Metadata Stores Executions Patch
- `google_vertex_ai_projects_locations_metadata_stores_executions_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Executions Delete
- `google_vertex_ai_projects_locations_metadata_stores_executions_query_execution_inputs_and_outputs` - GET /v1/{+execution}:queryExecutionInputsAndOutputs - Projects Locations Metadata Stores Executions Query Execution Inputs And Outputs
- `google_vertex_ai_projects_locations_metadata_stores_executions_operations_get` - GET /v1/{+name} - Projects Locations Metadata Stores Executions Operations Get
- `google_vertex_ai_projects_locations_metadata_stores_executions_operations_list` - GET /v1/{+name}/operations - Projects Locations Metadata Stores Executions Operations List
- `google_vertex_ai_projects_locations_metadata_stores_executions_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Executions Operations Cancel
- `google_vertex_ai_projects_locations_metadata_stores_executions_operations_wait` - POST /v1/{+name}:wait - Projects Locations Metadata Stores Executions Operations Wait
- `google_vertex_ai_projects_locations_metadata_stores_executions_operations_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Executions Operations Delete
- `google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_get` - GET /v1/{+name} - Projects Locations Metadata Stores Metadata Schemas Get
- `google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_create` - POST /v1/{+parent}/metadataSchemas - Projects Locations Metadata Stores Metadata Schemas Create
- `google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_list` - GET /v1/{+parent}/metadataSchemas - Projects Locations Metadata Stores Metadata Schemas List
- `google_vertex_ai_projects_locations_metadata_stores_operations_get` - GET /v1/{+name} - Projects Locations Metadata Stores Operations Get
- `google_vertex_ai_projects_locations_metadata_stores_operations_delete` - DELETE /v1/{+name} - Projects Locations Metadata Stores Operations Delete
- `google_vertex_ai_projects_locations_metadata_stores_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Metadata Stores Operations Cancel
- `google_vertex_ai_projects_locations_metadata_stores_operations_wait` - POST /v1/{+name}:wait - Projects Locations Metadata Stores Operations Wait
- `google_vertex_ai_projects_locations_metadata_stores_operations_list` - GET /v1/{+name}/operations - Projects Locations Metadata Stores Operations List

## Migratable Resources

- `google_vertex_ai_projects_locations_migratable_resources_batch_migrate` - POST /v1/{+parent}/migratableResources:batchMigrate - Projects Locations Migratable Resources Batch Migrate
- `google_vertex_ai_projects_locations_migratable_resources_search` - POST /v1/{+parent}/migratableResources:search - Projects Locations Migratable Resources Search
- `google_vertex_ai_projects_locations_migratable_resources_operations_get` - GET /v1/{+name} - Projects Locations Migratable Resources Operations Get
- `google_vertex_ai_projects_locations_migratable_resources_operations_list` - GET /v1/{+name}/operations - Projects Locations Migratable Resources Operations List
- `google_vertex_ai_projects_locations_migratable_resources_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Migratable Resources Operations Cancel
- `google_vertex_ai_projects_locations_migratable_resources_operations_wait` - POST /v1/{+name}:wait - Projects Locations Migratable Resources Operations Wait
- `google_vertex_ai_projects_locations_migratable_resources_operations_delete` - DELETE /v1/{+name} - Projects Locations Migratable Resources Operations Delete

## Model Deployment Monitoring Jobs

- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_delete` - DELETE /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Delete
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_create` - POST /v1/{+parent}/modelDeploymentMonitoringJobs - Projects Locations Model Deployment Monitoring Jobs Create
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_list` - GET /v1/{+parent}/modelDeploymentMonitoringJobs - Projects Locations Model Deployment Monitoring Jobs List
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_patch` - PATCH /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Patch
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_get` - GET /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Get
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_pause` - POST /v1/{+name}:pause - Projects Locations Model Deployment Monitoring Jobs Pause
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_search_model_deployment_monitoring_stats_anomalies` - POST /v1/{+modelDeploymentMonitoringJob}:searchModelDeploymentMonitoringStatsAnomalies - Projects Locations Model Deployment Monitoring Jobs Search Model Deployment Monitoring Stats Anomalies
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_resume` - POST /v1/{+name}:resume - Projects Locations Model Deployment Monitoring Jobs Resume
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_get` - GET /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Operations Get
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Model Deployment Monitoring Jobs Operations Delete
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Model Deployment Monitoring Jobs Operations List
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Model Deployment Monitoring Jobs Operations Cancel
- `google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Model Deployment Monitoring Jobs Operations Wait

## Models

- `google_vertex_ai_projects_locations_models_patch` - PATCH /v1/{+name} - Projects Locations Models Patch
- `google_vertex_ai_projects_locations_models_copy` - POST /v1/{+parent}/models:copy - Projects Locations Models Copy
- `google_vertex_ai_projects_locations_models_delete` - DELETE /v1/{+name} - Projects Locations Models Delete
- `google_vertex_ai_projects_locations_models_get` - GET /v1/{+name} - Projects Locations Models Get
- `google_vertex_ai_projects_locations_models_upload` - POST /v1/{+parent}/models:upload - Projects Locations Models Upload
- `google_vertex_ai_projects_locations_models_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Models Get Iam Policy
- `google_vertex_ai_projects_locations_models_list` - GET /v1/{+parent}/models - Projects Locations Models List
- `google_vertex_ai_projects_locations_models_export` - POST /v1/{+name}:export - Projects Locations Models Export
- `google_vertex_ai_projects_locations_models_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Models Test Iam Permissions
- `google_vertex_ai_projects_locations_models_delete_version` - DELETE /v1/{+name}:deleteVersion - Projects Locations Models Delete Version
- `google_vertex_ai_projects_locations_models_merge_version_aliases` - POST /v1/{+name}:mergeVersionAliases - Projects Locations Models Merge Version Aliases
- `google_vertex_ai_projects_locations_models_list_checkpoints` - GET /v1/{+name}:listCheckpoints - Projects Locations Models List Checkpoints
- `google_vertex_ai_projects_locations_models_list_versions` - GET /v1/{+name}:listVersions - Projects Locations Models List Versions
- `google_vertex_ai_projects_locations_models_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Models Set Iam Policy
- `google_vertex_ai_projects_locations_models_update_explanation_dataset` - POST /v1/{+model}:updateExplanationDataset - Projects Locations Models Update Explanation Dataset
- `google_vertex_ai_projects_locations_models_operations_delete` - DELETE /v1/{+name} - Projects Locations Models Operations Delete
- `google_vertex_ai_projects_locations_models_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Models Operations Cancel
- `google_vertex_ai_projects_locations_models_operations_wait` - POST /v1/{+name}:wait - Projects Locations Models Operations Wait
- `google_vertex_ai_projects_locations_models_operations_list` - GET /v1/{+name}/operations - Projects Locations Models Operations List
- `google_vertex_ai_projects_locations_models_operations_get` - GET /v1/{+name} - Projects Locations Models Operations Get
- `google_vertex_ai_projects_locations_models_evaluations_import` - POST /v1/{+parent}/evaluations:import - Projects Locations Models Evaluations Import
- `google_vertex_ai_projects_locations_models_evaluations_list` - GET /v1/{+parent}/evaluations - Projects Locations Models Evaluations List
- `google_vertex_ai_projects_locations_models_evaluations_get` - GET /v1/{+name} - Projects Locations Models Evaluations Get
- `google_vertex_ai_projects_locations_models_evaluations_operations_get` - GET /v1/{+name} - Projects Locations Models Evaluations Operations Get
- `google_vertex_ai_projects_locations_models_evaluations_operations_delete` - DELETE /v1/{+name} - Projects Locations Models Evaluations Operations Delete
- `google_vertex_ai_projects_locations_models_evaluations_operations_list` - GET /v1/{+name}/operations - Projects Locations Models Evaluations Operations List
- `google_vertex_ai_projects_locations_models_evaluations_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Models Evaluations Operations Cancel
- `google_vertex_ai_projects_locations_models_evaluations_operations_wait` - POST /v1/{+name}:wait - Projects Locations Models Evaluations Operations Wait
- `google_vertex_ai_projects_locations_models_evaluations_slices_list` - GET /v1/{+parent}/slices - Projects Locations Models Evaluations Slices List
- `google_vertex_ai_projects_locations_models_evaluations_slices_batch_import` - POST /v1/{+parent}:batchImport - Projects Locations Models Evaluations Slices Batch Import
- `google_vertex_ai_projects_locations_models_evaluations_slices_get` - GET /v1/{+name} - Projects Locations Models Evaluations Slices Get

## Nas Jobs

- `google_vertex_ai_projects_locations_nas_jobs_delete` - DELETE /v1/{+name} - Projects Locations Nas Jobs Delete
- `google_vertex_ai_projects_locations_nas_jobs_create` - POST /v1/{+parent}/nasJobs - Projects Locations Nas Jobs Create
- `google_vertex_ai_projects_locations_nas_jobs_list` - GET /v1/{+parent}/nasJobs - Projects Locations Nas Jobs List
- `google_vertex_ai_projects_locations_nas_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Nas Jobs Cancel
- `google_vertex_ai_projects_locations_nas_jobs_get` - GET /v1/{+name} - Projects Locations Nas Jobs Get
- `google_vertex_ai_projects_locations_nas_jobs_nas_trial_details_get` - GET /v1/{+name} - Projects Locations Nas Jobs Nas Trial Details Get
- `google_vertex_ai_projects_locations_nas_jobs_nas_trial_details_list` - GET /v1/{+parent}/nasTrialDetails - Projects Locations Nas Jobs Nas Trial Details List

## Notebook Execution Jobs

- `google_vertex_ai_projects_locations_notebook_execution_jobs_create` - POST /v1/{+parent}/notebookExecutionJobs - Projects Locations Notebook Execution Jobs Create
- `google_vertex_ai_projects_locations_notebook_execution_jobs_list` - GET /v1/{+parent}/notebookExecutionJobs - Projects Locations Notebook Execution Jobs List
- `google_vertex_ai_projects_locations_notebook_execution_jobs_get` - GET /v1/{+name} - Projects Locations Notebook Execution Jobs Get
- `google_vertex_ai_projects_locations_notebook_execution_jobs_delete` - DELETE /v1/{+name} - Projects Locations Notebook Execution Jobs Delete
- `google_vertex_ai_projects_locations_notebook_execution_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Notebook Execution Jobs Operations Delete
- `google_vertex_ai_projects_locations_notebook_execution_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Notebook Execution Jobs Operations List
- `google_vertex_ai_projects_locations_notebook_execution_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Notebook Execution Jobs Operations Cancel
- `google_vertex_ai_projects_locations_notebook_execution_jobs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Notebook Execution Jobs Operations Wait
- `google_vertex_ai_projects_locations_notebook_execution_jobs_operations_get` - GET /v1/{+name} - Projects Locations Notebook Execution Jobs Operations Get

## Notebook Runtime Templates

- `google_vertex_ai_projects_locations_notebook_runtime_templates_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Notebook Runtime Templates Set Iam Policy
- `google_vertex_ai_projects_locations_notebook_runtime_templates_get` - GET /v1/{+name} - Projects Locations Notebook Runtime Templates Get
- `google_vertex_ai_projects_locations_notebook_runtime_templates_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Notebook Runtime Templates Get Iam Policy
- `google_vertex_ai_projects_locations_notebook_runtime_templates_create` - POST /v1/{+parent}/notebookRuntimeTemplates - Projects Locations Notebook Runtime Templates Create
- `google_vertex_ai_projects_locations_notebook_runtime_templates_list` - GET /v1/{+parent}/notebookRuntimeTemplates - Projects Locations Notebook Runtime Templates List
- `google_vertex_ai_projects_locations_notebook_runtime_templates_patch` - PATCH /v1/{+name} - Projects Locations Notebook Runtime Templates Patch
- `google_vertex_ai_projects_locations_notebook_runtime_templates_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Notebook Runtime Templates Test Iam Permissions
- `google_vertex_ai_projects_locations_notebook_runtime_templates_delete` - DELETE /v1/{+name} - Projects Locations Notebook Runtime Templates Delete
- `google_vertex_ai_projects_locations_notebook_runtime_templates_operations_list` - GET /v1/{+name}/operations - Projects Locations Notebook Runtime Templates Operations List
- `google_vertex_ai_projects_locations_notebook_runtime_templates_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Notebook Runtime Templates Operations Cancel
- `google_vertex_ai_projects_locations_notebook_runtime_templates_operations_wait` - POST /v1/{+name}:wait - Projects Locations Notebook Runtime Templates Operations Wait
- `google_vertex_ai_projects_locations_notebook_runtime_templates_operations_delete` - DELETE /v1/{+name} - Projects Locations Notebook Runtime Templates Operations Delete
- `google_vertex_ai_projects_locations_notebook_runtime_templates_operations_get` - GET /v1/{+name} - Projects Locations Notebook Runtime Templates Operations Get

## Notebook Runtimes

- `google_vertex_ai_projects_locations_notebook_runtimes_delete` - DELETE /v1/{+name} - Projects Locations Notebook Runtimes Delete
- `google_vertex_ai_projects_locations_notebook_runtimes_upgrade` - POST /v1/{+name}:upgrade - Projects Locations Notebook Runtimes Upgrade
- `google_vertex_ai_projects_locations_notebook_runtimes_start` - POST /v1/{+name}:start - Projects Locations Notebook Runtimes Start
- `google_vertex_ai_projects_locations_notebook_runtimes_list` - GET /v1/{+parent}/notebookRuntimes - Projects Locations Notebook Runtimes List
- `google_vertex_ai_projects_locations_notebook_runtimes_assign` - POST /v1/{+parent}/notebookRuntimes:assign - Projects Locations Notebook Runtimes Assign
- `google_vertex_ai_projects_locations_notebook_runtimes_get` - GET /v1/{+name} - Projects Locations Notebook Runtimes Get
- `google_vertex_ai_projects_locations_notebook_runtimes_stop` - POST /v1/{+name}:stop - Projects Locations Notebook Runtimes Stop
- `google_vertex_ai_projects_locations_notebook_runtimes_operations_get` - GET /v1/{+name} - Projects Locations Notebook Runtimes Operations Get
- `google_vertex_ai_projects_locations_notebook_runtimes_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Notebook Runtimes Operations Cancel
- `google_vertex_ai_projects_locations_notebook_runtimes_operations_wait` - POST /v1/{+name}:wait - Projects Locations Notebook Runtimes Operations Wait
- `google_vertex_ai_projects_locations_notebook_runtimes_operations_list` - GET /v1/{+name}/operations - Projects Locations Notebook Runtimes Operations List
- `google_vertex_ai_projects_locations_notebook_runtimes_operations_delete` - DELETE /v1/{+name} - Projects Locations Notebook Runtimes Operations Delete

## Operations

- `google_vertex_ai_reasoning_engines_sandbox_environments_operations_cancel` - POST /v1/{+name}:cancel - Reasoning Engines Sandbox Environments Operations Cancel
- `google_vertex_ai_reasoning_engines_sandbox_environments_operations_wait` - POST /v1/{+name}:wait - Reasoning Engines Sandbox Environments Operations Wait
- `google_vertex_ai_reasoning_engines_sandbox_environments_operations_get` - GET /v1/{+name} - Reasoning Engines Sandbox Environments Operations Get
- `google_vertex_ai_reasoning_engines_sandbox_environments_operations_delete` - DELETE /v1/{+name} - Reasoning Engines Sandbox Environments Operations Delete
- `google_vertex_ai_reasoning_engines_sessions_operations_delete` - DELETE /v1/{+name} - Reasoning Engines Sessions Operations Delete
- `google_vertex_ai_reasoning_engines_sessions_operations_list` - GET /v1/{+name}/operations - Reasoning Engines Sessions Operations List
- `google_vertex_ai_reasoning_engines_sessions_operations_cancel` - POST /v1/{+name}:cancel - Reasoning Engines Sessions Operations Cancel
- `google_vertex_ai_reasoning_engines_sessions_operations_wait` - POST /v1/{+name}:wait - Reasoning Engines Sessions Operations Wait
- `google_vertex_ai_reasoning_engines_sessions_operations_get` - GET /v1/{+name} - Reasoning Engines Sessions Operations Get
- `google_vertex_ai_reasoning_engines_memories_operations_get` - GET /v1/{+name} - Reasoning Engines Memories Operations Get
- `google_vertex_ai_reasoning_engines_memories_operations_cancel` - POST /v1/{+name}:cancel - Reasoning Engines Memories Operations Cancel
- `google_vertex_ai_reasoning_engines_memories_operations_wait` - POST /v1/{+name}:wait - Reasoning Engines Memories Operations Wait
- `google_vertex_ai_reasoning_engines_memories_operations_list` - GET /v1/{+name}/operations - Reasoning Engines Memories Operations List
- `google_vertex_ai_reasoning_engines_memories_operations_delete` - DELETE /v1/{+name} - Reasoning Engines Memories Operations Delete
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_cancel` - POST /v1/{+name}:cancel - Reasoning Engines Sandbox Environment Snapshots Operations Cancel
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_wait` - POST /v1/{+name}:wait - Reasoning Engines Sandbox Environment Snapshots Operations Wait
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_delete` - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Operations Delete
- `google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_get` - GET /v1/{+name} - Reasoning Engines Sandbox Environment Snapshots Operations Get
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_delete` - DELETE /v1/{+name} - Reasoning Engines Sandbox Environment Templates Operations Delete
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_get` - GET /v1/{+name} - Reasoning Engines Sandbox Environment Templates Operations Get
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_cancel` - POST /v1/{+name}:cancel - Reasoning Engines Sandbox Environment Templates Operations Cancel
- `google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_wait` - POST /v1/{+name}:wait - Reasoning Engines Sandbox Environment Templates Operations Wait
- `google_vertex_ai_studies_trials_operations_list` - GET /v1/{+name}/operations - Studies Trials Operations List
- `google_vertex_ai_studies_trials_operations_cancel` - POST /v1/{+name}:cancel - Studies Trials Operations Cancel
- `google_vertex_ai_studies_trials_operations_wait` - POST /v1/{+name}:wait - Studies Trials Operations Wait
- `google_vertex_ai_studies_trials_operations_delete` - DELETE /v1/{+name} - Studies Trials Operations Delete
- `google_vertex_ai_studies_trials_operations_get` - GET /v1/{+name} - Studies Trials Operations Get
- `google_vertex_ai_models_evaluations_operations_cancel` - POST /v1/{+name}:cancel - Models Evaluations Operations Cancel
- `google_vertex_ai_models_evaluations_operations_wait` - POST /v1/{+name}:wait - Models Evaluations Operations Wait
- `google_vertex_ai_models_evaluations_operations_list` - GET /v1/{+name}/operations - Models Evaluations Operations List
- `google_vertex_ai_models_evaluations_operations_delete` - DELETE /v1/{+name} - Models Evaluations Operations Delete
- `google_vertex_ai_models_evaluations_operations_get` - GET /v1/{+name} - Models Evaluations Operations Get
- `google_vertex_ai_feature_groups_features_operations_list_wait` - GET /v1/{+name}:wait - Feature Groups Features Operations List Wait
- `google_vertex_ai_feature_groups_features_operations_wait` - POST /v1/{+name}:wait - Feature Groups Features Operations Wait
- `google_vertex_ai_feature_groups_features_operations_get` - GET /v1/{+name} - Feature Groups Features Operations Get
- `google_vertex_ai_feature_groups_features_operations_delete` - DELETE /v1/{+name} - Feature Groups Features Operations Delete
- `google_vertex_ai_projects_locations_operations_delete` - DELETE /v1/{+name} - Projects Locations Operations Delete
- `google_vertex_ai_projects_locations_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Operations Cancel
- `google_vertex_ai_projects_locations_operations_wait` - POST /v1/{+name}:wait - Projects Locations Operations Wait
- `google_vertex_ai_projects_locations_operations_list` - GET /v1/{+name}/operations - Projects Locations Operations List
- `google_vertex_ai_projects_locations_operations_get` - GET /v1/{+name} - Projects Locations Operations Get
- `google_vertex_ai_rag_corpora_rag_files_operations_get` - GET /v1/{+name} - Rag Corpora Rag Files Operations Get
- `google_vertex_ai_rag_corpora_rag_files_operations_list` - GET /v1/{+name}/operations - Rag Corpora Rag Files Operations List
- `google_vertex_ai_rag_corpora_rag_files_operations_cancel` - POST /v1/{+name}:cancel - Rag Corpora Rag Files Operations Cancel
- `google_vertex_ai_rag_corpora_rag_files_operations_wait` - POST /v1/{+name}:wait - Rag Corpora Rag Files Operations Wait
- `google_vertex_ai_rag_corpora_rag_files_operations_delete` - DELETE /v1/{+name} - Rag Corpora Rag Files Operations Delete
- `google_vertex_ai_tensorboards_experiments_operations_cancel` - POST /v1/{+name}:cancel - Tensorboards Experiments Operations Cancel
- `google_vertex_ai_tensorboards_experiments_operations_wait` - POST /v1/{+name}:wait - Tensorboards Experiments Operations Wait
- `google_vertex_ai_tensorboards_experiments_operations_list` - GET /v1/{+name}/operations - Tensorboards Experiments Operations List
- `google_vertex_ai_tensorboards_experiments_operations_delete` - DELETE /v1/{+name} - Tensorboards Experiments Operations Delete
- `google_vertex_ai_tensorboards_experiments_operations_get` - GET /v1/{+name} - Tensorboards Experiments Operations Get
- `google_vertex_ai_feature_online_stores_feature_views_operations_wait` - POST /v1/{+name}:wait - Feature Online Stores Feature Views Operations Wait
- `google_vertex_ai_feature_online_stores_feature_views_operations_list_wait` - GET /v1/{+name}:wait - Feature Online Stores Feature Views Operations List Wait
- `google_vertex_ai_feature_online_stores_feature_views_operations_delete` - DELETE /v1/{+name} - Feature Online Stores Feature Views Operations Delete
- `google_vertex_ai_feature_online_stores_feature_views_operations_get` - GET /v1/{+name} - Feature Online Stores Feature Views Operations Get
- `google_vertex_ai_datasets_saved_queries_operations_delete` - DELETE /v1/{+name} - Datasets Saved Queries Operations Delete
- `google_vertex_ai_datasets_saved_queries_operations_list` - GET /v1/{+name}/operations - Datasets Saved Queries Operations List
- `google_vertex_ai_datasets_saved_queries_operations_cancel` - POST /v1/{+name}:cancel - Datasets Saved Queries Operations Cancel
- `google_vertex_ai_datasets_saved_queries_operations_wait` - POST /v1/{+name}:wait - Datasets Saved Queries Operations Wait
- `google_vertex_ai_datasets_saved_queries_operations_get` - GET /v1/{+name} - Datasets Saved Queries Operations Get
- `google_vertex_ai_datasets_annotation_specs_operations_delete` - DELETE /v1/{+name} - Datasets Annotation Specs Operations Delete
- `google_vertex_ai_datasets_annotation_specs_operations_cancel` - POST /v1/{+name}:cancel - Datasets Annotation Specs Operations Cancel
- `google_vertex_ai_datasets_annotation_specs_operations_wait` - POST /v1/{+name}:wait - Datasets Annotation Specs Operations Wait
- `google_vertex_ai_datasets_annotation_specs_operations_list` - GET /v1/{+name}/operations - Datasets Annotation Specs Operations List
- `google_vertex_ai_datasets_annotation_specs_operations_get` - GET /v1/{+name} - Datasets Annotation Specs Operations Get
- `google_vertex_ai_datasets_data_items_operations_cancel` - POST /v1/{+name}:cancel - Datasets Data Items Operations Cancel
- `google_vertex_ai_datasets_data_items_operations_wait` - POST /v1/{+name}:wait - Datasets Data Items Operations Wait
- `google_vertex_ai_datasets_data_items_operations_list` - GET /v1/{+name}/operations - Datasets Data Items Operations List
- `google_vertex_ai_datasets_data_items_operations_delete` - DELETE /v1/{+name} - Datasets Data Items Operations Delete
- `google_vertex_ai_datasets_data_items_operations_get` - GET /v1/{+name} - Datasets Data Items Operations Get
- `google_vertex_ai_featurestores_entity_types_operations_delete` - DELETE /v1/{+name} - Featurestores Entity Types Operations Delete
- `google_vertex_ai_featurestores_entity_types_operations_cancel` - POST /v1/{+name}:cancel - Featurestores Entity Types Operations Cancel
- `google_vertex_ai_featurestores_entity_types_operations_wait` - POST /v1/{+name}:wait - Featurestores Entity Types Operations Wait
- `google_vertex_ai_featurestores_entity_types_operations_list` - GET /v1/{+name}/operations - Featurestores Entity Types Operations List
- `google_vertex_ai_featurestores_entity_types_operations_get` - GET /v1/{+name} - Featurestores Entity Types Operations Get
- `google_vertex_ai_metadata_stores_artifacts_operations_delete` - DELETE /v1/{+name} - Metadata Stores Artifacts Operations Delete
- `google_vertex_ai_metadata_stores_artifacts_operations_cancel` - POST /v1/{+name}:cancel - Metadata Stores Artifacts Operations Cancel
- `google_vertex_ai_metadata_stores_artifacts_operations_wait` - POST /v1/{+name}:wait - Metadata Stores Artifacts Operations Wait
- `google_vertex_ai_metadata_stores_artifacts_operations_list` - GET /v1/{+name}/operations - Metadata Stores Artifacts Operations List
- `google_vertex_ai_metadata_stores_artifacts_operations_get` - GET /v1/{+name} - Metadata Stores Artifacts Operations Get
- `google_vertex_ai_metadata_stores_contexts_operations_get` - GET /v1/{+name} - Metadata Stores Contexts Operations Get
- `google_vertex_ai_metadata_stores_contexts_operations_delete` - DELETE /v1/{+name} - Metadata Stores Contexts Operations Delete
- `google_vertex_ai_metadata_stores_contexts_operations_cancel` - POST /v1/{+name}:cancel - Metadata Stores Contexts Operations Cancel
- `google_vertex_ai_metadata_stores_contexts_operations_wait` - POST /v1/{+name}:wait - Metadata Stores Contexts Operations Wait
- `google_vertex_ai_metadata_stores_contexts_operations_list` - GET /v1/{+name}/operations - Metadata Stores Contexts Operations List
- `google_vertex_ai_metadata_stores_executions_operations_get` - GET /v1/{+name} - Metadata Stores Executions Operations Get
- `google_vertex_ai_metadata_stores_executions_operations_delete` - DELETE /v1/{+name} - Metadata Stores Executions Operations Delete
- `google_vertex_ai_metadata_stores_executions_operations_list` - GET /v1/{+name}/operations - Metadata Stores Executions Operations List
- `google_vertex_ai_metadata_stores_executions_operations_cancel` - POST /v1/{+name}:cancel - Metadata Stores Executions Operations Cancel
- `google_vertex_ai_metadata_stores_executions_operations_wait` - POST /v1/{+name}:wait - Metadata Stores Executions Operations Wait

## Patch

- `google_vertex_ai_reasoning_engines_patch` - PATCH /v1/{+name} - Reasoning Engines Patch
- `google_vertex_ai_datasets_patch` - PATCH /v1/{+name} - Datasets Patch
- `google_vertex_ai_datasets_dataset_versions_patch` - PATCH /v1/{+name} - Datasets Dataset Versions Patch

## Persistent Resources

- `google_vertex_ai_projects_locations_persistent_resources_delete` - DELETE /v1/{+name} - Projects Locations Persistent Resources Delete
- `google_vertex_ai_projects_locations_persistent_resources_create` - POST /v1/{+parent}/persistentResources - Projects Locations Persistent Resources Create
- `google_vertex_ai_projects_locations_persistent_resources_list` - GET /v1/{+parent}/persistentResources - Projects Locations Persistent Resources List
- `google_vertex_ai_projects_locations_persistent_resources_patch` - PATCH /v1/{+name} - Projects Locations Persistent Resources Patch
- `google_vertex_ai_projects_locations_persistent_resources_get` - GET /v1/{+name} - Projects Locations Persistent Resources Get
- `google_vertex_ai_projects_locations_persistent_resources_reboot` - POST /v1/{+name}:reboot - Projects Locations Persistent Resources Reboot
- `google_vertex_ai_projects_locations_persistent_resources_operations_delete` - DELETE /v1/{+name} - Projects Locations Persistent Resources Operations Delete
- `google_vertex_ai_projects_locations_persistent_resources_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Persistent Resources Operations Cancel
- `google_vertex_ai_projects_locations_persistent_resources_operations_wait` - POST /v1/{+name}:wait - Projects Locations Persistent Resources Operations Wait
- `google_vertex_ai_projects_locations_persistent_resources_operations_list` - GET /v1/{+name}/operations - Projects Locations Persistent Resources Operations List
- `google_vertex_ai_projects_locations_persistent_resources_operations_get` - GET /v1/{+name} - Projects Locations Persistent Resources Operations Get

## Pipeline Jobs

- `google_vertex_ai_projects_locations_pipeline_jobs_delete` - DELETE /v1/{+name} - Projects Locations Pipeline Jobs Delete
- `google_vertex_ai_projects_locations_pipeline_jobs_batch_delete` - POST /v1/{+parent}/pipelineJobs:batchDelete - Projects Locations Pipeline Jobs Batch Delete
- `google_vertex_ai_projects_locations_pipeline_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Pipeline Jobs Cancel
- `google_vertex_ai_projects_locations_pipeline_jobs_create` - POST /v1/{+parent}/pipelineJobs - Projects Locations Pipeline Jobs Create
- `google_vertex_ai_projects_locations_pipeline_jobs_list` - GET /v1/{+parent}/pipelineJobs - Projects Locations Pipeline Jobs List
- `google_vertex_ai_projects_locations_pipeline_jobs_batch_cancel` - POST /v1/{+parent}/pipelineJobs:batchCancel - Projects Locations Pipeline Jobs Batch Cancel
- `google_vertex_ai_projects_locations_pipeline_jobs_get` - GET /v1/{+name} - Projects Locations Pipeline Jobs Get
- `google_vertex_ai_projects_locations_pipeline_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Pipeline Jobs Operations Cancel
- `google_vertex_ai_projects_locations_pipeline_jobs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Pipeline Jobs Operations Wait
- `google_vertex_ai_projects_locations_pipeline_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Pipeline Jobs Operations List
- `google_vertex_ai_projects_locations_pipeline_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Pipeline Jobs Operations Delete
- `google_vertex_ai_projects_locations_pipeline_jobs_operations_get` - GET /v1/{+name} - Projects Locations Pipeline Jobs Operations Get

## Predict

- `google_vertex_ai_endpoints_predict` - POST /v1/{+endpoint}:predict - Endpoints Predict
- `google_vertex_ai_publishers_models_predict` - POST /v1/{+endpoint}:predict - Publishers Models Predict

## Predict Long Running

- `google_vertex_ai_endpoints_predict_long_running` - POST /v1/{+endpoint}:predictLongRunning - Endpoints Predict Long Running
- `google_vertex_ai_publishers_models_predict_long_running` - POST /v1/{+endpoint}:predictLongRunning - Publishers Models Predict Long Running

## Publishers

- `google_vertex_ai_projects_locations_publishers_models_stream_generate_content` - POST /v1/{+model}:streamGenerateContent - Projects Locations Publishers Models Stream Generate Content
- `google_vertex_ai_projects_locations_publishers_models_predict` - POST /v1/{+endpoint}:predict - Projects Locations Publishers Models Predict
- `google_vertex_ai_projects_locations_publishers_models_embed_content` - POST /v1/{+model}:embedContent - Projects Locations Publishers Models Embed Content
- `google_vertex_ai_projects_locations_publishers_models_stream_raw_predict` - POST /v1/{+endpoint}:streamRawPredict - Projects Locations Publishers Models Stream Raw Predict
- `google_vertex_ai_projects_locations_publishers_models_server_streaming_predict` - POST /v1/{+endpoint}:serverStreamingPredict - Projects Locations Publishers Models Server Streaming Predict
- `google_vertex_ai_projects_locations_publishers_models_predict_long_running` - POST /v1/{+endpoint}:predictLongRunning - Projects Locations Publishers Models Predict Long Running
- `google_vertex_ai_projects_locations_publishers_models_fetch_predict_operation` - POST /v1/{+endpoint}:fetchPredictOperation - Projects Locations Publishers Models Fetch Predict Operation
- `google_vertex_ai_projects_locations_publishers_models_compute_tokens` - POST /v1/{+endpoint}:computeTokens - Projects Locations Publishers Models Compute Tokens
- `google_vertex_ai_projects_locations_publishers_models_count_tokens` - POST /v1/{+endpoint}:countTokens - Projects Locations Publishers Models Count Tokens
- `google_vertex_ai_projects_locations_publishers_models_generate_content` - POST /v1/{+model}:generateContent - Projects Locations Publishers Models Generate Content
- `google_vertex_ai_projects_locations_publishers_models_raw_predict` - POST /v1/{+endpoint}:rawPredict - Projects Locations Publishers Models Raw Predict
- `google_vertex_ai_projects_locations_publishers_models_invoke_invoke` - POST /v1/{+endpoint}/invoke/{+invokeId} - Projects Locations Publishers Models Invoke Invoke

## Query

- `google_vertex_ai_reasoning_engines_query` - POST /v1/{+name}:query - Reasoning Engines Query
- `google_vertex_ai_reasoning_engines_runtime_revisions_query` - POST /v1/{+name}:query - Reasoning Engines Runtime Revisions Query

## Rag Corpora

- `google_vertex_ai_projects_locations_rag_corpora_create` - POST /v1/{+parent}/ragCorpora - Projects Locations Rag Corpora Create
- `google_vertex_ai_projects_locations_rag_corpora_patch` - PATCH /v1/{+name} - Projects Locations Rag Corpora Patch
- `google_vertex_ai_projects_locations_rag_corpora_list` - GET /v1/{+parent}/ragCorpora - Projects Locations Rag Corpora List
- `google_vertex_ai_projects_locations_rag_corpora_delete` - DELETE /v1/{+name} - Projects Locations Rag Corpora Delete
- `google_vertex_ai_projects_locations_rag_corpora_get` - GET /v1/{+name} - Projects Locations Rag Corpora Get
- `google_vertex_ai_projects_locations_rag_corpora_operations_get` - GET /v1/{+name} - Projects Locations Rag Corpora Operations Get
- `google_vertex_ai_projects_locations_rag_corpora_operations_list` - GET /v1/{+name}/operations - Projects Locations Rag Corpora Operations List
- `google_vertex_ai_projects_locations_rag_corpora_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Rag Corpora Operations Cancel
- `google_vertex_ai_projects_locations_rag_corpora_operations_wait` - POST /v1/{+name}:wait - Projects Locations Rag Corpora Operations Wait
- `google_vertex_ai_projects_locations_rag_corpora_operations_delete` - DELETE /v1/{+name} - Projects Locations Rag Corpora Operations Delete
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_get` - GET /v1/{+name} - Projects Locations Rag Corpora Rag Files Get
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_delete` - DELETE /v1/{+name} - Projects Locations Rag Corpora Rag Files Delete
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_import` - POST /v1/{+parent}/ragFiles:import - Projects Locations Rag Corpora Rag Files Import
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_list` - GET /v1/{+parent}/ragFiles - Projects Locations Rag Corpora Rag Files List
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_list` - GET /v1/{+name}/operations - Projects Locations Rag Corpora Rag Files Operations List
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Rag Corpora Rag Files Operations Cancel
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_wait` - POST /v1/{+name}:wait - Projects Locations Rag Corpora Rag Files Operations Wait
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_delete` - DELETE /v1/{+name} - Projects Locations Rag Corpora Rag Files Operations Delete
- `google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_get` - GET /v1/{+name} - Projects Locations Rag Corpora Rag Files Operations Get

## Rag Engine Config

- `google_vertex_ai_projects_locations_rag_engine_config_operations_list` - GET /v1/{+name}/operations - Projects Locations Rag Engine Config Operations List
- `google_vertex_ai_projects_locations_rag_engine_config_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Rag Engine Config Operations Cancel
- `google_vertex_ai_projects_locations_rag_engine_config_operations_wait` - POST /v1/{+name}:wait - Projects Locations Rag Engine Config Operations Wait
- `google_vertex_ai_projects_locations_rag_engine_config_operations_delete` - DELETE /v1/{+name} - Projects Locations Rag Engine Config Operations Delete
- `google_vertex_ai_projects_locations_rag_engine_config_operations_get` - GET /v1/{+name} - Projects Locations Rag Engine Config Operations Get

## Reasoning Engines

- `google_vertex_ai_projects_locations_reasoning_engines_set_iam_policy` - POST /v1/{+resource}:setIamPolicy - Projects Locations Reasoning Engines Set Iam Policy
- `google_vertex_ai_projects_locations_reasoning_engines_execute_code` - POST /v1/{+name}:executeCode - Projects Locations Reasoning Engines Execute Code
- `google_vertex_ai_projects_locations_reasoning_engines_create` - POST /v1/{+parent}/reasoningEngines - Projects Locations Reasoning Engines Create
- `google_vertex_ai_projects_locations_reasoning_engines_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Get
- `google_vertex_ai_projects_locations_reasoning_engines_query` - POST /v1/{+name}:query - Projects Locations Reasoning Engines Query
- `google_vertex_ai_projects_locations_reasoning_engines_test_iam_permissions` - POST /v1/{+resource}:testIamPermissions - Projects Locations Reasoning Engines Test Iam Permissions
- `google_vertex_ai_projects_locations_reasoning_engines_stream_query` - POST /v1/{+name}:streamQuery - Projects Locations Reasoning Engines Stream Query
- `google_vertex_ai_projects_locations_reasoning_engines_async_query` - POST /v1/{+name}:asyncQuery - Projects Locations Reasoning Engines Async Query
- `google_vertex_ai_projects_locations_reasoning_engines_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Delete
- `google_vertex_ai_projects_locations_reasoning_engines_get_iam_policy` - POST /v1/{+resource}:getIamPolicy - Projects Locations Reasoning Engines Get Iam Policy
- `google_vertex_ai_projects_locations_reasoning_engines_list` - GET /v1/{+parent}/reasoningEngines - Projects Locations Reasoning Engines List
- `google_vertex_ai_projects_locations_reasoning_engines_patch` - PATCH /v1/{+name} - Projects Locations Reasoning Engines Patch
- `google_vertex_ai_projects_locations_reasoning_engines_memories_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Memories Delete
- `google_vertex_ai_projects_locations_reasoning_engines_memories_patch` - PATCH /v1/{+name} - Projects Locations Reasoning Engines Memories Patch
- `google_vertex_ai_projects_locations_reasoning_engines_memories_list` - GET /v1/{+parent}/memories - Projects Locations Reasoning Engines Memories List
- `google_vertex_ai_projects_locations_reasoning_engines_memories_generate` - POST /v1/{+parent}/memories:generate - Projects Locations Reasoning Engines Memories Generate
- `google_vertex_ai_projects_locations_reasoning_engines_memories_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Memories Get
- `google_vertex_ai_projects_locations_reasoning_engines_memories_create` - POST /v1/{+parent}/memories - Projects Locations Reasoning Engines Memories Create
- `google_vertex_ai_projects_locations_reasoning_engines_memories_retrieve` - POST /v1/{+parent}/memories:retrieve - Projects Locations Reasoning Engines Memories Retrieve
- `google_vertex_ai_projects_locations_reasoning_engines_memories_purge` - POST /v1/{+parent}/memories:purge - Projects Locations Reasoning Engines Memories Purge
- `google_vertex_ai_projects_locations_reasoning_engines_memories_rollback` - POST /v1/{+name}:rollback - Projects Locations Reasoning Engines Memories Rollback
- `google_vertex_ai_projects_locations_reasoning_engines_memories_operations_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Memories Operations Get
- `google_vertex_ai_projects_locations_reasoning_engines_memories_operations_list` - GET /v1/{+name}/operations - Projects Locations Reasoning Engines Memories Operations List
- `google_vertex_ai_projects_locations_reasoning_engines_memories_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Memories Operations Cancel
- `google_vertex_ai_projects_locations_reasoning_engines_memories_operations_wait` - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Memories Operations Wait
- `google_vertex_ai_projects_locations_reasoning_engines_memories_operations_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Memories Operations Delete
- `google_vertex_ai_projects_locations_reasoning_engines_memories_revisions_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Memories Revisions Get
- `google_vertex_ai_projects_locations_reasoning_engines_memories_revisions_list` - GET /v1/{+parent}/revisions - Projects Locations Reasoning Engines Memories Revisions List
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_list` - GET /v1/{+parent}/sandboxEnvironmentSnapshots - Projects Locations Reasoning Engines Sandbox Environment Snapshots List
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Get
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Cancel
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_wait` - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Wait
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Get
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_create` - POST /v1/{+parent}/sandboxEnvironmentTemplates - Projects Locations Reasoning Engines Sandbox Environment Templates Create
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_list` - GET /v1/{+parent}/sandboxEnvironmentTemplates - Projects Locations Reasoning Engines Sandbox Environment Templates List
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Get
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Get
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Cancel
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_wait` - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sandbox Environment Templates Operations Wait
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sessions Get
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sessions Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_append_event` - POST /v1/{+name}:appendEvent - Projects Locations Reasoning Engines Sessions Append Event
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_create` - POST /v1/{+parent}/sessions - Projects Locations Reasoning Engines Sessions Create
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_list` - GET /v1/{+parent}/sessions - Projects Locations Reasoning Engines Sessions List
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_patch` - PATCH /v1/{+name} - Projects Locations Reasoning Engines Sessions Patch
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sessions Operations Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_list` - GET /v1/{+name}/operations - Projects Locations Reasoning Engines Sessions Operations List
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sessions Operations Cancel
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_wait` - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sessions Operations Wait
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sessions Operations Get
- `google_vertex_ai_projects_locations_reasoning_engines_sessions_events_list` - GET /v1/{+parent}/events - Projects Locations Reasoning Engines Sessions Events List
- `google_vertex_ai_projects_locations_reasoning_engines_operations_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Operations Delete
- `google_vertex_ai_projects_locations_reasoning_engines_operations_list` - GET /v1/{+name}/operations - Projects Locations Reasoning Engines Operations List
- `google_vertex_ai_projects_locations_reasoning_engines_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Operations Cancel
- `google_vertex_ai_projects_locations_reasoning_engines_operations_wait` - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Operations Wait
- `google_vertex_ai_projects_locations_reasoning_engines_operations_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Operations Get
- `google_vertex_ai_projects_locations_reasoning_engines_runtime_revisions_stream_query` - POST /v1/{+name}:streamQuery - Projects Locations Reasoning Engines Runtime Revisions Stream Query
- `google_vertex_ai_projects_locations_reasoning_engines_runtime_revisions_query` - POST /v1/{+name}:query - Projects Locations Reasoning Engines Runtime Revisions Query
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_snapshot` - POST /v1/{+name}:snapshot - Projects Locations Reasoning Engines Sandbox Environments Snapshot
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Get
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_create` - POST /v1/{+parent}/sandboxEnvironments - Projects Locations Reasoning Engines Sandbox Environments Create
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_list` - GET /v1/{+parent}/sandboxEnvironments - Projects Locations Reasoning Engines Sandbox Environments List
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_execute` - POST /v1/{+name}:execute - Projects Locations Reasoning Engines Sandbox Environments Execute
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Reasoning Engines Sandbox Environments Operations Cancel
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_wait` - POST /v1/{+name}:wait - Projects Locations Reasoning Engines Sandbox Environments Operations Wait
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_delete` - DELETE /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Operations Delete
- `google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_get` - GET /v1/{+name} - Projects Locations Reasoning Engines Sandbox Environments Operations Get

## Restore

- `google_vertex_ai_datasets_dataset_versions_restore` - GET /v1/{+name}:restore - Datasets Dataset Versions Restore

## Retrieve Contexts

- `google_vertex_ai_projects_locations_retrieve_contexts` - POST /v1/{+parent}:retrieveContexts - Projects Locations Retrieve Contexts

## Runs

- `google_vertex_ai_tensorboards_experiments_runs_operations_delete` - DELETE /v1/{+name} - Tensorboards Experiments Runs Operations Delete
- `google_vertex_ai_tensorboards_experiments_runs_operations_cancel` - POST /v1/{+name}:cancel - Tensorboards Experiments Runs Operations Cancel
- `google_vertex_ai_tensorboards_experiments_runs_operations_wait` - POST /v1/{+name}:wait - Tensorboards Experiments Runs Operations Wait
- `google_vertex_ai_tensorboards_experiments_runs_operations_list` - GET /v1/{+name}/operations - Tensorboards Experiments Runs Operations List
- `google_vertex_ai_tensorboards_experiments_runs_operations_get` - GET /v1/{+name} - Tensorboards Experiments Runs Operations Get
- `google_vertex_ai_tensorboards_experiments_runs_time_series_operations_delete` - DELETE /v1/{+name} - Tensorboards Experiments Runs Time Series Operations Delete
- `google_vertex_ai_tensorboards_experiments_runs_time_series_operations_cancel` - POST /v1/{+name}:cancel - Tensorboards Experiments Runs Time Series Operations Cancel
- `google_vertex_ai_tensorboards_experiments_runs_time_series_operations_wait` - POST /v1/{+name}:wait - Tensorboards Experiments Runs Time Series Operations Wait
- `google_vertex_ai_tensorboards_experiments_runs_time_series_operations_list` - GET /v1/{+name}/operations - Tensorboards Experiments Runs Time Series Operations List
- `google_vertex_ai_tensorboards_experiments_runs_time_series_operations_get` - GET /v1/{+name} - Tensorboards Experiments Runs Time Series Operations Get

## Schedules

- `google_vertex_ai_projects_locations_schedules_create` - POST /v1/{+parent}/schedules - Projects Locations Schedules Create
- `google_vertex_ai_projects_locations_schedules_list` - GET /v1/{+parent}/schedules - Projects Locations Schedules List
- `google_vertex_ai_projects_locations_schedules_patch` - PATCH /v1/{+name} - Projects Locations Schedules Patch
- `google_vertex_ai_projects_locations_schedules_delete` - DELETE /v1/{+name} - Projects Locations Schedules Delete
- `google_vertex_ai_projects_locations_schedules_resume` - POST /v1/{+name}:resume - Projects Locations Schedules Resume
- `google_vertex_ai_projects_locations_schedules_pause` - POST /v1/{+name}:pause - Projects Locations Schedules Pause
- `google_vertex_ai_projects_locations_schedules_get` - GET /v1/{+name} - Projects Locations Schedules Get
- `google_vertex_ai_projects_locations_schedules_operations_delete` - DELETE /v1/{+name} - Projects Locations Schedules Operations Delete
- `google_vertex_ai_projects_locations_schedules_operations_list` - GET /v1/{+name}/operations - Projects Locations Schedules Operations List
- `google_vertex_ai_projects_locations_schedules_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Schedules Operations Cancel
- `google_vertex_ai_projects_locations_schedules_operations_wait` - POST /v1/{+name}:wait - Projects Locations Schedules Operations Wait
- `google_vertex_ai_projects_locations_schedules_operations_get` - GET /v1/{+name} - Projects Locations Schedules Operations Get

## Skills

- `google_vertex_ai_projects_locations_skills_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Skills Operations Cancel
- `google_vertex_ai_projects_locations_skills_operations_wait` - POST /v1/{+name}:wait - Projects Locations Skills Operations Wait
- `google_vertex_ai_projects_locations_skills_operations_list` - GET /v1/{+name}/operations - Projects Locations Skills Operations List
- `google_vertex_ai_projects_locations_skills_operations_delete` - DELETE /v1/{+name} - Projects Locations Skills Operations Delete
- `google_vertex_ai_projects_locations_skills_operations_get` - GET /v1/{+name} - Projects Locations Skills Operations Get

## Snapshot

- `google_vertex_ai_reasoning_engines_sandbox_environments_snapshot` - POST /v1/{+name}:snapshot - Reasoning Engines Sandbox Environments Snapshot

## Specialist Pools

- `google_vertex_ai_projects_locations_specialist_pools_get` - GET /v1/{+name} - Projects Locations Specialist Pools Get
- `google_vertex_ai_projects_locations_specialist_pools_delete` - DELETE /v1/{+name} - Projects Locations Specialist Pools Delete
- `google_vertex_ai_projects_locations_specialist_pools_create` - POST /v1/{+parent}/specialistPools - Projects Locations Specialist Pools Create
- `google_vertex_ai_projects_locations_specialist_pools_list` - GET /v1/{+parent}/specialistPools - Projects Locations Specialist Pools List
- `google_vertex_ai_projects_locations_specialist_pools_patch` - PATCH /v1/{+name} - Projects Locations Specialist Pools Patch
- `google_vertex_ai_projects_locations_specialist_pools_operations_delete` - DELETE /v1/{+name} - Projects Locations Specialist Pools Operations Delete
- `google_vertex_ai_projects_locations_specialist_pools_operations_list` - GET /v1/{+name}/operations - Projects Locations Specialist Pools Operations List
- `google_vertex_ai_projects_locations_specialist_pools_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Specialist Pools Operations Cancel
- `google_vertex_ai_projects_locations_specialist_pools_operations_wait` - POST /v1/{+name}:wait - Projects Locations Specialist Pools Operations Wait
- `google_vertex_ai_projects_locations_specialist_pools_operations_get` - GET /v1/{+name} - Projects Locations Specialist Pools Operations Get

## Stream Generate Content

- `google_vertex_ai_endpoints_stream_generate_content` - POST /v1/{+model}:streamGenerateContent - Endpoints Stream Generate Content
- `google_vertex_ai_publishers_models_stream_generate_content` - POST /v1/{+model}:streamGenerateContent - Publishers Models Stream Generate Content

## Stream Query

- `google_vertex_ai_reasoning_engines_stream_query` - POST /v1/{+name}:streamQuery - Reasoning Engines Stream Query
- `google_vertex_ai_reasoning_engines_runtime_revisions_stream_query` - POST /v1/{+name}:streamQuery - Reasoning Engines Runtime Revisions Stream Query

## Studies

- `google_vertex_ai_projects_locations_studies_delete` - DELETE /v1/{+name} - Projects Locations Studies Delete
- `google_vertex_ai_projects_locations_studies_create` - POST /v1/{+parent}/studies - Projects Locations Studies Create
- `google_vertex_ai_projects_locations_studies_list` - GET /v1/{+parent}/studies - Projects Locations Studies List
- `google_vertex_ai_projects_locations_studies_lookup` - POST /v1/{+parent}/studies:lookup - Projects Locations Studies Lookup
- `google_vertex_ai_projects_locations_studies_get` - GET /v1/{+name} - Projects Locations Studies Get
- `google_vertex_ai_projects_locations_studies_operations_get` - GET /v1/{+name} - Projects Locations Studies Operations Get
- `google_vertex_ai_projects_locations_studies_operations_delete` - DELETE /v1/{+name} - Projects Locations Studies Operations Delete
- `google_vertex_ai_projects_locations_studies_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Studies Operations Cancel
- `google_vertex_ai_projects_locations_studies_operations_wait` - POST /v1/{+name}:wait - Projects Locations Studies Operations Wait
- `google_vertex_ai_projects_locations_studies_operations_list` - GET /v1/{+name}/operations - Projects Locations Studies Operations List
- `google_vertex_ai_projects_locations_studies_trials_suggest` - POST /v1/{+parent}/trials:suggest - Projects Locations Studies Trials Suggest
- `google_vertex_ai_projects_locations_studies_trials_get` - GET /v1/{+name} - Projects Locations Studies Trials Get
- `google_vertex_ai_projects_locations_studies_trials_stop` - POST /v1/{+name}:stop - Projects Locations Studies Trials Stop
- `google_vertex_ai_projects_locations_studies_trials_add_trial_measurement` - POST /v1/{+trialName}:addTrialMeasurement - Projects Locations Studies Trials Add Trial Measurement
- `google_vertex_ai_projects_locations_studies_trials_delete` - DELETE /v1/{+name} - Projects Locations Studies Trials Delete
- `google_vertex_ai_projects_locations_studies_trials_list` - GET /v1/{+parent}/trials - Projects Locations Studies Trials List
- `google_vertex_ai_projects_locations_studies_trials_list_optimal_trials` - POST /v1/{+parent}/trials:listOptimalTrials - Projects Locations Studies Trials List Optimal Trials
- `google_vertex_ai_projects_locations_studies_trials_check_trial_early_stopping_state` - POST /v1/{+trialName}:checkTrialEarlyStoppingState - Projects Locations Studies Trials Check Trial Early Stopping State
- `google_vertex_ai_projects_locations_studies_trials_create` - POST /v1/{+parent}/trials - Projects Locations Studies Trials Create
- `google_vertex_ai_projects_locations_studies_trials_complete` - POST /v1/{+name}:complete - Projects Locations Studies Trials Complete
- `google_vertex_ai_projects_locations_studies_trials_operations_get` - GET /v1/{+name} - Projects Locations Studies Trials Operations Get
- `google_vertex_ai_projects_locations_studies_trials_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Studies Trials Operations Cancel
- `google_vertex_ai_projects_locations_studies_trials_operations_wait` - POST /v1/{+name}:wait - Projects Locations Studies Trials Operations Wait
- `google_vertex_ai_projects_locations_studies_trials_operations_list` - GET /v1/{+name}/operations - Projects Locations Studies Trials Operations List
- `google_vertex_ai_projects_locations_studies_trials_operations_delete` - DELETE /v1/{+name} - Projects Locations Studies Trials Operations Delete

## Tensorboards

- `google_vertex_ai_projects_locations_tensorboards_get` - GET /v1/{+name} - Projects Locations Tensorboards Get
- `google_vertex_ai_projects_locations_tensorboards_read_size` - GET /v1/{+tensorboard}:readSize - Projects Locations Tensorboards Read Size
- `google_vertex_ai_projects_locations_tensorboards_batch_read` - GET /v1/{+tensorboard}:batchRead - Projects Locations Tensorboards Batch Read
- `google_vertex_ai_projects_locations_tensorboards_create` - POST /v1/{+parent}/tensorboards - Projects Locations Tensorboards Create
- `google_vertex_ai_projects_locations_tensorboards_patch` - PATCH /v1/{+name} - Projects Locations Tensorboards Patch
- `google_vertex_ai_projects_locations_tensorboards_list` - GET /v1/{+parent}/tensorboards - Projects Locations Tensorboards List
- `google_vertex_ai_projects_locations_tensorboards_read_usage` - GET /v1/{+tensorboard}:readUsage - Projects Locations Tensorboards Read Usage
- `google_vertex_ai_projects_locations_tensorboards_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_create` - POST /v1/{+parent}/experiments - Projects Locations Tensorboards Experiments Create
- `google_vertex_ai_projects_locations_tensorboards_experiments_patch` - PATCH /v1/{+name} - Projects Locations Tensorboards Experiments Patch
- `google_vertex_ai_projects_locations_tensorboards_experiments_list` - GET /v1/{+parent}/experiments - Projects Locations Tensorboards Experiments List
- `google_vertex_ai_projects_locations_tensorboards_experiments_batch_create` - POST /v1/{+parent}:batchCreate - Projects Locations Tensorboards Experiments Batch Create
- `google_vertex_ai_projects_locations_tensorboards_experiments_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_get` - GET /v1/{+name} - Projects Locations Tensorboards Experiments Get
- `google_vertex_ai_projects_locations_tensorboards_experiments_write` - POST /v1/{+tensorboardExperiment}:write - Projects Locations Tensorboards Experiments Write
- `google_vertex_ai_projects_locations_tensorboards_experiments_operations_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Operations Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Tensorboards Experiments Operations Cancel
- `google_vertex_ai_projects_locations_tensorboards_experiments_operations_wait` - POST /v1/{+name}:wait - Projects Locations Tensorboards Experiments Operations Wait
- `google_vertex_ai_projects_locations_tensorboards_experiments_operations_list` - GET /v1/{+name}/operations - Projects Locations Tensorboards Experiments Operations List
- `google_vertex_ai_projects_locations_tensorboards_experiments_operations_get` - GET /v1/{+name} - Projects Locations Tensorboards Experiments Operations Get
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_batch_create` - POST /v1/{+parent}/runs:batchCreate - Projects Locations Tensorboards Experiments Runs Batch Create
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_create` - POST /v1/{+parent}/runs - Projects Locations Tensorboards Experiments Runs Create
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_patch` - PATCH /v1/{+name} - Projects Locations Tensorboards Experiments Runs Patch
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_list` - GET /v1/{+parent}/runs - Projects Locations Tensorboards Experiments Runs List
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_get` - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Get
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_write` - POST /v1/{+tensorboardRun}:write - Projects Locations Tensorboards Experiments Runs Write
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Operations Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Tensorboards Experiments Runs Operations Cancel
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_wait` - POST /v1/{+name}:wait - Projects Locations Tensorboards Experiments Runs Operations Wait
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_list` - GET /v1/{+name}/operations - Projects Locations Tensorboards Experiments Runs Operations List
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_get` - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Operations Get
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_export_tensorboard_time_series` - POST /v1/{+tensorboardTimeSeries}:exportTensorboardTimeSeries - Projects Locations Tensorboards Experiments Runs Time Series Export Tensorboard Time Series
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_read` - GET /v1/{+tensorboardTimeSeries}:read - Projects Locations Tensorboards Experiments Runs Time Series Read
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_create` - POST /v1/{+parent}/timeSeries - Projects Locations Tensorboards Experiments Runs Time Series Create
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_patch` - PATCH /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Patch
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_list` - GET /v1/{+parent}/timeSeries - Projects Locations Tensorboards Experiments Runs Time Series List
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_get` - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Get
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_read_blob_data` - GET /v1/{+timeSeries}:readBlobData - Projects Locations Tensorboards Experiments Runs Time Series Read Blob Data
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_get` - GET /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Operations Get
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Experiments Runs Time Series Operations Delete
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_list` - GET /v1/{+name}/operations - Projects Locations Tensorboards Experiments Runs Time Series Operations List
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Tensorboards Experiments Runs Time Series Operations Cancel
- `google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_wait` - POST /v1/{+name}:wait - Projects Locations Tensorboards Experiments Runs Time Series Operations Wait
- `google_vertex_ai_projects_locations_tensorboards_operations_delete` - DELETE /v1/{+name} - Projects Locations Tensorboards Operations Delete
- `google_vertex_ai_projects_locations_tensorboards_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Tensorboards Operations Cancel
- `google_vertex_ai_projects_locations_tensorboards_operations_wait` - POST /v1/{+name}:wait - Projects Locations Tensorboards Operations Wait
- `google_vertex_ai_projects_locations_tensorboards_operations_list` - GET /v1/{+name}/operations - Projects Locations Tensorboards Operations List
- `google_vertex_ai_projects_locations_tensorboards_operations_get` - GET /v1/{+name} - Projects Locations Tensorboards Operations Get

## Training Pipelines

- `google_vertex_ai_projects_locations_training_pipelines_cancel` - POST /v1/{+name}:cancel - Projects Locations Training Pipelines Cancel
- `google_vertex_ai_projects_locations_training_pipelines_create` - POST /v1/{+parent}/trainingPipelines - Projects Locations Training Pipelines Create
- `google_vertex_ai_projects_locations_training_pipelines_list` - GET /v1/{+parent}/trainingPipelines - Projects Locations Training Pipelines List
- `google_vertex_ai_projects_locations_training_pipelines_delete` - DELETE /v1/{+name} - Projects Locations Training Pipelines Delete
- `google_vertex_ai_projects_locations_training_pipelines_get` - GET /v1/{+name} - Projects Locations Training Pipelines Get
- `google_vertex_ai_projects_locations_training_pipelines_operations_get` - GET /v1/{+name} - Projects Locations Training Pipelines Operations Get
- `google_vertex_ai_projects_locations_training_pipelines_operations_list` - GET /v1/{+name}/operations - Projects Locations Training Pipelines Operations List
- `google_vertex_ai_projects_locations_training_pipelines_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Training Pipelines Operations Cancel
- `google_vertex_ai_projects_locations_training_pipelines_operations_wait` - POST /v1/{+name}:wait - Projects Locations Training Pipelines Operations Wait
- `google_vertex_ai_projects_locations_training_pipelines_operations_delete` - DELETE /v1/{+name} - Projects Locations Training Pipelines Operations Delete

## Tuning Jobs

- `google_vertex_ai_projects_locations_tuning_jobs_create` - POST /v1/{+parent}/tuningJobs - Projects Locations Tuning Jobs Create
- `google_vertex_ai_projects_locations_tuning_jobs_list` - GET /v1/{+parent}/tuningJobs - Projects Locations Tuning Jobs List
- `google_vertex_ai_projects_locations_tuning_jobs_rebase_tuned_model` - POST /v1/{+parent}/tuningJobs:rebaseTunedModel - Projects Locations Tuning Jobs Rebase Tuned Model
- `google_vertex_ai_projects_locations_tuning_jobs_cancel` - POST /v1/{+name}:cancel - Projects Locations Tuning Jobs Cancel
- `google_vertex_ai_projects_locations_tuning_jobs_get` - GET /v1/{+name} - Projects Locations Tuning Jobs Get
- `google_vertex_ai_projects_locations_tuning_jobs_operations_cancel` - POST /v1/{+name}:cancel - Projects Locations Tuning Jobs Operations Cancel
- `google_vertex_ai_projects_locations_tuning_jobs_operations_list` - GET /v1/{+name}/operations - Projects Locations Tuning Jobs Operations List
- `google_vertex_ai_projects_locations_tuning_jobs_operations_delete` - DELETE /v1/{+name} - Projects Locations Tuning Jobs Operations Delete
- `google_vertex_ai_projects_locations_tuning_jobs_operations_get` - GET /v1/{+name} - Projects Locations Tuning Jobs Operations Get

## Update Cache Config

- `google_vertex_ai_projects_update_cache_config` - PATCH /v1/{+name} - Projects Update Cache Config

## Update Rag Engine Config

- `google_vertex_ai_projects_locations_update_rag_engine_config` - PATCH /v1/{+name} - Projects Locations Update Rag Engine Config

## Upload

- `google_vertex_ai_media_upload` - POST /v1/{+parent}/ragFiles:upload - Media Upload

## Wait

- `google_vertex_ai_reasoning_engines_operations_wait` - POST /v1/{+name}:wait - Reasoning Engines Operations Wait
- `google_vertex_ai_schedules_operations_wait` - POST /v1/{+name}:wait - Schedules Operations Wait
- `google_vertex_ai_custom_jobs_operations_wait` - POST /v1/{+name}:wait - Custom Jobs Operations Wait
- `google_vertex_ai_studies_operations_wait` - POST /v1/{+name}:wait - Studies Operations Wait
- `google_vertex_ai_data_labeling_jobs_operations_wait` - POST /v1/{+name}:wait - Data Labeling Jobs Operations Wait
- `google_vertex_ai_migratable_resources_operations_wait` - POST /v1/{+name}:wait - Migratable Resources Operations Wait
- `google_vertex_ai_notebook_runtimes_operations_wait` - POST /v1/{+name}:wait - Notebook Runtimes Operations Wait
- `google_vertex_ai_model_deployment_monitoring_jobs_operations_wait` - POST /v1/{+name}:wait - Model Deployment Monitoring Jobs Operations Wait
- `google_vertex_ai_operations_wait` - POST /v1/{+name}:wait - Operations Wait
- `google_vertex_ai_models_operations_wait` - POST /v1/{+name}:wait - Models Operations Wait
- `google_vertex_ai_notebook_runtime_templates_operations_wait` - POST /v1/{+name}:wait - Notebook Runtime Templates Operations Wait
- `google_vertex_ai_feature_groups_operations_wait` - POST /v1/{+name}:wait - Feature Groups Operations Wait
- `google_vertex_ai_deployment_resource_pools_operations_wait` - POST /v1/{+name}:wait - Deployment Resource Pools Operations Wait
- `google_vertex_ai_specialist_pools_operations_wait` - POST /v1/{+name}:wait - Specialist Pools Operations Wait
- `google_vertex_ai_persistent_resources_operations_wait` - POST /v1/{+name}:wait - Persistent Resources Operations Wait
- `google_vertex_ai_index_endpoints_operations_wait` - POST /v1/{+name}:wait - Index Endpoints Operations Wait
- `google_vertex_ai_hyperparameter_tuning_jobs_operations_wait` - POST /v1/{+name}:wait - Hyperparameter Tuning Jobs Operations Wait
- `google_vertex_ai_indexes_operations_wait` - POST /v1/{+name}:wait - Indexes Operations Wait
- `google_vertex_ai_training_pipelines_operations_wait` - POST /v1/{+name}:wait - Training Pipelines Operations Wait
- `google_vertex_ai_skills_operations_wait` - POST /v1/{+name}:wait - Skills Operations Wait
- `google_vertex_ai_endpoints_operations_wait` - POST /v1/{+name}:wait - Endpoints Operations Wait
- `google_vertex_ai_pipeline_jobs_operations_wait` - POST /v1/{+name}:wait - Pipeline Jobs Operations Wait
- `google_vertex_ai_rag_corpora_operations_wait` - POST /v1/{+name}:wait - Rag Corpora Operations Wait
- `google_vertex_ai_tensorboards_operations_wait` - POST /v1/{+name}:wait - Tensorboards Operations Wait
- `google_vertex_ai_notebook_execution_jobs_operations_wait` - POST /v1/{+name}:wait - Notebook Execution Jobs Operations Wait
- `google_vertex_ai_rag_engine_config_operations_wait` - POST /v1/{+name}:wait - Rag Engine Config Operations Wait
- `google_vertex_ai_feature_online_stores_operations_wait` - POST /v1/{+name}:wait - Feature Online Stores Operations Wait
- `google_vertex_ai_datasets_operations_wait` - POST /v1/{+name}:wait - Datasets Operations Wait
- `google_vertex_ai_featurestores_operations_wait` - POST /v1/{+name}:wait - Featurestores Operations Wait
- `google_vertex_ai_metadata_stores_operations_wait` - POST /v1/{+name}:wait - Metadata Stores Operations Wait
Metadata-derived Lua example
local result = app.integrations.google_vertex_ai.reasoning_engines_stream_query({})
print(result)

Functions

reasoning_engines_stream_query Write

Reasoning Engines Stream Query (POST /v1/{+name}:streamQuery).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_stream_query
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_stream_query
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_async_query Write

Reasoning Engines Async Query (POST /v1/{+name}:asyncQuery).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_async_query
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_async_query
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_delete Write

Reasoning Engines Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_list Read

Reasoning Engines List (GET /v1/reasoningEngines).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_patch Write

Reasoning Engines Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_patch
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_patch
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_get Read

Reasoning Engines Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_query Write

Reasoning Engines Query (POST /v1/{+name}:query).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_query
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_query
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_execute_code Write

Reasoning Engines Execute Code (POST /v1/{+name}:executeCode).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_execute_code
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_execute_code
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_create Write

Reasoning Engines Create (POST /v1/reasoningEngines).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_create
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_create
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_runtime_revisions_stream_query Write

Reasoning Engines Runtime Revisions Stream Query (POST /v1/{+name}:streamQuery).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_runtime_revisions_stream_query
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_runtime_revisions_stream_query
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_runtime_revisions_query Write

Reasoning Engines Runtime Revisions Query (POST /v1/{+name}:query).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_runtime_revisions_query
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_runtime_revisions_query
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_delete Write

Reasoning Engines Sandbox Environments Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_create Write

Reasoning Engines Sandbox Environments Create (POST /v1/{+parent}/sandboxEnvironments).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_create
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_create
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_list Read

Reasoning Engines Sandbox Environments List (GET /v1/{+parent}/sandboxEnvironments).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_execute Write

Reasoning Engines Sandbox Environments Execute (POST /v1/{+name}:execute).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_execute
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_execute
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_get Read

Reasoning Engines Sandbox Environments Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_snapshot Write

Reasoning Engines Sandbox Environments Snapshot (POST /v1/{+name}:snapshot).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_snapshot
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_snapshot
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_operations_cancel Write

Reasoning Engines Sandbox Environments Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_operations_cancel
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_operations_wait Write

Reasoning Engines Sandbox Environments Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_operations_wait
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_operations_wait
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_operations_get Read

Reasoning Engines Sandbox Environments Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_operations_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_operations_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environments_operations_delete Write

Reasoning Engines Sandbox Environments Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environments_operations_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environments_operations_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sessions_operations_delete Write

Reasoning Engines Sessions Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sessions_operations_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sessions_operations_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sessions_operations_list Read

Reasoning Engines Sessions Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sessions_operations_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sessions_operations_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sessions_operations_cancel Write

Reasoning Engines Sessions Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sessions_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sessions_operations_cancel
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sessions_operations_wait Write

Reasoning Engines Sessions Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sessions_operations_wait
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sessions_operations_wait
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sessions_operations_get Read

Reasoning Engines Sessions Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sessions_operations_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sessions_operations_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_operations_get Read

Reasoning Engines Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_operations_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_operations_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_operations_delete Write

Reasoning Engines Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_operations_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_operations_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_operations_list Read

Reasoning Engines Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_operations_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_operations_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_operations_cancel Write

Reasoning Engines Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_operations_cancel
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_operations_wait Write

Reasoning Engines Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_operations_wait
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_operations_wait
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_memories_operations_get Read

Reasoning Engines Memories Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_memories_operations_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_memories_operations_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_memories_operations_cancel Write

Reasoning Engines Memories Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_memories_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_memories_operations_cancel
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_memories_operations_wait Write

Reasoning Engines Memories Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_memories_operations_wait
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_memories_operations_wait
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_memories_operations_list Read

Reasoning Engines Memories Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_memories_operations_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_memories_operations_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_memories_operations_delete Write

Reasoning Engines Memories Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_memories_operations_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_memories_operations_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_delete Write

Reasoning Engines Sandbox Environment Snapshots Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_get Read

Reasoning Engines Sandbox Environment Snapshots Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_list Read

Reasoning Engines Sandbox Environment Snapshots List (GET /v1/{+parent}/sandboxEnvironmentSnapshots).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_operations_cancel Write

Reasoning Engines Sandbox Environment Snapshots Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_cancel
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_operations_wait Write

Reasoning Engines Sandbox Environment Snapshots Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_operations_wait
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_wait
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_operations_delete Write

Reasoning Engines Sandbox Environment Snapshots Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_operations_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_snapshots_operations_get Read

Reasoning Engines Sandbox Environment Snapshots Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_snapshots_operations_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_snapshots_operations_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_create Write

Reasoning Engines Sandbox Environment Templates Create (POST /v1/{+parent}/sandboxEnvironmentTemplates).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_create
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_create
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_list Read

Reasoning Engines Sandbox Environment Templates List (GET /v1/{+parent}/sandboxEnvironmentTemplates).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_list
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_list
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_get Read

Reasoning Engines Sandbox Environment Templates Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_delete Write

Reasoning Engines Sandbox Environment Templates Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_operations_delete Write

Reasoning Engines Sandbox Environment Templates Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_operations_delete
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_delete
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_operations_get Read

Reasoning Engines Sandbox Environment Templates Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_operations_get
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_get
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_operations_cancel Write

Reasoning Engines Sandbox Environment Templates Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_cancel
ParameterTypeRequiredDescription
No parameters.
reasoning_engines_sandbox_environment_templates_operations_wait Write

Reasoning Engines Sandbox Environment Templates Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.reasoning_engines_sandbox_environment_templates_operations_wait
Full name
google-vertex-ai.google_vertex_ai_reasoning_engines_sandbox_environment_templates_operations_wait
ParameterTypeRequiredDescription
No parameters.
schedules_operations_get Read

Schedules Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.schedules_operations_get
Full name
google-vertex-ai.google_vertex_ai_schedules_operations_get
ParameterTypeRequiredDescription
No parameters.
schedules_operations_delete Write

Schedules Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.schedules_operations_delete
Full name
google-vertex-ai.google_vertex_ai_schedules_operations_delete
ParameterTypeRequiredDescription
No parameters.
schedules_operations_cancel Write

Schedules Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.schedules_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_schedules_operations_cancel
ParameterTypeRequiredDescription
No parameters.
schedules_operations_wait Write

Schedules Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.schedules_operations_wait
Full name
google-vertex-ai.google_vertex_ai_schedules_operations_wait
ParameterTypeRequiredDescription
No parameters.
schedules_operations_list Read

Schedules Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.schedules_operations_list
Full name
google-vertex-ai.google_vertex_ai_schedules_operations_list
ParameterTypeRequiredDescription
No parameters.
custom_jobs_operations_get Read

Custom Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.custom_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_custom_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
custom_jobs_operations_delete Write

Custom Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.custom_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_custom_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
custom_jobs_operations_list Read

Custom Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.custom_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_custom_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
custom_jobs_operations_cancel Write

Custom Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.custom_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_custom_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
custom_jobs_operations_wait Write

Custom Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.custom_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_custom_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
media_upload Write

Media Upload (POST /v1/{+parent}/ragFiles:upload).

Lua path
app.integrations.google_vertex_ai.media_upload
Full name
google-vertex-ai.google_vertex_ai_media_upload
ParameterTypeRequiredDescription
No parameters.
studies_operations_list Read

Studies Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.studies_operations_list
Full name
google-vertex-ai.google_vertex_ai_studies_operations_list
ParameterTypeRequiredDescription
No parameters.
studies_operations_cancel Write

Studies Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.studies_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_studies_operations_cancel
ParameterTypeRequiredDescription
No parameters.
studies_operations_wait Write

Studies Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.studies_operations_wait
Full name
google-vertex-ai.google_vertex_ai_studies_operations_wait
ParameterTypeRequiredDescription
No parameters.
studies_operations_delete Write

Studies Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.studies_operations_delete
Full name
google-vertex-ai.google_vertex_ai_studies_operations_delete
ParameterTypeRequiredDescription
No parameters.
studies_operations_get Read

Studies Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.studies_operations_get
Full name
google-vertex-ai.google_vertex_ai_studies_operations_get
ParameterTypeRequiredDescription
No parameters.
studies_trials_operations_list Read

Studies Trials Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.studies_trials_operations_list
Full name
google-vertex-ai.google_vertex_ai_studies_trials_operations_list
ParameterTypeRequiredDescription
No parameters.
studies_trials_operations_cancel Write

Studies Trials Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.studies_trials_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_studies_trials_operations_cancel
ParameterTypeRequiredDescription
No parameters.
studies_trials_operations_wait Write

Studies Trials Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.studies_trials_operations_wait
Full name
google-vertex-ai.google_vertex_ai_studies_trials_operations_wait
ParameterTypeRequiredDescription
No parameters.
studies_trials_operations_delete Write

Studies Trials Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.studies_trials_operations_delete
Full name
google-vertex-ai.google_vertex_ai_studies_trials_operations_delete
ParameterTypeRequiredDescription
No parameters.
studies_trials_operations_get Read

Studies Trials Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.studies_trials_operations_get
Full name
google-vertex-ai.google_vertex_ai_studies_trials_operations_get
ParameterTypeRequiredDescription
No parameters.
data_labeling_jobs_operations_list Read

Data Labeling Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.data_labeling_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_data_labeling_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
data_labeling_jobs_operations_cancel Write

Data Labeling Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.data_labeling_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_data_labeling_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
data_labeling_jobs_operations_wait Write

Data Labeling Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.data_labeling_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_data_labeling_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
data_labeling_jobs_operations_delete Write

Data Labeling Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.data_labeling_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_data_labeling_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
data_labeling_jobs_operations_get Read

Data Labeling Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.data_labeling_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_data_labeling_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
tuning_jobs_operations_list Read

Tuning Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.tuning_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_tuning_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
tuning_jobs_operations_cancel Write

Tuning Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.tuning_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_tuning_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
tuning_jobs_operations_get Read

Tuning Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tuning_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_tuning_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
tuning_jobs_operations_delete Write

Tuning Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tuning_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_tuning_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
v1_generate_instance_rubrics Write

V1 Generate Instance Rubrics (POST /v1:generateInstanceRubrics).

Lua path
app.integrations.google_vertex_ai.v1_generate_instance_rubrics
Full name
google-vertex-ai.google_vertex_ai_v1_generate_instance_rubrics
ParameterTypeRequiredDescription
No parameters.
v1_evaluate_instances Write

V1 Evaluate Instances (POST /v1:evaluateInstances).

Lua path
app.integrations.google_vertex_ai.v1_evaluate_instances
Full name
google-vertex-ai.google_vertex_ai_v1_evaluate_instances
ParameterTypeRequiredDescription
No parameters.
v1_evaluate_dataset Write

V1 Evaluate Dataset (POST /v1:evaluateDataset).

Lua path
app.integrations.google_vertex_ai.v1_evaluate_dataset
Full name
google-vertex-ai.google_vertex_ai_v1_evaluate_dataset
ParameterTypeRequiredDescription
No parameters.
migratable_resources_operations_delete Write

Migratable Resources Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.migratable_resources_operations_delete
Full name
google-vertex-ai.google_vertex_ai_migratable_resources_operations_delete
ParameterTypeRequiredDescription
No parameters.
migratable_resources_operations_cancel Write

Migratable Resources Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.migratable_resources_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_migratable_resources_operations_cancel
ParameterTypeRequiredDescription
No parameters.
migratable_resources_operations_wait Write

Migratable Resources Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.migratable_resources_operations_wait
Full name
google-vertex-ai.google_vertex_ai_migratable_resources_operations_wait
ParameterTypeRequiredDescription
No parameters.
migratable_resources_operations_list Read

Migratable Resources Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.migratable_resources_operations_list
Full name
google-vertex-ai.google_vertex_ai_migratable_resources_operations_list
ParameterTypeRequiredDescription
No parameters.
migratable_resources_operations_get Read

Migratable Resources Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.migratable_resources_operations_get
Full name
google-vertex-ai.google_vertex_ai_migratable_resources_operations_get
ParameterTypeRequiredDescription
No parameters.
notebook_runtimes_operations_cancel Write

Notebook Runtimes Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.notebook_runtimes_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_notebook_runtimes_operations_cancel
ParameterTypeRequiredDescription
No parameters.
notebook_runtimes_operations_wait Write

Notebook Runtimes Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.notebook_runtimes_operations_wait
Full name
google-vertex-ai.google_vertex_ai_notebook_runtimes_operations_wait
ParameterTypeRequiredDescription
No parameters.
notebook_runtimes_operations_list Read

Notebook Runtimes Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.notebook_runtimes_operations_list
Full name
google-vertex-ai.google_vertex_ai_notebook_runtimes_operations_list
ParameterTypeRequiredDescription
No parameters.
notebook_runtimes_operations_delete Write

Notebook Runtimes Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.notebook_runtimes_operations_delete
Full name
google-vertex-ai.google_vertex_ai_notebook_runtimes_operations_delete
ParameterTypeRequiredDescription
No parameters.
notebook_runtimes_operations_get Read

Notebook Runtimes Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.notebook_runtimes_operations_get
Full name
google-vertex-ai.google_vertex_ai_notebook_runtimes_operations_get
ParameterTypeRequiredDescription
No parameters.
model_deployment_monitoring_jobs_operations_delete Write

Model Deployment Monitoring Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.model_deployment_monitoring_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_model_deployment_monitoring_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
model_deployment_monitoring_jobs_operations_cancel Write

Model Deployment Monitoring Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.model_deployment_monitoring_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_model_deployment_monitoring_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
model_deployment_monitoring_jobs_operations_wait Write

Model Deployment Monitoring Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.model_deployment_monitoring_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_model_deployment_monitoring_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
model_deployment_monitoring_jobs_operations_list Read

Model Deployment Monitoring Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.model_deployment_monitoring_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_model_deployment_monitoring_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
model_deployment_monitoring_jobs_operations_get Read

Model Deployment Monitoring Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.model_deployment_monitoring_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_model_deployment_monitoring_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
operations_get Read

Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.operations_get
Full name
google-vertex-ai.google_vertex_ai_operations_get
ParameterTypeRequiredDescription
No parameters.
operations_list Read

Operations List (GET /v1/operations).

Lua path
app.integrations.google_vertex_ai.operations_list
Full name
google-vertex-ai.google_vertex_ai_operations_list
ParameterTypeRequiredDescription
No parameters.
operations_cancel Write

Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.operations_cancel
Full name
google-vertex-ai.google_vertex_ai_operations_cancel
ParameterTypeRequiredDescription
No parameters.
operations_wait Write

Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.operations_wait
Full name
google-vertex-ai.google_vertex_ai_operations_wait
ParameterTypeRequiredDescription
No parameters.
operations_delete Write

Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.operations_delete
Full name
google-vertex-ai.google_vertex_ai_operations_delete
ParameterTypeRequiredDescription
No parameters.
models_operations_get Read

Models Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.models_operations_get
Full name
google-vertex-ai.google_vertex_ai_models_operations_get
ParameterTypeRequiredDescription
No parameters.
models_operations_cancel Write

Models Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.models_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_models_operations_cancel
ParameterTypeRequiredDescription
No parameters.
models_operations_wait Write

Models Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.models_operations_wait
Full name
google-vertex-ai.google_vertex_ai_models_operations_wait
ParameterTypeRequiredDescription
No parameters.
models_operations_list Read

Models Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.models_operations_list
Full name
google-vertex-ai.google_vertex_ai_models_operations_list
ParameterTypeRequiredDescription
No parameters.
models_operations_delete Write

Models Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.models_operations_delete
Full name
google-vertex-ai.google_vertex_ai_models_operations_delete
ParameterTypeRequiredDescription
No parameters.
models_evaluations_operations_cancel Write

Models Evaluations Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.models_evaluations_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_models_evaluations_operations_cancel
ParameterTypeRequiredDescription
No parameters.
models_evaluations_operations_wait Write

Models Evaluations Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.models_evaluations_operations_wait
Full name
google-vertex-ai.google_vertex_ai_models_evaluations_operations_wait
ParameterTypeRequiredDescription
No parameters.
models_evaluations_operations_list Read

Models Evaluations Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.models_evaluations_operations_list
Full name
google-vertex-ai.google_vertex_ai_models_evaluations_operations_list
ParameterTypeRequiredDescription
No parameters.
models_evaluations_operations_delete Write

Models Evaluations Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.models_evaluations_operations_delete
Full name
google-vertex-ai.google_vertex_ai_models_evaluations_operations_delete
ParameterTypeRequiredDescription
No parameters.
models_evaluations_operations_get Read

Models Evaluations Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.models_evaluations_operations_get
Full name
google-vertex-ai.google_vertex_ai_models_evaluations_operations_get
ParameterTypeRequiredDescription
No parameters.
notebook_runtime_templates_operations_get Read

Notebook Runtime Templates Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.notebook_runtime_templates_operations_get
Full name
google-vertex-ai.google_vertex_ai_notebook_runtime_templates_operations_get
ParameterTypeRequiredDescription
No parameters.
notebook_runtime_templates_operations_delete Write

Notebook Runtime Templates Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.notebook_runtime_templates_operations_delete
Full name
google-vertex-ai.google_vertex_ai_notebook_runtime_templates_operations_delete
ParameterTypeRequiredDescription
No parameters.
notebook_runtime_templates_operations_cancel Write

Notebook Runtime Templates Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.notebook_runtime_templates_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_notebook_runtime_templates_operations_cancel
ParameterTypeRequiredDescription
No parameters.
notebook_runtime_templates_operations_wait Write

Notebook Runtime Templates Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.notebook_runtime_templates_operations_wait
Full name
google-vertex-ai.google_vertex_ai_notebook_runtime_templates_operations_wait
ParameterTypeRequiredDescription
No parameters.
notebook_runtime_templates_operations_list Read

Notebook Runtime Templates Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.notebook_runtime_templates_operations_list
Full name
google-vertex-ai.google_vertex_ai_notebook_runtime_templates_operations_list
ParameterTypeRequiredDescription
No parameters.
feature_groups_operations_get Read

Feature Groups Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_groups_operations_get
Full name
google-vertex-ai.google_vertex_ai_feature_groups_operations_get
ParameterTypeRequiredDescription
No parameters.
feature_groups_operations_delete Write

Feature Groups Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_groups_operations_delete
Full name
google-vertex-ai.google_vertex_ai_feature_groups_operations_delete
ParameterTypeRequiredDescription
No parameters.
feature_groups_operations_list_wait Read

Feature Groups Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_groups_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_feature_groups_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
feature_groups_operations_wait Write

Feature Groups Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_groups_operations_wait
Full name
google-vertex-ai.google_vertex_ai_feature_groups_operations_wait
ParameterTypeRequiredDescription
No parameters.
feature_groups_features_operations_list_wait Read

Feature Groups Features Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_groups_features_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_feature_groups_features_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
feature_groups_features_operations_wait Write

Feature Groups Features Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_groups_features_operations_wait
Full name
google-vertex-ai.google_vertex_ai_feature_groups_features_operations_wait
ParameterTypeRequiredDescription
No parameters.
feature_groups_features_operations_get Read

Feature Groups Features Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_groups_features_operations_get
Full name
google-vertex-ai.google_vertex_ai_feature_groups_features_operations_get
ParameterTypeRequiredDescription
No parameters.
feature_groups_features_operations_delete Write

Feature Groups Features Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_groups_features_operations_delete
Full name
google-vertex-ai.google_vertex_ai_feature_groups_features_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_update_cache_config Write

Projects Update Cache Config (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_update_cache_config
Full name
google-vertex-ai.google_vertex_ai_projects_update_cache_config
ParameterTypeRequiredDescription
No parameters.
projects_get_cache_config Read

Projects Get Cache Config (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_get_cache_config
Full name
google-vertex-ai.google_vertex_ai_projects_get_cache_config
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluate_instances Write

Projects Locations Evaluate Instances (POST /v1/{+location}:evaluateInstances).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluate_instances
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluate_instances
ParameterTypeRequiredDescription
No parameters.
projects_locations_ask_contexts Write

Projects Locations Ask Contexts (POST /v1/{+parent}:askContexts).

Lua path
app.integrations.google_vertex_ai.projects_locations_ask_contexts
Full name
google-vertex-ai.google_vertex_ai_projects_locations_ask_contexts
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluate_dataset Write

Projects Locations Evaluate Dataset (POST /v1/{+location}:evaluateDataset).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluate_dataset
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluate_dataset
ParameterTypeRequiredDescription
No parameters.
projects_locations_get_rag_engine_config Read

Projects Locations Get Rag Engine Config (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_get_rag_engine_config
Full name
google-vertex-ai.google_vertex_ai_projects_locations_get_rag_engine_config
ParameterTypeRequiredDescription
No parameters.
projects_locations_corroborate_content Write

Projects Locations Corroborate Content (POST /v1/{+parent}:corroborateContent).

Lua path
app.integrations.google_vertex_ai.projects_locations_corroborate_content
Full name
google-vertex-ai.google_vertex_ai_projects_locations_corroborate_content
ParameterTypeRequiredDescription
No parameters.
projects_locations_update_rag_engine_config Write

Projects Locations Update Rag Engine Config (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_update_rag_engine_config
Full name
google-vertex-ai.google_vertex_ai_projects_locations_update_rag_engine_config
ParameterTypeRequiredDescription
No parameters.
projects_locations_get Read

Projects Locations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_deploy Write

Projects Locations Deploy (POST /v1/{+destination}:deploy).

Lua path
app.integrations.google_vertex_ai.projects_locations_deploy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deploy
ParameterTypeRequiredDescription
No parameters.
projects_locations_retrieve_contexts Write

Projects Locations Retrieve Contexts (POST /v1/{+parent}:retrieveContexts).

Lua path
app.integrations.google_vertex_ai.projects_locations_retrieve_contexts
Full name
google-vertex-ai.google_vertex_ai_projects_locations_retrieve_contexts
ParameterTypeRequiredDescription
No parameters.
projects_locations_augment_prompt Write

Projects Locations Augment Prompt (POST /v1/{+parent}:augmentPrompt).

Lua path
app.integrations.google_vertex_ai.projects_locations_augment_prompt
Full name
google-vertex-ai.google_vertex_ai_projects_locations_augment_prompt
ParameterTypeRequiredDescription
No parameters.
projects_locations_async_retrieve_contexts Write

Projects Locations Async Retrieve Contexts (POST /v1/{+parent}:asyncRetrieveContexts).

Lua path
app.integrations.google_vertex_ai.projects_locations_async_retrieve_contexts
Full name
google-vertex-ai.google_vertex_ai_projects_locations_async_retrieve_contexts
ParameterTypeRequiredDescription
No parameters.
projects_locations_list Read

Projects Locations List (GET /v1/{+name}/locations).

Lua path
app.integrations.google_vertex_ai.projects_locations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_generate_synthetic_data Write

Projects Locations Generate Synthetic Data (POST /v1/{+location}:generateSyntheticData).

Lua path
app.integrations.google_vertex_ai.projects_locations_generate_synthetic_data
Full name
google-vertex-ai.google_vertex_ai_projects_locations_generate_synthetic_data
ParameterTypeRequiredDescription
No parameters.
projects_locations_generate_instance_rubrics Write

Projects Locations Generate Instance Rubrics (POST /v1/{+location}:generateInstanceRubrics).

Lua path
app.integrations.google_vertex_ai.projects_locations_generate_instance_rubrics
Full name
google-vertex-ai.google_vertex_ai_projects_locations_generate_instance_rubrics
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_create Write

Projects Locations Tuning Jobs Create (POST /v1/{+parent}/tuningJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_list Read

Projects Locations Tuning Jobs List (GET /v1/{+parent}/tuningJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_rebase_tuned_model Write

Projects Locations Tuning Jobs Rebase Tuned Model (POST /v1/{+parent}/tuningJobs:rebaseTunedModel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_rebase_tuned_model
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_rebase_tuned_model
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_cancel Write

Projects Locations Tuning Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_get Read

Projects Locations Tuning Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_operations_cancel Write

Projects Locations Tuning Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_operations_list Read

Projects Locations Tuning Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_operations_delete Write

Projects Locations Tuning Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tuning_jobs_operations_get Read

Projects Locations Tuning Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tuning_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tuning_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_delete Write

Projects Locations Data Labeling Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_create Write

Projects Locations Data Labeling Jobs Create (POST /v1/{+parent}/dataLabelingJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_list Read

Projects Locations Data Labeling Jobs List (GET /v1/{+parent}/dataLabelingJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_cancel Write

Projects Locations Data Labeling Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_get Read

Projects Locations Data Labeling Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_operations_get Read

Projects Locations Data Labeling Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_operations_delete Write

Projects Locations Data Labeling Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_operations_list Read

Projects Locations Data Labeling Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_operations_cancel Write

Projects Locations Data Labeling Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_data_labeling_jobs_operations_wait Write

Projects Locations Data Labeling Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_data_labeling_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_data_labeling_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_migratable_resources_batch_migrate Write

Projects Locations Migratable Resources Batch Migrate (POST /v1/{+parent}/migratableResources:batchMigrate).

Lua path
app.integrations.google_vertex_ai.projects_locations_migratable_resources_batch_migrate
Full name
google-vertex-ai.google_vertex_ai_projects_locations_migratable_resources_batch_migrate
ParameterTypeRequiredDescription
No parameters.
projects_locations_migratable_resources_operations_get Read

Projects Locations Migratable Resources Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_migratable_resources_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_migratable_resources_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_migratable_resources_operations_list Read

Projects Locations Migratable Resources Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_migratable_resources_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_migratable_resources_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_migratable_resources_operations_cancel Write

Projects Locations Migratable Resources Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_migratable_resources_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_migratable_resources_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_migratable_resources_operations_wait Write

Projects Locations Migratable Resources Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_migratable_resources_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_migratable_resources_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_migratable_resources_operations_delete Write

Projects Locations Migratable Resources Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_migratable_resources_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_migratable_resources_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_delete Write

Projects Locations Notebook Runtimes Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_upgrade Write

Projects Locations Notebook Runtimes Upgrade (POST /v1/{+name}:upgrade).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_upgrade
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_upgrade
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_start Write

Projects Locations Notebook Runtimes Start (POST /v1/{+name}:start).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_start
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_start
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_list Read

Projects Locations Notebook Runtimes List (GET /v1/{+parent}/notebookRuntimes).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_assign Write

Projects Locations Notebook Runtimes Assign (POST /v1/{+parent}/notebookRuntimes:assign).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_assign
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_assign
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_get Read

Projects Locations Notebook Runtimes Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_stop Write

Projects Locations Notebook Runtimes Stop (POST /v1/{+name}:stop).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_stop
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_stop
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_operations_get Read

Projects Locations Notebook Runtimes Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_operations_cancel Write

Projects Locations Notebook Runtimes Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_operations_wait Write

Projects Locations Notebook Runtimes Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_operations_list Read

Projects Locations Notebook Runtimes Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtimes_operations_delete Write

Projects Locations Notebook Runtimes Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtimes_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtimes_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_delete Write

Projects Locations Model Deployment Monitoring Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_create Write

Projects Locations Model Deployment Monitoring Jobs Create (POST /v1/{+parent}/modelDeploymentMonitoringJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_list Read

Projects Locations Model Deployment Monitoring Jobs List (GET /v1/{+parent}/modelDeploymentMonitoringJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_patch Write

Projects Locations Model Deployment Monitoring Jobs Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_get Read

Projects Locations Model Deployment Monitoring Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_pause Write

Projects Locations Model Deployment Monitoring Jobs Pause (POST /v1/{+name}:pause).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_pause
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_pause
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_search_model_deployment_monitoring_stats_anomalies Write

Projects Locations Model Deployment Monitoring Jobs Search Model Deployment Monitoring Stats Anomalies (POST /v1/{+modelDeploymentMonitoringJob}:searchModelDeploymentMonitoringStatsAnomalies).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_search_model_deployment_monitoring_stats_anomalies
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_search_model_deployment_monitoring_stats_anomalies
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_resume Write

Projects Locations Model Deployment Monitoring Jobs Resume (POST /v1/{+name}:resume).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_resume
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_resume
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_operations_get Read

Projects Locations Model Deployment Monitoring Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_operations_delete Write

Projects Locations Model Deployment Monitoring Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_operations_list Read

Projects Locations Model Deployment Monitoring Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_operations_cancel Write

Projects Locations Model Deployment Monitoring Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_model_deployment_monitoring_jobs_operations_wait Write

Projects Locations Model Deployment Monitoring Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_model_deployment_monitoring_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_model_deployment_monitoring_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_operations_delete Write

Projects Locations Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_operations_cancel Write

Projects Locations Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_operations_wait Write

Projects Locations Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_operations_list Read

Projects Locations Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_operations_get Read

Projects Locations Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_patch Write

Projects Locations Models Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_copy Write

Projects Locations Models Copy (POST /v1/{+parent}/models:copy).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_copy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_copy
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_delete Write

Projects Locations Models Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_get Read

Projects Locations Models Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_upload Write

Projects Locations Models Upload (POST /v1/{+parent}/models:upload).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_upload
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_upload
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_get_iam_policy Write

Projects Locations Models Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_list Read

Projects Locations Models List (GET /v1/{+parent}/models).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_export Write

Projects Locations Models Export (POST /v1/{+name}:export).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_export
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_export
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_test_iam_permissions Write

Projects Locations Models Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_delete_version Write

Projects Locations Models Delete Version (DELETE /v1/{+name}:deleteVersion).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_delete_version
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_delete_version
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_merge_version_aliases Write

Projects Locations Models Merge Version Aliases (POST /v1/{+name}:mergeVersionAliases).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_merge_version_aliases
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_merge_version_aliases
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_list_checkpoints Read

Projects Locations Models List Checkpoints (GET /v1/{+name}:listCheckpoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_list_checkpoints
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_list_checkpoints
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_list_versions Read

Projects Locations Models List Versions (GET /v1/{+name}:listVersions).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_list_versions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_list_versions
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_set_iam_policy Write

Projects Locations Models Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_update_explanation_dataset Write

Projects Locations Models Update Explanation Dataset (POST /v1/{+model}:updateExplanationDataset).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_update_explanation_dataset
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_update_explanation_dataset
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_operations_delete Write

Projects Locations Models Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_operations_cancel Write

Projects Locations Models Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_operations_wait Write

Projects Locations Models Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_operations_list Read

Projects Locations Models Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_operations_get Read

Projects Locations Models Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_import Write

Projects Locations Models Evaluations Import (POST /v1/{+parent}/evaluations:import).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_import
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_import
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_list Read

Projects Locations Models Evaluations List (GET /v1/{+parent}/evaluations).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_get Read

Projects Locations Models Evaluations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_operations_get Read

Projects Locations Models Evaluations Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_operations_delete Write

Projects Locations Models Evaluations Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_operations_list Read

Projects Locations Models Evaluations Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_operations_cancel Write

Projects Locations Models Evaluations Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_operations_wait Write

Projects Locations Models Evaluations Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_slices_list Read

Projects Locations Models Evaluations Slices List (GET /v1/{+parent}/slices).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_slices_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_slices_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_slices_batch_import Write

Projects Locations Models Evaluations Slices Batch Import (POST /v1/{+parent}:batchImport).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_slices_batch_import
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_slices_batch_import
ParameterTypeRequiredDescription
No parameters.
projects_locations_models_evaluations_slices_get Read

Projects Locations Models Evaluations Slices Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_models_evaluations_slices_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_models_evaluations_slices_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_set_iam_policy Write

Projects Locations Notebook Runtime Templates Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_get Read

Projects Locations Notebook Runtime Templates Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_get_iam_policy Write

Projects Locations Notebook Runtime Templates Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_create Write

Projects Locations Notebook Runtime Templates Create (POST /v1/{+parent}/notebookRuntimeTemplates).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_list Read

Projects Locations Notebook Runtime Templates List (GET /v1/{+parent}/notebookRuntimeTemplates).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_patch Write

Projects Locations Notebook Runtime Templates Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_test_iam_permissions Write

Projects Locations Notebook Runtime Templates Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_delete Write

Projects Locations Notebook Runtime Templates Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_operations_list Read

Projects Locations Notebook Runtime Templates Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_operations_cancel Write

Projects Locations Notebook Runtime Templates Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_operations_wait Write

Projects Locations Notebook Runtime Templates Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_operations_delete Write

Projects Locations Notebook Runtime Templates Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_runtime_templates_operations_get Read

Projects Locations Notebook Runtime Templates Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_runtime_templates_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_runtime_templates_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_test_iam_permissions Write

Projects Locations Feature Groups Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_delete Write

Projects Locations Feature Groups Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_get_iam_policy Write

Projects Locations Feature Groups Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_create Write

Projects Locations Feature Groups Create (POST /v1/{+parent}/featureGroups).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_list Read

Projects Locations Feature Groups List (GET /v1/{+parent}/featureGroups).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_patch Write

Projects Locations Feature Groups Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_set_iam_policy Write

Projects Locations Feature Groups Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_get Read

Projects Locations Feature Groups Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_operations_wait Write

Projects Locations Feature Groups Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_operations_list_wait Read

Projects Locations Feature Groups Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_operations_delete Write

Projects Locations Feature Groups Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_operations_get Read

Projects Locations Feature Groups Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_delete Write

Projects Locations Feature Groups Features Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_create Write

Projects Locations Feature Groups Features Create (POST /v1/{+parent}/features).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_list Read

Projects Locations Feature Groups Features List (GET /v1/{+parent}/features).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_patch Write

Projects Locations Feature Groups Features Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_batch_create Write

Projects Locations Feature Groups Features Batch Create (POST /v1/{+parent}/features:batchCreate).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_batch_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_batch_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_get Read

Projects Locations Feature Groups Features Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_operations_get Read

Projects Locations Feature Groups Features Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_operations_delete Write

Projects Locations Feature Groups Features Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_operations_list_wait Read

Projects Locations Feature Groups Features Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_groups_features_operations_wait Write

Projects Locations Feature Groups Features Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_groups_features_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_groups_features_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_set_iam_policy Write

Projects Locations Reasoning Engines Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_execute_code Write

Projects Locations Reasoning Engines Execute Code (POST /v1/{+name}:executeCode).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_execute_code
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_execute_code
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_create Write

Projects Locations Reasoning Engines Create (POST /v1/{+parent}/reasoningEngines).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_get Read

Projects Locations Reasoning Engines Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_query Write

Projects Locations Reasoning Engines Query (POST /v1/{+name}:query).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_query
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_query
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_test_iam_permissions Write

Projects Locations Reasoning Engines Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_stream_query Write

Projects Locations Reasoning Engines Stream Query (POST /v1/{+name}:streamQuery).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_stream_query
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_stream_query
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_async_query Write

Projects Locations Reasoning Engines Async Query (POST /v1/{+name}:asyncQuery).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_async_query
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_async_query
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_delete Write

Projects Locations Reasoning Engines Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_get_iam_policy Write

Projects Locations Reasoning Engines Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_list Read

Projects Locations Reasoning Engines List (GET /v1/{+parent}/reasoningEngines).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_patch Write

Projects Locations Reasoning Engines Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_delete Write

Projects Locations Reasoning Engines Memories Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_patch Write

Projects Locations Reasoning Engines Memories Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_list Read

Projects Locations Reasoning Engines Memories List (GET /v1/{+parent}/memories).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_generate Write

Projects Locations Reasoning Engines Memories Generate (POST /v1/{+parent}/memories:generate).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_generate
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_generate
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_get Read

Projects Locations Reasoning Engines Memories Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_create Write

Projects Locations Reasoning Engines Memories Create (POST /v1/{+parent}/memories).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_retrieve Write

Projects Locations Reasoning Engines Memories Retrieve (POST /v1/{+parent}/memories:retrieve).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_retrieve
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_retrieve
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_purge Write

Projects Locations Reasoning Engines Memories Purge (POST /v1/{+parent}/memories:purge).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_purge
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_purge
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_rollback Write

Projects Locations Reasoning Engines Memories Rollback (POST /v1/{+name}:rollback).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_rollback
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_rollback
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_operations_get Read

Projects Locations Reasoning Engines Memories Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_operations_list Read

Projects Locations Reasoning Engines Memories Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_operations_cancel Write

Projects Locations Reasoning Engines Memories Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_operations_wait Write

Projects Locations Reasoning Engines Memories Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_operations_delete Write

Projects Locations Reasoning Engines Memories Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_revisions_get Read

Projects Locations Reasoning Engines Memories Revisions Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_revisions_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_revisions_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_memories_revisions_list Read

Projects Locations Reasoning Engines Memories Revisions List (GET /v1/{+parent}/revisions).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_memories_revisions_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_memories_revisions_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_list Read

Projects Locations Reasoning Engines Sandbox Environment Snapshots List (GET /v1/{+parent}/sandboxEnvironmentSnapshots).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_get Read

Projects Locations Reasoning Engines Sandbox Environment Snapshots Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_delete Write

Projects Locations Reasoning Engines Sandbox Environment Snapshots Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_cancel Write

Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_wait Write

Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_get Read

Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_delete Write

Projects Locations Reasoning Engines Sandbox Environment Snapshots Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_snapshots_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_create Write

Projects Locations Reasoning Engines Sandbox Environment Templates Create (POST /v1/{+parent}/sandboxEnvironmentTemplates).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_list Read

Projects Locations Reasoning Engines Sandbox Environment Templates List (GET /v1/{+parent}/sandboxEnvironmentTemplates).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_get Read

Projects Locations Reasoning Engines Sandbox Environment Templates Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_delete Write

Projects Locations Reasoning Engines Sandbox Environment Templates Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_operations_get Read

Projects Locations Reasoning Engines Sandbox Environment Templates Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_operations_delete Write

Projects Locations Reasoning Engines Sandbox Environment Templates Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_operations_cancel Write

Projects Locations Reasoning Engines Sandbox Environment Templates Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environment_templates_operations_wait Write

Projects Locations Reasoning Engines Sandbox Environment Templates Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environment_templates_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environment_templates_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_get Read

Projects Locations Reasoning Engines Sessions Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_delete Write

Projects Locations Reasoning Engines Sessions Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_append_event Write

Projects Locations Reasoning Engines Sessions Append Event (POST /v1/{+name}:appendEvent).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_append_event
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_append_event
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_create Write

Projects Locations Reasoning Engines Sessions Create (POST /v1/{+parent}/sessions).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_list Read

Projects Locations Reasoning Engines Sessions List (GET /v1/{+parent}/sessions).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_patch Write

Projects Locations Reasoning Engines Sessions Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_operations_delete Write

Projects Locations Reasoning Engines Sessions Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_operations_list Read

Projects Locations Reasoning Engines Sessions Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_operations_cancel Write

Projects Locations Reasoning Engines Sessions Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_operations_wait Write

Projects Locations Reasoning Engines Sessions Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_operations_get Read

Projects Locations Reasoning Engines Sessions Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sessions_events_list Read

Projects Locations Reasoning Engines Sessions Events List (GET /v1/{+parent}/events).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sessions_events_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sessions_events_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_operations_delete Write

Projects Locations Reasoning Engines Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_operations_list Read

Projects Locations Reasoning Engines Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_operations_cancel Write

Projects Locations Reasoning Engines Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_operations_wait Write

Projects Locations Reasoning Engines Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_operations_get Read

Projects Locations Reasoning Engines Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_runtime_revisions_stream_query Write

Projects Locations Reasoning Engines Runtime Revisions Stream Query (POST /v1/{+name}:streamQuery).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_runtime_revisions_stream_query
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_runtime_revisions_stream_query
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_runtime_revisions_query Write

Projects Locations Reasoning Engines Runtime Revisions Query (POST /v1/{+name}:query).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_runtime_revisions_query
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_runtime_revisions_query
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_snapshot Write

Projects Locations Reasoning Engines Sandbox Environments Snapshot (POST /v1/{+name}:snapshot).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_snapshot
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_snapshot
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_get Read

Projects Locations Reasoning Engines Sandbox Environments Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_create Write

Projects Locations Reasoning Engines Sandbox Environments Create (POST /v1/{+parent}/sandboxEnvironments).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_list Read

Projects Locations Reasoning Engines Sandbox Environments List (GET /v1/{+parent}/sandboxEnvironments).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_execute Write

Projects Locations Reasoning Engines Sandbox Environments Execute (POST /v1/{+name}:execute).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_execute
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_execute
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_delete Write

Projects Locations Reasoning Engines Sandbox Environments Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_operations_cancel Write

Projects Locations Reasoning Engines Sandbox Environments Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_operations_wait Write

Projects Locations Reasoning Engines Sandbox Environments Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_operations_delete Write

Projects Locations Reasoning Engines Sandbox Environments Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_reasoning_engines_sandbox_environments_operations_get Read

Projects Locations Reasoning Engines Sandbox Environments Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_reasoning_engines_sandbox_environments_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_reasoning_engines_sandbox_environments_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_cached_contents_get Read

Projects Locations Cached Contents Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_cached_contents_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_cached_contents_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_cached_contents_create Write

Projects Locations Cached Contents Create (POST /v1/{+parent}/cachedContents).

Lua path
app.integrations.google_vertex_ai.projects_locations_cached_contents_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_cached_contents_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_cached_contents_patch Write

Projects Locations Cached Contents Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_cached_contents_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_cached_contents_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_cached_contents_list Read

Projects Locations Cached Contents List (GET /v1/{+parent}/cachedContents).

Lua path
app.integrations.google_vertex_ai.projects_locations_cached_contents_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_cached_contents_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_cached_contents_delete Write

Projects Locations Cached Contents Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_cached_contents_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_cached_contents_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_create Write

Projects Locations Schedules Create (POST /v1/{+parent}/schedules).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_list Read

Projects Locations Schedules List (GET /v1/{+parent}/schedules).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_patch Write

Projects Locations Schedules Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_delete Write

Projects Locations Schedules Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_resume Write

Projects Locations Schedules Resume (POST /v1/{+name}:resume).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_resume
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_resume
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_pause Write

Projects Locations Schedules Pause (POST /v1/{+name}:pause).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_pause
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_pause
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_get Read

Projects Locations Schedules Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_operations_delete Write

Projects Locations Schedules Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_operations_list Read

Projects Locations Schedules Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_operations_cancel Write

Projects Locations Schedules Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_operations_wait Write

Projects Locations Schedules Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_schedules_operations_get Read

Projects Locations Schedules Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_schedules_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_schedules_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_get Read

Projects Locations Custom Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_create Write

Projects Locations Custom Jobs Create (POST /v1/{+parent}/customJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_list Read

Projects Locations Custom Jobs List (GET /v1/{+parent}/customJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_cancel Write

Projects Locations Custom Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_delete Write

Projects Locations Custom Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_operations_get Read

Projects Locations Custom Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_operations_cancel Write

Projects Locations Custom Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_operations_wait Write

Projects Locations Custom Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_operations_list Read

Projects Locations Custom Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_custom_jobs_operations_delete Write

Projects Locations Custom Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_custom_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_custom_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_delete Write

Projects Locations Studies Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_create Write

Projects Locations Studies Create (POST /v1/{+parent}/studies).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_list Read

Projects Locations Studies List (GET /v1/{+parent}/studies).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_lookup Write

Projects Locations Studies Lookup (POST /v1/{+parent}/studies:lookup).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_lookup
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_lookup
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_get Read

Projects Locations Studies Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_operations_get Read

Projects Locations Studies Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_operations_delete Write

Projects Locations Studies Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_operations_cancel Write

Projects Locations Studies Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_operations_wait Write

Projects Locations Studies Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_operations_list Read

Projects Locations Studies Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_suggest Write

Projects Locations Studies Trials Suggest (POST /v1/{+parent}/trials:suggest).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_suggest
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_suggest
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_get Read

Projects Locations Studies Trials Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_stop Write

Projects Locations Studies Trials Stop (POST /v1/{+name}:stop).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_stop
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_stop
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_add_trial_measurement Write

Projects Locations Studies Trials Add Trial Measurement (POST /v1/{+trialName}:addTrialMeasurement).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_add_trial_measurement
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_add_trial_measurement
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_delete Write

Projects Locations Studies Trials Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_list Read

Projects Locations Studies Trials List (GET /v1/{+parent}/trials).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_list_optimal_trials Write

Projects Locations Studies Trials List Optimal Trials (POST /v1/{+parent}/trials:listOptimalTrials).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_list_optimal_trials
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_list_optimal_trials
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_check_trial_early_stopping_state Write

Projects Locations Studies Trials Check Trial Early Stopping State (POST /v1/{+trialName}:checkTrialEarlyStoppingState).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_check_trial_early_stopping_state
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_check_trial_early_stopping_state
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_create Write

Projects Locations Studies Trials Create (POST /v1/{+parent}/trials).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_complete Write

Projects Locations Studies Trials Complete (POST /v1/{+name}:complete).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_complete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_complete
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_operations_get Read

Projects Locations Studies Trials Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_operations_cancel Write

Projects Locations Studies Trials Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_operations_wait Write

Projects Locations Studies Trials Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_operations_list Read

Projects Locations Studies Trials Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_studies_trials_operations_delete Write

Projects Locations Studies Trials Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_studies_trials_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_studies_trials_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_direct_raw_predict Write

Projects Locations Endpoints Direct Raw Predict (POST /v1/{+endpoint}:directRawPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_direct_raw_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_direct_raw_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_stream_generate_content Write

Projects Locations Endpoints Stream Generate Content (POST /v1/{+model}:streamGenerateContent).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_stream_generate_content
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_stream_generate_content
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_raw_predict Write

Projects Locations Endpoints Raw Predict (POST /v1/{+endpoint}:rawPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_raw_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_raw_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_generate_content Write

Projects Locations Endpoints Generate Content (POST /v1/{+model}:generateContent).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_generate_content
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_generate_content
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_deploy_model Write

Projects Locations Endpoints Deploy Model (POST /v1/{+endpoint}:deployModel).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_deploy_model
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_deploy_model
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_list Read

Projects Locations Endpoints List (GET /v1/{+parent}/endpoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_compute_tokens Write

Projects Locations Endpoints Compute Tokens (POST /v1/{+endpoint}:computeTokens).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_compute_tokens
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_compute_tokens
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_server_streaming_predict Write

Projects Locations Endpoints Server Streaming Predict (POST /v1/{+endpoint}:serverStreamingPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_server_streaming_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_server_streaming_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_undeploy_model Write

Projects Locations Endpoints Undeploy Model (POST /v1/{+endpoint}:undeployModel).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_undeploy_model
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_undeploy_model
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_predict Write

Projects Locations Endpoints Predict (POST /v1/{+endpoint}:predict).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_direct_predict Write

Projects Locations Endpoints Direct Predict (POST /v1/{+endpoint}:directPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_direct_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_direct_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_create Write

Projects Locations Endpoints Create (POST /v1/{+parent}/endpoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_update Write

Projects Locations Endpoints Update (POST /v1/{+name}:update).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_update
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_update
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_mutate_deployed_model Write

Projects Locations Endpoints Mutate Deployed Model (POST /v1/{+endpoint}:mutateDeployedModel).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_mutate_deployed_model
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_mutate_deployed_model
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_delete Write

Projects Locations Endpoints Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_count_tokens Write

Projects Locations Endpoints Count Tokens (POST /v1/{+endpoint}:countTokens).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_count_tokens
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_count_tokens
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_patch Write

Projects Locations Endpoints Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_fetch_predict_operation Write

Projects Locations Endpoints Fetch Predict Operation (POST /v1/{+endpoint}:fetchPredictOperation).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_fetch_predict_operation
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_fetch_predict_operation
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_get Read

Projects Locations Endpoints Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_predict_long_running Write

Projects Locations Endpoints Predict Long Running (POST /v1/{+endpoint}:predictLongRunning).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_predict_long_running
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_predict_long_running
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_stream_raw_predict Write

Projects Locations Endpoints Stream Raw Predict (POST /v1/{+endpoint}:streamRawPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_stream_raw_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_stream_raw_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_explain Write

Projects Locations Endpoints Explain (POST /v1/{+endpoint}:explain).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_explain
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_explain
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_operations_cancel Write

Projects Locations Endpoints Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_operations_wait Write

Projects Locations Endpoints Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_operations_list Read

Projects Locations Endpoints Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_operations_delete Write

Projects Locations Endpoints Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_operations_get Read

Projects Locations Endpoints Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_invoke_invoke Write

Projects Locations Endpoints Invoke Invoke (POST /v1/{+endpoint}/invoke/{+invokeId}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_invoke_invoke
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_invoke_invoke
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_openapi_responses Write

Projects Locations Endpoints Openapi Responses (POST /v1/{+endpoint}/responses).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_openapi_responses
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_openapi_responses
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_openapi_completions Write

Projects Locations Endpoints Openapi Completions (POST /v1/{+endpoint}/completions).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_openapi_completions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_openapi_completions
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_openapi_embeddings Write

Projects Locations Endpoints Openapi Embeddings (POST /v1/{+endpoint}/embeddings).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_openapi_embeddings
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_openapi_embeddings
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_chat_completions Write

Projects Locations Endpoints Chat Completions (POST /v1/{+endpoint}/chat/completions).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_chat_completions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_chat_completions
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_deployed_models_invoke_invoke Write

Projects Locations Endpoints Deployed Models Invoke Invoke (POST /v1/{+endpoint}/deployedModels/{deployedModelId}/invoke/{+invokeId}).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_deployed_models_invoke_invoke
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_deployed_models_invoke_invoke
ParameterTypeRequiredDescription
No parameters.
projects_locations_endpoints_science_inference Write

Projects Locations Endpoints Google Science Inference (POST /v1/{+endpoint}/science/inference).

Lua path
app.integrations.google_vertex_ai.projects_locations_endpoints_science_inference
Full name
google-vertex-ai.google_vertex_ai_projects_locations_endpoints_google_science_inference
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_runs_create Write

Projects Locations Evaluation Runs Create (POST /v1/{+parent}/evaluationRuns).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_runs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_runs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_runs_list Read

Projects Locations Evaluation Runs List (GET /v1/{+parent}/evaluationRuns).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_runs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_runs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_runs_cancel Write

Projects Locations Evaluation Runs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_runs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_runs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_runs_delete Write

Projects Locations Evaluation Runs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_runs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_runs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_runs_get Read

Projects Locations Evaluation Runs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_runs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_runs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_delete Write

Projects Locations Pipeline Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_batch_delete Write

Projects Locations Pipeline Jobs Batch Delete (POST /v1/{+parent}/pipelineJobs:batchDelete).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_batch_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_batch_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_cancel Write

Projects Locations Pipeline Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_create Write

Projects Locations Pipeline Jobs Create (POST /v1/{+parent}/pipelineJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_list Read

Projects Locations Pipeline Jobs List (GET /v1/{+parent}/pipelineJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_batch_cancel Write

Projects Locations Pipeline Jobs Batch Cancel (POST /v1/{+parent}/pipelineJobs:batchCancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_batch_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_batch_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_get Read

Projects Locations Pipeline Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_operations_cancel Write

Projects Locations Pipeline Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_operations_wait Write

Projects Locations Pipeline Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_operations_list Read

Projects Locations Pipeline Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_operations_delete Write

Projects Locations Pipeline Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_pipeline_jobs_operations_get Read

Projects Locations Pipeline Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_pipeline_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_pipeline_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_create Write

Projects Locations Rag Corpora Create (POST /v1/{+parent}/ragCorpora).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_patch Write

Projects Locations Rag Corpora Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_list Read

Projects Locations Rag Corpora List (GET /v1/{+parent}/ragCorpora).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_delete Write

Projects Locations Rag Corpora Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_get Read

Projects Locations Rag Corpora Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_operations_get Read

Projects Locations Rag Corpora Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_operations_list Read

Projects Locations Rag Corpora Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_operations_cancel Write

Projects Locations Rag Corpora Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_operations_wait Write

Projects Locations Rag Corpora Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_operations_delete Write

Projects Locations Rag Corpora Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_get Read

Projects Locations Rag Corpora Rag Files Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_delete Write

Projects Locations Rag Corpora Rag Files Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_import Write

Projects Locations Rag Corpora Rag Files Import (POST /v1/{+parent}/ragFiles:import).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_import
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_import
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_list Read

Projects Locations Rag Corpora Rag Files List (GET /v1/{+parent}/ragFiles).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_operations_list Read

Projects Locations Rag Corpora Rag Files Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_operations_cancel Write

Projects Locations Rag Corpora Rag Files Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_operations_wait Write

Projects Locations Rag Corpora Rag Files Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_operations_delete Write

Projects Locations Rag Corpora Rag Files Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_corpora_rag_files_operations_get Read

Projects Locations Rag Corpora Rag Files Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_corpora_rag_files_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_corpora_rag_files_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_get Read

Projects Locations Tensorboards Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_read_size Read

Projects Locations Tensorboards Read Size (GET /v1/{+tensorboard}:readSize).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_read_size
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_read_size
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_batch_read Read

Projects Locations Tensorboards Batch Read (GET /v1/{+tensorboard}:batchRead).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_batch_read
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_batch_read
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_create Write

Projects Locations Tensorboards Create (POST /v1/{+parent}/tensorboards).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_patch Write

Projects Locations Tensorboards Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_list Read

Projects Locations Tensorboards List (GET /v1/{+parent}/tensorboards).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_read_usage Read

Projects Locations Tensorboards Read Usage (GET /v1/{+tensorboard}:readUsage).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_read_usage
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_read_usage
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_delete Write

Projects Locations Tensorboards Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_create Write

Projects Locations Tensorboards Experiments Create (POST /v1/{+parent}/experiments).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_patch Write

Projects Locations Tensorboards Experiments Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_list Read

Projects Locations Tensorboards Experiments List (GET /v1/{+parent}/experiments).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_batch_create Write

Projects Locations Tensorboards Experiments Batch Create (POST /v1/{+parent}:batchCreate).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_batch_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_batch_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_delete Write

Projects Locations Tensorboards Experiments Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_get Read

Projects Locations Tensorboards Experiments Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_write Write

Projects Locations Tensorboards Experiments Write (POST /v1/{+tensorboardExperiment}:write).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_write
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_write
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_operations_delete Write

Projects Locations Tensorboards Experiments Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_operations_cancel Write

Projects Locations Tensorboards Experiments Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_operations_wait Write

Projects Locations Tensorboards Experiments Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_operations_list Read

Projects Locations Tensorboards Experiments Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_operations_get Read

Projects Locations Tensorboards Experiments Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_batch_create Write

Projects Locations Tensorboards Experiments Runs Batch Create (POST /v1/{+parent}/runs:batchCreate).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_batch_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_batch_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_create Write

Projects Locations Tensorboards Experiments Runs Create (POST /v1/{+parent}/runs).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_patch Write

Projects Locations Tensorboards Experiments Runs Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_list Read

Projects Locations Tensorboards Experiments Runs List (GET /v1/{+parent}/runs).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_delete Write

Projects Locations Tensorboards Experiments Runs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_get Read

Projects Locations Tensorboards Experiments Runs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_write Write

Projects Locations Tensorboards Experiments Runs Write (POST /v1/{+tensorboardRun}:write).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_write
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_write
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_operations_delete Write

Projects Locations Tensorboards Experiments Runs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_operations_cancel Write

Projects Locations Tensorboards Experiments Runs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_operations_wait Write

Projects Locations Tensorboards Experiments Runs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_operations_list Read

Projects Locations Tensorboards Experiments Runs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_operations_get Read

Projects Locations Tensorboards Experiments Runs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_export_tensorboard_time_series Write

Projects Locations Tensorboards Experiments Runs Time Series Export Tensorboard Time Series (POST /v1/{+tensorboardTimeSeries}:exportTensorboardTimeSeries).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_export_tensorboard_time_series
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_export_tensorboard_time_series
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_delete Write

Projects Locations Tensorboards Experiments Runs Time Series Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_read Read

Projects Locations Tensorboards Experiments Runs Time Series Read (GET /v1/{+tensorboardTimeSeries}:read).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_read
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_read
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_create Write

Projects Locations Tensorboards Experiments Runs Time Series Create (POST /v1/{+parent}/timeSeries).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_patch Write

Projects Locations Tensorboards Experiments Runs Time Series Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_list Read

Projects Locations Tensorboards Experiments Runs Time Series List (GET /v1/{+parent}/timeSeries).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_get Read

Projects Locations Tensorboards Experiments Runs Time Series Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_read_blob_data Read

Projects Locations Tensorboards Experiments Runs Time Series Read Blob Data (GET /v1/{+timeSeries}:readBlobData).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_read_blob_data
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_read_blob_data
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_operations_get Read

Projects Locations Tensorboards Experiments Runs Time Series Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_operations_delete Write

Projects Locations Tensorboards Experiments Runs Time Series Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_operations_list Read

Projects Locations Tensorboards Experiments Runs Time Series Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_operations_cancel Write

Projects Locations Tensorboards Experiments Runs Time Series Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_experiments_runs_time_series_operations_wait Write

Projects Locations Tensorboards Experiments Runs Time Series Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_experiments_runs_time_series_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_experiments_runs_time_series_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_operations_delete Write

Projects Locations Tensorboards Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_operations_cancel Write

Projects Locations Tensorboards Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_operations_wait Write

Projects Locations Tensorboards Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_operations_list Read

Projects Locations Tensorboards Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_tensorboards_operations_get Read

Projects Locations Tensorboards Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_tensorboards_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_tensorboards_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_create Write

Projects Locations Notebook Execution Jobs Create (POST /v1/{+parent}/notebookExecutionJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_list Read

Projects Locations Notebook Execution Jobs List (GET /v1/{+parent}/notebookExecutionJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_get Read

Projects Locations Notebook Execution Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_delete Write

Projects Locations Notebook Execution Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_operations_delete Write

Projects Locations Notebook Execution Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_operations_list Read

Projects Locations Notebook Execution Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_operations_cancel Write

Projects Locations Notebook Execution Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_operations_wait Write

Projects Locations Notebook Execution Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_notebook_execution_jobs_operations_get Read

Projects Locations Notebook Execution Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_notebook_execution_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_notebook_execution_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_set_iam_policy Write

Projects Locations Feature Online Stores Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_get Read

Projects Locations Feature Online Stores Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_get_iam_policy Write

Projects Locations Feature Online Stores Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_create Write

Projects Locations Feature Online Stores Create (POST /v1/{+parent}/featureOnlineStores).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_list Read

Projects Locations Feature Online Stores List (GET /v1/{+parent}/featureOnlineStores).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_patch Write

Projects Locations Feature Online Stores Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_delete Write

Projects Locations Feature Online Stores Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_test_iam_permissions Write

Projects Locations Feature Online Stores Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_set_iam_policy Write

Projects Locations Feature Online Stores Feature Views Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_get_iam_policy Write

Projects Locations Feature Online Stores Feature Views Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_list Read

Projects Locations Feature Online Stores Feature Views List (GET /v1/{+parent}/featureViews).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_test_iam_permissions Write

Projects Locations Feature Online Stores Feature Views Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_search_nearest_entities Write

Projects Locations Feature Online Stores Feature Views Search Nearest Entities (POST /v1/{+featureView}:searchNearestEntities).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_search_nearest_entities
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_search_nearest_entities
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_generate_fetch_access_token Write

Projects Locations Feature Online Stores Feature Views Generate Fetch Access Token (POST /v1/{+featureView}:generateFetchAccessToken).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_generate_fetch_access_token
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_generate_fetch_access_token
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_sync Write

Projects Locations Feature Online Stores Feature Views Sync (POST /v1/{+featureView}:sync).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_sync
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_sync
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_create Write

Projects Locations Feature Online Stores Feature Views Create (POST /v1/{+parent}/featureViews).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_patch Write

Projects Locations Feature Online Stores Feature Views Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_delete Write

Projects Locations Feature Online Stores Feature Views Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_get Read

Projects Locations Feature Online Stores Feature Views Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_fetch_feature_values Write

Projects Locations Feature Online Stores Feature Views Fetch Feature Values (POST /v1/{+featureView}:fetchFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_fetch_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_fetch_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_direct_write Write

Projects Locations Feature Online Stores Feature Views Direct Write (POST /v1/{+featureView}:directWrite).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_direct_write
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_direct_write
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_feature_view_syncs_get Read

Projects Locations Feature Online Stores Feature Views Feature View Syncs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_feature_view_syncs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_feature_view_syncs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_feature_view_syncs_list Read

Projects Locations Feature Online Stores Feature Views Feature View Syncs List (GET /v1/{+parent}/featureViewSyncs).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_feature_view_syncs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_feature_view_syncs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_operations_wait Write

Projects Locations Feature Online Stores Feature Views Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_operations_list_wait Read

Projects Locations Feature Online Stores Feature Views Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_operations_delete Write

Projects Locations Feature Online Stores Feature Views Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_feature_views_operations_get Read

Projects Locations Feature Online Stores Feature Views Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_feature_views_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_feature_views_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_operations_get Read

Projects Locations Feature Online Stores Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_operations_delete Write

Projects Locations Feature Online Stores Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_operations_list_wait Read

Projects Locations Feature Online Stores Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_feature_online_stores_operations_wait Write

Projects Locations Feature Online Stores Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_feature_online_stores_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_feature_online_stores_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_engine_config_operations_list Read

Projects Locations Rag Engine Config Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_engine_config_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_engine_config_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_engine_config_operations_cancel Write

Projects Locations Rag Engine Config Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_engine_config_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_engine_config_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_engine_config_operations_wait Write

Projects Locations Rag Engine Config Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_engine_config_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_engine_config_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_engine_config_operations_delete Write

Projects Locations Rag Engine Config Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_engine_config_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_engine_config_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_rag_engine_config_operations_get Read

Projects Locations Rag Engine Config Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_rag_engine_config_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_rag_engine_config_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_delete Write

Projects Locations Nas Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_create Write

Projects Locations Nas Jobs Create (POST /v1/{+parent}/nasJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_list Read

Projects Locations Nas Jobs List (GET /v1/{+parent}/nasJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_cancel Write

Projects Locations Nas Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_get Read

Projects Locations Nas Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_nas_trial_details_get Read

Projects Locations Nas Jobs Nas Trial Details Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_nas_trial_details_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_nas_trial_details_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_nas_jobs_nas_trial_details_list Read

Projects Locations Nas Jobs Nas Trial Details List (GET /v1/{+parent}/nasTrialDetails).

Lua path
app.integrations.google_vertex_ai.projects_locations_nas_jobs_nas_trial_details_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_nas_jobs_nas_trial_details_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_set_iam_policy Write

Projects Locations Datasets Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_create Write

Projects Locations Datasets Create (POST /v1/{+parent}/datasets).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_get Read

Projects Locations Datasets Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_import Write

Projects Locations Datasets Import (POST /v1/{+name}:import).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_import
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_import
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_delete Write

Projects Locations Datasets Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_test_iam_permissions Write

Projects Locations Datasets Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_export Write

Projects Locations Datasets Export (POST /v1/{+name}:export).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_export
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_export
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_get_iam_policy Write

Projects Locations Datasets Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_patch Write

Projects Locations Datasets Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_list Read

Projects Locations Datasets List (GET /v1/{+parent}/datasets).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_search_data_items Read

Projects Locations Datasets Search Data Items (GET /v1/{+dataset}:searchDataItems).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_search_data_items
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_search_data_items
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_list Read

Projects Locations Datasets Data Items List (GET /v1/{+parent}/dataItems).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_annotations_list Read

Projects Locations Datasets Data Items Annotations List (GET /v1/{+parent}/annotations).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_annotations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_annotations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_annotations_operations_get Read

Projects Locations Datasets Data Items Annotations Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_annotations_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_annotations_operations_list Read

Projects Locations Datasets Data Items Annotations Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_annotations_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_annotations_operations_cancel Write

Projects Locations Datasets Data Items Annotations Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_annotations_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_annotations_operations_wait Write

Projects Locations Datasets Data Items Annotations Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_annotations_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_annotations_operations_delete Write

Projects Locations Datasets Data Items Annotations Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_annotations_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_annotations_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_operations_get Read

Projects Locations Datasets Data Items Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_operations_delete Write

Projects Locations Datasets Data Items Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_operations_cancel Write

Projects Locations Datasets Data Items Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_operations_wait Write

Projects Locations Datasets Data Items Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_data_items_operations_list Read

Projects Locations Datasets Data Items Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_data_items_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_data_items_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_annotation_specs_get Read

Projects Locations Datasets Annotation Specs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_annotation_specs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_annotation_specs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_annotation_specs_operations_delete Write

Projects Locations Datasets Annotation Specs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_annotation_specs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_annotation_specs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_annotation_specs_operations_cancel Write

Projects Locations Datasets Annotation Specs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_annotation_specs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_annotation_specs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_annotation_specs_operations_wait Write

Projects Locations Datasets Annotation Specs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_annotation_specs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_annotation_specs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_annotation_specs_operations_list Read

Projects Locations Datasets Annotation Specs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_annotation_specs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_annotation_specs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_annotation_specs_operations_get Read

Projects Locations Datasets Annotation Specs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_annotation_specs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_annotation_specs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_dataset_versions_get Read

Projects Locations Datasets Dataset Versions Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_dataset_versions_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_dataset_versions_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_dataset_versions_create Write

Projects Locations Datasets Dataset Versions Create (POST /v1/{+parent}/datasetVersions).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_dataset_versions_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_dataset_versions_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_dataset_versions_patch Write

Projects Locations Datasets Dataset Versions Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_dataset_versions_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_dataset_versions_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_dataset_versions_list Read

Projects Locations Datasets Dataset Versions List (GET /v1/{+parent}/datasetVersions).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_dataset_versions_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_dataset_versions_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_dataset_versions_delete Write

Projects Locations Datasets Dataset Versions Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_dataset_versions_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_dataset_versions_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_dataset_versions_restore Read

Projects Locations Datasets Dataset Versions Restore (GET /v1/{+name}:restore).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_dataset_versions_restore
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_dataset_versions_restore
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_operations_get Read

Projects Locations Datasets Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_operations_delete Write

Projects Locations Datasets Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_operations_list Read

Projects Locations Datasets Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_operations_cancel Write

Projects Locations Datasets Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_operations_wait Write

Projects Locations Datasets Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_list Read

Projects Locations Datasets Saved Queries List (GET /v1/{+parent}/savedQueries).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_delete Write

Projects Locations Datasets Saved Queries Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_operations_delete Write

Projects Locations Datasets Saved Queries Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_operations_list Read

Projects Locations Datasets Saved Queries Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_operations_cancel Write

Projects Locations Datasets Saved Queries Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_operations_wait Write

Projects Locations Datasets Saved Queries Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_datasets_saved_queries_operations_get Read

Projects Locations Datasets Saved Queries Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_datasets_saved_queries_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_datasets_saved_queries_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_stream_generate_content Write

Projects Locations Publishers Models Stream Generate Content (POST /v1/{+model}:streamGenerateContent).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_stream_generate_content
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_stream_generate_content
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_predict Write

Projects Locations Publishers Models Predict (POST /v1/{+endpoint}:predict).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_embed_content Write

Projects Locations Publishers Models Embed Content (POST /v1/{+model}:embedContent).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_embed_content
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_embed_content
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_stream_raw_predict Write

Projects Locations Publishers Models Stream Raw Predict (POST /v1/{+endpoint}:streamRawPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_stream_raw_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_stream_raw_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_server_streaming_predict Write

Projects Locations Publishers Models Server Streaming Predict (POST /v1/{+endpoint}:serverStreamingPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_server_streaming_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_server_streaming_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_predict_long_running Write

Projects Locations Publishers Models Predict Long Running (POST /v1/{+endpoint}:predictLongRunning).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_predict_long_running
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_predict_long_running
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_fetch_predict_operation Write

Projects Locations Publishers Models Fetch Predict Operation (POST /v1/{+endpoint}:fetchPredictOperation).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_fetch_predict_operation
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_fetch_predict_operation
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_compute_tokens Write

Projects Locations Publishers Models Compute Tokens (POST /v1/{+endpoint}:computeTokens).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_compute_tokens
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_compute_tokens
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_count_tokens Write

Projects Locations Publishers Models Count Tokens (POST /v1/{+endpoint}:countTokens).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_count_tokens
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_count_tokens
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_generate_content Write

Projects Locations Publishers Models Generate Content (POST /v1/{+model}:generateContent).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_generate_content
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_generate_content
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_raw_predict Write

Projects Locations Publishers Models Raw Predict (POST /v1/{+endpoint}:rawPredict).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_raw_predict
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_raw_predict
ParameterTypeRequiredDescription
No parameters.
projects_locations_publishers_models_invoke_invoke Write

Projects Locations Publishers Models Invoke Invoke (POST /v1/{+endpoint}/invoke/{+invokeId}).

Lua path
app.integrations.google_vertex_ai.projects_locations_publishers_models_invoke_invoke
Full name
google-vertex-ai.google_vertex_ai_projects_locations_publishers_models_invoke_invoke
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_get Read

Projects Locations Featurestores Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_search_features Read

Projects Locations Featurestores Search Features (GET /v1/{+location}/featurestores:searchFeatures).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_search_features
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_search_features
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_get_iam_policy Write

Projects Locations Featurestores Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_list Read

Projects Locations Featurestores List (GET /v1/{+parent}/featurestores).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_patch Write

Projects Locations Featurestores Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_batch_read_feature_values Write

Projects Locations Featurestores Batch Read Feature Values (POST /v1/{+featurestore}:batchReadFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_batch_read_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_batch_read_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_test_iam_permissions Write

Projects Locations Featurestores Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_delete Write

Projects Locations Featurestores Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_set_iam_policy Write

Projects Locations Featurestores Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_create Write

Projects Locations Featurestores Create (POST /v1/{+parent}/featurestores).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_get_iam_policy Write

Projects Locations Featurestores Entity Types Get Iam Policy (POST /v1/{+resource}:getIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_get_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_get_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_list Read

Projects Locations Featurestores Entity Types List (GET /v1/{+parent}/entityTypes).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_import_feature_values Write

Projects Locations Featurestores Entity Types Import Feature Values (POST /v1/{+entityType}:importFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_import_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_import_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_test_iam_permissions Write

Projects Locations Featurestores Entity Types Test Iam Permissions (POST /v1/{+resource}:testIamPermissions).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_test_iam_permissions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_test_iam_permissions
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_read_feature_values Write

Projects Locations Featurestores Entity Types Read Feature Values (POST /v1/{+entityType}:readFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_read_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_read_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_set_iam_policy Write

Projects Locations Featurestores Entity Types Set Iam Policy (POST /v1/{+resource}:setIamPolicy).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_set_iam_policy
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_set_iam_policy
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_streaming_read_feature_values Write

Projects Locations Featurestores Entity Types Streaming Read Feature Values (POST /v1/{+entityType}:streamingReadFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_streaming_read_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_streaming_read_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_get Read

Projects Locations Featurestores Entity Types Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_export_feature_values Write

Projects Locations Featurestores Entity Types Export Feature Values (POST /v1/{+entityType}:exportFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_export_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_export_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_patch Write

Projects Locations Featurestores Entity Types Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_write_feature_values Write

Projects Locations Featurestores Entity Types Write Feature Values (POST /v1/{+entityType}:writeFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_write_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_write_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_delete Write

Projects Locations Featurestores Entity Types Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_delete_feature_values Write

Projects Locations Featurestores Entity Types Delete Feature Values (POST /v1/{+entityType}:deleteFeatureValues).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_delete_feature_values
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_delete_feature_values
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_create Write

Projects Locations Featurestores Entity Types Create (POST /v1/{+parent}/entityTypes).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_operations_cancel Write

Projects Locations Featurestores Entity Types Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_operations_wait Write

Projects Locations Featurestores Entity Types Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_operations_list Read

Projects Locations Featurestores Entity Types Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_operations_delete Write

Projects Locations Featurestores Entity Types Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_operations_get Read

Projects Locations Featurestores Entity Types Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_get Read

Projects Locations Featurestores Entity Types Features Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_delete Write

Projects Locations Featurestores Entity Types Features Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_create Write

Projects Locations Featurestores Entity Types Features Create (POST /v1/{+parent}/features).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_list Read

Projects Locations Featurestores Entity Types Features List (GET /v1/{+parent}/features).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_patch Write

Projects Locations Featurestores Entity Types Features Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_batch_create Write

Projects Locations Featurestores Entity Types Features Batch Create (POST /v1/{+parent}/features:batchCreate).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_batch_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_batch_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_operations_cancel Write

Projects Locations Featurestores Entity Types Features Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_operations_wait Write

Projects Locations Featurestores Entity Types Features Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_operations_list Read

Projects Locations Featurestores Entity Types Features Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_operations_delete Write

Projects Locations Featurestores Entity Types Features Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_entity_types_features_operations_get Read

Projects Locations Featurestores Entity Types Features Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_entity_types_features_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_entity_types_features_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_operations_cancel Write

Projects Locations Featurestores Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_operations_wait Write

Projects Locations Featurestores Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_operations_list Read

Projects Locations Featurestores Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_operations_delete Write

Projects Locations Featurestores Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_featurestores_operations_get Read

Projects Locations Featurestores Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_featurestores_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_featurestores_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_batch_prediction_jobs_delete Write

Projects Locations Batch Prediction Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_batch_prediction_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_batch_prediction_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_batch_prediction_jobs_cancel Write

Projects Locations Batch Prediction Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_batch_prediction_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_batch_prediction_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_batch_prediction_jobs_create Write

Projects Locations Batch Prediction Jobs Create (POST /v1/{+parent}/batchPredictionJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_batch_prediction_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_batch_prediction_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_batch_prediction_jobs_list Read

Projects Locations Batch Prediction Jobs List (GET /v1/{+parent}/batchPredictionJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_batch_prediction_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_batch_prediction_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_batch_prediction_jobs_get Read

Projects Locations Batch Prediction Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_batch_prediction_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_batch_prediction_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_get Read

Projects Locations Metadata Stores Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_delete Write

Projects Locations Metadata Stores Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_create Write

Projects Locations Metadata Stores Create (POST /v1/{+parent}/metadataStores).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_list Read

Projects Locations Metadata Stores List (GET /v1/{+parent}/metadataStores).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_delete Write

Projects Locations Metadata Stores Artifacts Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_create Write

Projects Locations Metadata Stores Artifacts Create (POST /v1/{+parent}/artifacts).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_list Read

Projects Locations Metadata Stores Artifacts List (GET /v1/{+parent}/artifacts).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_patch Write

Projects Locations Metadata Stores Artifacts Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_get Read

Projects Locations Metadata Stores Artifacts Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_query_artifact_lineage_subgraph Read

Projects Locations Metadata Stores Artifacts Query Artifact Lineage Subgraph (GET /v1/{+artifact}:queryArtifactLineageSubgraph).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_query_artifact_lineage_subgraph
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_query_artifact_lineage_subgraph
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_purge Write

Projects Locations Metadata Stores Artifacts Purge (POST /v1/{+parent}/artifacts:purge).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_purge
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_purge
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_operations_delete Write

Projects Locations Metadata Stores Artifacts Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_operations_list Read

Projects Locations Metadata Stores Artifacts Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_operations_cancel Write

Projects Locations Metadata Stores Artifacts Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_operations_wait Write

Projects Locations Metadata Stores Artifacts Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_artifacts_operations_get Read

Projects Locations Metadata Stores Artifacts Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_artifacts_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_artifacts_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_purge Write

Projects Locations Metadata Stores Contexts Purge (POST /v1/{+parent}/contexts:purge).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_purge
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_purge
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_query_context_lineage_subgraph Read

Projects Locations Metadata Stores Contexts Query Context Lineage Subgraph (GET /v1/{+context}:queryContextLineageSubgraph).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_query_context_lineage_subgraph
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_query_context_lineage_subgraph
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_add_context_children Write

Projects Locations Metadata Stores Contexts Add Context Children (POST /v1/{+context}:addContextChildren).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_add_context_children
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_add_context_children
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_create Write

Projects Locations Metadata Stores Contexts Create (POST /v1/{+parent}/contexts).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_remove_context_children Write

Projects Locations Metadata Stores Contexts Remove Context Children (POST /v1/{+context}:removeContextChildren).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_remove_context_children
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_remove_context_children
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_get Read

Projects Locations Metadata Stores Contexts Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_list Read

Projects Locations Metadata Stores Contexts List (GET /v1/{+parent}/contexts).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_patch Write

Projects Locations Metadata Stores Contexts Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_delete Write

Projects Locations Metadata Stores Contexts Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_add_context_artifacts_and_executions Write

Projects Locations Metadata Stores Contexts Add Context Artifacts And Executions (POST /v1/{+context}:addContextArtifactsAndExecutions).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_add_context_artifacts_and_executions
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_add_context_artifacts_and_executions
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_operations_get Read

Projects Locations Metadata Stores Contexts Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_operations_delete Write

Projects Locations Metadata Stores Contexts Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_operations_list Read

Projects Locations Metadata Stores Contexts Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_operations_cancel Write

Projects Locations Metadata Stores Contexts Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_contexts_operations_wait Write

Projects Locations Metadata Stores Contexts Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_contexts_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_contexts_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_purge Write

Projects Locations Metadata Stores Executions Purge (POST /v1/{+parent}/executions:purge).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_purge
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_purge
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_get Read

Projects Locations Metadata Stores Executions Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_add_execution_events Write

Projects Locations Metadata Stores Executions Add Execution Events (POST /v1/{+execution}:addExecutionEvents).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_add_execution_events
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_add_execution_events
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_create Write

Projects Locations Metadata Stores Executions Create (POST /v1/{+parent}/executions).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_list Read

Projects Locations Metadata Stores Executions List (GET /v1/{+parent}/executions).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_patch Write

Projects Locations Metadata Stores Executions Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_delete Write

Projects Locations Metadata Stores Executions Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_query_execution_inputs_and_outputs Read

Projects Locations Metadata Stores Executions Query Execution Inputs And Outputs (GET /v1/{+execution}:queryExecutionInputsAndOutputs).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_query_execution_inputs_and_outputs
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_query_execution_inputs_and_outputs
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_operations_get Read

Projects Locations Metadata Stores Executions Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_operations_list Read

Projects Locations Metadata Stores Executions Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_operations_cancel Write

Projects Locations Metadata Stores Executions Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_operations_wait Write

Projects Locations Metadata Stores Executions Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_executions_operations_delete Write

Projects Locations Metadata Stores Executions Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_executions_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_executions_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_metadata_schemas_get Read

Projects Locations Metadata Stores Metadata Schemas Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_metadata_schemas_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_metadata_schemas_create Write

Projects Locations Metadata Stores Metadata Schemas Create (POST /v1/{+parent}/metadataSchemas).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_metadata_schemas_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_metadata_schemas_list Read

Projects Locations Metadata Stores Metadata Schemas List (GET /v1/{+parent}/metadataSchemas).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_metadata_schemas_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_metadata_schemas_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_operations_get Read

Projects Locations Metadata Stores Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_operations_delete Write

Projects Locations Metadata Stores Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_operations_cancel Write

Projects Locations Metadata Stores Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_operations_wait Write

Projects Locations Metadata Stores Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_metadata_stores_operations_list Read

Projects Locations Metadata Stores Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_metadata_stores_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_metadata_stores_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_delete Write

Projects Locations Deployment Resource Pools Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_create Write

Projects Locations Deployment Resource Pools Create (POST /v1/{+parent}/deploymentResourcePools).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_list Read

Projects Locations Deployment Resource Pools List (GET /v1/{+parent}/deploymentResourcePools).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_patch Write

Projects Locations Deployment Resource Pools Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_get Read

Projects Locations Deployment Resource Pools Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_query_deployed_models Read

Projects Locations Deployment Resource Pools Query Deployed Models (GET /v1/{+deploymentResourcePool}:queryDeployedModels).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_query_deployed_models
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_query_deployed_models
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_operations_delete Write

Projects Locations Deployment Resource Pools Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_operations_list Read

Projects Locations Deployment Resource Pools Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_operations_cancel Write

Projects Locations Deployment Resource Pools Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_operations_wait Write

Projects Locations Deployment Resource Pools Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_deployment_resource_pools_operations_get Read

Projects Locations Deployment Resource Pools Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_deployment_resource_pools_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_deployment_resource_pools_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_items_create Write

Projects Locations Evaluation Items Create (POST /v1/{+parent}/evaluationItems).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_items_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_items_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_items_list Read

Projects Locations Evaluation Items List (GET /v1/{+parent}/evaluationItems).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_items_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_items_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_items_delete Write

Projects Locations Evaluation Items Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_items_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_items_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_items_get Read

Projects Locations Evaluation Items Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_items_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_items_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_get Read

Projects Locations Specialist Pools Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_delete Write

Projects Locations Specialist Pools Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_create Write

Projects Locations Specialist Pools Create (POST /v1/{+parent}/specialistPools).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_list Read

Projects Locations Specialist Pools List (GET /v1/{+parent}/specialistPools).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_patch Write

Projects Locations Specialist Pools Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_operations_delete Write

Projects Locations Specialist Pools Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_operations_list Read

Projects Locations Specialist Pools Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_operations_cancel Write

Projects Locations Specialist Pools Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_operations_wait Write

Projects Locations Specialist Pools Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_specialist_pools_operations_get Read

Projects Locations Specialist Pools Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_specialist_pools_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_specialist_pools_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_delete Write

Projects Locations Persistent Resources Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_create Write

Projects Locations Persistent Resources Create (POST /v1/{+parent}/persistentResources).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_list Read

Projects Locations Persistent Resources List (GET /v1/{+parent}/persistentResources).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_patch Write

Projects Locations Persistent Resources Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_get Read

Projects Locations Persistent Resources Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_reboot Write

Projects Locations Persistent Resources Reboot (POST /v1/{+name}:reboot).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_reboot
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_reboot
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_operations_delete Write

Projects Locations Persistent Resources Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_operations_cancel Write

Projects Locations Persistent Resources Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_operations_wait Write

Projects Locations Persistent Resources Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_operations_list Read

Projects Locations Persistent Resources Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_persistent_resources_operations_get Read

Projects Locations Persistent Resources Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_persistent_resources_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_persistent_resources_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_sets_delete Write

Projects Locations Evaluation Sets Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_sets_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_sets_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_sets_create Write

Projects Locations Evaluation Sets Create (POST /v1/{+parent}/evaluationSets).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_sets_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_sets_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_sets_list Read

Projects Locations Evaluation Sets List (GET /v1/{+parent}/evaluationSets).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_sets_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_sets_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_sets_patch Write

Projects Locations Evaluation Sets Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_sets_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_sets_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_evaluation_sets_get Read

Projects Locations Evaluation Sets Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_evaluation_sets_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_evaluation_sets_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_create Write

Projects Locations Index Endpoints Create (POST /v1/{+parent}/indexEndpoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_deploy_index Write

Projects Locations Index Endpoints Deploy Index (POST /v1/{+indexEndpoint}:deployIndex).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_deploy_index
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_deploy_index
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_find_neighbors Write

Projects Locations Index Endpoints Find Neighbors (POST /v1/{+indexEndpoint}:findNeighbors).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_find_neighbors
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_find_neighbors
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_undeploy_index Write

Projects Locations Index Endpoints Undeploy Index (POST /v1/{+indexEndpoint}:undeployIndex).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_undeploy_index
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_undeploy_index
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_read_index_datapoints Write

Projects Locations Index Endpoints Read Index Datapoints (POST /v1/{+indexEndpoint}:readIndexDatapoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_read_index_datapoints
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_read_index_datapoints
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_list Read

Projects Locations Index Endpoints List (GET /v1/{+parent}/indexEndpoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_patch Write

Projects Locations Index Endpoints Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_delete Write

Projects Locations Index Endpoints Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_mutate_deployed_index Write

Projects Locations Index Endpoints Mutate Deployed Index (POST /v1/{+indexEndpoint}:mutateDeployedIndex).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_mutate_deployed_index
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_mutate_deployed_index
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_get Read

Projects Locations Index Endpoints Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_operations_get Read

Projects Locations Index Endpoints Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_operations_delete Write

Projects Locations Index Endpoints Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_operations_cancel Write

Projects Locations Index Endpoints Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_operations_wait Write

Projects Locations Index Endpoints Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_index_endpoints_operations_list Read

Projects Locations Index Endpoints Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_index_endpoints_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_index_endpoints_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_skills_operations_cancel Write

Projects Locations Skills Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_skills_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_skills_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_skills_operations_wait Write

Projects Locations Skills Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_skills_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_skills_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_skills_operations_list Read

Projects Locations Skills Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_skills_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_skills_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_skills_operations_delete Write

Projects Locations Skills Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_skills_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_skills_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_skills_operations_get Read

Projects Locations Skills Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_skills_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_skills_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_upsert_datapoints Write

Projects Locations Indexes Upsert Datapoints (POST /v1/{+index}:upsertDatapoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_upsert_datapoints
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_upsert_datapoints
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_create Write

Projects Locations Indexes Create (POST /v1/{+parent}/indexes).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_list Read

Projects Locations Indexes List (GET /v1/{+parent}/indexes).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_patch Write

Projects Locations Indexes Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_patch
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_patch
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_delete Write

Projects Locations Indexes Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_remove_datapoints Write

Projects Locations Indexes Remove Datapoints (POST /v1/{+index}:removeDatapoints).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_remove_datapoints
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_remove_datapoints
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_get Read

Projects Locations Indexes Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_operations_list Read

Projects Locations Indexes Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_operations_cancel Write

Projects Locations Indexes Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_operations_wait Write

Projects Locations Indexes Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_operations_delete Write

Projects Locations Indexes Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_indexes_operations_get Read

Projects Locations Indexes Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_indexes_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_indexes_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_get Read

Projects Locations Hyperparameter Tuning Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_cancel Write

Projects Locations Hyperparameter Tuning Jobs Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_create Write

Projects Locations Hyperparameter Tuning Jobs Create (POST /v1/{+parent}/hyperparameterTuningJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_list Read

Projects Locations Hyperparameter Tuning Jobs List (GET /v1/{+parent}/hyperparameterTuningJobs).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_delete Write

Projects Locations Hyperparameter Tuning Jobs Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_operations_get Read

Projects Locations Hyperparameter Tuning Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_operations_delete Write

Projects Locations Hyperparameter Tuning Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_operations_list Read

Projects Locations Hyperparameter Tuning Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_operations_cancel Write

Projects Locations Hyperparameter Tuning Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_hyperparameter_tuning_jobs_operations_wait Write

Projects Locations Hyperparameter Tuning Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_hyperparameter_tuning_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_hyperparameter_tuning_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_cancel Write

Projects Locations Training Pipelines Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_create Write

Projects Locations Training Pipelines Create (POST /v1/{+parent}/trainingPipelines).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_create
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_create
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_list Read

Projects Locations Training Pipelines List (GET /v1/{+parent}/trainingPipelines).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_delete Write

Projects Locations Training Pipelines Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_delete
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_get Read

Projects Locations Training Pipelines Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_operations_get Read

Projects Locations Training Pipelines Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_operations_get
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_operations_get
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_operations_list Read

Projects Locations Training Pipelines Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_operations_list
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_operations_list
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_operations_cancel Write

Projects Locations Training Pipelines Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_operations_cancel
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_operations_wait Write

Projects Locations Training Pipelines Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_operations_wait
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_operations_wait
ParameterTypeRequiredDescription
No parameters.
projects_locations_training_pipelines_operations_delete Write

Projects Locations Training Pipelines Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.projects_locations_training_pipelines_operations_delete
Full name
google-vertex-ai.google_vertex_ai_projects_locations_training_pipelines_operations_delete
ParameterTypeRequiredDescription
No parameters.
deployment_resource_pools_operations_list Read

Deployment Resource Pools Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.deployment_resource_pools_operations_list
Full name
google-vertex-ai.google_vertex_ai_deployment_resource_pools_operations_list
ParameterTypeRequiredDescription
No parameters.
deployment_resource_pools_operations_cancel Write

Deployment Resource Pools Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.deployment_resource_pools_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_deployment_resource_pools_operations_cancel
ParameterTypeRequiredDescription
No parameters.
deployment_resource_pools_operations_wait Write

Deployment Resource Pools Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.deployment_resource_pools_operations_wait
Full name
google-vertex-ai.google_vertex_ai_deployment_resource_pools_operations_wait
ParameterTypeRequiredDescription
No parameters.
deployment_resource_pools_operations_delete Write

Deployment Resource Pools Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.deployment_resource_pools_operations_delete
Full name
google-vertex-ai.google_vertex_ai_deployment_resource_pools_operations_delete
ParameterTypeRequiredDescription
No parameters.
deployment_resource_pools_operations_get Read

Deployment Resource Pools Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.deployment_resource_pools_operations_get
Full name
google-vertex-ai.google_vertex_ai_deployment_resource_pools_operations_get
ParameterTypeRequiredDescription
No parameters.
specialist_pools_operations_cancel Write

Specialist Pools Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.specialist_pools_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_specialist_pools_operations_cancel
ParameterTypeRequiredDescription
No parameters.
specialist_pools_operations_wait Write

Specialist Pools Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.specialist_pools_operations_wait
Full name
google-vertex-ai.google_vertex_ai_specialist_pools_operations_wait
ParameterTypeRequiredDescription
No parameters.
specialist_pools_operations_list Read

Specialist Pools Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.specialist_pools_operations_list
Full name
google-vertex-ai.google_vertex_ai_specialist_pools_operations_list
ParameterTypeRequiredDescription
No parameters.
specialist_pools_operations_delete Write

Specialist Pools Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.specialist_pools_operations_delete
Full name
google-vertex-ai.google_vertex_ai_specialist_pools_operations_delete
ParameterTypeRequiredDescription
No parameters.
specialist_pools_operations_get Read

Specialist Pools Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.specialist_pools_operations_get
Full name
google-vertex-ai.google_vertex_ai_specialist_pools_operations_get
ParameterTypeRequiredDescription
No parameters.
persistent_resources_operations_get Read

Persistent Resources Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.persistent_resources_operations_get
Full name
google-vertex-ai.google_vertex_ai_persistent_resources_operations_get
ParameterTypeRequiredDescription
No parameters.
persistent_resources_operations_delete Write

Persistent Resources Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.persistent_resources_operations_delete
Full name
google-vertex-ai.google_vertex_ai_persistent_resources_operations_delete
ParameterTypeRequiredDescription
No parameters.
persistent_resources_operations_cancel Write

Persistent Resources Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.persistent_resources_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_persistent_resources_operations_cancel
ParameterTypeRequiredDescription
No parameters.
persistent_resources_operations_wait Write

Persistent Resources Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.persistent_resources_operations_wait
Full name
google-vertex-ai.google_vertex_ai_persistent_resources_operations_wait
ParameterTypeRequiredDescription
No parameters.
persistent_resources_operations_list Read

Persistent Resources Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.persistent_resources_operations_list
Full name
google-vertex-ai.google_vertex_ai_persistent_resources_operations_list
ParameterTypeRequiredDescription
No parameters.
index_endpoints_operations_get Read

Index Endpoints Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.index_endpoints_operations_get
Full name
google-vertex-ai.google_vertex_ai_index_endpoints_operations_get
ParameterTypeRequiredDescription
No parameters.
index_endpoints_operations_delete Write

Index Endpoints Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.index_endpoints_operations_delete
Full name
google-vertex-ai.google_vertex_ai_index_endpoints_operations_delete
ParameterTypeRequiredDescription
No parameters.
index_endpoints_operations_list Read

Index Endpoints Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.index_endpoints_operations_list
Full name
google-vertex-ai.google_vertex_ai_index_endpoints_operations_list
ParameterTypeRequiredDescription
No parameters.
index_endpoints_operations_cancel Write

Index Endpoints Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.index_endpoints_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_index_endpoints_operations_cancel
ParameterTypeRequiredDescription
No parameters.
index_endpoints_operations_wait Write

Index Endpoints Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.index_endpoints_operations_wait
Full name
google-vertex-ai.google_vertex_ai_index_endpoints_operations_wait
ParameterTypeRequiredDescription
No parameters.
hyperparameter_tuning_jobs_operations_delete Write

Hyperparameter Tuning Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.hyperparameter_tuning_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_hyperparameter_tuning_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
hyperparameter_tuning_jobs_operations_cancel Write

Hyperparameter Tuning Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.hyperparameter_tuning_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_hyperparameter_tuning_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
hyperparameter_tuning_jobs_operations_wait Write

Hyperparameter Tuning Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.hyperparameter_tuning_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_hyperparameter_tuning_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
hyperparameter_tuning_jobs_operations_list Read

Hyperparameter Tuning Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.hyperparameter_tuning_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_hyperparameter_tuning_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
hyperparameter_tuning_jobs_operations_get Read

Hyperparameter Tuning Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.hyperparameter_tuning_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_hyperparameter_tuning_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
indexes_operations_get Read

Indexes Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.indexes_operations_get
Full name
google-vertex-ai.google_vertex_ai_indexes_operations_get
ParameterTypeRequiredDescription
No parameters.
indexes_operations_list Read

Indexes Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.indexes_operations_list
Full name
google-vertex-ai.google_vertex_ai_indexes_operations_list
ParameterTypeRequiredDescription
No parameters.
indexes_operations_cancel Write

Indexes Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.indexes_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_indexes_operations_cancel
ParameterTypeRequiredDescription
No parameters.
indexes_operations_wait Write

Indexes Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.indexes_operations_wait
Full name
google-vertex-ai.google_vertex_ai_indexes_operations_wait
ParameterTypeRequiredDescription
No parameters.
indexes_operations_delete Write

Indexes Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.indexes_operations_delete
Full name
google-vertex-ai.google_vertex_ai_indexes_operations_delete
ParameterTypeRequiredDescription
No parameters.
training_pipelines_operations_cancel Write

Training Pipelines Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.training_pipelines_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_training_pipelines_operations_cancel
ParameterTypeRequiredDescription
No parameters.
training_pipelines_operations_wait Write

Training Pipelines Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.training_pipelines_operations_wait
Full name
google-vertex-ai.google_vertex_ai_training_pipelines_operations_wait
ParameterTypeRequiredDescription
No parameters.
training_pipelines_operations_list Read

Training Pipelines Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.training_pipelines_operations_list
Full name
google-vertex-ai.google_vertex_ai_training_pipelines_operations_list
ParameterTypeRequiredDescription
No parameters.
training_pipelines_operations_delete Write

Training Pipelines Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.training_pipelines_operations_delete
Full name
google-vertex-ai.google_vertex_ai_training_pipelines_operations_delete
ParameterTypeRequiredDescription
No parameters.
training_pipelines_operations_get Read

Training Pipelines Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.training_pipelines_operations_get
Full name
google-vertex-ai.google_vertex_ai_training_pipelines_operations_get
ParameterTypeRequiredDescription
No parameters.
skills_operations_get Read

Skills Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.skills_operations_get
Full name
google-vertex-ai.google_vertex_ai_skills_operations_get
ParameterTypeRequiredDescription
No parameters.
skills_operations_delete Write

Skills Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.skills_operations_delete
Full name
google-vertex-ai.google_vertex_ai_skills_operations_delete
ParameterTypeRequiredDescription
No parameters.
skills_operations_list Read

Skills Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.skills_operations_list
Full name
google-vertex-ai.google_vertex_ai_skills_operations_list
ParameterTypeRequiredDescription
No parameters.
skills_operations_cancel Write

Skills Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.skills_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_skills_operations_cancel
ParameterTypeRequiredDescription
No parameters.
skills_operations_wait Write

Skills Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.skills_operations_wait
Full name
google-vertex-ai.google_vertex_ai_skills_operations_wait
ParameterTypeRequiredDescription
No parameters.
endpoints_predict_long_running Write

Endpoints Predict Long Running (POST /v1/{+endpoint}:predictLongRunning).

Lua path
app.integrations.google_vertex_ai.endpoints_predict_long_running
Full name
google-vertex-ai.google_vertex_ai_endpoints_predict_long_running
ParameterTypeRequiredDescription
No parameters.
endpoints_fetch_predict_operation Write

Endpoints Fetch Predict Operation (POST /v1/{+endpoint}:fetchPredictOperation).

Lua path
app.integrations.google_vertex_ai.endpoints_fetch_predict_operation
Full name
google-vertex-ai.google_vertex_ai_endpoints_fetch_predict_operation
ParameterTypeRequiredDescription
No parameters.
endpoints_stream_generate_content Write

Endpoints Stream Generate Content (POST /v1/{+model}:streamGenerateContent).

Lua path
app.integrations.google_vertex_ai.endpoints_stream_generate_content
Full name
google-vertex-ai.google_vertex_ai_endpoints_stream_generate_content
ParameterTypeRequiredDescription
No parameters.
endpoints_compute_tokens Write

Endpoints Compute Tokens (POST /v1/{+endpoint}:computeTokens).

Lua path
app.integrations.google_vertex_ai.endpoints_compute_tokens
Full name
google-vertex-ai.google_vertex_ai_endpoints_compute_tokens
ParameterTypeRequiredDescription
No parameters.
endpoints_count_tokens Write

Endpoints Count Tokens (POST /v1/{+endpoint}:countTokens).

Lua path
app.integrations.google_vertex_ai.endpoints_count_tokens
Full name
google-vertex-ai.google_vertex_ai_endpoints_count_tokens
ParameterTypeRequiredDescription
No parameters.
endpoints_predict Write

Endpoints Predict (POST /v1/{+endpoint}:predict).

Lua path
app.integrations.google_vertex_ai.endpoints_predict
Full name
google-vertex-ai.google_vertex_ai_endpoints_predict
ParameterTypeRequiredDescription
No parameters.
endpoints_generate_content Write

Endpoints Generate Content (POST /v1/{+model}:generateContent).

Lua path
app.integrations.google_vertex_ai.endpoints_generate_content
Full name
google-vertex-ai.google_vertex_ai_endpoints_generate_content
ParameterTypeRequiredDescription
No parameters.
endpoints_operations_delete Write

Endpoints Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.endpoints_operations_delete
Full name
google-vertex-ai.google_vertex_ai_endpoints_operations_delete
ParameterTypeRequiredDescription
No parameters.
endpoints_operations_list Read

Endpoints Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.endpoints_operations_list
Full name
google-vertex-ai.google_vertex_ai_endpoints_operations_list
ParameterTypeRequiredDescription
No parameters.
endpoints_operations_cancel Write

Endpoints Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.endpoints_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_endpoints_operations_cancel
ParameterTypeRequiredDescription
No parameters.
endpoints_operations_wait Write

Endpoints Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.endpoints_operations_wait
Full name
google-vertex-ai.google_vertex_ai_endpoints_operations_wait
ParameterTypeRequiredDescription
No parameters.
endpoints_operations_get Read

Endpoints Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.endpoints_operations_get
Full name
google-vertex-ai.google_vertex_ai_endpoints_operations_get
ParameterTypeRequiredDescription
No parameters.
endpoints_chat_completions Write

Endpoints Chat Completions (POST /v1/{+endpoint}/chat/completions).

Lua path
app.integrations.google_vertex_ai.endpoints_chat_completions
Full name
google-vertex-ai.google_vertex_ai_endpoints_chat_completions
ParameterTypeRequiredDescription
No parameters.
pipeline_jobs_operations_get Read

Pipeline Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.pipeline_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_pipeline_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
pipeline_jobs_operations_delete Write

Pipeline Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.pipeline_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_pipeline_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
pipeline_jobs_operations_cancel Write

Pipeline Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.pipeline_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_pipeline_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
pipeline_jobs_operations_wait Write

Pipeline Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.pipeline_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_pipeline_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
pipeline_jobs_operations_list Read

Pipeline Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.pipeline_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_pipeline_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
rag_corpora_operations_delete Write

Rag Corpora Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.rag_corpora_operations_delete
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_operations_delete
ParameterTypeRequiredDescription
No parameters.
rag_corpora_operations_cancel Write

Rag Corpora Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.rag_corpora_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_operations_cancel
ParameterTypeRequiredDescription
No parameters.
rag_corpora_operations_wait Write

Rag Corpora Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.rag_corpora_operations_wait
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_operations_wait
ParameterTypeRequiredDescription
No parameters.
rag_corpora_operations_list Read

Rag Corpora Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.rag_corpora_operations_list
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_operations_list
ParameterTypeRequiredDescription
No parameters.
rag_corpora_operations_get Read

Rag Corpora Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.rag_corpora_operations_get
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_operations_get
ParameterTypeRequiredDescription
No parameters.
rag_corpora_rag_files_operations_get Read

Rag Corpora Rag Files Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.rag_corpora_rag_files_operations_get
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_rag_files_operations_get
ParameterTypeRequiredDescription
No parameters.
rag_corpora_rag_files_operations_list Read

Rag Corpora Rag Files Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.rag_corpora_rag_files_operations_list
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_rag_files_operations_list
ParameterTypeRequiredDescription
No parameters.
rag_corpora_rag_files_operations_cancel Write

Rag Corpora Rag Files Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.rag_corpora_rag_files_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_rag_files_operations_cancel
ParameterTypeRequiredDescription
No parameters.
rag_corpora_rag_files_operations_wait Write

Rag Corpora Rag Files Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.rag_corpora_rag_files_operations_wait
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_rag_files_operations_wait
ParameterTypeRequiredDescription
No parameters.
rag_corpora_rag_files_operations_delete Write

Rag Corpora Rag Files Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.rag_corpora_rag_files_operations_delete
Full name
google-vertex-ai.google_vertex_ai_rag_corpora_rag_files_operations_delete
ParameterTypeRequiredDescription
No parameters.
tensorboards_operations_list Read

Tensorboards Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.tensorboards_operations_list
Full name
google-vertex-ai.google_vertex_ai_tensorboards_operations_list
ParameterTypeRequiredDescription
No parameters.
tensorboards_operations_cancel Write

Tensorboards Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.tensorboards_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_tensorboards_operations_cancel
ParameterTypeRequiredDescription
No parameters.
tensorboards_operations_wait Write

Tensorboards Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.tensorboards_operations_wait
Full name
google-vertex-ai.google_vertex_ai_tensorboards_operations_wait
ParameterTypeRequiredDescription
No parameters.
tensorboards_operations_delete Write

Tensorboards Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_operations_delete
Full name
google-vertex-ai.google_vertex_ai_tensorboards_operations_delete
ParameterTypeRequiredDescription
No parameters.
tensorboards_operations_get Read

Tensorboards Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_operations_get
Full name
google-vertex-ai.google_vertex_ai_tensorboards_operations_get
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_operations_cancel Write

Tensorboards Experiments Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_operations_cancel
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_operations_wait Write

Tensorboards Experiments Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_operations_wait
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_operations_wait
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_operations_list Read

Tensorboards Experiments Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_operations_list
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_operations_list
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_operations_delete Write

Tensorboards Experiments Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_operations_delete
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_operations_delete
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_operations_get Read

Tensorboards Experiments Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_operations_get
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_operations_get
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_operations_delete Write

Tensorboards Experiments Runs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_operations_delete
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_operations_cancel Write

Tensorboards Experiments Runs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_operations_wait Write

Tensorboards Experiments Runs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_operations_wait
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_operations_list Read

Tensorboards Experiments Runs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_operations_list
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_operations_list
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_operations_get Read

Tensorboards Experiments Runs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_operations_get
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_operations_get
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_time_series_operations_delete Write

Tensorboards Experiments Runs Time Series Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_time_series_operations_delete
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_time_series_operations_delete
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_time_series_operations_cancel Write

Tensorboards Experiments Runs Time Series Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_time_series_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_time_series_operations_cancel
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_time_series_operations_wait Write

Tensorboards Experiments Runs Time Series Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_time_series_operations_wait
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_time_series_operations_wait
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_time_series_operations_list Read

Tensorboards Experiments Runs Time Series Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_time_series_operations_list
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_time_series_operations_list
ParameterTypeRequiredDescription
No parameters.
tensorboards_experiments_runs_time_series_operations_get Read

Tensorboards Experiments Runs Time Series Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.tensorboards_experiments_runs_time_series_operations_get
Full name
google-vertex-ai.google_vertex_ai_tensorboards_experiments_runs_time_series_operations_get
ParameterTypeRequiredDescription
No parameters.
notebook_execution_jobs_operations_cancel Write

Notebook Execution Jobs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.notebook_execution_jobs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_notebook_execution_jobs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
notebook_execution_jobs_operations_wait Write

Notebook Execution Jobs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.notebook_execution_jobs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_notebook_execution_jobs_operations_wait
ParameterTypeRequiredDescription
No parameters.
notebook_execution_jobs_operations_list Read

Notebook Execution Jobs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.notebook_execution_jobs_operations_list
Full name
google-vertex-ai.google_vertex_ai_notebook_execution_jobs_operations_list
ParameterTypeRequiredDescription
No parameters.
notebook_execution_jobs_operations_delete Write

Notebook Execution Jobs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.notebook_execution_jobs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_notebook_execution_jobs_operations_delete
ParameterTypeRequiredDescription
No parameters.
notebook_execution_jobs_operations_get Read

Notebook Execution Jobs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.notebook_execution_jobs_operations_get
Full name
google-vertex-ai.google_vertex_ai_notebook_execution_jobs_operations_get
ParameterTypeRequiredDescription
No parameters.
rag_engine_config_operations_get Read

Rag Engine Config Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.rag_engine_config_operations_get
Full name
google-vertex-ai.google_vertex_ai_rag_engine_config_operations_get
ParameterTypeRequiredDescription
No parameters.
rag_engine_config_operations_list Read

Rag Engine Config Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.rag_engine_config_operations_list
Full name
google-vertex-ai.google_vertex_ai_rag_engine_config_operations_list
ParameterTypeRequiredDescription
No parameters.
rag_engine_config_operations_cancel Write

Rag Engine Config Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.rag_engine_config_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_rag_engine_config_operations_cancel
ParameterTypeRequiredDescription
No parameters.
rag_engine_config_operations_wait Write

Rag Engine Config Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.rag_engine_config_operations_wait
Full name
google-vertex-ai.google_vertex_ai_rag_engine_config_operations_wait
ParameterTypeRequiredDescription
No parameters.
rag_engine_config_operations_delete Write

Rag Engine Config Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.rag_engine_config_operations_delete
Full name
google-vertex-ai.google_vertex_ai_rag_engine_config_operations_delete
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_operations_get Read

Feature Online Stores Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_operations_get
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_operations_get
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_operations_delete Write

Feature Online Stores Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_operations_delete
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_operations_delete
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_operations_list_wait Read

Feature Online Stores Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_operations_wait Write

Feature Online Stores Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_operations_wait
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_operations_wait
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_feature_views_operations_wait Write

Feature Online Stores Feature Views Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_feature_views_operations_wait
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_feature_views_operations_wait
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_feature_views_operations_list_wait Read

Feature Online Stores Feature Views Operations List Wait (GET /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_feature_views_operations_list_wait
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_feature_views_operations_list_wait
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_feature_views_operations_delete Write

Feature Online Stores Feature Views Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_feature_views_operations_delete
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_feature_views_operations_delete
ParameterTypeRequiredDescription
No parameters.
feature_online_stores_feature_views_operations_get Read

Feature Online Stores Feature Views Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.feature_online_stores_feature_views_operations_get
Full name
google-vertex-ai.google_vertex_ai_feature_online_stores_feature_views_operations_get
ParameterTypeRequiredDescription
No parameters.
datasets_get Read

Datasets Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_get
Full name
google-vertex-ai.google_vertex_ai_datasets_get
ParameterTypeRequiredDescription
No parameters.
datasets_delete Write

Datasets Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_delete
ParameterTypeRequiredDescription
No parameters.
datasets_create Write

Datasets Create (POST /v1/datasets).

Lua path
app.integrations.google_vertex_ai.datasets_create
Full name
google-vertex-ai.google_vertex_ai_datasets_create
ParameterTypeRequiredDescription
No parameters.
datasets_patch Write

Datasets Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_patch
Full name
google-vertex-ai.google_vertex_ai_datasets_patch
ParameterTypeRequiredDescription
No parameters.
datasets_list Read

Datasets List (GET /v1/datasets).

Lua path
app.integrations.google_vertex_ai.datasets_list
Full name
google-vertex-ai.google_vertex_ai_datasets_list
ParameterTypeRequiredDescription
No parameters.
datasets_operations_get Read

Datasets Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_operations_get
Full name
google-vertex-ai.google_vertex_ai_datasets_operations_get
ParameterTypeRequiredDescription
No parameters.
datasets_operations_delete Write

Datasets Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_operations_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_operations_delete
ParameterTypeRequiredDescription
No parameters.
datasets_operations_list Read

Datasets Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.datasets_operations_list
Full name
google-vertex-ai.google_vertex_ai_datasets_operations_list
ParameterTypeRequiredDescription
No parameters.
datasets_operations_cancel Write

Datasets Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.datasets_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_datasets_operations_cancel
ParameterTypeRequiredDescription
No parameters.
datasets_operations_wait Write

Datasets Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.datasets_operations_wait
Full name
google-vertex-ai.google_vertex_ai_datasets_operations_wait
ParameterTypeRequiredDescription
No parameters.
datasets_saved_queries_operations_delete Write

Datasets Saved Queries Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_saved_queries_operations_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_saved_queries_operations_delete
ParameterTypeRequiredDescription
No parameters.
datasets_saved_queries_operations_list Read

Datasets Saved Queries Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.datasets_saved_queries_operations_list
Full name
google-vertex-ai.google_vertex_ai_datasets_saved_queries_operations_list
ParameterTypeRequiredDescription
No parameters.
datasets_saved_queries_operations_cancel Write

Datasets Saved Queries Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.datasets_saved_queries_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_datasets_saved_queries_operations_cancel
ParameterTypeRequiredDescription
No parameters.
datasets_saved_queries_operations_wait Write

Datasets Saved Queries Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.datasets_saved_queries_operations_wait
Full name
google-vertex-ai.google_vertex_ai_datasets_saved_queries_operations_wait
ParameterTypeRequiredDescription
No parameters.
datasets_saved_queries_operations_get Read

Datasets Saved Queries Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_saved_queries_operations_get
Full name
google-vertex-ai.google_vertex_ai_datasets_saved_queries_operations_get
ParameterTypeRequiredDescription
No parameters.
datasets_dataset_versions_create Write

Datasets Dataset Versions Create (POST /v1/{+parent}/datasetVersions).

Lua path
app.integrations.google_vertex_ai.datasets_dataset_versions_create
Full name
google-vertex-ai.google_vertex_ai_datasets_dataset_versions_create
ParameterTypeRequiredDescription
No parameters.
datasets_dataset_versions_patch Write

Datasets Dataset Versions Patch (PATCH /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_dataset_versions_patch
Full name
google-vertex-ai.google_vertex_ai_datasets_dataset_versions_patch
ParameterTypeRequiredDescription
No parameters.
datasets_dataset_versions_list Read

Datasets Dataset Versions List (GET /v1/{+parent}/datasetVersions).

Lua path
app.integrations.google_vertex_ai.datasets_dataset_versions_list
Full name
google-vertex-ai.google_vertex_ai_datasets_dataset_versions_list
ParameterTypeRequiredDescription
No parameters.
datasets_dataset_versions_delete Write

Datasets Dataset Versions Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_dataset_versions_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_dataset_versions_delete
ParameterTypeRequiredDescription
No parameters.
datasets_dataset_versions_restore Read

Datasets Dataset Versions Restore (GET /v1/{+name}:restore).

Lua path
app.integrations.google_vertex_ai.datasets_dataset_versions_restore
Full name
google-vertex-ai.google_vertex_ai_datasets_dataset_versions_restore
ParameterTypeRequiredDescription
No parameters.
datasets_dataset_versions_get Read

Datasets Dataset Versions Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_dataset_versions_get
Full name
google-vertex-ai.google_vertex_ai_datasets_dataset_versions_get
ParameterTypeRequiredDescription
No parameters.
datasets_annotation_specs_operations_delete Write

Datasets Annotation Specs Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_annotation_specs_operations_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_annotation_specs_operations_delete
ParameterTypeRequiredDescription
No parameters.
datasets_annotation_specs_operations_cancel Write

Datasets Annotation Specs Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.datasets_annotation_specs_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_datasets_annotation_specs_operations_cancel
ParameterTypeRequiredDescription
No parameters.
datasets_annotation_specs_operations_wait Write

Datasets Annotation Specs Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.datasets_annotation_specs_operations_wait
Full name
google-vertex-ai.google_vertex_ai_datasets_annotation_specs_operations_wait
ParameterTypeRequiredDescription
No parameters.
datasets_annotation_specs_operations_list Read

Datasets Annotation Specs Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.datasets_annotation_specs_operations_list
Full name
google-vertex-ai.google_vertex_ai_datasets_annotation_specs_operations_list
ParameterTypeRequiredDescription
No parameters.
datasets_annotation_specs_operations_get Read

Datasets Annotation Specs Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_annotation_specs_operations_get
Full name
google-vertex-ai.google_vertex_ai_datasets_annotation_specs_operations_get
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_annotations_operations_get Read

Datasets Data Items Annotations Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_annotations_operations_get
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_annotations_operations_get
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_annotations_operations_delete Write

Datasets Data Items Annotations Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_annotations_operations_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_annotations_operations_delete
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_annotations_operations_list Read

Datasets Data Items Annotations Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_annotations_operations_list
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_annotations_operations_list
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_annotations_operations_cancel Write

Datasets Data Items Annotations Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_annotations_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_annotations_operations_cancel
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_annotations_operations_wait Write

Datasets Data Items Annotations Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_annotations_operations_wait
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_annotations_operations_wait
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_operations_cancel Write

Datasets Data Items Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_operations_cancel
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_operations_wait Write

Datasets Data Items Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_operations_wait
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_operations_wait
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_operations_list Read

Datasets Data Items Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_operations_list
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_operations_list
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_operations_delete Write

Datasets Data Items Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_operations_delete
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_operations_delete
ParameterTypeRequiredDescription
No parameters.
datasets_data_items_operations_get Read

Datasets Data Items Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.datasets_data_items_operations_get
Full name
google-vertex-ai.google_vertex_ai_datasets_data_items_operations_get
ParameterTypeRequiredDescription
No parameters.
publishers_models_predict Write

Publishers Models Predict (POST /v1/{+endpoint}:predict).

Lua path
app.integrations.google_vertex_ai.publishers_models_predict
Full name
google-vertex-ai.google_vertex_ai_publishers_models_predict
ParameterTypeRequiredDescription
No parameters.
publishers_models_generate_content Write

Publishers Models Generate Content (POST /v1/{+model}:generateContent).

Lua path
app.integrations.google_vertex_ai.publishers_models_generate_content
Full name
google-vertex-ai.google_vertex_ai_publishers_models_generate_content
ParameterTypeRequiredDescription
No parameters.
publishers_models_compute_tokens Write

Publishers Models Compute Tokens (POST /v1/{+endpoint}:computeTokens).

Lua path
app.integrations.google_vertex_ai.publishers_models_compute_tokens
Full name
google-vertex-ai.google_vertex_ai_publishers_models_compute_tokens
ParameterTypeRequiredDescription
No parameters.
publishers_models_count_tokens Write

Publishers Models Count Tokens (POST /v1/{+endpoint}:countTokens).

Lua path
app.integrations.google_vertex_ai.publishers_models_count_tokens
Full name
google-vertex-ai.google_vertex_ai_publishers_models_count_tokens
ParameterTypeRequiredDescription
No parameters.
publishers_models_predict_long_running Write

Publishers Models Predict Long Running (POST /v1/{+endpoint}:predictLongRunning).

Lua path
app.integrations.google_vertex_ai.publishers_models_predict_long_running
Full name
google-vertex-ai.google_vertex_ai_publishers_models_predict_long_running
ParameterTypeRequiredDescription
No parameters.
publishers_models_get Read

Publishers Models Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.publishers_models_get
Full name
google-vertex-ai.google_vertex_ai_publishers_models_get
ParameterTypeRequiredDescription
No parameters.
publishers_models_fetch_predict_operation Write

Publishers Models Fetch Predict Operation (POST /v1/{+endpoint}:fetchPredictOperation).

Lua path
app.integrations.google_vertex_ai.publishers_models_fetch_predict_operation
Full name
google-vertex-ai.google_vertex_ai_publishers_models_fetch_predict_operation
ParameterTypeRequiredDescription
No parameters.
publishers_models_stream_generate_content Write

Publishers Models Stream Generate Content (POST /v1/{+model}:streamGenerateContent).

Lua path
app.integrations.google_vertex_ai.publishers_models_stream_generate_content
Full name
google-vertex-ai.google_vertex_ai_publishers_models_stream_generate_content
ParameterTypeRequiredDescription
No parameters.
featurestores_operations_get Read

Featurestores Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.featurestores_operations_get
Full name
google-vertex-ai.google_vertex_ai_featurestores_operations_get
ParameterTypeRequiredDescription
No parameters.
featurestores_operations_delete Write

Featurestores Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.featurestores_operations_delete
Full name
google-vertex-ai.google_vertex_ai_featurestores_operations_delete
ParameterTypeRequiredDescription
No parameters.
featurestores_operations_list Read

Featurestores Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.featurestores_operations_list
Full name
google-vertex-ai.google_vertex_ai_featurestores_operations_list
ParameterTypeRequiredDescription
No parameters.
featurestores_operations_cancel Write

Featurestores Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.featurestores_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_featurestores_operations_cancel
ParameterTypeRequiredDescription
No parameters.
featurestores_operations_wait Write

Featurestores Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.featurestores_operations_wait
Full name
google-vertex-ai.google_vertex_ai_featurestores_operations_wait
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_operations_delete Write

Featurestores Entity Types Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_operations_delete
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_operations_delete
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_operations_cancel Write

Featurestores Entity Types Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_operations_cancel
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_operations_wait Write

Featurestores Entity Types Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_operations_wait
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_operations_wait
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_operations_list Read

Featurestores Entity Types Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_operations_list
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_operations_list
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_operations_get Read

Featurestores Entity Types Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_operations_get
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_operations_get
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_features_operations_delete Write

Featurestores Entity Types Features Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_features_operations_delete
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_features_operations_delete
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_features_operations_list Read

Featurestores Entity Types Features Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_features_operations_list
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_features_operations_list
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_features_operations_cancel Write

Featurestores Entity Types Features Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_features_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_features_operations_cancel
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_features_operations_wait Write

Featurestores Entity Types Features Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_features_operations_wait
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_features_operations_wait
ParameterTypeRequiredDescription
No parameters.
featurestores_entity_types_features_operations_get Read

Featurestores Entity Types Features Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.featurestores_entity_types_features_operations_get
Full name
google-vertex-ai.google_vertex_ai_featurestores_entity_types_features_operations_get
ParameterTypeRequiredDescription
No parameters.
metadata_stores_operations_cancel Write

Metadata Stores Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.metadata_stores_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_operations_cancel
ParameterTypeRequiredDescription
No parameters.
metadata_stores_operations_wait Write

Metadata Stores Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.metadata_stores_operations_wait
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_operations_wait
ParameterTypeRequiredDescription
No parameters.
metadata_stores_operations_list Read

Metadata Stores Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.metadata_stores_operations_list
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_operations_list
ParameterTypeRequiredDescription
No parameters.
metadata_stores_operations_delete Write

Metadata Stores Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_operations_delete
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_operations_delete
ParameterTypeRequiredDescription
No parameters.
metadata_stores_operations_get Read

Metadata Stores Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_operations_get
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_operations_get
ParameterTypeRequiredDescription
No parameters.
metadata_stores_artifacts_operations_delete Write

Metadata Stores Artifacts Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_artifacts_operations_delete
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_artifacts_operations_delete
ParameterTypeRequiredDescription
No parameters.
metadata_stores_artifacts_operations_cancel Write

Metadata Stores Artifacts Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.metadata_stores_artifacts_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_artifacts_operations_cancel
ParameterTypeRequiredDescription
No parameters.
metadata_stores_artifacts_operations_wait Write

Metadata Stores Artifacts Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.metadata_stores_artifacts_operations_wait
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_artifacts_operations_wait
ParameterTypeRequiredDescription
No parameters.
metadata_stores_artifacts_operations_list Read

Metadata Stores Artifacts Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.metadata_stores_artifacts_operations_list
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_artifacts_operations_list
ParameterTypeRequiredDescription
No parameters.
metadata_stores_artifacts_operations_get Read

Metadata Stores Artifacts Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_artifacts_operations_get
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_artifacts_operations_get
ParameterTypeRequiredDescription
No parameters.
metadata_stores_contexts_operations_get Read

Metadata Stores Contexts Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_contexts_operations_get
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_contexts_operations_get
ParameterTypeRequiredDescription
No parameters.
metadata_stores_contexts_operations_delete Write

Metadata Stores Contexts Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_contexts_operations_delete
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_contexts_operations_delete
ParameterTypeRequiredDescription
No parameters.
metadata_stores_contexts_operations_cancel Write

Metadata Stores Contexts Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.metadata_stores_contexts_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_contexts_operations_cancel
ParameterTypeRequiredDescription
No parameters.
metadata_stores_contexts_operations_wait Write

Metadata Stores Contexts Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.metadata_stores_contexts_operations_wait
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_contexts_operations_wait
ParameterTypeRequiredDescription
No parameters.
metadata_stores_contexts_operations_list Read

Metadata Stores Contexts Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.metadata_stores_contexts_operations_list
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_contexts_operations_list
ParameterTypeRequiredDescription
No parameters.
metadata_stores_executions_operations_get Read

Metadata Stores Executions Operations Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_executions_operations_get
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_executions_operations_get
ParameterTypeRequiredDescription
No parameters.
metadata_stores_executions_operations_delete Write

Metadata Stores Executions Operations Delete (DELETE /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.metadata_stores_executions_operations_delete
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_executions_operations_delete
ParameterTypeRequiredDescription
No parameters.
metadata_stores_executions_operations_list Read

Metadata Stores Executions Operations List (GET /v1/{+name}/operations).

Lua path
app.integrations.google_vertex_ai.metadata_stores_executions_operations_list
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_executions_operations_list
ParameterTypeRequiredDescription
No parameters.
metadata_stores_executions_operations_cancel Write

Metadata Stores Executions Operations Cancel (POST /v1/{+name}:cancel).

Lua path
app.integrations.google_vertex_ai.metadata_stores_executions_operations_cancel
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_executions_operations_cancel
ParameterTypeRequiredDescription
No parameters.
metadata_stores_executions_operations_wait Write

Metadata Stores Executions Operations Wait (POST /v1/{+name}:wait).

Lua path
app.integrations.google_vertex_ai.metadata_stores_executions_operations_wait
Full name
google-vertex-ai.google_vertex_ai_metadata_stores_executions_operations_wait
ParameterTypeRequiredDescription
No parameters.
batch_prediction_jobs_get Read

Batch Prediction Jobs Get (GET /v1/{+name}).

Lua path
app.integrations.google_vertex_ai.batch_prediction_jobs_get
Full name
google-vertex-ai.google_vertex_ai_batch_prediction_jobs_get
ParameterTypeRequiredDescription
No parameters.
batch_prediction_jobs_create Write

Batch Prediction Jobs Create (POST /v1/batchPredictionJobs).

Lua path
app.integrations.google_vertex_ai.batch_prediction_jobs_create
Full name
google-vertex-ai.google_vertex_ai_batch_prediction_jobs_create
ParameterTypeRequiredDescription
No parameters.
batch_prediction_jobs_list Read

Batch Prediction Jobs List (GET /v1/batchPredictionJobs).

Lua path
app.integrations.google_vertex_ai.batch_prediction_jobs_list
Full name
google-vertex-ai.google_vertex_ai_batch_prediction_jobs_list
ParameterTypeRequiredDescription
No parameters.