2024-11-28 16:49:41 +01:00
package resources
2024-07-18 11:51:12 +02:00
import (
2024-11-28 11:05:54 +01:00
"cloud.o-forge.io/core/oc-lib/models/resources/resource_model"
2024-07-18 13:35:14 +02:00
"cloud.o-forge.io/core/oc-lib/models/utils"
2024-08-12 16:11:25 +02:00
"cloud.o-forge.io/core/oc-lib/tools"
2024-07-18 11:51:12 +02:00
)
2024-11-07 12:39:28 +01:00
type StorageSize int
2024-10-02 16:39:13 +02:00
// StorageType - Enum that defines the type of storage
const (
2024-11-07 12:39:28 +01:00
GB StorageSize = iota
2024-10-02 16:39:13 +02:00
MB
KB
)
var argoType = [ ... ] string {
"Gi" ,
"Mi" ,
"Ki" ,
}
// New creates a new instance of the StorageResource struct
2024-11-07 12:46:00 +01:00
func ( dma StorageSize ) ToArgo ( ) string {
2024-10-02 16:39:13 +02:00
return argoType [ dma ]
}
2024-11-07 11:05:24 +01:00
// enum of a data type
2024-11-07 11:36:31 +01:00
type StorageType int
2024-11-07 12:39:28 +01:00
2024-11-07 11:05:24 +01:00
const (
2024-11-07 11:36:31 +01:00
FILE = iota
STREAM
API
DATABASE
S3
MEMORY
HARDWARE
2024-11-07 11:05:24 +01:00
)
2024-08-30 14:50:48 +02:00
/ *
* StorageResource is a struct that represents a storage resource
* it defines the resource storage
* /
2024-07-19 10:54:58 +02:00
type StorageResource struct {
2024-10-09 09:05:49 +02:00
resource_model . AbstractResource // AbstractResource contains the basic fields of an object (id, name)
resource_model . WebResource
2024-11-07 12:39:28 +01:00
Type StorageType ` bson:"type,omitempty" json:"type,omitempty" ` // Type is the type of the storage
2024-10-09 09:05:49 +02:00
Acronym string ` bson:"acronym,omitempty" json:"acronym,omitempty" ` // Acronym is the acronym of the storage
2024-11-07 12:39:28 +01:00
SizeType StorageSize ` bson:"size_type" json:"size_type" default:"0" ` // SizeType is the type of the storage size
2024-10-09 09:05:49 +02:00
Size uint ` bson:"size,omitempty" json:"size,omitempty" ` // Size is the size of the storage
Local bool ` bson:"local" json:"local" ` // Local is a flag that indicates if the storage is local
Encryption bool ` bson:"encryption,omitempty" json:"encryption,omitempty" ` // Encryption is a flag that indicates if the storage is encrypted
Redundancy string ` bson:"redundancy,omitempty" json:"redundancy,omitempty" ` // Redundancy is the redundancy of the storage
Throughput string ` bson:"throughput,omitempty" json:"throughput,omitempty" ` // Throughput is the throughput of the storage
2024-07-18 11:51:12 +02:00
}
2024-12-04 11:33:08 +01:00
func ( d * StorageResource ) GetAccessor ( username string , peerID string , groups [ ] string , caller * tools . HTTPCaller ) utils . Accessor {
return New [ * StorageResource ] ( tools . STORAGE_RESOURCE , username , peerID , groups , caller , func ( ) utils . DBObject { return & StorageResource { } } ) // Create a new instance of the accessor
2024-07-18 11:51:12 +02:00
}