|
9 | 9 | from .console_history import ConsoleHistory |
10 | 10 | from .cpe import Cpe |
11 | 11 | from .create_cpe_details import CreateCpeDetails |
| 12 | +from .create_cross_connect_details import CreateCrossConnectDetails |
| 13 | +from .create_cross_connect_group_details import CreateCrossConnectGroupDetails |
12 | 14 | from .create_dhcp_details import CreateDhcpDetails |
13 | 15 | from .create_drg_attachment_details import CreateDrgAttachmentDetails |
14 | 16 | from .create_drg_details import CreateDrgDetails |
|
19 | 21 | from .create_security_list_details import CreateSecurityListDetails |
20 | 22 | from .create_subnet_details import CreateSubnetDetails |
21 | 23 | from .create_vcn_details import CreateVcnDetails |
| 24 | +from .create_virtual_circuit_details import CreateVirtualCircuitDetails |
| 25 | +from .create_vnic_details import CreateVnicDetails |
22 | 26 | from .create_volume_backup_details import CreateVolumeBackupDetails |
23 | 27 | from .create_volume_details import CreateVolumeDetails |
| 28 | +from .cross_connect import CrossConnect |
| 29 | +from .cross_connect_group import CrossConnectGroup |
| 30 | +from .cross_connect_location import CrossConnectLocation |
| 31 | +from .cross_connect_mapping import CrossConnectMapping |
| 32 | +from .cross_connect_port_speed_shape import CrossConnectPortSpeedShape |
| 33 | +from .cross_connect_status import CrossConnectStatus |
24 | 34 | from .dhcp_dns_option import DhcpDnsOption |
25 | 35 | from .dhcp_option import DhcpOption |
26 | 36 | from .dhcp_options import DhcpOptions |
27 | 37 | from .dhcp_search_domain_option import DhcpSearchDomainOption |
28 | 38 | from .drg import Drg |
29 | 39 | from .drg_attachment import DrgAttachment |
30 | 40 | from .egress_security_rule import EgressSecurityRule |
| 41 | +from .fast_connect_provider_service import FastConnectProviderService |
31 | 42 | from .ip_sec_connection import IPSecConnection |
32 | 43 | from .ip_sec_connection_device_config import IPSecConnectionDeviceConfig |
33 | 44 | from .ip_sec_connection_device_status import IPSecConnectionDeviceStatus |
|
39 | 50 | from .instance_credentials import InstanceCredentials |
40 | 51 | from .internet_gateway import InternetGateway |
41 | 52 | from .launch_instance_details import LaunchInstanceDetails |
| 53 | +from .letter_of_authority import LetterOfAuthority |
42 | 54 | from .port_range import PortRange |
43 | 55 | from .route_rule import RouteRule |
44 | 56 | from .route_table import RouteTable |
|
50 | 62 | from .tunnel_status import TunnelStatus |
51 | 63 | from .udp_options import UdpOptions |
52 | 64 | from .update_cpe_details import UpdateCpeDetails |
| 65 | +from .update_cross_connect_details import UpdateCrossConnectDetails |
| 66 | +from .update_cross_connect_group_details import UpdateCrossConnectGroupDetails |
53 | 67 | from .update_dhcp_details import UpdateDhcpDetails |
54 | 68 | from .update_drg_attachment_details import UpdateDrgAttachmentDetails |
55 | 69 | from .update_drg_details import UpdateDrgDetails |
|
61 | 75 | from .update_security_list_details import UpdateSecurityListDetails |
62 | 76 | from .update_subnet_details import UpdateSubnetDetails |
63 | 77 | from .update_vcn_details import UpdateVcnDetails |
| 78 | +from .update_virtual_circuit_details import UpdateVirtualCircuitDetails |
64 | 79 | from .update_volume_backup_details import UpdateVolumeBackupDetails |
65 | 80 | from .update_volume_details import UpdateVolumeDetails |
66 | 81 | from .vcn import Vcn |
| 82 | +from .virtual_circuit import VirtualCircuit |
| 83 | +from .virtual_circuit_bandwidth_shape import VirtualCircuitBandwidthShape |
67 | 84 | from .vnic import Vnic |
68 | 85 | from .vnic_attachment import VnicAttachment |
69 | 86 | from .volume import Volume |
|
78 | 95 | "ConsoleHistory": ConsoleHistory, |
79 | 96 | "Cpe": Cpe, |
80 | 97 | "CreateCpeDetails": CreateCpeDetails, |
| 98 | + "CreateCrossConnectDetails": CreateCrossConnectDetails, |
| 99 | + "CreateCrossConnectGroupDetails": CreateCrossConnectGroupDetails, |
81 | 100 | "CreateDhcpDetails": CreateDhcpDetails, |
82 | 101 | "CreateDrgAttachmentDetails": CreateDrgAttachmentDetails, |
83 | 102 | "CreateDrgDetails": CreateDrgDetails, |
|
88 | 107 | "CreateSecurityListDetails": CreateSecurityListDetails, |
89 | 108 | "CreateSubnetDetails": CreateSubnetDetails, |
90 | 109 | "CreateVcnDetails": CreateVcnDetails, |
| 110 | + "CreateVirtualCircuitDetails": CreateVirtualCircuitDetails, |
| 111 | + "CreateVnicDetails": CreateVnicDetails, |
91 | 112 | "CreateVolumeBackupDetails": CreateVolumeBackupDetails, |
92 | 113 | "CreateVolumeDetails": CreateVolumeDetails, |
| 114 | + "CrossConnect": CrossConnect, |
| 115 | + "CrossConnectGroup": CrossConnectGroup, |
| 116 | + "CrossConnectLocation": CrossConnectLocation, |
| 117 | + "CrossConnectMapping": CrossConnectMapping, |
| 118 | + "CrossConnectPortSpeedShape": CrossConnectPortSpeedShape, |
| 119 | + "CrossConnectStatus": CrossConnectStatus, |
93 | 120 | "DhcpDnsOption": DhcpDnsOption, |
94 | 121 | "DhcpOption": DhcpOption, |
95 | 122 | "DhcpOptions": DhcpOptions, |
96 | 123 | "DhcpSearchDomainOption": DhcpSearchDomainOption, |
97 | 124 | "Drg": Drg, |
98 | 125 | "DrgAttachment": DrgAttachment, |
99 | 126 | "EgressSecurityRule": EgressSecurityRule, |
| 127 | + "FastConnectProviderService": FastConnectProviderService, |
100 | 128 | "IPSecConnection": IPSecConnection, |
101 | 129 | "IPSecConnectionDeviceConfig": IPSecConnectionDeviceConfig, |
102 | 130 | "IPSecConnectionDeviceStatus": IPSecConnectionDeviceStatus, |
|
108 | 136 | "InstanceCredentials": InstanceCredentials, |
109 | 137 | "InternetGateway": InternetGateway, |
110 | 138 | "LaunchInstanceDetails": LaunchInstanceDetails, |
| 139 | + "LetterOfAuthority": LetterOfAuthority, |
111 | 140 | "PortRange": PortRange, |
112 | 141 | "RouteRule": RouteRule, |
113 | 142 | "RouteTable": RouteTable, |
|
119 | 148 | "TunnelStatus": TunnelStatus, |
120 | 149 | "UdpOptions": UdpOptions, |
121 | 150 | "UpdateCpeDetails": UpdateCpeDetails, |
| 151 | + "UpdateCrossConnectDetails": UpdateCrossConnectDetails, |
| 152 | + "UpdateCrossConnectGroupDetails": UpdateCrossConnectGroupDetails, |
122 | 153 | "UpdateDhcpDetails": UpdateDhcpDetails, |
123 | 154 | "UpdateDrgAttachmentDetails": UpdateDrgAttachmentDetails, |
124 | 155 | "UpdateDrgDetails": UpdateDrgDetails, |
|
130 | 161 | "UpdateSecurityListDetails": UpdateSecurityListDetails, |
131 | 162 | "UpdateSubnetDetails": UpdateSubnetDetails, |
132 | 163 | "UpdateVcnDetails": UpdateVcnDetails, |
| 164 | + "UpdateVirtualCircuitDetails": UpdateVirtualCircuitDetails, |
133 | 165 | "UpdateVolumeBackupDetails": UpdateVolumeBackupDetails, |
134 | 166 | "UpdateVolumeDetails": UpdateVolumeDetails, |
135 | 167 | "Vcn": Vcn, |
| 168 | + "VirtualCircuit": VirtualCircuit, |
| 169 | + "VirtualCircuitBandwidthShape": VirtualCircuitBandwidthShape, |
136 | 170 | "Vnic": Vnic, |
137 | 171 | "VnicAttachment": VnicAttachment, |
138 | 172 | "Volume": Volume, |
|
0 commit comments