-
Notifications
You must be signed in to change notification settings - Fork 8
/
UpdateMobileDeviceEnrollmentProfileByID.go
69 lines (61 loc) · 1.91 KB
/
UpdateMobileDeviceEnrollmentProfileByID.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
package main
import (
"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 profile to be updated
profileToUpdate := jamfpro.ResourceMobileDeviceEnrollmentProfile{
General: jamfpro.MobileDeviceEnrollmentProfileSubsetGeneral{
Name: "Configurator Enrollment Profile",
Description: "string",
},
Location: jamfpro.MobileDeviceEnrollmentProfileSubsetLocation{
// Initialize with empty or specific values if required
Username: "",
Realname: "",
RealName: "",
EmailAddress: "",
Position: "",
Phone: "",
PhoneNumber: "",
Department: "",
Building: "",
Room: 0, // or specific room number
},
Purchasing: jamfpro.MobileDeviceEnrollmentProfileSubsetPurchasing{
IsPurchased: true,
IsLeased: false,
PONumber: "",
Vendor: "",
ApplecareID: "",
PurchasePrice: "",
PurchasingAccount: "",
PODate: "",
PODateEpoch: 0,
PODateUTC: "",
WarrantyExpires: "",
WarrantyExpiresEpoch: 0,
WarrantyExpiresUTC: "",
LeaseExpires: "",
LeaseExpiresEpoch: 0,
LeaseExpiresUTC: "",
LifeExpectancy: 0,
PurchasingContact: "",
},
}
profileID := 1 // Replace 123 with the actual ID
updatedProfile, err := client.UpdateMobileDeviceEnrollmentProfileByID(profileID, &profileToUpdate)
if err != nil {
log.Fatalf("Error updating profile: %v", err)
}
fmt.Println("Updated Profile:", updatedProfile)
}