-
Notifications
You must be signed in to change notification settings - Fork 8
/
UpdateClientCheckinSettings.go
59 lines (49 loc) · 1.63 KB
/
UpdateClientCheckinSettings.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package main
import (
"encoding/json"
"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/joseph/github/go-api-sdk-jamfpro/clientauth.json"
authConfig, err := jamfpro.LoadClientAuthConfig(configFilePath)
if err != nil {
log.Fatalf("Failed to load client auth data, %v", err)
}
logger := http_client.NewDefaultLogger()
logLevel := http_client.LogLevelInfo
config := jamfpro.Config{
InstanceName: authConfig.InstanceName,
OverrideBaseDomain: authConfig.OverrideBaseDomain,
LogLevel: logLevel,
Logger: logger,
ClientID: authConfig.ClientID,
ClientSecret: authConfig.ClientSecret,
}
settingsUpdate := jamfpro.ResourceClientCheckinSettings{
CheckInFrequency: 60,
CreateHooks: true,
HookLog: true,
HookPolicies: true,
CreateStartupScript: true,
StartupLog: true,
StartupPolicies: true,
StartupSsh: true,
EnableLocalConfigurationProfiles: false,
}
client, err := jamfpro.NewClient(config)
if err != nil {
log.Fatalf("Failed to init client, %v", err)
}
clientChecinInfo, err := client.UpdateClientCheckinSettings(settingsUpdate)
if err != nil {
log.Fatalf("Failed to get client checkin info, %v", err)
}
checkinInfoJson, err := json.MarshalIndent(clientChecinInfo, "", " ")
if err != nil {
log.Fatalf("Failed to marshal json, %v", err)
}
fmt.Println(string(checkinInfoJson))
}