函式
函式 | 說明 |
---|---|
onUpdate(處理常式) | 註冊會在 Firebase 遠端設定範本更新事件時觸發的函式。 |
類別
類別 | 說明 |
---|---|
UpdateBuilder | 用於建立遠端設定 Cloud Functions 的建構工具。 |
介面
介面 | 說明 |
---|---|
RemoteConfigUser | 這個介面呈現了執行更新的遠端設定帳戶中繼資料。與 [RemoteConfigUser ](/docs/reference/remote-config/rest/v1/Version#remoteconfiguser) 相同的欄位。 |
TemplateVersion | 這個介面代表在更新專案時發出的遠端設定範本版本中繼資料物件。 |
RemoteConfig.onUpdate()
註冊會在 Firebase 遠端設定範本更新事件時觸發的函式。
簽名:
export declare function onUpdate(handler: (version: TemplateVersion, context: EventContext) => PromiseLike<any> | any): CloudFunction<TemplateVersion>;
參數
參數 | 類型 | 說明 |
---|---|---|
handler | (版本:TemplateVersion,結構定義:EventContext) =>承諾<任何>|任何 | 這個函式會將更新後的遠端設定範本版本中繼資料做為引數。 |
傳回:
CloudFunction<TemplateVersion>
可匯出及部署的函式。