You are here

public function ManagementApiEdgeEntityControllerProxy::delete in Apigee Edge 8

Removes an entity from Apigee Edge.

Parameters

string $id: One of an entity's unique ids. (Some entities has more than one unique id at a moment, ex.: developer's email address and id (UUID).)

Overrides EdgeEntityControllerInterface::delete

File

src/Entity/Controller/ManagementApiEdgeEntityControllerProxy.php, line 82

Class

ManagementApiEdgeEntityControllerProxy
Management API specific default entity controller implementation.

Namespace

Drupal\apigee_edge\Entity\Controller

Code

public function delete(string $id) : void {

  // Ignore returned entity object by Apigee Edge.
  $this->controller
    ->delete($id);
}