564 lines
18 KiB
PHP
564 lines
18 KiB
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
* Copyright 2014 Google Inc.
|
||
|
|
*
|
||
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
||
|
|
* the License at
|
||
|
|
*
|
||
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
*
|
||
|
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||
|
|
* License for the specific language governing permissions and limitations under
|
||
|
|
* the License.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Google\Service;
|
||
|
|
|
||
|
|
use Google\Client;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Service definition for AgentRegistry (v1alpha).
|
||
|
|
*
|
||
|
|
* <p>
|
||
|
|
* Agent Registry is a centralized, unified catalog that lets you store,
|
||
|
|
* discover, and govern Model Context Protocol (MCP) servers, tools, and AI
|
||
|
|
* agents within Google Cloud.</p>
|
||
|
|
*
|
||
|
|
* <p>
|
||
|
|
* For more information about this service, see the API
|
||
|
|
* <a href="https://docs.cloud.google.com/agent-registry/overview" target="_blank">Documentation</a>
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author Google, Inc.
|
||
|
|
*/
|
||
|
|
class AgentRegistry extends \Google\Service
|
||
|
|
{
|
||
|
|
/** See your Google Cloud Agent Registry data and the email address of your Google Account. */
|
||
|
|
const AGENTREGISTRY_READ_ONLY =
|
||
|
|
"https://www.googleapis.com/auth/agentregistry.read-only";
|
||
|
|
/** See, edit, configure, and delete your Google Cloud Agent Registry data and see the email address for your Google Account. */
|
||
|
|
const AGENTREGISTRY_READ_WRITE =
|
||
|
|
"https://www.googleapis.com/auth/agentregistry.read-write";
|
||
|
|
/** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */
|
||
|
|
const CLOUD_PLATFORM =
|
||
|
|
"https://www.googleapis.com/auth/cloud-platform";
|
||
|
|
/** View your data across Google Cloud services and see the email address of your Google Account. */
|
||
|
|
const CLOUD_PLATFORM_READ_ONLY =
|
||
|
|
"https://www.googleapis.com/auth/cloud-platform.read-only";
|
||
|
|
|
||
|
|
public $projects_locations;
|
||
|
|
public $projects_locations_agents;
|
||
|
|
public $projects_locations_bindings;
|
||
|
|
public $projects_locations_endpoints;
|
||
|
|
public $projects_locations_mcpServers;
|
||
|
|
public $projects_locations_operations;
|
||
|
|
public $projects_locations_services;
|
||
|
|
public $rootUrlTemplate;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Constructs the internal representation of the AgentRegistry service.
|
||
|
|
*
|
||
|
|
* @param Client|array $clientOrConfig The client used to deliver requests, or a
|
||
|
|
* config array to pass to a new Client instance.
|
||
|
|
* @param string $rootUrl The root URL used for requests to the service.
|
||
|
|
*/
|
||
|
|
public function __construct($clientOrConfig = [], $rootUrl = null)
|
||
|
|
{
|
||
|
|
parent::__construct($clientOrConfig);
|
||
|
|
$this->rootUrl = $rootUrl ?: 'https://agentregistry.googleapis.com/';
|
||
|
|
$this->rootUrlTemplate = $rootUrl ?: 'https://agentregistry.UNIVERSE_DOMAIN/';
|
||
|
|
$this->servicePath = '';
|
||
|
|
$this->batchPath = 'batch';
|
||
|
|
$this->version = 'v1alpha';
|
||
|
|
$this->serviceName = 'agentregistry';
|
||
|
|
|
||
|
|
$this->projects_locations = new AgentRegistry\Resource\ProjectsLocations(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'locations',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+name}/locations',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'extraLocationTypes' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
'repeated' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
$this->projects_locations_agents = new AgentRegistry\Resource\ProjectsLocationsAgents(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'agents',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/agents',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'orderBy' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'search' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/agents:search',
|
||
|
|
'httpMethod' => 'POST',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
$this->projects_locations_bindings = new AgentRegistry\Resource\ProjectsLocationsBindings(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'bindings',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'create' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/bindings',
|
||
|
|
'httpMethod' => 'POST',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'bindingId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'requestId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'delete' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'DELETE',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'requestId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'fetchAvailable' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/bindings:fetchAvailable',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'sourceIdentifier' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'targetIdentifier' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/bindings',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'orderBy' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'patch' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'PATCH',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'requestId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'updateMask' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
$this->projects_locations_endpoints = new AgentRegistry\Resource\ProjectsLocationsEndpoints(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'endpoints',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/endpoints',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
$this->projects_locations_mcpServers = new AgentRegistry\Resource\ProjectsLocationsMcpServers(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'mcpServers',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/mcpServers',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'orderBy' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'search' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/mcpServers:search',
|
||
|
|
'httpMethod' => 'POST',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
$this->projects_locations_operations = new AgentRegistry\Resource\ProjectsLocationsOperations(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'operations',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'cancel' => [
|
||
|
|
'path' => 'v1alpha/{+name}:cancel',
|
||
|
|
'httpMethod' => 'POST',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'delete' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'DELETE',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+name}/operations',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'returnPartialSuccess' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'boolean',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
$this->projects_locations_services = new AgentRegistry\Resource\ProjectsLocationsServices(
|
||
|
|
$this,
|
||
|
|
$this->serviceName,
|
||
|
|
'services',
|
||
|
|
[
|
||
|
|
'methods' => [
|
||
|
|
'create' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/services',
|
||
|
|
'httpMethod' => 'POST',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'requestId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'serviceId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'delete' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'DELETE',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'requestId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'get' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'list' => [
|
||
|
|
'path' => 'v1alpha/{+parent}/services',
|
||
|
|
'httpMethod' => 'GET',
|
||
|
|
'parameters' => [
|
||
|
|
'parent' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'filter' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'pageSize' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'integer',
|
||
|
|
],
|
||
|
|
'pageToken' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],'patch' => [
|
||
|
|
'path' => 'v1alpha/{+name}',
|
||
|
|
'httpMethod' => 'PATCH',
|
||
|
|
'parameters' => [
|
||
|
|
'name' => [
|
||
|
|
'location' => 'path',
|
||
|
|
'type' => 'string',
|
||
|
|
'required' => true,
|
||
|
|
],
|
||
|
|
'requestId' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
'updateMask' => [
|
||
|
|
'location' => 'query',
|
||
|
|
'type' => 'string',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
]
|
||
|
|
]
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
||
|
|
class_alias(AgentRegistry::class, 'Google_Service_AgentRegistry');
|