storage

package
v1.2.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 22, 2025 License: AGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the storage type in the database.
	Label = "storage"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldUpdateType holds the string denoting the update_type field in the database.
	FieldUpdateType = "update_type"
	// FieldOs holds the string denoting the os field in the database.
	FieldOs = "os"
	// FieldArch holds the string denoting the arch field in the database.
	FieldArch = "arch"
	// FieldPackagePath holds the string denoting the package_path field in the database.
	FieldPackagePath = "package_path"
	// FieldPackageHashSha256 holds the string denoting the package_hash_sha256 field in the database.
	FieldPackageHashSha256 = "package_hash_sha256"
	// FieldFileType holds the string denoting the file_type field in the database.
	FieldFileType = "file_type"
	// FieldFileSize holds the string denoting the file_size field in the database.
	FieldFileSize = "file_size"
	// FieldFileHashes holds the string denoting the file_hashes field in the database.
	FieldFileHashes = "file_hashes"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldVersionStorages holds the string denoting the version_storages field in the database.
	FieldVersionStorages = "version_storages"
	// EdgeVersion holds the string denoting the version edge name in mutations.
	EdgeVersion = "version"
	// EdgeOldVersion holds the string denoting the old_version edge name in mutations.
	EdgeOldVersion = "old_version"
	// Table holds the table name of the storage in the database.
	Table = "storages"
	// VersionTable is the table that holds the version relation/edge.
	VersionTable = "storages"
	// VersionInverseTable is the table name for the Version entity.
	// It exists in this package in order to avoid circular dependency with the "version" package.
	VersionInverseTable = "versions"
	// VersionColumn is the table column denoting the version relation/edge.
	VersionColumn = "version_storages"
	// OldVersionTable is the table that holds the old_version relation/edge.
	OldVersionTable = "storages"
	// OldVersionInverseTable is the table name for the Version entity.
	// It exists in this package in order to avoid circular dependency with the "version" package.
	OldVersionInverseTable = "versions"
	// OldVersionColumn is the table column denoting the old_version relation/edge.
	OldVersionColumn = "storage_old_version"
)

Variables

View Source
var (
	// DefaultOs holds the default value on creation for the "os" field.
	DefaultOs string
	// DefaultArch holds the default value on creation for the "arch" field.
	DefaultArch string
	// DefaultFileSize holds the default value on creation for the "file_size" field.
	DefaultFileSize int64
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
)

Columns holds all SQL columns for storage fields.

View Source
var ForeignKeys = []string{
	"storage_old_version",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "storages" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Storage) predicate.Storage

And groups predicates with the AND operator between them.

func Arch added in v0.3.0

func Arch(v string) predicate.Storage

Arch applies equality check predicate on the "arch" field. It's identical to ArchEQ.

func ArchContains added in v0.3.0

func ArchContains(v string) predicate.Storage

ArchContains applies the Contains predicate on the "arch" field.

func ArchContainsFold added in v0.3.0

func ArchContainsFold(v string) predicate.Storage

ArchContainsFold applies the ContainsFold predicate on the "arch" field.

func ArchEQ added in v0.3.0

func ArchEQ(v string) predicate.Storage

ArchEQ applies the EQ predicate on the "arch" field.

func ArchEqualFold added in v0.3.0

func ArchEqualFold(v string) predicate.Storage

ArchEqualFold applies the EqualFold predicate on the "arch" field.

func ArchGT added in v0.3.0

func ArchGT(v string) predicate.Storage

ArchGT applies the GT predicate on the "arch" field.

func ArchGTE added in v0.3.0

func ArchGTE(v string) predicate.Storage

ArchGTE applies the GTE predicate on the "arch" field.

func ArchHasPrefix added in v0.3.0

func ArchHasPrefix(v string) predicate.Storage

ArchHasPrefix applies the HasPrefix predicate on the "arch" field.

func ArchHasSuffix added in v0.3.0

func ArchHasSuffix(v string) predicate.Storage

ArchHasSuffix applies the HasSuffix predicate on the "arch" field.

func ArchIn added in v0.3.0

func ArchIn(vs ...string) predicate.Storage

ArchIn applies the In predicate on the "arch" field.

func ArchLT added in v0.3.0

func ArchLT(v string) predicate.Storage

ArchLT applies the LT predicate on the "arch" field.

func ArchLTE added in v0.3.0

func ArchLTE(v string) predicate.Storage

ArchLTE applies the LTE predicate on the "arch" field.

func ArchNEQ added in v0.3.0

func ArchNEQ(v string) predicate.Storage

ArchNEQ applies the NEQ predicate on the "arch" field.

func ArchNotIn added in v0.3.0

func ArchNotIn(vs ...string) predicate.Storage

ArchNotIn applies the NotIn predicate on the "arch" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Storage

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Storage

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Storage

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Storage

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.Storage

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Storage

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Storage

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Storage

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.Storage

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func FileHashesIsNil added in v0.3.0

func FileHashesIsNil() predicate.Storage

FileHashesIsNil applies the IsNil predicate on the "file_hashes" field.

func FileHashesNotNil added in v0.3.0

func FileHashesNotNil() predicate.Storage

FileHashesNotNil applies the NotNil predicate on the "file_hashes" field.

func FileSize added in v0.12.0

func FileSize(v int64) predicate.Storage

FileSize applies equality check predicate on the "file_size" field. It's identical to FileSizeEQ.

func FileSizeEQ added in v0.12.0

func FileSizeEQ(v int64) predicate.Storage

FileSizeEQ applies the EQ predicate on the "file_size" field.

func FileSizeGT added in v0.12.0

func FileSizeGT(v int64) predicate.Storage

FileSizeGT applies the GT predicate on the "file_size" field.

func FileSizeGTE added in v0.12.0

func FileSizeGTE(v int64) predicate.Storage

FileSizeGTE applies the GTE predicate on the "file_size" field.

func FileSizeIn added in v0.12.0

func FileSizeIn(vs ...int64) predicate.Storage

FileSizeIn applies the In predicate on the "file_size" field.

func FileSizeLT added in v0.12.0

func FileSizeLT(v int64) predicate.Storage

FileSizeLT applies the LT predicate on the "file_size" field.

func FileSizeLTE added in v0.12.0

func FileSizeLTE(v int64) predicate.Storage

FileSizeLTE applies the LTE predicate on the "file_size" field.

func FileSizeNEQ added in v0.12.0

func FileSizeNEQ(v int64) predicate.Storage

FileSizeNEQ applies the NEQ predicate on the "file_size" field.

func FileSizeNotIn added in v0.12.0

func FileSizeNotIn(vs ...int64) predicate.Storage

FileSizeNotIn applies the NotIn predicate on the "file_size" field.

func FileType added in v0.12.0

func FileType(v string) predicate.Storage

FileType applies equality check predicate on the "file_type" field. It's identical to FileTypeEQ.

func FileTypeContains added in v0.12.0

func FileTypeContains(v string) predicate.Storage

FileTypeContains applies the Contains predicate on the "file_type" field.

func FileTypeContainsFold added in v0.12.0

func FileTypeContainsFold(v string) predicate.Storage

FileTypeContainsFold applies the ContainsFold predicate on the "file_type" field.

func FileTypeEQ added in v0.12.0

func FileTypeEQ(v string) predicate.Storage

FileTypeEQ applies the EQ predicate on the "file_type" field.

func FileTypeEqualFold added in v0.12.0

func FileTypeEqualFold(v string) predicate.Storage

FileTypeEqualFold applies the EqualFold predicate on the "file_type" field.

func FileTypeGT added in v0.12.0

func FileTypeGT(v string) predicate.Storage

FileTypeGT applies the GT predicate on the "file_type" field.

func FileTypeGTE added in v0.12.0

func FileTypeGTE(v string) predicate.Storage

FileTypeGTE applies the GTE predicate on the "file_type" field.

func FileTypeHasPrefix added in v0.12.0

func FileTypeHasPrefix(v string) predicate.Storage

FileTypeHasPrefix applies the HasPrefix predicate on the "file_type" field.

func FileTypeHasSuffix added in v0.12.0

func FileTypeHasSuffix(v string) predicate.Storage

FileTypeHasSuffix applies the HasSuffix predicate on the "file_type" field.

func FileTypeIn added in v0.12.0

func FileTypeIn(vs ...string) predicate.Storage

FileTypeIn applies the In predicate on the "file_type" field.

func FileTypeIsNil added in v0.12.0

func FileTypeIsNil() predicate.Storage

FileTypeIsNil applies the IsNil predicate on the "file_type" field.

func FileTypeLT added in v0.12.0

func FileTypeLT(v string) predicate.Storage

FileTypeLT applies the LT predicate on the "file_type" field.

func FileTypeLTE added in v0.12.0

func FileTypeLTE(v string) predicate.Storage

FileTypeLTE applies the LTE predicate on the "file_type" field.

func FileTypeNEQ added in v0.12.0

func FileTypeNEQ(v string) predicate.Storage

FileTypeNEQ applies the NEQ predicate on the "file_type" field.

func FileTypeNotIn added in v0.12.0

func FileTypeNotIn(vs ...string) predicate.Storage

FileTypeNotIn applies the NotIn predicate on the "file_type" field.

func FileTypeNotNil added in v0.12.0

func FileTypeNotNil() predicate.Storage

FileTypeNotNil applies the NotNil predicate on the "file_type" field.

func HasOldVersion added in v0.3.0

func HasOldVersion() predicate.Storage

HasOldVersion applies the HasEdge predicate on the "old_version" edge.

func HasOldVersionWith added in v0.3.0

func HasOldVersionWith(preds ...predicate.Version) predicate.Storage

HasOldVersionWith applies the HasEdge predicate on the "old_version" edge with a given conditions (other predicates).

func HasVersion

func HasVersion() predicate.Storage

HasVersion applies the HasEdge predicate on the "version" edge.

func HasVersionWith

func HasVersionWith(preds ...predicate.Version) predicate.Storage

HasVersionWith applies the HasEdge predicate on the "version" edge with a given conditions (other predicates).

func ID

func ID(id int) predicate.Storage

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Storage

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Storage

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Storage

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Storage

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Storage

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Storage

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Storage

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Storage

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Storage) predicate.Storage

Or groups predicates with the OR operator between them.

func Os added in v0.3.0

func Os(v string) predicate.Storage

Os applies equality check predicate on the "os" field. It's identical to OsEQ.

func OsContains added in v0.3.0

func OsContains(v string) predicate.Storage

OsContains applies the Contains predicate on the "os" field.

func OsContainsFold added in v0.3.0

func OsContainsFold(v string) predicate.Storage

OsContainsFold applies the ContainsFold predicate on the "os" field.

func OsEQ added in v0.3.0

func OsEQ(v string) predicate.Storage

OsEQ applies the EQ predicate on the "os" field.

func OsEqualFold added in v0.3.0

func OsEqualFold(v string) predicate.Storage

OsEqualFold applies the EqualFold predicate on the "os" field.

func OsGT added in v0.3.0

func OsGT(v string) predicate.Storage

OsGT applies the GT predicate on the "os" field.

func OsGTE added in v0.3.0

func OsGTE(v string) predicate.Storage

OsGTE applies the GTE predicate on the "os" field.

func OsHasPrefix added in v0.3.0

func OsHasPrefix(v string) predicate.Storage

OsHasPrefix applies the HasPrefix predicate on the "os" field.

func OsHasSuffix added in v0.3.0

func OsHasSuffix(v string) predicate.Storage

OsHasSuffix applies the HasSuffix predicate on the "os" field.

func OsIn added in v0.3.0

func OsIn(vs ...string) predicate.Storage

OsIn applies the In predicate on the "os" field.

func OsLT added in v0.3.0

func OsLT(v string) predicate.Storage

OsLT applies the LT predicate on the "os" field.

func OsLTE added in v0.3.0

func OsLTE(v string) predicate.Storage

OsLTE applies the LTE predicate on the "os" field.

func OsNEQ added in v0.3.0

func OsNEQ(v string) predicate.Storage

OsNEQ applies the NEQ predicate on the "os" field.

func OsNotIn added in v0.3.0

func OsNotIn(vs ...string) predicate.Storage

OsNotIn applies the NotIn predicate on the "os" field.

func PackageHashSha256 added in v0.4.0

func PackageHashSha256(v string) predicate.Storage

PackageHashSha256 applies equality check predicate on the "package_hash_sha256" field. It's identical to PackageHashSha256EQ.

func PackageHashSha256Contains added in v0.4.0

func PackageHashSha256Contains(v string) predicate.Storage

PackageHashSha256Contains applies the Contains predicate on the "package_hash_sha256" field.

func PackageHashSha256ContainsFold added in v0.4.0

func PackageHashSha256ContainsFold(v string) predicate.Storage

PackageHashSha256ContainsFold applies the ContainsFold predicate on the "package_hash_sha256" field.

func PackageHashSha256EQ added in v0.4.0

func PackageHashSha256EQ(v string) predicate.Storage

PackageHashSha256EQ applies the EQ predicate on the "package_hash_sha256" field.

func PackageHashSha256EqualFold added in v0.4.0

func PackageHashSha256EqualFold(v string) predicate.Storage

PackageHashSha256EqualFold applies the EqualFold predicate on the "package_hash_sha256" field.

func PackageHashSha256GT added in v0.4.0

func PackageHashSha256GT(v string) predicate.Storage

PackageHashSha256GT applies the GT predicate on the "package_hash_sha256" field.

func PackageHashSha256GTE added in v0.4.0

func PackageHashSha256GTE(v string) predicate.Storage

PackageHashSha256GTE applies the GTE predicate on the "package_hash_sha256" field.

func PackageHashSha256HasPrefix added in v0.4.0

func PackageHashSha256HasPrefix(v string) predicate.Storage

PackageHashSha256HasPrefix applies the HasPrefix predicate on the "package_hash_sha256" field.

func PackageHashSha256HasSuffix added in v0.4.0

func PackageHashSha256HasSuffix(v string) predicate.Storage

PackageHashSha256HasSuffix applies the HasSuffix predicate on the "package_hash_sha256" field.

func PackageHashSha256In added in v0.4.0

func PackageHashSha256In(vs ...string) predicate.Storage

PackageHashSha256In applies the In predicate on the "package_hash_sha256" field.

func PackageHashSha256IsNil added in v0.4.0

func PackageHashSha256IsNil() predicate.Storage

PackageHashSha256IsNil applies the IsNil predicate on the "package_hash_sha256" field.

func PackageHashSha256LT added in v0.4.0

func PackageHashSha256LT(v string) predicate.Storage

PackageHashSha256LT applies the LT predicate on the "package_hash_sha256" field.

func PackageHashSha256LTE added in v0.4.0

func PackageHashSha256LTE(v string) predicate.Storage

PackageHashSha256LTE applies the LTE predicate on the "package_hash_sha256" field.

func PackageHashSha256NEQ added in v0.4.0

func PackageHashSha256NEQ(v string) predicate.Storage

PackageHashSha256NEQ applies the NEQ predicate on the "package_hash_sha256" field.

func PackageHashSha256NotIn added in v0.4.0

func PackageHashSha256NotIn(vs ...string) predicate.Storage

PackageHashSha256NotIn applies the NotIn predicate on the "package_hash_sha256" field.

func PackageHashSha256NotNil added in v0.4.0

func PackageHashSha256NotNil() predicate.Storage

PackageHashSha256NotNil applies the NotNil predicate on the "package_hash_sha256" field.

func PackagePath added in v0.3.0

func PackagePath(v string) predicate.Storage

PackagePath applies equality check predicate on the "package_path" field. It's identical to PackagePathEQ.

func PackagePathContains added in v0.3.0

func PackagePathContains(v string) predicate.Storage

PackagePathContains applies the Contains predicate on the "package_path" field.

func PackagePathContainsFold added in v0.3.0

func PackagePathContainsFold(v string) predicate.Storage

PackagePathContainsFold applies the ContainsFold predicate on the "package_path" field.

func PackagePathEQ added in v0.3.0

func PackagePathEQ(v string) predicate.Storage

PackagePathEQ applies the EQ predicate on the "package_path" field.

func PackagePathEqualFold added in v0.3.0

func PackagePathEqualFold(v string) predicate.Storage

PackagePathEqualFold applies the EqualFold predicate on the "package_path" field.

func PackagePathGT added in v0.3.0

func PackagePathGT(v string) predicate.Storage

PackagePathGT applies the GT predicate on the "package_path" field.

func PackagePathGTE added in v0.3.0

func PackagePathGTE(v string) predicate.Storage

PackagePathGTE applies the GTE predicate on the "package_path" field.

func PackagePathHasPrefix added in v0.3.0

func PackagePathHasPrefix(v string) predicate.Storage

PackagePathHasPrefix applies the HasPrefix predicate on the "package_path" field.

func PackagePathHasSuffix added in v0.3.0

func PackagePathHasSuffix(v string) predicate.Storage

PackagePathHasSuffix applies the HasSuffix predicate on the "package_path" field.

func PackagePathIn added in v0.3.0

func PackagePathIn(vs ...string) predicate.Storage

PackagePathIn applies the In predicate on the "package_path" field.

func PackagePathIsNil added in v0.3.0

func PackagePathIsNil() predicate.Storage

PackagePathIsNil applies the IsNil predicate on the "package_path" field.

func PackagePathLT added in v0.3.0

func PackagePathLT(v string) predicate.Storage

PackagePathLT applies the LT predicate on the "package_path" field.

func PackagePathLTE added in v0.3.0

func PackagePathLTE(v string) predicate.Storage

PackagePathLTE applies the LTE predicate on the "package_path" field.

func PackagePathNEQ added in v0.3.0

func PackagePathNEQ(v string) predicate.Storage

PackagePathNEQ applies the NEQ predicate on the "package_path" field.

func PackagePathNotIn added in v0.3.0

func PackagePathNotIn(vs ...string) predicate.Storage

PackagePathNotIn applies the NotIn predicate on the "package_path" field.

func PackagePathNotNil added in v0.3.0

func PackagePathNotNil() predicate.Storage

PackagePathNotNil applies the NotNil predicate on the "package_path" field.

func UpdateTypeEQ added in v0.3.0

func UpdateTypeEQ(v UpdateType) predicate.Storage

UpdateTypeEQ applies the EQ predicate on the "update_type" field.

func UpdateTypeIn added in v0.3.0

func UpdateTypeIn(vs ...UpdateType) predicate.Storage

UpdateTypeIn applies the In predicate on the "update_type" field.

func UpdateTypeNEQ added in v0.3.0

func UpdateTypeNEQ(v UpdateType) predicate.Storage

UpdateTypeNEQ applies the NEQ predicate on the "update_type" field.

func UpdateTypeNotIn added in v0.3.0

func UpdateTypeNotIn(vs ...UpdateType) predicate.Storage

UpdateTypeNotIn applies the NotIn predicate on the "update_type" field.

func UpdateTypeValidator added in v0.3.0

func UpdateTypeValidator(ut UpdateType) error

UpdateTypeValidator is a validator for the "update_type" field enum values. It is called by the builders before save.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

func VersionStorages added in v0.5.1

func VersionStorages(v int) predicate.Storage

VersionStorages applies equality check predicate on the "version_storages" field. It's identical to VersionStoragesEQ.

func VersionStoragesEQ added in v0.5.1

func VersionStoragesEQ(v int) predicate.Storage

VersionStoragesEQ applies the EQ predicate on the "version_storages" field.

func VersionStoragesIn added in v0.5.1

func VersionStoragesIn(vs ...int) predicate.Storage

VersionStoragesIn applies the In predicate on the "version_storages" field.

func VersionStoragesNEQ added in v0.5.1

func VersionStoragesNEQ(v int) predicate.Storage

VersionStoragesNEQ applies the NEQ predicate on the "version_storages" field.

func VersionStoragesNotIn added in v0.5.1

func VersionStoragesNotIn(vs ...int) predicate.Storage

VersionStoragesNotIn applies the NotIn predicate on the "version_storages" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Storage queries.

func ByArch added in v0.3.0

func ByArch(opts ...sql.OrderTermOption) OrderOption

ByArch orders the results by the arch field.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByFileSize added in v0.12.0

func ByFileSize(opts ...sql.OrderTermOption) OrderOption

ByFileSize orders the results by the file_size field.

func ByFileType added in v0.12.0

func ByFileType(opts ...sql.OrderTermOption) OrderOption

ByFileType orders the results by the file_type field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByOldVersionField added in v0.3.0

func ByOldVersionField(field string, opts ...sql.OrderTermOption) OrderOption

ByOldVersionField orders the results by old_version field.

func ByOs added in v0.3.0

func ByOs(opts ...sql.OrderTermOption) OrderOption

ByOs orders the results by the os field.

func ByPackageHashSha256 added in v0.4.0

func ByPackageHashSha256(opts ...sql.OrderTermOption) OrderOption

ByPackageHashSha256 orders the results by the package_hash_sha256 field.

func ByPackagePath added in v0.3.0

func ByPackagePath(opts ...sql.OrderTermOption) OrderOption

ByPackagePath orders the results by the package_path field.

func ByUpdateType added in v0.3.0

func ByUpdateType(opts ...sql.OrderTermOption) OrderOption

ByUpdateType orders the results by the update_type field.

func ByVersionField

func ByVersionField(field string, opts ...sql.OrderTermOption) OrderOption

ByVersionField orders the results by version field.

func ByVersionStorages added in v0.5.1

func ByVersionStorages(opts ...sql.OrderTermOption) OrderOption

ByVersionStorages orders the results by the version_storages field.

type UpdateType added in v0.3.0

type UpdateType string

UpdateType defines the type for the "update_type" enum field.

const (
	UpdateTypeFull        UpdateType = "full"
	UpdateTypeIncremental UpdateType = "incremental"
)

UpdateType values.

func (UpdateType) String added in v0.3.0

func (ut UpdateType) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL