-
Notifications
You must be signed in to change notification settings - Fork 8
/
CreateFileAndProcessesPolicy.go
169 lines (158 loc) · 5.71 KB
/
CreateFileAndProcessesPolicy.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package main
import (
"encoding/xml"
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/http_client" // Import http_client for logging
"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 // LogLevelNone // LogLevelWarning // LogLevelInfo // LogLevelDebug
// 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)
}
// Define a new policy with all required fields
newPolicy := &jamfpro.ResourcePolicy{
General: jamfpro.PolicySubsetGeneral{
Name: "jamfpro-sdk-example-FileAndProcesses-policy-config",
Enabled: false,
Trigger: "EVENT",
TriggerCheckin: false,
TriggerEnrollmentComplete: false,
TriggerLogin: false,
TriggerLogout: false,
TriggerNetworkStateChanged: false,
TriggerStartup: false,
Frequency: "Once per computer",
RetryEvent: "none",
RetryAttempts: -1,
NotifyOnEachFailedRetry: false,
LocationUserOnly: false,
TargetDrive: "/",
Offline: false,
Category: jamfpro.PolicyCategory{
ID: -1,
Name: "No category assigned",
DisplayIn: false,
FeatureIn: false,
},
DateTimeLimitations: jamfpro.PolicySubsetGeneralDateTimeLimitations{
// Initialize as needed
},
NetworkLimitations: jamfpro.PolicySubsetGeneralNetworkLimitations{
MinimumNetworkConnection: "No Minimum",
AnyIPAddress: true,
NetworkSegments: "",
},
OverrideDefaultSettings: jamfpro.PolicySubsetGeneralOverrideSettings{
TargetDrive: "/",
DistributionPoint: "default",
ForceAfpSmb: false,
SUS: "default",
},
NetworkRequirements: "Any",
Site: jamfpro.SharedResourceSite{
ID: -1,
Name: "None",
},
},
SelfService: jamfpro.PolicySubsetSelfService{
UseForSelfService: true,
SelfServiceDisplayName: "",
InstallButtonText: "Install",
ReinstallButtonText: "",
SelfServiceDescription: "",
ForceUsersToViewDescription: false,
//SelfServiceIcon: jamfpro.Icon{ID: -1, Filename: "", URI: ""},
FeatureOnMainPage: false,
},
AccountMaintenance: jamfpro.PolicySubsetAccountMaintenance{
ManagementAccount: jamfpro.PolicySubsetAccountMaintenanceManagementAccount{
Action: "doNotChange",
ManagedPassword: "",
ManagedPasswordLength: 0,
},
OpenFirmwareEfiPassword: jamfpro.PolicySubsetAccountMaintenanceOpenFirmwareEfiPassword{
OfMode: "none",
OfPassword: "",
OfPasswordSHA256: "",
},
},
Maintenance: jamfpro.PolicySubsetMaintenance{
Recon: false,
ResetName: false,
InstallAllCachedPackages: false,
Heal: false,
Prebindings: false,
Permissions: false,
Byhost: false,
SystemCache: false,
UserCache: false,
Verify: false,
},
// File and processes policy
FilesProcesses: jamfpro.PolicySubsetFilesProcesses{
SearchByPath: "thing",
DeleteFile: true,
LocateFile: "thing",
UpdateLocateDatabase: true,
SpotlightSearch: "thing",
SearchForProcess: "thing",
KillProcess: true,
RunCommand: "thing",
},
UserInteraction: jamfpro.PolicySubsetUserInteraction{
MessageStart: "thing",
AllowUserToDefer: true,
AllowDeferralUntilUtc: "",
AllowDeferralMinutes: 1440,
MessageFinish: "thing",
},
Reboot: jamfpro.PolicySubsetReboot{
Message: "This computer will restart in 5 minutes. Please save anything you are working on and log out by choosing Log Out from the bottom of the Apple menu.",
StartupDisk: "Current Startup Disk",
SpecifyStartup: "",
NoUserLoggedIn: "Do not restart",
UserLoggedIn: "Do not restart",
MinutesUntilReboot: 5,
StartRebootTimerImmediately: false,
FileVault2Reboot: false,
},
}
policyXML, err := xml.MarshalIndent(newPolicy, "", " ")
if err != nil {
log.Fatalf("Error marshaling policy data: %v", err)
}
fmt.Println("Policy Details to be Sent:\n", string(policyXML))
// Call CreatePolicy function
createdPolicy, err := client.CreatePolicy(newPolicy)
if err != nil {
log.Fatalf("Error creating policy: %v", err)
}
// Pretty print the created policy details in XML
policyXML, err = xml.MarshalIndent(createdPolicy, "", " ") // Indent with 4 spaces and use '='
if err != nil {
log.Fatalf("Error marshaling policy details data: %v", err)
}
fmt.Println("Created Policy Details:\n", string(policyXML))
}