Method: sites.versions.clone

使用指定版本的內容,在指定的目標網站上建立新版本。

HTTP 要求

POST https://firebasehosting.googleapis.com/v1beta1/{parent=sites/*}/versions:clone

這個網址使用 gRPC 轉碼語法。

路徑參數

參數
parent

string

執行個體類型,所複製版本的目標網站,格式為:

sites/SITE_ID

要求主體

要求主體包含下列結構的資料:

JSON 表示法
{
  "sourceVersion": string,
  "finalize": boolean,

  // Union field filter can be only one of the following:
  "include": {
    object (PathFilter)
  },
  "exclude": {
    object (PathFilter)
  }
  // End of list of possible types for union field filter.
}
欄位
sourceVersion

string

執行個體類型,要複製版本的專屬 ID,格式為:

sites/SITE_ID/versions/VERSION_ID

finalize

boolean

如果為 true,呼叫 versions.clone 後會立即完成複製作業。

如為 false,複製版本的狀態為 CREATED。使用 versions.patch 將版本狀態設為 FINALIZED

聯集欄位 filter

filter 只能採用下列其中一種設定:

include

object (PathFilter)

如有提供,只有符合這份清單中一或多個 RegEx 值的路徑,才會納入新版本。

exclude

object (PathFilter)

如有提供,只有不符合這份清單任何 RegEx 值的路徑,才會納入新版本。

回應主體

如果成功,回應主體會包含 Operation 的執行個體。

授權範圍

需要下列其中一種 OAuth 範圍:

  • https://www.googleapis.com/auth/firebase.hosting
  • https://www.googleapis.com/auth/firebase
  • https://www.googleapis.com/auth/cloud-platform

詳情請參閱驗證總覽一文。

路徑篩選器

篩選器路徑的表示法。

JSON 表示法
{
  "regexes": [
    string
  ]
}
欄位
regexes[]

string

要篩選的 RegEx 值陣列。