Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.netflix.spinnaker.keel.persistence.metamodel.tables.ActionState Maven / Gradle / Ivy
/*
* This file is generated by jOOQ.
*/
package com.netflix.spinnaker.keel.persistence.metamodel.tables;
import com.netflix.spinnaker.jooq.JsonToMapConverter;
import com.netflix.spinnaker.jooq.LocalDateTimeToInstantConverter;
import com.netflix.spinnaker.keel.api.action.ActionType;
import com.netflix.spinnaker.keel.api.constraints.ConstraintStatus;
import com.netflix.spinnaker.keel.persistence.metamodel.Keel;
import com.netflix.spinnaker.keel.persistence.metamodel.Keys;
import com.netflix.spinnaker.keel.persistence.metamodel.tables.records.ActionStateRecord;
import java.time.Instant;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import javax.annotation.processing.Generated;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Row10;
import org.jooq.Schema;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.TableImpl;
/**
* This class is generated by jOOQ.
*/
@Generated(
value = {
"https://www.jooq.org",
"jOOQ version:3.13.6"
},
comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ActionState extends TableImpl {
private static final long serialVersionUID = -2018565942;
/**
* The reference instance of keel.action_state
*/
public static final ActionState ACTION_STATE = new ActionState();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return ActionStateRecord.class;
}
/**
* The column keel.action_state.environment_uid
.
*/
public final TableField ENVIRONMENT_UID = createField(DSL.name("environment_uid"), org.jooq.impl.SQLDataType.CHAR(26).nullable(false), this, "");
/**
* The column keel.action_state.artifact_uid
.
*/
public final TableField ARTIFACT_UID = createField(DSL.name("artifact_uid"), org.jooq.impl.SQLDataType.CHAR(26).nullable(false), this, "");
/**
* The column keel.action_state.artifact_version
.
*/
public final TableField ARTIFACT_VERSION = createField(DSL.name("artifact_version"), org.jooq.impl.SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column keel.action_state.type
.
*/
public final TableField TYPE = createField(DSL.name("type"), org.jooq.impl.SQLDataType.VARCHAR(100).nullable(false), this, "", new org.jooq.impl.EnumConverter(java.lang.String.class, com.netflix.spinnaker.keel.api.action.ActionType.class));
/**
* The column keel.action_state.action_id
.
*/
public final TableField ACTION_ID = createField(DSL.name("action_id"), org.jooq.impl.SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column keel.action_state.status
.
*/
public final TableField STATUS = createField(DSL.name("status"), org.jooq.impl.SQLDataType.VARCHAR(255).nullable(false), this, "", new org.jooq.impl.EnumConverter(java.lang.String.class, com.netflix.spinnaker.keel.api.constraints.ConstraintStatus.class));
/**
* The column keel.action_state.started_at
.
*/
public final TableField STARTED_AT = createField(DSL.name("started_at"), org.jooq.impl.SQLDataType.LOCALDATETIME.nullable(false).defaultValue(org.jooq.impl.DSL.field("CURRENT_TIMESTAMP(3)", org.jooq.impl.SQLDataType.LOCALDATETIME)), this, "", new LocalDateTimeToInstantConverter());
/**
* The column keel.action_state.ended_at
.
*/
public final TableField ENDED_AT = createField(DSL.name("ended_at"), org.jooq.impl.SQLDataType.LOCALDATETIME, this, "", new LocalDateTimeToInstantConverter());
/**
* The column keel.action_state.link
.
*/
public final TableField LINK = createField(DSL.name("link"), org.jooq.impl.SQLDataType.VARCHAR(511), this, "");
/**
* The column keel.action_state.metadata
.
*/
public final TableField> METADATA = createField(DSL.name("metadata"), org.jooq.impl.SQLDataType.JSON.nullable(false), this, "", new JsonToMapConverter());
/**
* Create a keel.action_state
table reference
*/
public ActionState() {
this(DSL.name("action_state"), null);
}
/**
* Create an aliased keel.action_state
table reference
*/
public ActionState(String alias) {
this(DSL.name(alias), ACTION_STATE);
}
/**
* Create an aliased keel.action_state
table reference
*/
public ActionState(Name alias) {
this(alias, ACTION_STATE);
}
private ActionState(Name alias, Table aliased) {
this(alias, aliased, null);
}
private ActionState(Name alias, Table aliased, Field>[] parameters) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
}
public ActionState(Table child, ForeignKey key) {
super(child, key, ACTION_STATE);
}
@Override
public Schema getSchema() {
return Keel.KEEL;
}
@Override
public UniqueKey getPrimaryKey() {
return Keys.KEY_ACTION_STATE_PRIMARY;
}
@Override
public List> getKeys() {
return Arrays.>asList(Keys.KEY_ACTION_STATE_PRIMARY);
}
@Override
public List> getReferences() {
return Arrays.>asList(Keys.FK_VERIFICATION_STATE_ENVIRONMENT, Keys.FK_VERIFICATION_STATE_DELIVERY_ARTIFACT);
}
public Environment environment() {
return new Environment(this, Keys.FK_VERIFICATION_STATE_ENVIRONMENT);
}
public DeliveryArtifact deliveryArtifact() {
return new DeliveryArtifact(this, Keys.FK_VERIFICATION_STATE_DELIVERY_ARTIFACT);
}
@Override
public ActionState as(String alias) {
return new ActionState(DSL.name(alias), this);
}
@Override
public ActionState as(Name alias) {
return new ActionState(alias, this);
}
/**
* Rename this table
*/
@Override
public ActionState rename(String name) {
return new ActionState(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public ActionState rename(Name name) {
return new ActionState(name, null);
}
// -------------------------------------------------------------------------
// Row10 type methods
// -------------------------------------------------------------------------
@Override
public Row10> fieldsRow() {
return (Row10) super.fieldsRow();
}
}