-
Notifications
You must be signed in to change notification settings - Fork 8
/
DeleteComputerByID.go
40 lines (31 loc) · 1.02 KB
/
DeleteComputerByID.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package main
import (
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/http_client"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
func main() {
configFilePath := "/Users/dafyddwatkins/GitHub/deploymenttheory/go-api-sdk-jamfpro/clientauth.json"
authConfig, err := jamfpro.LoadClientAuthConfig(configFilePath)
if err != nil {
log.Fatalf("Failed to load client OAuth configuration: %v", err)
}
config := jamfpro.Config{
InstanceName: authConfig.InstanceName,
LogLevel: http_client.LogLevelDebug,
Logger: http_client.NewDefaultLogger(),
ClientID: authConfig.ClientID,
ClientSecret: authConfig.ClientSecret,
}
client, err := jamfpro.NewClient(config)
if err != nil {
log.Fatalf("Failed to create Jamf Pro client: %v", err)
}
computerID := 6 // Replace with actual computer ID
err = client.DeleteComputerByID(computerID)
if err != nil {
log.Fatalf("Error deleting computer by ID: %v", err)
}
fmt.Printf("Successfully deleted computer with ID: %d\n", computerID)
}