|
30 | 30 | "APIError", |
31 | 31 | "APIErrorDetail", |
32 | 32 | "APIErrorResponse", |
| 33 | + "BGPFilter", |
| 34 | + "BGPFilterList", |
| 35 | + "BGPFilterRule", |
| 36 | + "BGPFilterRuleList", |
| 37 | + "BGPFilterRuleMatch", |
| 38 | + "BGPFilterRuleSet", |
33 | 39 | "BGPGatewayConfig", |
34 | 40 | "BGPStatus", |
35 | 41 | "BGPStatusPeers", |
|
38 | 44 | "ConnectionList", |
39 | 45 | "ConnectionResponse", |
40 | 46 | "ConnectionStatusResponse", |
| 47 | + "CreateGatewayBGPFilterPayload", |
| 48 | + "CreateGatewayBGPFilterRulePayload", |
41 | 49 | "CreateGatewayConnectionPayload", |
42 | 50 | "CreateGatewayPayload", |
43 | 51 | "CreateGatewayPayloadAvailabilityZones", |
|
46 | 54 | "GatewayResponse", |
47 | 55 | "GatewayStatus", |
48 | 56 | "GatewayStatusResponse", |
| 57 | + "NetworkConfig", |
49 | 58 | "PeeringConfig", |
50 | 59 | "Phase", |
51 | 60 | "Phase1Status", |
|
61 | 70 | "TunnelConfigurationPhase1", |
62 | 71 | "TunnelConfigurationPhase2", |
63 | 72 | "TunnelStatus", |
| 73 | + "UpdateGatewayBGPFilterPayload", |
| 74 | + "UpdateGatewayBGPFilterRulePayload", |
64 | 75 | "UpdateGatewayConnectionPayload", |
65 | 76 | "UpdateGatewayPayload", |
66 | 77 | "VPNTunnels", |
|
84 | 95 | from stackit.vpn.models.api_error import APIError as APIError |
85 | 96 | from stackit.vpn.models.api_error_detail import APIErrorDetail as APIErrorDetail |
86 | 97 | from stackit.vpn.models.api_error_response import APIErrorResponse as APIErrorResponse |
| 98 | +from stackit.vpn.models.bgp_filter import BGPFilter as BGPFilter |
| 99 | +from stackit.vpn.models.bgp_filter_list import BGPFilterList as BGPFilterList |
| 100 | +from stackit.vpn.models.bgp_filter_rule import BGPFilterRule as BGPFilterRule |
| 101 | +from stackit.vpn.models.bgp_filter_rule_list import ( |
| 102 | + BGPFilterRuleList as BGPFilterRuleList, |
| 103 | +) |
| 104 | +from stackit.vpn.models.bgp_filter_rule_match import ( |
| 105 | + BGPFilterRuleMatch as BGPFilterRuleMatch, |
| 106 | +) |
| 107 | +from stackit.vpn.models.bgp_filter_rule_set import BGPFilterRuleSet as BGPFilterRuleSet |
87 | 108 | from stackit.vpn.models.bgp_gateway_config import BGPGatewayConfig as BGPGatewayConfig |
88 | 109 | from stackit.vpn.models.bgp_status import BGPStatus as BGPStatus |
89 | 110 | from stackit.vpn.models.bgp_status_peers import BGPStatusPeers as BGPStatusPeers |
|
96 | 117 | from stackit.vpn.models.connection_status_response import ( |
97 | 118 | ConnectionStatusResponse as ConnectionStatusResponse, |
98 | 119 | ) |
| 120 | +from stackit.vpn.models.create_gateway_bgp_filter_payload import ( |
| 121 | + CreateGatewayBGPFilterPayload as CreateGatewayBGPFilterPayload, |
| 122 | +) |
| 123 | +from stackit.vpn.models.create_gateway_bgp_filter_rule_payload import ( |
| 124 | + CreateGatewayBGPFilterRulePayload as CreateGatewayBGPFilterRulePayload, |
| 125 | +) |
99 | 126 | from stackit.vpn.models.create_gateway_connection_payload import ( |
100 | 127 | CreateGatewayConnectionPayload as CreateGatewayConnectionPayload, |
101 | 128 | ) |
|
112 | 139 | from stackit.vpn.models.gateway_status_response import ( |
113 | 140 | GatewayStatusResponse as GatewayStatusResponse, |
114 | 141 | ) |
| 142 | +from stackit.vpn.models.network_config import NetworkConfig as NetworkConfig |
115 | 143 | from stackit.vpn.models.peering_config import PeeringConfig as PeeringConfig |
116 | 144 | from stackit.vpn.models.phase import Phase as Phase |
117 | 145 | from stackit.vpn.models.phase1_status import Phase1Status as Phase1Status |
|
135 | 163 | TunnelConfigurationPhase2 as TunnelConfigurationPhase2, |
136 | 164 | ) |
137 | 165 | from stackit.vpn.models.tunnel_status import TunnelStatus as TunnelStatus |
| 166 | +from stackit.vpn.models.update_gateway_bgp_filter_payload import ( |
| 167 | + UpdateGatewayBGPFilterPayload as UpdateGatewayBGPFilterPayload, |
| 168 | +) |
| 169 | +from stackit.vpn.models.update_gateway_bgp_filter_rule_payload import ( |
| 170 | + UpdateGatewayBGPFilterRulePayload as UpdateGatewayBGPFilterRulePayload, |
| 171 | +) |
138 | 172 | from stackit.vpn.models.update_gateway_connection_payload import ( |
139 | 173 | UpdateGatewayConnectionPayload as UpdateGatewayConnectionPayload, |
140 | 174 | ) |
|
0 commit comments