-
Notifications
You must be signed in to change notification settings - Fork 8
/
UpdateFileShareDistributionPointByName.go
63 lines (55 loc) · 2.17 KB
/
UpdateFileShareDistributionPointByName.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
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)
}
// New distribution point to create
updateDistributionPoint := jamfpro.ResourceFileShareDistributionPoint{
Name: "New York Share",
IPAddress: "ny.company.com",
IsMaster: true,
EnableLoadBalancing: false,
SSHUsername: "casperadmin",
Password: "password",
ConnectionType: "SMB",
ShareName: "Caspershare",
WorkgroupOrDomain: "COMPANY",
SharePort: 139,
ReadOnlyUsername: "casperinstall",
ReadOnlyPassword: "password",
ReadWriteUsername: "casperwrite",
ReadWritePassword: "password",
HTTPDownloadsEnabled: true,
HTTPURL: "http://ny.company.com/CasperShare",
Context: "CasperShare",
Protocol: "http",
Port: 80,
NoAuthenticationRequired: false,
UsernamePasswordRequired: true,
HTTPUsername: "casperinstall",
HTTPPassword: "password",
}
// Name of the distribution point to update
distributionPointName := "Tokyo Share" // Replace with the actual name
// Call UpdateDistributionPointByName function
updatedDistributionPoint, err := client.UpdateDistributionPointByName(distributionPointName, &updateDistributionPoint)
if err != nil {
log.Fatalf("Error updating distribution point: %v", err)
}
// Pretty print the updated distribution point in XML
updatedDistributionPointXML, err := xml.MarshalIndent(updatedDistributionPoint, "", " ")
if err != nil {
log.Fatalf("Error marshaling updated distribution point data: %v", err)
}
fmt.Println("Updated Distribution Point:\n", string(updatedDistributionPointXML))
}