REST Resource: projects.settings.value
Stay organized with collections
Save and categorize content based on your preferences.
Resource: SettingValue
The instantiation of a setting. Every setting value is parented by its corresponding setting.
JSON representation |
{
"name": string,
"value": {
object (Value )
},
"etag": string,
"readOnly": boolean,
"updateTime": string
} |
Fields |
name |
string
The resource name of the setting value. Must be in one of the following forms:
projects/{project_number}/settings/{setting_name}/value
folders/{folder_id}/settings/{setting_name}/value
organizations/{organization_id}/settings/{setting_name}/value
For example, "/projects/123/settings/gcp-enableMyFeature/value"
|
value |
object (Value )
The value of the setting. The data type of Value must always be consistent with the data type defined by the parent setting.
|
etag |
string
A fingerprint used for optimistic concurrency. See settings.updateValue for more details.
|
readOnly |
boolean
Output only. A flag indicating that this setting value cannot be modified; however, it may be deleted using settings.deleteValue if DeleteSettingValueRequest.ignore_read_only is set to true. Using this flag is considered an acknowledgement that the setting value cannot be recreated. This flag is inherited from its parent setting and is for convenience purposes. See Setting.read_only for more details.
|
updateTime |
string (Timestamp format)
Output only. The timestamp indicating when the setting value was last updated. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z" .
|
Methods |
|
Creates a setting value. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-05-25 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-05-25 UTC."],[[["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"]]