-
Notifications
You must be signed in to change notification settings - Fork 8
/
CreateStaticComputerGroup.go
59 lines (51 loc) · 1.52 KB
/
CreateStaticComputerGroup.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)
}
// Define the computers for the static group
computers := []jamfpro.ComputerGroupSubsetComputer{
{
ID: 2,
Name: "MacBook Pro",
MacAddress: "",
AltMacAddress: "",
SerialNumber: "D2FHXH22QB",
},
{
ID: 6,
Name: "MacBook Pro",
MacAddress: "",
AltMacAddress: "",
SerialNumber: "LT6M4DTF88",
},
}
// Create a new static computer group
newStaticGroup := &jamfpro.ResourceComputerGroup{
Name: "SDK Static Group Test",
IsSmart: false,
Site: jamfpro.SharedResourceSite{ID: -1, Name: "None"},
Computers: computers,
}
// Call CreateComputerGroup function
createdGroup, err := client.CreateComputerGroup(newStaticGroup)
if err != nil {
log.Fatalf("Error creating Computer Group: %v", err)
}
// Pretty print the created group in XML
groupXML, err := xml.MarshalIndent(createdGroup, "", " ") // Indent with 4 spaces
if err != nil {
log.Fatalf("Error marshaling Computer Group data: %v", err)
}
fmt.Println("Created Computer Group:\n", string(groupXML))
}