SetStatus sets the "status" field.
(v node.Status)
| 1018 | |
| 1019 | // SetStatus sets the "status" field. |
| 1020 | func (u *NodeUpsertBulk) SetStatus(v node.Status) *NodeUpsertBulk { |
| 1021 | return u.Update(func(s *NodeUpsert) { |
| 1022 | s.SetStatus(v) |
| 1023 | }) |
| 1024 | } |
| 1025 | |
| 1026 | // UpdateStatus sets the "status" field to the value that was provided on create. |
| 1027 | func (u *NodeUpsertBulk) UpdateStatus() *NodeUpsertBulk { |