Class SupportedDatabaseFlag
SupportedDatabaseFlag gives general information about a database flag, like type and allowed values. This is a static value that is defined on the server side, and it cannot be modified by callers. To set the Database flags on a particular Instance, a caller should modify the Instance.database_flags field.
Implements
Inherited Members
Namespace: Google.Apis.CloudAlloyDBAdmin.v1.Data
Assembly: Google.Apis.CloudAlloyDBAdmin.v1.dll
Syntax
public class SupportedDatabaseFlag : IDirectResponseSchema
Properties
AcceptsMultipleValues
Whether the database flag accepts multiple values. If true, a comma-separated list of stringified values may be specified.
Declaration
[JsonProperty("acceptsMultipleValues")]
public virtual bool? AcceptsMultipleValues { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FlagName
The name of the database flag, e.g. "max_allowed_packets". The is a possibly key for the Instance.database_flags map field.
Declaration
[JsonProperty("flagName")]
public virtual string FlagName { get; set; }
Property Value
Type | Description |
---|---|
string |
IntegerRestrictions
Restriction on INTEGER type value.
Declaration
[JsonProperty("integerRestrictions")]
public virtual IntegerRestrictions IntegerRestrictions { get; set; }
Property Value
Type | Description |
---|---|
IntegerRestrictions |
Name
The name of the flag resource, following Google Cloud conventions, e.g.: * projects/{project}/locations/{location}/flags/{flag} This field currently has no semantic meaning.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
RequiresDbRestart
Whether setting or updating this flag on an Instance requires a database restart. If a flag that requires database restart is set, the backend will automatically restart the database (making sure to satisfy any availability SLO's).
Declaration
[JsonProperty("requiresDbRestart")]
public virtual bool? RequiresDbRestart { get; set; }
Property Value
Type | Description |
---|---|
bool? |
StringRestrictions
Restriction on STRING type value.
Declaration
[JsonProperty("stringRestrictions")]
public virtual StringRestrictions StringRestrictions { get; set; }
Property Value
Type | Description |
---|---|
StringRestrictions |
SupportedDbVersions
Major database engine versions for which this flag is supported.
Declaration
[JsonProperty("supportedDbVersions")]
public virtual IList<string> SupportedDbVersions { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ValueType
Declaration
[JsonProperty("valueType")]
public virtual string ValueType { get; set; }
Property Value
Type | Description |
---|---|
string |