pub trait VLANs {
// Required methods
fn get(
&self,
resource_block_id: String,
ethernet_interface_id: String
) -> VLANsGetResponse;
fn post(
&mut self,
resource_block_id: String,
ethernet_interface_id: String,
body: VLanNetworkInterface
) -> VLANsPostResponse;
}