Cloudflare\Zone\Settings::change_response_buffering PHP Метод

change_response_buffering() публичный Метод

By default, the proxied server streams directly and is not buffered by CloudFlare. This is limited to Enterprise Zones.
public change_response_buffering ( string $zone_identifier, string | null $value = null )
$zone_identifier string API item identifier tag
$value string | null Value of the zone setting (default: off)
    public function change_response_buffering($zone_identifier, $value = null)
    {
        $data = ['value' => $value];
        return $this->patch('zones/' . $zone_identifier . '/settings/response_buffering', $data);
    }