-
Notifications
You must be signed in to change notification settings - Fork 8
/
GetMacOSConfigurationProfileNameByID.go
46 lines (37 loc) · 1.38 KB
/
GetMacOSConfigurationProfileNameByID.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
package main
import (
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
func main() {
// Define the path to the JSON configuration file inside the main function
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)
}
// Configuration for the jamfpro
config := jamfpro.Config{
InstanceName: authConfig.InstanceName,
DebugMode: true,
Logger: jamfpro.NewDefaultLogger(),
ClientID: authConfig.ClientID,
ClientSecret: authConfig.ClientSecret,
}
// Create a new jamfpro client instanceclient,
client, err := jamfpro.NewClient(config)
if err != nil {
log.Fatalf("Failed to create Jamf Pro client: %v", err)
}
// Let's assume you want to get the name of a macOS Configuration Profile with ID 23.
profileID := 23
// Call GetMacOSConfigurationProfileNameByID function
profileName, err := client.GetMacOSConfigurationProfileNameByID(profileID)
if err != nil {
log.Fatalf("Error fetching macOS Configuration Profile name by ID: %v", err)
}
// Print the retrieved profile name
fmt.Printf("The name of the macOS Configuration Profile with ID %d is: %s\n", profileID, profileName)
}