All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.EnvironmentLastPostDeploy Maven / Gradle / Ivy
/*
* This file is generated by jOOQ.
*/
package com.netflix.spinnaker.keel.persistence.metamodel.tables;
import com.netflix.spinnaker.jooq.LocalDateTimeToInstantConverter;
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.EnvironmentLastPostDeployRecord;
import java.time.Instant;
import java.util.Arrays;
import java.util.List;
import javax.annotation.processing.Generated;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Row4;
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 EnvironmentLastPostDeploy extends TableImpl {
private static final long serialVersionUID = 13917818;
/**
* The reference instance of keel.environment_last_post_deploy
*/
public static final EnvironmentLastPostDeploy ENVIRONMENT_LAST_POST_DEPLOY = new EnvironmentLastPostDeploy();
/**
* The class holding records for this type
*/
@Override
public Class getRecordType() {
return EnvironmentLastPostDeployRecord.class;
}
/**
* The column keel.environment_last_post_deploy.environment_uid
.
*/
public final TableField ENVIRONMENT_UID = createField(DSL.name("environment_uid"), org.jooq.impl.SQLDataType.CHAR(26).nullable(false), this, "");
/**
* The column keel.environment_last_post_deploy.artifact_uid
.
*/
public final TableField ARTIFACT_UID = createField(DSL.name("artifact_uid"), org.jooq.impl.SQLDataType.CHAR(26).nullable(false), this, "");
/**
* The column keel.environment_last_post_deploy.artifact_version
.
*/
public final TableField ARTIFACT_VERSION = createField(DSL.name("artifact_version"), org.jooq.impl.SQLDataType.VARCHAR(100).nullable(false), this, "");
/**
* The column keel.environment_last_post_deploy.at
.
*/
public final TableField AT = createField(DSL.name("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());
/**
* Create a keel.environment_last_post_deploy
table reference
*/
public EnvironmentLastPostDeploy() {
this(DSL.name("environment_last_post_deploy"), null);
}
/**
* Create an aliased keel.environment_last_post_deploy
table reference
*/
public EnvironmentLastPostDeploy(String alias) {
this(DSL.name(alias), ENVIRONMENT_LAST_POST_DEPLOY);
}
/**
* Create an aliased keel.environment_last_post_deploy
table reference
*/
public EnvironmentLastPostDeploy(Name alias) {
this(alias, ENVIRONMENT_LAST_POST_DEPLOY);
}
private EnvironmentLastPostDeploy(Name alias, Table aliased) {
this(alias, aliased, null);
}
private EnvironmentLastPostDeploy(Name alias, Table aliased, Field>[] parameters) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
}
public EnvironmentLastPostDeploy(Table child, ForeignKey key) {
super(child, key, ENVIRONMENT_LAST_POST_DEPLOY);
}
@Override
public Schema getSchema() {
return Keel.KEEL;
}
@Override
public UniqueKey getPrimaryKey() {
return Keys.KEY_ENVIRONMENT_LAST_POST_DEPLOY_PRIMARY;
}
@Override
public List> getKeys() {
return Arrays.>asList(Keys.KEY_ENVIRONMENT_LAST_POST_DEPLOY_PRIMARY);
}
@Override
public List> getReferences() {
return Arrays.>asList(Keys.FK_ENVIRONMENT_LAST_POST_DEPLOY_ENVIRONMENT, Keys.FK_ENVIRONMENT_LAST_POST_DEPLOY_DELIVERY_ARTIFACT);
}
public Environment environment() {
return new Environment(this, Keys.FK_ENVIRONMENT_LAST_POST_DEPLOY_ENVIRONMENT);
}
public DeliveryArtifact deliveryArtifact() {
return new DeliveryArtifact(this, Keys.FK_ENVIRONMENT_LAST_POST_DEPLOY_DELIVERY_ARTIFACT);
}
@Override
public EnvironmentLastPostDeploy as(String alias) {
return new EnvironmentLastPostDeploy(DSL.name(alias), this);
}
@Override
public EnvironmentLastPostDeploy as(Name alias) {
return new EnvironmentLastPostDeploy(alias, this);
}
/**
* Rename this table
*/
@Override
public EnvironmentLastPostDeploy rename(String name) {
return new EnvironmentLastPostDeploy(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public EnvironmentLastPostDeploy rename(Name name) {
return new EnvironmentLastPostDeploy(name, null);
}
// -------------------------------------------------------------------------
// Row4 type methods
// -------------------------------------------------------------------------
@Override
public Row4 fieldsRow() {
return (Row4) super.fieldsRow();
}
}