v9.0.0
This commit is contained in:
46
pkg/cloudbroker/group/get.go
Normal file
46
pkg/cloudbroker/group/get.go
Normal file
@@ -0,0 +1,46 @@
|
||||
package group
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
|
||||
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/internal/validators"
|
||||
)
|
||||
|
||||
// GetRequest struct to get details of the specified group.
|
||||
type GetRequest struct {
|
||||
// Group ID
|
||||
// Required: true
|
||||
GroupID string `url:"groupId" json:"groupId" validate:"required"`
|
||||
}
|
||||
|
||||
// Get gets details of the specified group as an ItemGroup struct
|
||||
func (g Group) Get(ctx context.Context, req GetRequest) (*ItemGroup, error) {
|
||||
res, err := g.GetRaw(ctx, req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
info := ItemGroup{}
|
||||
|
||||
err = json.Unmarshal(res, &info)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &info, nil
|
||||
}
|
||||
|
||||
// GetRaw gets details of the specified group as an array of bytes
|
||||
func (g Group) GetRaw(ctx context.Context, req GetRequest) ([]byte, error) {
|
||||
err := validators.ValidateRequest(req)
|
||||
if err != nil {
|
||||
return nil, validators.ValidationErrors(validators.GetErrors(err))
|
||||
}
|
||||
|
||||
url := "/cloudbroker/group/get"
|
||||
|
||||
res, err := g.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
||||
return res, err
|
||||
}
|
||||
15
pkg/cloudbroker/group/group.go
Normal file
15
pkg/cloudbroker/group/group.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package group
|
||||
|
||||
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/interfaces"
|
||||
|
||||
// Structure for creating request to group
|
||||
type Group struct {
|
||||
client interfaces.Caller
|
||||
}
|
||||
|
||||
// Builder for group endpoints
|
||||
func New(client interfaces.Caller) *Group {
|
||||
return &Group{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
68
pkg/cloudbroker/group/list.go
Normal file
68
pkg/cloudbroker/group/list.go
Normal file
@@ -0,0 +1,68 @@
|
||||
package group
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
|
||||
"repository.basistech.ru/BASIS/dynamix-golang-sdk/v9/internal/validators"
|
||||
)
|
||||
|
||||
// ListRequest struct to get list of group instances.
|
||||
type ListRequest struct {
|
||||
// Find by id.
|
||||
// Requires: false
|
||||
ByID string `url:"by_id,omitempty" json:"by_id,omitempty"`
|
||||
|
||||
// Find by list users.
|
||||
// Required: false
|
||||
User string `url:"user,omitempty" json:"user,omitempty"`
|
||||
|
||||
// Sort by one of supported fields, format +|-(field)
|
||||
// Required: false
|
||||
SortBy string `url:"sortBy,omitempty" json:"sortBy,omitempty" validate:"omitempty,sortBy"`
|
||||
|
||||
// Page number.
|
||||
// Required: false
|
||||
Page uint64 `url:"page,omitempty" json:"page,omitempty"`
|
||||
|
||||
// Page size, maximum - 100.
|
||||
// Required: false
|
||||
Size uint64 `url:"size,omitempty" json:"size,omitempty"`
|
||||
|
||||
// Find by active True or False.
|
||||
// Default: true
|
||||
// Required: false
|
||||
Active bool `url:"active" json:"active"`
|
||||
}
|
||||
|
||||
// List gets list of group instances as a ListGroups struct
|
||||
func (g Group) List(ctx context.Context, req ListRequest) (*ListGroups, error) {
|
||||
|
||||
res, err := g.ListRaw(ctx, req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
info := ListGroups{}
|
||||
|
||||
err = json.Unmarshal(res, &info)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &info, nil
|
||||
}
|
||||
|
||||
// ListRaw gets list of group instances as an array of bytes
|
||||
func (g Group) ListRaw(ctx context.Context, req ListRequest) ([]byte, error) {
|
||||
|
||||
if err := validators.ValidateRequest(req); err != nil {
|
||||
return nil, validators.ValidationErrors(validators.GetErrors(err))
|
||||
}
|
||||
|
||||
url := "/cloudbroker/group/list"
|
||||
|
||||
res, err := g.client.DecortApiCall(ctx, http.MethodPost, url, req)
|
||||
return res, err
|
||||
}
|
||||
42
pkg/cloudbroker/group/models.go
Normal file
42
pkg/cloudbroker/group/models.go
Normal file
@@ -0,0 +1,42 @@
|
||||
package group
|
||||
|
||||
type ItemGroup struct {
|
||||
// CKey
|
||||
CKey string `json:"_ckey"`
|
||||
|
||||
// Meta
|
||||
Meta []interface{} `json:"meta"`
|
||||
|
||||
// Is active
|
||||
Actice bool `json:"active"`
|
||||
|
||||
// Description
|
||||
Description string `json:"description"`
|
||||
|
||||
// Domain
|
||||
Domain string `json:"domain"`
|
||||
|
||||
// GID
|
||||
GID uint64 `json:"gid"`
|
||||
|
||||
// GUID
|
||||
GUID string `json:"guid"`
|
||||
|
||||
// ID
|
||||
ID string
|
||||
|
||||
// Last check
|
||||
LastCheck uint64 `json:"lastcheck"`
|
||||
|
||||
// Roles
|
||||
Roles []interface{} `json:"roles"`
|
||||
|
||||
// Users
|
||||
Users []string `json:"users"`
|
||||
}
|
||||
|
||||
type ListGroups struct {
|
||||
Data []ItemGroup `json:"data"`
|
||||
|
||||
EntryCount uint64 `json:"entryCount"`
|
||||
}
|
||||
Reference in New Issue
Block a user