You are here

public function AkamaiClientBase::purgeTags in Akamai 8.3

Purges a list of tag objects.

Parameters

array $tags: List of tags to purge.

Return value

\GuzzleHttp\Psr7\Response Response to purge request.

File

src/AkamaiClientBase.php, line 282

Class

AkamaiClientBase
Connects to the Akamai EdgeGrid.

Namespace

Drupal\akamai

Code

public function purgeTags(array $tags) {
  return $this
    ->purgeRequest($tags);
}