You are here

public function CachedManagementApiEdgeEntityControllerProxy::update in Apigee Edge 8

Updates an entity in Apigee Edge.

Applies incoming values from Apigee Edge in $entity.

Parameters

\Apigee\Edge\Entity\EntityInterface $entity: The update entity.

Overrides EdgeEntityControllerInterface::update

File

src/Entity/Controller/CachedManagementApiEdgeEntityControllerProxy.php, line 76

Class

CachedManagementApiEdgeEntityControllerProxy
Management API specific cached entity controller implementation.

Namespace

Drupal\apigee_edge\Entity\Controller

Code

public function update(EntityInterface $entity) : void {
  $this->proxiedController
    ->update($entity);
}