REST Resource: folders.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 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-26 (世界標準時間)。
[[["容易理解","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"]],["上次更新時間:2025-07-26 (世界標準時間)。"],[[["SettingValue represents an instance of a setting, containing the value and metadata like name, etag, and readOnly status."],["Each SettingValue is associated with a parent setting, inheriting properties like data type and readOnly restrictions."],["The JSON representation of a SettingValue includes fields like name, value, etag, readOnly, and updateTime."],["You can manage SettingValues programmatically through methods like create, allowing for dynamic configuration adjustments."],["SettingValues offer a structured way to store and manage configuration data, ensuring consistency and control within a project, folder, or organization."]]],["SettingValue represents a setting's instantiation, parented by its setting. It includes a `name`, `value`, `etag` for concurrency control, `readOnly` flag, and `updateTime`. The `value` object aligns with the parent setting's data type. `readOnly` values can be deleted with a specific flag, but not modified. The `name` indicates the resource's location, e.g., project or organization. Methods exist to `create` a setting value.\n"]]