2023-03-13 10:44:58 +01:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"forge.cadoles.com/Cadoles/emissary/internal/spec"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2023-06-25 19:45:43 +02:00
|
|
|
func (c *Client) DeleteAgentSpec(ctx context.Context, agentID AgentID, name SpecName, funcs ...OptionFunc) (SpecName, error) {
|
2023-03-13 10:44:58 +01:00
|
|
|
payload := struct {
|
|
|
|
Name spec.Name `json:"name"`
|
|
|
|
}{
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
|
|
|
|
response := withResponse[struct {
|
|
|
|
Name spec.Name `json:"name"`
|
|
|
|
}]()
|
|
|
|
|
|
|
|
path := fmt.Sprintf("/api/v1/agents/%d/specs", agentID)
|
|
|
|
|
|
|
|
if err := c.apiDelete(ctx, path, payload, &response, funcs...); err != nil {
|
|
|
|
return "", errors.WithStack(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if response.Error != nil {
|
|
|
|
return "", errors.WithStack(response.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.Data.Name, nil
|
|
|
|
}
|