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")。

Methods

create

設定値を作成します。