|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# flake8: noqa |
| 4 | + |
| 5 | +""" |
| 6 | + STACKIT VPN API |
| 7 | +
|
| 8 | + Provision and manage STACKIT VPN gateways. Use this API to establish secure, encrypted IPsec tunnels between your STACKIT Network Area (SNA) and external networks. The service supports the following routing architectures: - Policy-based IPsec - Static route-based IPsec - Dynamic BGP IPsec |
| 9 | +
|
| 10 | + The version of the OpenAPI document: 1beta1 |
| 11 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 12 | +
|
| 13 | + Do not edit the class manually. |
| 14 | +""" # noqa: E501 |
| 15 | + |
| 16 | + |
| 17 | +__version__ = "1.0.0" |
| 18 | + |
| 19 | +# Define package exports |
| 20 | +__all__ = [ |
| 21 | + "DefaultApi", |
| 22 | + "ApiResponse", |
| 23 | + "ApiClient", |
| 24 | + "HostConfiguration", |
| 25 | + "OpenApiException", |
| 26 | + "ApiTypeError", |
| 27 | + "ApiValueError", |
| 28 | + "ApiKeyError", |
| 29 | + "ApiAttributeError", |
| 30 | + "ApiException", |
| 31 | + "APIError", |
| 32 | + "APIErrorDetail", |
| 33 | + "APIErrorResponse", |
| 34 | + "BGPGatewayConfig", |
| 35 | + "BGPStatus", |
| 36 | + "BGPStatusPeers", |
| 37 | + "BGPStatusRoutes", |
| 38 | + "BGPTunnelConfig", |
| 39 | + "ConnectionList", |
| 40 | + "ConnectionResponse", |
| 41 | + "ConnectionStatusResponse", |
| 42 | + "CreateGatewayConnectionPayload", |
| 43 | + "CreateVPNGatewayPayload", |
| 44 | + "CreateVPNGatewayPayloadAvailabilityZones", |
| 45 | + "Gateway", |
| 46 | + "GatewayList", |
| 47 | + "GatewayResponse", |
| 48 | + "GatewayStatus", |
| 49 | + "GatewayStatusResponse", |
| 50 | + "PeeringConfig", |
| 51 | + "Phase", |
| 52 | + "Phase1Status", |
| 53 | + "Phase2Status", |
| 54 | + "Plan", |
| 55 | + "PlanList", |
| 56 | + "Quota", |
| 57 | + "QuotaList", |
| 58 | + "QuotaListResponse", |
| 59 | + "Region", |
| 60 | + "RoutingType", |
| 61 | + "TunnelConfiguration", |
| 62 | + "TunnelConfigurationPhase1", |
| 63 | + "TunnelConfigurationPhase2", |
| 64 | + "TunnelStatus", |
| 65 | + "UpdateGatewayConnectionPayload", |
| 66 | + "UpdateVPNGatewayPayload", |
| 67 | + "VPNTunnels", |
| 68 | +] |
| 69 | + |
| 70 | +# import apis into sdk package |
| 71 | +from stackit.vpn.api.default_api import DefaultApi as DefaultApi |
| 72 | +from stackit.vpn.api_client import ApiClient as ApiClient |
| 73 | + |
| 74 | +# import ApiClient |
| 75 | +from stackit.vpn.api_response import ApiResponse as ApiResponse |
| 76 | +from stackit.vpn.configuration import HostConfiguration as HostConfiguration |
| 77 | +from stackit.vpn.exceptions import ApiAttributeError as ApiAttributeError |
| 78 | +from stackit.vpn.exceptions import ApiException as ApiException |
| 79 | +from stackit.vpn.exceptions import ApiKeyError as ApiKeyError |
| 80 | +from stackit.vpn.exceptions import ApiTypeError as ApiTypeError |
| 81 | +from stackit.vpn.exceptions import ApiValueError as ApiValueError |
| 82 | +from stackit.vpn.exceptions import OpenApiException as OpenApiException |
| 83 | + |
| 84 | +# import models into sdk package |
| 85 | +from stackit.vpn.models.api_error import APIError as APIError |
| 86 | +from stackit.vpn.models.api_error_detail import APIErrorDetail as APIErrorDetail |
| 87 | +from stackit.vpn.models.api_error_response import APIErrorResponse as APIErrorResponse |
| 88 | +from stackit.vpn.models.bgp_gateway_config import BGPGatewayConfig as BGPGatewayConfig |
| 89 | +from stackit.vpn.models.bgp_status import BGPStatus as BGPStatus |
| 90 | +from stackit.vpn.models.bgp_status_peers import BGPStatusPeers as BGPStatusPeers |
| 91 | +from stackit.vpn.models.bgp_status_routes import BGPStatusRoutes as BGPStatusRoutes |
| 92 | +from stackit.vpn.models.bgp_tunnel_config import BGPTunnelConfig as BGPTunnelConfig |
| 93 | +from stackit.vpn.models.connection_list import ConnectionList as ConnectionList |
| 94 | +from stackit.vpn.models.connection_response import ( |
| 95 | + ConnectionResponse as ConnectionResponse, |
| 96 | +) |
| 97 | +from stackit.vpn.models.connection_status_response import ( |
| 98 | + ConnectionStatusResponse as ConnectionStatusResponse, |
| 99 | +) |
| 100 | +from stackit.vpn.models.create_gateway_connection_payload import ( |
| 101 | + CreateGatewayConnectionPayload as CreateGatewayConnectionPayload, |
| 102 | +) |
| 103 | +from stackit.vpn.models.create_vpn_gateway_payload import ( |
| 104 | + CreateVPNGatewayPayload as CreateVPNGatewayPayload, |
| 105 | +) |
| 106 | +from stackit.vpn.models.create_vpn_gateway_payload_availability_zones import ( |
| 107 | + CreateVPNGatewayPayloadAvailabilityZones as CreateVPNGatewayPayloadAvailabilityZones, |
| 108 | +) |
| 109 | +from stackit.vpn.models.gateway import Gateway as Gateway |
| 110 | +from stackit.vpn.models.gateway_list import GatewayList as GatewayList |
| 111 | +from stackit.vpn.models.gateway_response import GatewayResponse as GatewayResponse |
| 112 | +from stackit.vpn.models.gateway_status import GatewayStatus as GatewayStatus |
| 113 | +from stackit.vpn.models.gateway_status_response import ( |
| 114 | + GatewayStatusResponse as GatewayStatusResponse, |
| 115 | +) |
| 116 | +from stackit.vpn.models.peering_config import PeeringConfig as PeeringConfig |
| 117 | +from stackit.vpn.models.phase import Phase as Phase |
| 118 | +from stackit.vpn.models.phase1_status import Phase1Status as Phase1Status |
| 119 | +from stackit.vpn.models.phase2_status import Phase2Status as Phase2Status |
| 120 | +from stackit.vpn.models.plan import Plan as Plan |
| 121 | +from stackit.vpn.models.plan_list import PlanList as PlanList |
| 122 | +from stackit.vpn.models.quota import Quota as Quota |
| 123 | +from stackit.vpn.models.quota_list import QuotaList as QuotaList |
| 124 | +from stackit.vpn.models.quota_list_response import ( |
| 125 | + QuotaListResponse as QuotaListResponse, |
| 126 | +) |
| 127 | +from stackit.vpn.models.region import Region as Region |
| 128 | +from stackit.vpn.models.routing_type import RoutingType as RoutingType |
| 129 | +from stackit.vpn.models.tunnel_configuration import ( |
| 130 | + TunnelConfiguration as TunnelConfiguration, |
| 131 | +) |
| 132 | +from stackit.vpn.models.tunnel_configuration_phase1 import ( |
| 133 | + TunnelConfigurationPhase1 as TunnelConfigurationPhase1, |
| 134 | +) |
| 135 | +from stackit.vpn.models.tunnel_configuration_phase2 import ( |
| 136 | + TunnelConfigurationPhase2 as TunnelConfigurationPhase2, |
| 137 | +) |
| 138 | +from stackit.vpn.models.tunnel_status import TunnelStatus as TunnelStatus |
| 139 | +from stackit.vpn.models.update_gateway_connection_payload import ( |
| 140 | + UpdateGatewayConnectionPayload as UpdateGatewayConnectionPayload, |
| 141 | +) |
| 142 | +from stackit.vpn.models.update_vpn_gateway_payload import ( |
| 143 | + UpdateVPNGatewayPayload as UpdateVPNGatewayPayload, |
| 144 | +) |
| 145 | +from stackit.vpn.models.vpn_tunnels import VPNTunnels as VPNTunnels |
0 commit comments