-
Notifications
You must be signed in to change notification settings - Fork 8
/
UpdateUserGroupByNameSmart.go
59 lines (51 loc) · 1.57 KB
/
UpdateUserGroupByNameSmart.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/xml"
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
func main() {
// Define the path to the JSON configuration file
configFilePath := "/Users/dafyddwatkins/localtesting/jamfpro/clientconfig.json"
// Initialize the Jamf Pro client with the HTTP client configuration
client, err := jamfpro.BuildClientWithConfigFile(configFilePath)
if err != nil {
log.Fatalf("Failed to initialize Jamf Pro client: %v", err)
}
// Example user group to be created
updatedUserGroup := &jamfpro.ResourceUserGroup{
Name: "Teachers",
IsSmart: true,
IsNotifyOnChange: true,
Site: jamfpro.SharedResourceSite{
ID: -1,
Name: "None",
},
Criteria: []jamfpro.SharedSubsetCriteria{
{
Name: "Email Address",
Priority: 0,
AndOr: "and",
SearchType: "like",
Value: "company.com",
OpeningParen: false,
ClosingParen: false,
},
},
}
// Replace with the actual ID of the user group you want to update
userGroupName := "Teachers"
// Call UpdateUserGroupByID to update the user group
updatedGroup, err := client.UpdateUserGroupByName(userGroupName, updatedUserGroup)
if err != nil {
fmt.Println("Error updating user group:", err)
return
}
// Pretty print the created user group details in XML
createdUserGroupXML, err := xml.MarshalIndent(updatedGroup, "", " ") // 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))
}