REST Resource: projects.settings.value
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
資源:SettingValue
JSON 表示法 |
{
"name": string,
"value": {
object (Value )
},
"etag": string,
"readOnly": boolean,
"updateTime": string
} |
欄位 |
name |
string
設定值的資源名稱。必須採用下列其中一種格式:
projects/{project_number}/settings/{setting_name}/value
folders/{folder_id}/settings/{setting_name}/value
organizations/{organization_id}/settings/{setting_name}/value
例如:「/projects/123/settings/gcp-enableMyFeature/value」
|
value |
object (Value )
設定的值。Value 的資料類型一律須與父項設定定義的資料類型一致。
|
etag |
string
用於維持並行並行的指紋。詳情請參閱 settings.updateValue 。
|
readOnly |
boolean
僅供輸出。此標記表示此設定值無法修改;但如果 DeleteSettingValueRequest.ignore_read_only 設定為 True,則可使用 settings.deleteValue 刪除設定值。使用此旗標,即代表該設定無法重新建立設定值。為方便起見,這個設定是沿用上層設定。詳情請參閱 Setting.read_only 。
|
updateTime |
string (Timestamp format)
僅供輸出。表示設定值上次更新時間的時間戳記。 RFC3339 世界標準時間「Zulu」格式的時間戳記,精確度達奈秒單位,範例:"2014-10-02T15:01:23.045123456Z" 。
|
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2023-05-25 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2023-05-25 (世界標準時間)。"],[[["SettingValue represents an instance of a setting, containing the setting's value and metadata."],["Each SettingValue is associated with a parent setting and inherits properties like data type and read-only status."],["The JSON representation of a SettingValue includes fields like name, value, etag, readOnly, and updateTime."],["SettingValues can be managed using methods like create, allowing for the instantiation and modification of setting values within a project, folder, or organization."]]],["SettingValue represents a setting's instantiation, linked to a parent setting. Its JSON representation includes `name`, `value`, `etag`, `readOnly`, and `updateTime`. Key actions include creating a setting value. `name` specifies the resource's path, `value` holds the setting's data, `etag` is used for concurrency control, `readOnly` indicates if it is immutable, and `updateTime` displays the last update timestamp. A `create` method is available to instantiate the setting value.\n"]]