|
3 | 3 | # flake8: noqa |
4 | 4 |
|
5 | 5 | """ |
6 | | -STACKIT VPN API |
| 6 | + STACKIT VPN API |
7 | 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 |
| 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 | 9 |
|
10 | | -The version of the OpenAPI document: 1 |
11 | | -Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 10 | + The version of the OpenAPI document: 1 |
| 11 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
12 | 12 |
|
13 | | -Do not edit the class manually. |
| 13 | + Do not edit the class manually. |
14 | 14 | """ # noqa: E501 |
15 | 15 |
|
| 16 | + |
16 | 17 | __version__ = "1.0.0" |
17 | 18 |
|
18 | 19 | # Define package exports |
|
30 | 31 | "APIError", |
31 | 32 | "APIErrorDetail", |
32 | 33 | "APIErrorResponse", |
| 34 | + "BGPFilter", |
| 35 | + "BGPFilterList", |
| 36 | + "BGPFilterRule", |
| 37 | + "BGPFilterRuleList", |
| 38 | + "BGPFilterRuleMatch", |
| 39 | + "BGPFilterRuleSet", |
33 | 40 | "BGPGatewayConfig", |
34 | 41 | "BGPStatus", |
35 | 42 | "BGPStatusPeers", |
|
38 | 45 | "ConnectionList", |
39 | 46 | "ConnectionResponse", |
40 | 47 | "ConnectionStatusResponse", |
| 48 | + "CreateGatewayBGPFilterPayload", |
| 49 | + "CreateGatewayBGPFilterRulePayload", |
41 | 50 | "CreateGatewayConnectionPayload", |
42 | 51 | "CreateGatewayPayload", |
43 | 52 | "CreateGatewayPayloadAvailabilityZones", |
|
46 | 55 | "GatewayResponse", |
47 | 56 | "GatewayStatus", |
48 | 57 | "GatewayStatusResponse", |
| 58 | + "NetworkConfig", |
49 | 59 | "PeeringConfig", |
50 | 60 | "Phase", |
51 | 61 | "Phase1Status", |
|
61 | 71 | "TunnelConfigurationPhase1", |
62 | 72 | "TunnelConfigurationPhase2", |
63 | 73 | "TunnelStatus", |
| 74 | + "UpdateGatewayBGPFilterPayload", |
| 75 | + "UpdateGatewayBGPFilterRulePayload", |
64 | 76 | "UpdateGatewayConnectionPayload", |
65 | 77 | "UpdateGatewayPayload", |
66 | 78 | "VPNTunnels", |
|
84 | 96 | from stackit.vpn.models.api_error import APIError as APIError |
85 | 97 | from stackit.vpn.models.api_error_detail import APIErrorDetail as APIErrorDetail |
86 | 98 | from stackit.vpn.models.api_error_response import APIErrorResponse as APIErrorResponse |
| 99 | +from stackit.vpn.models.bgp_filter import BGPFilter as BGPFilter |
| 100 | +from stackit.vpn.models.bgp_filter_list import BGPFilterList as BGPFilterList |
| 101 | +from stackit.vpn.models.bgp_filter_rule import BGPFilterRule as BGPFilterRule |
| 102 | +from stackit.vpn.models.bgp_filter_rule_list import ( |
| 103 | + BGPFilterRuleList as BGPFilterRuleList, |
| 104 | +) |
| 105 | +from stackit.vpn.models.bgp_filter_rule_match import ( |
| 106 | + BGPFilterRuleMatch as BGPFilterRuleMatch, |
| 107 | +) |
| 108 | +from stackit.vpn.models.bgp_filter_rule_set import BGPFilterRuleSet as BGPFilterRuleSet |
87 | 109 | from stackit.vpn.models.bgp_gateway_config import BGPGatewayConfig as BGPGatewayConfig |
88 | 110 | from stackit.vpn.models.bgp_status import BGPStatus as BGPStatus |
89 | 111 | from stackit.vpn.models.bgp_status_peers import BGPStatusPeers as BGPStatusPeers |
|
96 | 118 | from stackit.vpn.models.connection_status_response import ( |
97 | 119 | ConnectionStatusResponse as ConnectionStatusResponse, |
98 | 120 | ) |
| 121 | +from stackit.vpn.models.create_gateway_bgp_filter_payload import ( |
| 122 | + CreateGatewayBGPFilterPayload as CreateGatewayBGPFilterPayload, |
| 123 | +) |
| 124 | +from stackit.vpn.models.create_gateway_bgp_filter_rule_payload import ( |
| 125 | + CreateGatewayBGPFilterRulePayload as CreateGatewayBGPFilterRulePayload, |
| 126 | +) |
99 | 127 | from stackit.vpn.models.create_gateway_connection_payload import ( |
100 | 128 | CreateGatewayConnectionPayload as CreateGatewayConnectionPayload, |
101 | 129 | ) |
|
112 | 140 | from stackit.vpn.models.gateway_status_response import ( |
113 | 141 | GatewayStatusResponse as GatewayStatusResponse, |
114 | 142 | ) |
| 143 | +from stackit.vpn.models.network_config import NetworkConfig as NetworkConfig |
115 | 144 | from stackit.vpn.models.peering_config import PeeringConfig as PeeringConfig |
116 | 145 | from stackit.vpn.models.phase import Phase as Phase |
117 | 146 | from stackit.vpn.models.phase1_status import Phase1Status as Phase1Status |
|
135 | 164 | TunnelConfigurationPhase2 as TunnelConfigurationPhase2, |
136 | 165 | ) |
137 | 166 | from stackit.vpn.models.tunnel_status import TunnelStatus as TunnelStatus |
| 167 | +from stackit.vpn.models.update_gateway_bgp_filter_payload import ( |
| 168 | + UpdateGatewayBGPFilterPayload as UpdateGatewayBGPFilterPayload, |
| 169 | +) |
| 170 | +from stackit.vpn.models.update_gateway_bgp_filter_rule_payload import ( |
| 171 | + UpdateGatewayBGPFilterRulePayload as UpdateGatewayBGPFilterRulePayload, |
| 172 | +) |
138 | 173 | from stackit.vpn.models.update_gateway_connection_payload import ( |
139 | 174 | UpdateGatewayConnectionPayload as UpdateGatewayConnectionPayload, |
140 | 175 | ) |
|
0 commit comments