WireguardPeersApi
All URIs are relative to https://vpn.de-fra.ionos.com
Delete /wireguardgateways/{gatewayId}/peers/{peerId}
Delete WireguardPeer
Get /wireguardgateways/{gatewayId}/peers/{peerId}
Retrieve WireguardPeer
WireguardgatewaysPeersDelete
var result = WireguardgatewaysPeersDelete(ctx, gatewayId, peerId)
.Execute()Delete WireguardPeer
Example
package main
import (
"context"
"fmt"
"os"
vpn "github.com/ionos-cloud/sdk-go-bundle/products/vpn"
"github.com/ionos-cloud/sdk-go-bundle/shared"
)
func main() {
gatewayId := "85c79b4b-5b40-570a-b788-58dd46ea71e2" // string | The ID (UUID) of the WireguardGateway.
peerId := "b62b3a40-adee-5b6c-b98d-be20bfcbdd91" // string | The ID (UUID) of the WireguardPeer.
configuration := shared.NewConfiguration("USERNAME", "PASSWORD", "TOKEN", "HOST_URL")
apiClient := vpn.NewAPIClient(configuration)
resp, err := apiClient.WireguardPeersApi.WireguardgatewaysPeersDelete(context.Background(), gatewayId, peerId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `WireguardPeersApi.WireguardgatewaysPeersDelete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", resp)
}
}Path Parameters
ctx
context.Context
context for authentication, logging, cancellation, deadlines, tracing, etc.
gatewayId
string
The ID (UUID) of the WireguardGateway.
peerId
string
The ID (UUID) of the WireguardPeer.
Other Parameters
Other parameters are passed through a pointer to an apiWireguardgatewaysPeersDeleteRequest struct via the builder pattern
Name
Type
Description
Notes
Return type
(empty response body)
HTTP request headers
Content-Type: Not defined
Accept: application/json
WireguardgatewaysPeersFindById
Retrieve WireguardPeer
Example
Path Parameters
ctx
context.Context
context for authentication, logging, cancellation, deadlines, tracing, etc.
gatewayId
string
The ID (UUID) of the WireguardGateway.
peerId
string
The ID (UUID) of the WireguardPeer.
Other Parameters
Other parameters are passed through a pointer to an apiWireguardgatewaysPeersFindByIdRequest struct via the builder pattern
Name
Type
Description
Notes
Return type
HTTP request headers
Content-Type: Not defined
Accept: application/json
WireguardgatewaysPeersGet
Retrieve all WireguardPeers
Example
Path Parameters
ctx
context.Context
context for authentication, logging, cancellation, deadlines, tracing, etc.
gatewayId
string
The ID (UUID) of the WireguardGateway.
Other Parameters
Other parameters are passed through a pointer to an apiWireguardgatewaysPeersGetRequest struct via the builder pattern
offset
int32
The first element (of the total list of elements) to include in the response. Use together with limit for pagination.
[default to 0]
limit
int32
The maximum number of elements to return. Use together with offset for pagination.
[default to 100]
Return type
HTTP request headers
Content-Type: Not defined
Accept: application/json
WireguardgatewaysPeersPost
Create WireguardPeer
Example
Path Parameters
ctx
context.Context
context for authentication, logging, cancellation, deadlines, tracing, etc.
gatewayId
string
The ID (UUID) of the WireguardGateway.
Other Parameters
Other parameters are passed through a pointer to an apiWireguardgatewaysPeersPostRequest struct via the builder pattern
Return type
HTTP request headers
Content-Type: application/json
Accept: application/json
WireguardgatewaysPeersPut
Ensure WireguardPeer
Example
Path Parameters
ctx
context.Context
context for authentication, logging, cancellation, deadlines, tracing, etc.
gatewayId
string
The ID (UUID) of the WireguardGateway.
peerId
string
The ID (UUID) of the WireguardPeer.
Other Parameters
Other parameters are passed through a pointer to an apiWireguardgatewaysPeersPutRequest struct via the builder pattern
Return type
HTTP request headers
Content-Type: application/json
Accept: application/json
Last updated
