28 lines
608 B
Go
28 lines
608 B
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/datastore"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (c *Client) DeleteAgent(ctx context.Context, agentID AgentID, funcs ...OptionFunc) (AgentID, error) {
|
|
response := withResponse[struct {
|
|
AgentID int64 `json:"agentId"`
|
|
}]()
|
|
|
|
path := fmt.Sprintf("/api/v1/agents/%d", agentID)
|
|
|
|
if err := c.apiDelete(ctx, path, nil, &response, funcs...); err != nil {
|
|
return 0, errors.WithStack(err)
|
|
}
|
|
|
|
if response.Error != nil {
|
|
return 0, errors.WithStack(response.Error)
|
|
}
|
|
|
|
return datastore.AgentID(response.Data.AgentID), nil
|
|
}
|