PgBeam Docs
Projects

updateCacheRule

Update cache rule

Enable or disable caching for a specific query shape, with optional TTL and SWR overrides. Requires the query to exist in the cache rules.

Usage

const result = await api.projects.updateCacheRule({
    body: {
      cache_enabled: true,
    },
  });

Parameters

ParameterTypeRequiredDescription
body.cache_enabledbooleanYesWhether to enable caching for this query shape.
body.cache_ttl_secondsnumberNoTTL override in seconds. Null to use project default.
body.cache_swr_secondsnumberNoSWR override in seconds. Null to use project default.

Response

Promise<UpdateCacheRuleResponse> — cache rule updated.

Example

import { PgBeamClient } from "pgbeam";

const client = new PgBeamClient({
  token: "pbk_...",
  baseUrl: "https://api.pgbeam.com",
});

const result = await client.api.projects.updateCacheRule({
  body: {
      cache_enabled: true,
    },
});

Errors

StatusDescription
400Invalid request parameters.
401Missing or invalid authentication.
403Operation not allowed by current plan limits.
404Resource not found.
429Rate limited. Try again later.

On this page