chore: update docs/dyn (#1106)
diff --git a/docs/dyn/sqladmin_v1beta4.flags.html b/docs/dyn/sqladmin_v1beta4.flags.html
index 901a197..2b32da5 100644
--- a/docs/dyn/sqladmin_v1beta4.flags.html
+++ b/docs/dyn/sqladmin_v1beta4.flags.html
@@ -101,27 +101,27 @@
An object of the form:
{ # Flags list response.
- "kind": "A String", # This is always *sql#flagsList*.
"items": [ # List of flags.
{ # A flag resource.
- "minValue": "A String", # For *INTEGER* flags, the minimum allowed value.
"type": "A String", # The type of the flag. Flags are typed to being *BOOLEAN*, *STRING*, *INTEGER* or *NONE*. *NONE* is used for flags which do not take a value, such as *skip_grant_tables*.
- "allowedIntValues": [ # Use this field if only certain integers are accepted. Can be combined with min_value and max_value to add additional values.
+ "appliesTo": [ # The database version this flag applies to. Can be *MYSQL_8_0*, *MYSQL_5_6*, or *MYSQL_5_7*.
"A String",
],
"allowedStringValues": [ # For *STRING* flags, a list of strings that the value can be set to.
"A String",
],
- "maxValue": "A String", # For *INTEGER* flags, the maximum allowed value.
- "requiresRestart": True or False, # Indicates whether changing this flag will trigger a database restart. Only applicable to Second Generation instances.
- "inBeta": True or False, # Whether or not the flag is considered in beta.
+ "kind": "A String", # This is always *sql#flag*.
"name": "A String", # This is the name of the flag. Flag names always use underscores, not hyphens, for example: *max_allowed_packet*
- "appliesTo": [ # The database version this flag applies to. Can be *MYSQL_8_0*, *MYSQL_5_6*, or *MYSQL_5_7*.
+ "inBeta": True or False, # Whether or not the flag is considered in beta.
+ "requiresRestart": True or False, # Indicates whether changing this flag will trigger a database restart. Only applicable to Second Generation instances.
+ "maxValue": "A String", # For *INTEGER* flags, the maximum allowed value.
+ "allowedIntValues": [ # Use this field if only certain integers are accepted. Can be combined with min_value and max_value to add additional values.
"A String",
],
- "kind": "A String", # This is always *sql#flag*.
+ "minValue": "A String", # For *INTEGER* flags, the minimum allowed value.
},
],
+ "kind": "A String", # This is always *sql#flagsList*.
}</pre>
</div>