@@ -1128,16 +1128,17 @@ class Instance
11281128 # @return [String]
11291129 attr_accessor :create_time
11301130
1131- # Database flags. Set at instance level. * They are copied from primary instance
1132- # on read instance creation. * Read instances can set new or override existing
1133- # flags that are relevant for reads, e.g. for enabling columnar cache on a read
1134- # instance. Flags set on read instance may or may not be present on primary.
1135- # This is a list of "key": "value" pairs. "key": The name of the flag. These
1136- # flags are passed at instance setup time, so include both server options and
1137- # system variables for Postgres. Flags are specified with underscores, not
1138- # hyphens. "value": The value of the flag. Booleans are set to **on** for true
1139- # and **off** for false. This field must be omitted if the flag doesn't take a
1140- # value.
1131+ # Database flags. Set at the instance level. They are copied from the primary
1132+ # instance on secondary instance creation. Flags that have restrictions default
1133+ # to the value at primary instance on read instances during creation. Read
1134+ # instances can set new flags or override existing flags that are relevant for
1135+ # reads, for example, for enabling columnar cache on a read instance. Flags set
1136+ # on read instance might or might not be present on the primary instance. This
1137+ # is a list of "key": "value" pairs. "key": The name of the flag. These flags
1138+ # are passed at instance setup time, so include both server options and system
1139+ # variables for Postgres. Flags are specified with underscores, not hyphens. "
1140+ # value": The value of the flag. Booleans are set to **on** for true and **off**
1141+ # for false. This field must be omitted if the flag doesn't take a value.
11411142 # Corresponds to the JSON property `databaseFlags`
11421143 # @return [Hash<String,String>]
11431144 attr_accessor :database_flags
0 commit comments