0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GASのトリガーの起動失敗の通知をスクリプトで記述できないのか?

Posted at

GASにおいて、よくある設置時刻を何時何分単位で細かく設定するスクリプト(*1)を援用し、
ScriptApp.newTrigger()による新しくトリガー設置スクリプトを記述していて、
「現在のプロジェクトのトリガー」一覧で正しく設置されていることは確認できたのだが、
そのときに「起動失敗の通知」の設定は、設置後のトリガー一覧からでしか設定できない...。

そこで、最初にスクリプトを記述する時点で”起動失敗の通知”の設定(immediate, every hour,...)ができないものだろうか?

*1は、こんな感じ。
function setTrigger(){
var setTime = new Date();
setTime.setHours(08);
setTime.setMinutes(00);
   ScriptApp.newTrigger('main').timeBased().at(setTime).create();
}

これに例えば、
ScriptApp.newTrigger('main').timeBased().at(setTime).create().alert(immediate);

とか、.alert(immediate)のようなコマンドがあるのか無いのか?お教えください。
どうぞよろしくお願い致します。

0
0
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?