Update Workers VPC connectivity service
client.Connectivity.Directory.Services.Update(ctx, serviceID, params) (*DirectoryServiceUpdateResponse, error)
PUT/accounts/{account_id}/connectivity/directory/services/{service_id}
Update Workers VPC connectivity service
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Update Workers VPC connectivity service
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/connectivity"
"github.com/cloudflare/cloudflare-go/option"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"),
)
service, err := client.Connectivity.Directory.Services.Update(
context.TODO(),
"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
connectivity.DirectoryServiceUpdateParams{
AccountID: cloudflare.F("account_id"),
Host: cloudflare.F[connectivity.DirectoryServiceUpdateParamsHostUnion](connectivity.DirectoryServiceUpdateParamsHostInfraIPv4Host{
IPV4: cloudflare.F("10.0.0.1"),
Network: cloudflare.F(connectivity.DirectoryServiceUpdateParamsHostInfraIPv4HostNetwork{
TunnelID: cloudflare.F("0191dce4-9ab4-7fce-b660-8e5dec5172da"),
}),
}),
Name: cloudflare.F("web-app"),
Type: cloudflare.F(connectivity.DirectoryServiceUpdateParamsTypeHTTP),
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", service.ServiceID)
}
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"host": {
"ipv4": "10.0.0.1",
"network": {
"tunnel_id": "0191dce4-9ab4-7fce-b660-8e5dec5172da"
}
},
"name": "web-app",
"type": "http",
"created_at": "2024-01-15T09:30:00Z",
"http_port": 8080,
"https_port": 8443,
"service_id": "550e8400-e29b-41d4-a716-446655440000",
"updated_at": "2024-01-15T10:45:00Z"
}
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"host": {
"ipv4": "10.0.0.1",
"network": {
"tunnel_id": "0191dce4-9ab4-7fce-b660-8e5dec5172da"
}
},
"name": "web-app",
"type": "http",
"created_at": "2024-01-15T09:30:00Z",
"http_port": 8080,
"https_port": 8443,
"service_id": "550e8400-e29b-41d4-a716-446655440000",
"updated_at": "2024-01-15T10:45:00Z"
}
}