Cloudflare\User\LoadBalancers\Notifiers::update PHP Метод

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

Modify a notifier Modify a configured notifier
public update ( string $identifier, string | null $address = null, string | null $type = null )
$identifier string
$address string | null Notifier address
$type string | null Notifier type
    public function update($identifier, $address = null, $type = null)
    {
        $data = ['address' => $address, 'type' => $type];
        return $this->patch('/user/load_balancers/notifiers/' . $identifier, $data);
    }