Class Message
Represents a notice or warning message from the database.
Implements
Inherited Members
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class Message : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MessageValue
The full message string. For PostgreSQL, this is a formatted string that may include severity, code, and the notice/warning message. For MySQL, this contains the warning message.
Declaration
[JsonProperty("message")]
public virtual string MessageValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Severity
The severity of the message (e.g., "NOTICE" for PostgreSQL, "WARNING" for MySQL).
Declaration
[JsonProperty("severity")]
public virtual string Severity { get; set; }
Property Value
| Type | Description |
|---|---|
| string |