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 UTC「Zulu」形式のタイムスタンプ。精度はナノ秒(例: "2014-10-02T15:01:23.045123456Z" )。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-05-25 UTC。
[[["わかりやすい","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 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"]]