You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class V1Alpha1SQLServerDatabase : CustomKubernetesEntity<V1Alpha1SQLServerDatabase.V1Alpha1SQLServerDatabaseSpec, V1Alpha1SQLServerDatabase.V1Alpha1SQLServerDatabaseStatus>
{
[Description("Spec of the SQL Server database.")]
public class V1Alpha1SQLServerDatabaseSpec
{
[Description("The name of the SQLServer or ExternalSQLServer instance where the database will be created.")]
public string InstanceName { get; set; } = string.Empty;
[Description("The name of the database to be created.")]
public string DatabaseName { get; set; } = string.Empty;
}
[Description("Status of the SQL Server database.")]
public class V1Alpha1SQLServerDatabaseStatus
{
[Description("The current state of the database.")]
public string State { get; set; } = "Pending";
[Description("A message indicating the current status of the database.")]
public string Message { get; set; } = "Awaiting reconciliation.";
[Description("The last time the database status was checked.")]