v1.2.1
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
package computeci
|
||||
|
||||
import (
|
||||
"github.com/rudecs/decort-sdk/interfaces"
|
||||
"repos.digitalenergy.online/BASIS/decort-golang-sdk/interfaces"
|
||||
)
|
||||
|
||||
// Structure for creating request to computeci
|
||||
|
||||
51
pkg/cloudapi/computeci/filter.go
Normal file
51
pkg/cloudapi/computeci/filter.go
Normal file
@@ -0,0 +1,51 @@
|
||||
package computeci
|
||||
|
||||
// FilterByID returns ListComputeCI with specified ID.
|
||||
func (lci ListComputeCI) FilterByID(id uint64) ListComputeCI {
|
||||
predicate := func(ic ItemComputeCI) bool {
|
||||
return ic.ID == id
|
||||
}
|
||||
|
||||
return lci.FilterFunc(predicate)
|
||||
}
|
||||
|
||||
// FilterByName returns ListComputeCI with specified Name.
|
||||
func (lci ListComputeCI) FilterByName(name string) ListComputeCI {
|
||||
predicate := func(ic ItemComputeCI) bool {
|
||||
return ic.Name == name
|
||||
}
|
||||
|
||||
return lci.FilterFunc(predicate)
|
||||
}
|
||||
|
||||
// FilterByStatus returns ListComputeCI with specified Status.
|
||||
func (lci ListComputeCI) FilterByStatus(status string) ListComputeCI {
|
||||
predicate := func(ic ItemComputeCI) bool {
|
||||
return ic.Status == status
|
||||
}
|
||||
|
||||
return lci.FilterFunc(predicate)
|
||||
}
|
||||
|
||||
// FilterFunc allows filtering ListComputeCI based on a user-specified predicate.
|
||||
func (lci ListComputeCI) FilterFunc(predicate func(ItemComputeCI) bool) ListComputeCI {
|
||||
var result ListComputeCI
|
||||
|
||||
for _, item := range lci {
|
||||
if predicate(item) {
|
||||
result = append(result, item)
|
||||
}
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
// FindOne returns first found ItemComputeCI
|
||||
// If none was found, returns an empty struct.
|
||||
func (lci ListComputeCI) FindOne() ItemComputeCI {
|
||||
if len(lci) == 0 {
|
||||
return ItemComputeCI{}
|
||||
}
|
||||
|
||||
return lci[0]
|
||||
}
|
||||
43
pkg/cloudapi/computeci/serialize.go
Normal file
43
pkg/cloudapi/computeci/serialize.go
Normal file
@@ -0,0 +1,43 @@
|
||||
package computeci
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
||||
"repos.digitalenergy.online/BASIS/decort-golang-sdk/internal/serialization"
|
||||
)
|
||||
|
||||
// Serialize returns JSON-serialized []byte. Used as a wrapper over json.Marshal and json.MarshalIndent functions.
|
||||
//
|
||||
// In order to serialize with indent make sure to follow these guidelines:
|
||||
// - First argument -> prefix
|
||||
// - Second argument -> indent
|
||||
func (lci ListComputeCI) Serialize(params ...string) (serialization.Serialized, error) {
|
||||
if len(lci) == 0 {
|
||||
return []byte{}, nil
|
||||
}
|
||||
|
||||
if len(params) > 1 {
|
||||
prefix := params[0]
|
||||
indent := params[1]
|
||||
|
||||
return json.MarshalIndent(lci, prefix, indent)
|
||||
}
|
||||
|
||||
return json.Marshal(lci)
|
||||
}
|
||||
|
||||
// Serialize returns JSON-serialized []byte. Used as a wrapper over json.Marshal and json.MarshalIndent functions.
|
||||
//
|
||||
// In order to serialize with indent make sure to follow these guidelines:
|
||||
// - First argument -> prefix
|
||||
// - Second argument -> indent
|
||||
func (ic ItemComputeCI) Serialize(params ...string) (serialization.Serialized, error) {
|
||||
if len(params) > 1 {
|
||||
prefix := params[0]
|
||||
indent := params[1]
|
||||
|
||||
return json.MarshalIndent(ic, prefix, indent)
|
||||
}
|
||||
|
||||
return json.Marshal(ic)
|
||||
}
|
||||
Reference in New Issue
Block a user