Skip to content

Latest commit

 

History

History
148 lines (96 loc) · 3.87 KB

VpnTunnelsAPI.md

File metadata and controls

148 lines (96 loc) · 3.87 KB

\VpnTunnelsAPI

All URIs are relative to https://api.aptible.com

Method HTTP request Description
GetVpnTunnel Get /vpn_tunnels/{id} show vpn_tunnel
ListVpnTunnelsForStack Get /stacks/{stack_id}/vpn_tunnels list vpn_tunnels

GetVpnTunnel

VpnTunnel GetVpnTunnel(ctx, id).Execute()

show vpn_tunnel

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/aptible/aptible-api-go/aptibleapi"
)

func main() {
	id := int32(56) // int32 | id

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.VpnTunnelsAPI.GetVpnTunnel(context.Background(), id).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `VpnTunnelsAPI.GetVpnTunnel``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetVpnTunnel`: VpnTunnel
	fmt.Fprintf(os.Stdout, "Response from `VpnTunnelsAPI.GetVpnTunnel`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
id int32 id

Other Parameters

Other parameters are passed through a pointer to a apiGetVpnTunnelRequest struct via the builder pattern

Name Type Description Notes

Return type

VpnTunnel

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListVpnTunnelsForStack

ListVpnTunnelsForStack200Response ListVpnTunnelsForStack(ctx, stackId).Page(page).Execute()

list vpn_tunnels

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/aptible/aptible-api-go/aptibleapi"
)

func main() {
	stackId := int32(56) // int32 | stack_id
	page := int32(56) // int32 | current page of results for pagination (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.VpnTunnelsAPI.ListVpnTunnelsForStack(context.Background(), stackId).Page(page).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `VpnTunnelsAPI.ListVpnTunnelsForStack``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListVpnTunnelsForStack`: ListVpnTunnelsForStack200Response
	fmt.Fprintf(os.Stdout, "Response from `VpnTunnelsAPI.ListVpnTunnelsForStack`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
stackId int32 stack_id

Other Parameters

Other parameters are passed through a pointer to a apiListVpnTunnelsForStackRequest struct via the builder pattern

Name Type Description Notes

page | int32 | current page of results for pagination |

Return type

ListVpnTunnelsForStack200Response

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/hal+json

[Back to top] [Back to API list] [Back to Model list] [Back to README]