pub trait AllowDeny {
    // Required methods
    fn get(
        resource_block_id: String,
        network_interface_id: String,
        network_device_function_id: String
    ) -> AllowDenyGetResponse;
    fn post(
        resource_block_id: String,
        network_interface_id: String,
        network_device_function_id: String,
        body: AllowDeny
    ) -> AllowDenyPostResponse;
}

Required Methods§

source

fn get( resource_block_id: String, network_interface_id: String, network_device_function_id: String ) -> AllowDenyGetResponse

source

fn post( resource_block_id: String, network_interface_id: String, network_device_function_id: String, body: AllowDeny ) -> AllowDenyPostResponse

Implementors§