-
Notifications
You must be signed in to change notification settings - Fork 8
/
CreateUserGroupStatic.go
78 lines (68 loc) · 2.17 KB
/
CreateUserGroupStatic.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package main
import (
"encoding/xml"
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/http_client"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
func main() {
// Define the path to the JSON configuration file
configFilePath := "/Users/dafyddwatkins/GitHub/deploymenttheory/go-api-sdk-jamfpro/clientauth.json"
// Load the client OAuth credentials from the configuration file
authConfig, err := jamfpro.LoadClientAuthConfig(configFilePath)
if err != nil {
log.Fatalf("Failed to load client OAuth configuration: %v", err)
}
// Instantiate the default logger and set the desired log level
logger := http_client.NewDefaultLogger()
logLevel := http_client.LogLevelDebug // Adjust log level as needed
// Configuration for the jamfpro
config := jamfpro.Config{
InstanceName: authConfig.InstanceName,
OverrideBaseDomain: authConfig.OverrideBaseDomain,
LogLevel: logLevel,
Logger: logger,
ClientID: authConfig.ClientID,
ClientSecret: authConfig.ClientSecret,
}
// Create a new jamfpro client instance
client, err := jamfpro.NewClient(config)
if err != nil {
log.Fatalf("Failed to create Jamf Pro client: %v", err)
}
// Example user group to be created
newUserGroup := &jamfpro.ResponseUserGroup{
Name: "Static Group",
IsSmart: false,
IsNotifyOnChange: false,
Site: jamfpro.UserGroupSite{
ID: -1,
Name: "None",
},
Users: []jamfpro.UserGroupUserItem{
{
ID: 1938,
Username: "Mercy",
EmailAddress: "mercy@company.com",
},
{
ID: 1939,
Username: "Aaron",
EmailAddress: "aaron@company.com",
},
},
}
// Call CreateUserGroup to create a new user group
createdUserGroup, err := client.CreateUserGroup(newUserGroup)
if err != nil {
fmt.Println("Error creating user group:", err)
return
}
// Pretty print the created user group details in XML
createdUserGroupXML, err := xml.MarshalIndent(createdUserGroup, "", " ") // Indent with 4 spaces
if err != nil {
log.Fatalf("Error marshaling created user group data: %v", err)
}
fmt.Println("Created User Group Details:\n", string(createdUserGroupXML))
}