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;
}

Required Methods§

source

fn get( &self, resource_block_id: String, ethernet_interface_id: String ) -> VLANsGetResponse

source

fn post( &mut self, resource_block_id: String, ethernet_interface_id: String, body: VLanNetworkInterface ) -> VLANsPostResponse

Implementors§