Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/Apigee/GoogleCloudApigeeV1ApiProxyRevision.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ class GoogleCloudApigeeV1ApiProxyRevision extends \Google\Collection
* @var string
*/
public $lastModifiedAt;
/**
* Output only. Whether this proxy revision is detected as an MCP (Model
* Context Protocol) proxy. A proxy revision is identified as MCP if it has a
* proxy endpoint with the `/mcp` base path that routes to the MCP target URL.
*
* @var bool
*/
public $mcp;
/**
* Name of the API proxy.
*
Expand Down Expand Up @@ -368,6 +376,24 @@ public function getLastModifiedAt()
{
return $this->lastModifiedAt;
}
/**
* Output only. Whether this proxy revision is detected as an MCP (Model
* Context Protocol) proxy. A proxy revision is identified as MCP if it has a
* proxy endpoint with the `/mcp` base path that routes to the MCP target URL.
*
* @param bool $mcp
*/
public function setMcp($mcp)
{
$this->mcp = $mcp;
}
/**
* @return bool
*/
public function getMcp()
{
return $this->mcp;
}
/**
* Name of the API proxy.
*
Expand Down
Loading