明细只保留 1 天,超过 1 天聚合到新表 channel_monitor_daily_rollups(按 monitor_id/model/bucket_date 维度),聚合保留 30 天。两张表都用 SoftDeleteMixin 软删除(DELETE 自动改为 UPDATE deleted_at = NOW())。 聚合 + 清理任务由 OpsCleanupService 的 cron 统一调度,与运维监控的清理共享 schedule(默认 0 2 * * *)和 leader lock。ChannelMonitorRunner 的 cleanupLoop 被移除,只保留 dueCheckLoop。 读取路径 ComputeAvailability* 改为 UNION 明细(今天 deleted_at IS NULL)+ 聚合(过去 windowDays 天 deleted_at IS NULL),SUM(ok)/SUM(total) 自然加权 计算可用率,AVG latency 用 SUM(sum_latency_ms)/SUM(count_latency)。 watermark 表 channel_monitor_aggregation_watermark 单行(id=1),记录 last_aggregated_date,重启后从该日期 +1 继续聚合,首次为 nil 则从 today - 30d 开始回填,单次最多 35 天上限避免长事务。 raw SQL 的 ListLatestPerModel / ListLatestForMonitorIDs / ListRecentHistoryForMonitors 都补上 deleted_at IS NULL 过滤(SoftDeleteMixin interceptor 只对 ent query 生效)。 bump version to 0.1.114.28 GroupBadge 在 MonitorKeyPickerDialog 中复用平台主题色 + 倍率/专属倍率 (顺手优化)。
1032 lines
34 KiB
Go
1032 lines
34 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/Wei-Shaw/sub2api/ent/channelmonitor"
|
|
"github.com/Wei-Shaw/sub2api/ent/channelmonitorhistory"
|
|
)
|
|
|
|
// ChannelMonitorHistoryCreate is the builder for creating a ChannelMonitorHistory entity.
|
|
type ChannelMonitorHistoryCreate struct {
|
|
config
|
|
mutation *ChannelMonitorHistoryMutation
|
|
hooks []Hook
|
|
conflict []sql.ConflictOption
|
|
}
|
|
|
|
// SetDeletedAt sets the "deleted_at" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetDeletedAt(v time.Time) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetDeletedAt(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
|
|
func (_c *ChannelMonitorHistoryCreate) SetNillableDeletedAt(v *time.Time) *ChannelMonitorHistoryCreate {
|
|
if v != nil {
|
|
_c.SetDeletedAt(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetMonitorID sets the "monitor_id" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetMonitorID(v int64) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetMonitorID(v)
|
|
return _c
|
|
}
|
|
|
|
// SetModel sets the "model" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetModel(v string) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetModel(v)
|
|
return _c
|
|
}
|
|
|
|
// SetStatus sets the "status" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetStatus(v channelmonitorhistory.Status) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetStatus(v)
|
|
return _c
|
|
}
|
|
|
|
// SetLatencyMs sets the "latency_ms" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetLatencyMs(v int) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetLatencyMs(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableLatencyMs sets the "latency_ms" field if the given value is not nil.
|
|
func (_c *ChannelMonitorHistoryCreate) SetNillableLatencyMs(v *int) *ChannelMonitorHistoryCreate {
|
|
if v != nil {
|
|
_c.SetLatencyMs(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetPingLatencyMs sets the "ping_latency_ms" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetPingLatencyMs(v int) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetPingLatencyMs(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillablePingLatencyMs sets the "ping_latency_ms" field if the given value is not nil.
|
|
func (_c *ChannelMonitorHistoryCreate) SetNillablePingLatencyMs(v *int) *ChannelMonitorHistoryCreate {
|
|
if v != nil {
|
|
_c.SetPingLatencyMs(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetMessage sets the "message" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetMessage(v string) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetMessage(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableMessage sets the "message" field if the given value is not nil.
|
|
func (_c *ChannelMonitorHistoryCreate) SetNillableMessage(v *string) *ChannelMonitorHistoryCreate {
|
|
if v != nil {
|
|
_c.SetMessage(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetCheckedAt sets the "checked_at" field.
|
|
func (_c *ChannelMonitorHistoryCreate) SetCheckedAt(v time.Time) *ChannelMonitorHistoryCreate {
|
|
_c.mutation.SetCheckedAt(v)
|
|
return _c
|
|
}
|
|
|
|
// SetNillableCheckedAt sets the "checked_at" field if the given value is not nil.
|
|
func (_c *ChannelMonitorHistoryCreate) SetNillableCheckedAt(v *time.Time) *ChannelMonitorHistoryCreate {
|
|
if v != nil {
|
|
_c.SetCheckedAt(*v)
|
|
}
|
|
return _c
|
|
}
|
|
|
|
// SetMonitor sets the "monitor" edge to the ChannelMonitor entity.
|
|
func (_c *ChannelMonitorHistoryCreate) SetMonitor(v *ChannelMonitor) *ChannelMonitorHistoryCreate {
|
|
return _c.SetMonitorID(v.ID)
|
|
}
|
|
|
|
// Mutation returns the ChannelMonitorHistoryMutation object of the builder.
|
|
func (_c *ChannelMonitorHistoryCreate) Mutation() *ChannelMonitorHistoryMutation {
|
|
return _c.mutation
|
|
}
|
|
|
|
// Save creates the ChannelMonitorHistory in the database.
|
|
func (_c *ChannelMonitorHistoryCreate) Save(ctx context.Context) (*ChannelMonitorHistory, error) {
|
|
if err := _c.defaults(); err != nil {
|
|
return nil, err
|
|
}
|
|
return withHooks(ctx, _c.sqlSave, _c.mutation, _c.hooks)
|
|
}
|
|
|
|
// SaveX calls Save and panics if Save returns an error.
|
|
func (_c *ChannelMonitorHistoryCreate) SaveX(ctx context.Context) *ChannelMonitorHistory {
|
|
v, err := _c.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (_c *ChannelMonitorHistoryCreate) Exec(ctx context.Context) error {
|
|
_, err := _c.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (_c *ChannelMonitorHistoryCreate) ExecX(ctx context.Context) {
|
|
if err := _c.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// defaults sets the default values of the builder before save.
|
|
func (_c *ChannelMonitorHistoryCreate) defaults() error {
|
|
if _, ok := _c.mutation.Message(); !ok {
|
|
v := channelmonitorhistory.DefaultMessage
|
|
_c.mutation.SetMessage(v)
|
|
}
|
|
if _, ok := _c.mutation.CheckedAt(); !ok {
|
|
if channelmonitorhistory.DefaultCheckedAt == nil {
|
|
return fmt.Errorf("ent: uninitialized channelmonitorhistory.DefaultCheckedAt (forgotten import ent/runtime?)")
|
|
}
|
|
v := channelmonitorhistory.DefaultCheckedAt()
|
|
_c.mutation.SetCheckedAt(v)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// check runs all checks and user-defined validators on the builder.
|
|
func (_c *ChannelMonitorHistoryCreate) check() error {
|
|
if _, ok := _c.mutation.MonitorID(); !ok {
|
|
return &ValidationError{Name: "monitor_id", err: errors.New(`ent: missing required field "ChannelMonitorHistory.monitor_id"`)}
|
|
}
|
|
if _, ok := _c.mutation.Model(); !ok {
|
|
return &ValidationError{Name: "model", err: errors.New(`ent: missing required field "ChannelMonitorHistory.model"`)}
|
|
}
|
|
if v, ok := _c.mutation.Model(); ok {
|
|
if err := channelmonitorhistory.ModelValidator(v); err != nil {
|
|
return &ValidationError{Name: "model", err: fmt.Errorf(`ent: validator failed for field "ChannelMonitorHistory.model": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := _c.mutation.Status(); !ok {
|
|
return &ValidationError{Name: "status", err: errors.New(`ent: missing required field "ChannelMonitorHistory.status"`)}
|
|
}
|
|
if v, ok := _c.mutation.Status(); ok {
|
|
if err := channelmonitorhistory.StatusValidator(v); err != nil {
|
|
return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "ChannelMonitorHistory.status": %w`, err)}
|
|
}
|
|
}
|
|
if v, ok := _c.mutation.Message(); ok {
|
|
if err := channelmonitorhistory.MessageValidator(v); err != nil {
|
|
return &ValidationError{Name: "message", err: fmt.Errorf(`ent: validator failed for field "ChannelMonitorHistory.message": %w`, err)}
|
|
}
|
|
}
|
|
if _, ok := _c.mutation.CheckedAt(); !ok {
|
|
return &ValidationError{Name: "checked_at", err: errors.New(`ent: missing required field "ChannelMonitorHistory.checked_at"`)}
|
|
}
|
|
if len(_c.mutation.MonitorIDs()) == 0 {
|
|
return &ValidationError{Name: "monitor", err: errors.New(`ent: missing required edge "ChannelMonitorHistory.monitor"`)}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (_c *ChannelMonitorHistoryCreate) sqlSave(ctx context.Context) (*ChannelMonitorHistory, error) {
|
|
if err := _c.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
_node, _spec := _c.createSpec()
|
|
if err := sqlgraph.CreateNode(ctx, _c.driver, _spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
id := _spec.ID.Value.(int64)
|
|
_node.ID = int64(id)
|
|
_c.mutation.id = &_node.ID
|
|
_c.mutation.done = true
|
|
return _node, nil
|
|
}
|
|
|
|
func (_c *ChannelMonitorHistoryCreate) createSpec() (*ChannelMonitorHistory, *sqlgraph.CreateSpec) {
|
|
var (
|
|
_node = &ChannelMonitorHistory{config: _c.config}
|
|
_spec = sqlgraph.NewCreateSpec(channelmonitorhistory.Table, sqlgraph.NewFieldSpec(channelmonitorhistory.FieldID, field.TypeInt64))
|
|
)
|
|
_spec.OnConflict = _c.conflict
|
|
if value, ok := _c.mutation.DeletedAt(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldDeletedAt, field.TypeTime, value)
|
|
_node.DeletedAt = &value
|
|
}
|
|
if value, ok := _c.mutation.Model(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldModel, field.TypeString, value)
|
|
_node.Model = value
|
|
}
|
|
if value, ok := _c.mutation.Status(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldStatus, field.TypeEnum, value)
|
|
_node.Status = value
|
|
}
|
|
if value, ok := _c.mutation.LatencyMs(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldLatencyMs, field.TypeInt, value)
|
|
_node.LatencyMs = &value
|
|
}
|
|
if value, ok := _c.mutation.PingLatencyMs(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldPingLatencyMs, field.TypeInt, value)
|
|
_node.PingLatencyMs = &value
|
|
}
|
|
if value, ok := _c.mutation.Message(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldMessage, field.TypeString, value)
|
|
_node.Message = value
|
|
}
|
|
if value, ok := _c.mutation.CheckedAt(); ok {
|
|
_spec.SetField(channelmonitorhistory.FieldCheckedAt, field.TypeTime, value)
|
|
_node.CheckedAt = value
|
|
}
|
|
if nodes := _c.mutation.MonitorIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2O,
|
|
Inverse: true,
|
|
Table: channelmonitorhistory.MonitorTable,
|
|
Columns: []string{channelmonitorhistory.MonitorColumn},
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(channelmonitor.FieldID, field.TypeInt64),
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_node.MonitorID = nodes[0]
|
|
_spec.Edges = append(_spec.Edges, edge)
|
|
}
|
|
return _node, _spec
|
|
}
|
|
|
|
// OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
|
|
// of the `INSERT` statement. For example:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// SetDeletedAt(v).
|
|
// OnConflict(
|
|
// // Update the row with the new values
|
|
// // the was proposed for insertion.
|
|
// sql.ResolveWithNewValues(),
|
|
// ).
|
|
// // Override some of the fields with custom
|
|
// // update values.
|
|
// Update(func(u *ent.ChannelMonitorHistoryUpsert) {
|
|
// SetDeletedAt(v+v).
|
|
// }).
|
|
// Exec(ctx)
|
|
func (_c *ChannelMonitorHistoryCreate) OnConflict(opts ...sql.ConflictOption) *ChannelMonitorHistoryUpsertOne {
|
|
_c.conflict = opts
|
|
return &ChannelMonitorHistoryUpsertOne{
|
|
create: _c,
|
|
}
|
|
}
|
|
|
|
// OnConflictColumns calls `OnConflict` and configures the columns
|
|
// as conflict target. Using this option is equivalent to using:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// OnConflict(sql.ConflictColumns(columns...)).
|
|
// Exec(ctx)
|
|
func (_c *ChannelMonitorHistoryCreate) OnConflictColumns(columns ...string) *ChannelMonitorHistoryUpsertOne {
|
|
_c.conflict = append(_c.conflict, sql.ConflictColumns(columns...))
|
|
return &ChannelMonitorHistoryUpsertOne{
|
|
create: _c,
|
|
}
|
|
}
|
|
|
|
type (
|
|
// ChannelMonitorHistoryUpsertOne is the builder for "upsert"-ing
|
|
// one ChannelMonitorHistory node.
|
|
ChannelMonitorHistoryUpsertOne struct {
|
|
create *ChannelMonitorHistoryCreate
|
|
}
|
|
|
|
// ChannelMonitorHistoryUpsert is the "OnConflict" setter.
|
|
ChannelMonitorHistoryUpsert struct {
|
|
*sql.UpdateSet
|
|
}
|
|
)
|
|
|
|
// SetDeletedAt sets the "deleted_at" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetDeletedAt(v time.Time) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldDeletedAt, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateDeletedAt() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldDeletedAt)
|
|
return u
|
|
}
|
|
|
|
// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
func (u *ChannelMonitorHistoryUpsert) ClearDeletedAt() *ChannelMonitorHistoryUpsert {
|
|
u.SetNull(channelmonitorhistory.FieldDeletedAt)
|
|
return u
|
|
}
|
|
|
|
// SetMonitorID sets the "monitor_id" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetMonitorID(v int64) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldMonitorID, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateMonitorID sets the "monitor_id" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateMonitorID() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldMonitorID)
|
|
return u
|
|
}
|
|
|
|
// SetModel sets the "model" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetModel(v string) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldModel, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateModel sets the "model" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateModel() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldModel)
|
|
return u
|
|
}
|
|
|
|
// SetStatus sets the "status" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetStatus(v channelmonitorhistory.Status) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldStatus, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateStatus sets the "status" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateStatus() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldStatus)
|
|
return u
|
|
}
|
|
|
|
// SetLatencyMs sets the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetLatencyMs(v int) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldLatencyMs, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateLatencyMs sets the "latency_ms" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateLatencyMs() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldLatencyMs)
|
|
return u
|
|
}
|
|
|
|
// AddLatencyMs adds v to the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsert) AddLatencyMs(v int) *ChannelMonitorHistoryUpsert {
|
|
u.Add(channelmonitorhistory.FieldLatencyMs, v)
|
|
return u
|
|
}
|
|
|
|
// ClearLatencyMs clears the value of the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsert) ClearLatencyMs() *ChannelMonitorHistoryUpsert {
|
|
u.SetNull(channelmonitorhistory.FieldLatencyMs)
|
|
return u
|
|
}
|
|
|
|
// SetPingLatencyMs sets the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetPingLatencyMs(v int) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldPingLatencyMs, v)
|
|
return u
|
|
}
|
|
|
|
// UpdatePingLatencyMs sets the "ping_latency_ms" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdatePingLatencyMs() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldPingLatencyMs)
|
|
return u
|
|
}
|
|
|
|
// AddPingLatencyMs adds v to the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsert) AddPingLatencyMs(v int) *ChannelMonitorHistoryUpsert {
|
|
u.Add(channelmonitorhistory.FieldPingLatencyMs, v)
|
|
return u
|
|
}
|
|
|
|
// ClearPingLatencyMs clears the value of the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsert) ClearPingLatencyMs() *ChannelMonitorHistoryUpsert {
|
|
u.SetNull(channelmonitorhistory.FieldPingLatencyMs)
|
|
return u
|
|
}
|
|
|
|
// SetMessage sets the "message" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetMessage(v string) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldMessage, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateMessage sets the "message" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateMessage() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldMessage)
|
|
return u
|
|
}
|
|
|
|
// ClearMessage clears the value of the "message" field.
|
|
func (u *ChannelMonitorHistoryUpsert) ClearMessage() *ChannelMonitorHistoryUpsert {
|
|
u.SetNull(channelmonitorhistory.FieldMessage)
|
|
return u
|
|
}
|
|
|
|
// SetCheckedAt sets the "checked_at" field.
|
|
func (u *ChannelMonitorHistoryUpsert) SetCheckedAt(v time.Time) *ChannelMonitorHistoryUpsert {
|
|
u.Set(channelmonitorhistory.FieldCheckedAt, v)
|
|
return u
|
|
}
|
|
|
|
// UpdateCheckedAt sets the "checked_at" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsert) UpdateCheckedAt() *ChannelMonitorHistoryUpsert {
|
|
u.SetExcluded(channelmonitorhistory.FieldCheckedAt)
|
|
return u
|
|
}
|
|
|
|
// UpdateNewValues updates the mutable fields using the new values that were set on create.
|
|
// Using this option is equivalent to using:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// OnConflict(
|
|
// sql.ResolveWithNewValues(),
|
|
// ).
|
|
// Exec(ctx)
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateNewValues() *ChannelMonitorHistoryUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
|
|
return u
|
|
}
|
|
|
|
// Ignore sets each column to itself in case of conflict.
|
|
// Using this option is equivalent to using:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// OnConflict(sql.ResolveWithIgnore()).
|
|
// Exec(ctx)
|
|
func (u *ChannelMonitorHistoryUpsertOne) Ignore() *ChannelMonitorHistoryUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
|
|
return u
|
|
}
|
|
|
|
// DoNothing configures the conflict_action to `DO NOTHING`.
|
|
// Supported only by SQLite and PostgreSQL.
|
|
func (u *ChannelMonitorHistoryUpsertOne) DoNothing() *ChannelMonitorHistoryUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.DoNothing())
|
|
return u
|
|
}
|
|
|
|
// Update allows overriding fields `UPDATE` values. See the ChannelMonitorHistoryCreate.OnConflict
|
|
// documentation for more info.
|
|
func (u *ChannelMonitorHistoryUpsertOne) Update(set func(*ChannelMonitorHistoryUpsert)) *ChannelMonitorHistoryUpsertOne {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
|
|
set(&ChannelMonitorHistoryUpsert{UpdateSet: update})
|
|
}))
|
|
return u
|
|
}
|
|
|
|
// SetDeletedAt sets the "deleted_at" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetDeletedAt(v time.Time) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetDeletedAt(v)
|
|
})
|
|
}
|
|
|
|
// UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateDeletedAt() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateDeletedAt()
|
|
})
|
|
}
|
|
|
|
// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) ClearDeletedAt() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearDeletedAt()
|
|
})
|
|
}
|
|
|
|
// SetMonitorID sets the "monitor_id" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetMonitorID(v int64) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetMonitorID(v)
|
|
})
|
|
}
|
|
|
|
// UpdateMonitorID sets the "monitor_id" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateMonitorID() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateMonitorID()
|
|
})
|
|
}
|
|
|
|
// SetModel sets the "model" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetModel(v string) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetModel(v)
|
|
})
|
|
}
|
|
|
|
// UpdateModel sets the "model" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateModel() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateModel()
|
|
})
|
|
}
|
|
|
|
// SetStatus sets the "status" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetStatus(v channelmonitorhistory.Status) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetStatus(v)
|
|
})
|
|
}
|
|
|
|
// UpdateStatus sets the "status" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateStatus() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateStatus()
|
|
})
|
|
}
|
|
|
|
// SetLatencyMs sets the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetLatencyMs(v int) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// AddLatencyMs adds v to the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) AddLatencyMs(v int) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.AddLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// UpdateLatencyMs sets the "latency_ms" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateLatencyMs() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateLatencyMs()
|
|
})
|
|
}
|
|
|
|
// ClearLatencyMs clears the value of the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) ClearLatencyMs() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearLatencyMs()
|
|
})
|
|
}
|
|
|
|
// SetPingLatencyMs sets the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetPingLatencyMs(v int) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetPingLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// AddPingLatencyMs adds v to the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) AddPingLatencyMs(v int) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.AddPingLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// UpdatePingLatencyMs sets the "ping_latency_ms" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdatePingLatencyMs() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdatePingLatencyMs()
|
|
})
|
|
}
|
|
|
|
// ClearPingLatencyMs clears the value of the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) ClearPingLatencyMs() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearPingLatencyMs()
|
|
})
|
|
}
|
|
|
|
// SetMessage sets the "message" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetMessage(v string) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetMessage(v)
|
|
})
|
|
}
|
|
|
|
// UpdateMessage sets the "message" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateMessage() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateMessage()
|
|
})
|
|
}
|
|
|
|
// ClearMessage clears the value of the "message" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) ClearMessage() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearMessage()
|
|
})
|
|
}
|
|
|
|
// SetCheckedAt sets the "checked_at" field.
|
|
func (u *ChannelMonitorHistoryUpsertOne) SetCheckedAt(v time.Time) *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetCheckedAt(v)
|
|
})
|
|
}
|
|
|
|
// UpdateCheckedAt sets the "checked_at" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertOne) UpdateCheckedAt() *ChannelMonitorHistoryUpsertOne {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateCheckedAt()
|
|
})
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (u *ChannelMonitorHistoryUpsertOne) Exec(ctx context.Context) error {
|
|
if len(u.create.conflict) == 0 {
|
|
return errors.New("ent: missing options for ChannelMonitorHistoryCreate.OnConflict")
|
|
}
|
|
return u.create.Exec(ctx)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (u *ChannelMonitorHistoryUpsertOne) ExecX(ctx context.Context) {
|
|
if err := u.create.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Exec executes the UPSERT query and returns the inserted/updated ID.
|
|
func (u *ChannelMonitorHistoryUpsertOne) ID(ctx context.Context) (id int64, err error) {
|
|
node, err := u.create.Save(ctx)
|
|
if err != nil {
|
|
return id, err
|
|
}
|
|
return node.ID, nil
|
|
}
|
|
|
|
// IDX is like ID, but panics if an error occurs.
|
|
func (u *ChannelMonitorHistoryUpsertOne) IDX(ctx context.Context) int64 {
|
|
id, err := u.ID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// ChannelMonitorHistoryCreateBulk is the builder for creating many ChannelMonitorHistory entities in bulk.
|
|
type ChannelMonitorHistoryCreateBulk struct {
|
|
config
|
|
err error
|
|
builders []*ChannelMonitorHistoryCreate
|
|
conflict []sql.ConflictOption
|
|
}
|
|
|
|
// Save creates the ChannelMonitorHistory entities in the database.
|
|
func (_c *ChannelMonitorHistoryCreateBulk) Save(ctx context.Context) ([]*ChannelMonitorHistory, error) {
|
|
if _c.err != nil {
|
|
return nil, _c.err
|
|
}
|
|
specs := make([]*sqlgraph.CreateSpec, len(_c.builders))
|
|
nodes := make([]*ChannelMonitorHistory, len(_c.builders))
|
|
mutators := make([]Mutator, len(_c.builders))
|
|
for i := range _c.builders {
|
|
func(i int, root context.Context) {
|
|
builder := _c.builders[i]
|
|
builder.defaults()
|
|
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
|
|
mutation, ok := m.(*ChannelMonitorHistoryMutation)
|
|
if !ok {
|
|
return nil, fmt.Errorf("unexpected mutation type %T", m)
|
|
}
|
|
if err := builder.check(); err != nil {
|
|
return nil, err
|
|
}
|
|
builder.mutation = mutation
|
|
var err error
|
|
nodes[i], specs[i] = builder.createSpec()
|
|
if i < len(mutators)-1 {
|
|
_, err = mutators[i+1].Mutate(root, _c.builders[i+1].mutation)
|
|
} else {
|
|
spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
|
|
spec.OnConflict = _c.conflict
|
|
// Invoke the actual operation on the latest mutation in the chain.
|
|
if err = sqlgraph.BatchCreate(ctx, _c.driver, spec); err != nil {
|
|
if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mutation.id = &nodes[i].ID
|
|
if specs[i].ID.Value != nil {
|
|
id := specs[i].ID.Value.(int64)
|
|
nodes[i].ID = int64(id)
|
|
}
|
|
mutation.done = true
|
|
return nodes[i], nil
|
|
})
|
|
for i := len(builder.hooks) - 1; i >= 0; i-- {
|
|
mut = builder.hooks[i](mut)
|
|
}
|
|
mutators[i] = mut
|
|
}(i, ctx)
|
|
}
|
|
if len(mutators) > 0 {
|
|
if _, err := mutators[0].Mutate(ctx, _c.builders[0].mutation); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (_c *ChannelMonitorHistoryCreateBulk) SaveX(ctx context.Context) []*ChannelMonitorHistory {
|
|
v, err := _c.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return v
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (_c *ChannelMonitorHistoryCreateBulk) Exec(ctx context.Context) error {
|
|
_, err := _c.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (_c *ChannelMonitorHistoryCreateBulk) ExecX(ctx context.Context) {
|
|
if err := _c.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
|
|
// of the `INSERT` statement. For example:
|
|
//
|
|
// client.ChannelMonitorHistory.CreateBulk(builders...).
|
|
// OnConflict(
|
|
// // Update the row with the new values
|
|
// // the was proposed for insertion.
|
|
// sql.ResolveWithNewValues(),
|
|
// ).
|
|
// // Override some of the fields with custom
|
|
// // update values.
|
|
// Update(func(u *ent.ChannelMonitorHistoryUpsert) {
|
|
// SetDeletedAt(v+v).
|
|
// }).
|
|
// Exec(ctx)
|
|
func (_c *ChannelMonitorHistoryCreateBulk) OnConflict(opts ...sql.ConflictOption) *ChannelMonitorHistoryUpsertBulk {
|
|
_c.conflict = opts
|
|
return &ChannelMonitorHistoryUpsertBulk{
|
|
create: _c,
|
|
}
|
|
}
|
|
|
|
// OnConflictColumns calls `OnConflict` and configures the columns
|
|
// as conflict target. Using this option is equivalent to using:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// OnConflict(sql.ConflictColumns(columns...)).
|
|
// Exec(ctx)
|
|
func (_c *ChannelMonitorHistoryCreateBulk) OnConflictColumns(columns ...string) *ChannelMonitorHistoryUpsertBulk {
|
|
_c.conflict = append(_c.conflict, sql.ConflictColumns(columns...))
|
|
return &ChannelMonitorHistoryUpsertBulk{
|
|
create: _c,
|
|
}
|
|
}
|
|
|
|
// ChannelMonitorHistoryUpsertBulk is the builder for "upsert"-ing
|
|
// a bulk of ChannelMonitorHistory nodes.
|
|
type ChannelMonitorHistoryUpsertBulk struct {
|
|
create *ChannelMonitorHistoryCreateBulk
|
|
}
|
|
|
|
// UpdateNewValues updates the mutable fields using the new values that
|
|
// were set on create. Using this option is equivalent to using:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// OnConflict(
|
|
// sql.ResolveWithNewValues(),
|
|
// ).
|
|
// Exec(ctx)
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateNewValues() *ChannelMonitorHistoryUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
|
|
return u
|
|
}
|
|
|
|
// Ignore sets each column to itself in case of conflict.
|
|
// Using this option is equivalent to using:
|
|
//
|
|
// client.ChannelMonitorHistory.Create().
|
|
// OnConflict(sql.ResolveWithIgnore()).
|
|
// Exec(ctx)
|
|
func (u *ChannelMonitorHistoryUpsertBulk) Ignore() *ChannelMonitorHistoryUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
|
|
return u
|
|
}
|
|
|
|
// DoNothing configures the conflict_action to `DO NOTHING`.
|
|
// Supported only by SQLite and PostgreSQL.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) DoNothing() *ChannelMonitorHistoryUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.DoNothing())
|
|
return u
|
|
}
|
|
|
|
// Update allows overriding fields `UPDATE` values. See the ChannelMonitorHistoryCreateBulk.OnConflict
|
|
// documentation for more info.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) Update(set func(*ChannelMonitorHistoryUpsert)) *ChannelMonitorHistoryUpsertBulk {
|
|
u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
|
|
set(&ChannelMonitorHistoryUpsert{UpdateSet: update})
|
|
}))
|
|
return u
|
|
}
|
|
|
|
// SetDeletedAt sets the "deleted_at" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetDeletedAt(v time.Time) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetDeletedAt(v)
|
|
})
|
|
}
|
|
|
|
// UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateDeletedAt() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateDeletedAt()
|
|
})
|
|
}
|
|
|
|
// ClearDeletedAt clears the value of the "deleted_at" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) ClearDeletedAt() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearDeletedAt()
|
|
})
|
|
}
|
|
|
|
// SetMonitorID sets the "monitor_id" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetMonitorID(v int64) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetMonitorID(v)
|
|
})
|
|
}
|
|
|
|
// UpdateMonitorID sets the "monitor_id" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateMonitorID() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateMonitorID()
|
|
})
|
|
}
|
|
|
|
// SetModel sets the "model" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetModel(v string) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetModel(v)
|
|
})
|
|
}
|
|
|
|
// UpdateModel sets the "model" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateModel() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateModel()
|
|
})
|
|
}
|
|
|
|
// SetStatus sets the "status" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetStatus(v channelmonitorhistory.Status) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetStatus(v)
|
|
})
|
|
}
|
|
|
|
// UpdateStatus sets the "status" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateStatus() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateStatus()
|
|
})
|
|
}
|
|
|
|
// SetLatencyMs sets the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetLatencyMs(v int) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// AddLatencyMs adds v to the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) AddLatencyMs(v int) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.AddLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// UpdateLatencyMs sets the "latency_ms" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateLatencyMs() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateLatencyMs()
|
|
})
|
|
}
|
|
|
|
// ClearLatencyMs clears the value of the "latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) ClearLatencyMs() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearLatencyMs()
|
|
})
|
|
}
|
|
|
|
// SetPingLatencyMs sets the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetPingLatencyMs(v int) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetPingLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// AddPingLatencyMs adds v to the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) AddPingLatencyMs(v int) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.AddPingLatencyMs(v)
|
|
})
|
|
}
|
|
|
|
// UpdatePingLatencyMs sets the "ping_latency_ms" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdatePingLatencyMs() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdatePingLatencyMs()
|
|
})
|
|
}
|
|
|
|
// ClearPingLatencyMs clears the value of the "ping_latency_ms" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) ClearPingLatencyMs() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearPingLatencyMs()
|
|
})
|
|
}
|
|
|
|
// SetMessage sets the "message" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetMessage(v string) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetMessage(v)
|
|
})
|
|
}
|
|
|
|
// UpdateMessage sets the "message" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateMessage() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateMessage()
|
|
})
|
|
}
|
|
|
|
// ClearMessage clears the value of the "message" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) ClearMessage() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.ClearMessage()
|
|
})
|
|
}
|
|
|
|
// SetCheckedAt sets the "checked_at" field.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) SetCheckedAt(v time.Time) *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.SetCheckedAt(v)
|
|
})
|
|
}
|
|
|
|
// UpdateCheckedAt sets the "checked_at" field to the value that was provided on create.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) UpdateCheckedAt() *ChannelMonitorHistoryUpsertBulk {
|
|
return u.Update(func(s *ChannelMonitorHistoryUpsert) {
|
|
s.UpdateCheckedAt()
|
|
})
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) Exec(ctx context.Context) error {
|
|
if u.create.err != nil {
|
|
return u.create.err
|
|
}
|
|
for i, b := range u.create.builders {
|
|
if len(b.conflict) != 0 {
|
|
return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the ChannelMonitorHistoryCreateBulk instead", i)
|
|
}
|
|
}
|
|
if len(u.create.conflict) == 0 {
|
|
return errors.New("ent: missing options for ChannelMonitorHistoryCreateBulk.OnConflict")
|
|
}
|
|
return u.create.Exec(ctx)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (u *ChannelMonitorHistoryUpsertBulk) ExecX(ctx context.Context) {
|
|
if err := u.create.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|