Class InefficientQueryInfo
Metadata about inefficient query signal info for a database resource.
Implements
Inherited Members
Namespace: Google.Apis.DatabaseCenter.v1beta.Data
Assembly: Google.Apis.DatabaseCenter.v1beta.dll
Syntax
public class InefficientQueryInfo : IDirectResponseSchema
Properties
Database
Name of the database where index is required. For example, "db1", which is the name of the database present in the instance.
Declaration
[JsonProperty("database")]
public virtual string Database { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ImpactedQueriesCount
Count of queries to be impacted if index is applied
Declaration
[JsonProperty("impactedQueriesCount")]
public virtual long? ImpactedQueriesCount { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |
SqlIndexStatement
SQL statement of the index. Based on the ddl type, this will be either CREATE INDEX or DROP INDEX.
Declaration
[JsonProperty("sqlIndexStatement")]
public virtual string SqlIndexStatement { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
StorageCostBytes
Cost of additional disk usage in bytes
Declaration
[JsonProperty("storageCostBytes")]
public virtual long? StorageCostBytes { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |
Table
Name of the table where index is required
Declaration
[JsonProperty("table")]
public virtual string Table { get; set; }
Property Value
| Type | Description |
|---|---|
| string |