File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/client Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 3333public interface SANFeignClient {
3434
3535 // LUN Operation APIs
36- @ RequestLine ("POST /api/storage/luns" )
37- @ Headers ({"Authorization: {authHeader}" , "return_records: {returnRecords}" })
38- OntapResponse <Lun > createLun (@ Param ("authHeader" ) String authHeader ,
39- @ Param ("returnRecords" ) boolean returnRecords ,
40- Lun lun );
36+ @ RequestLine ("POST /api/storage/luns?return_records={returnRecords}" )
37+ @ Headers ({"Authorization: {authHeader}" })
38+ OntapResponse <Lun > createLun (@ Param ("authHeader" ) String authHeader , @ Param ("returnRecords" ) boolean returnRecords , Lun lun );
4139
4240 @ RequestLine ("GET /api/storage/luns" )
4341 @ Headers ({"Authorization: {authHeader}" })
@@ -56,8 +54,8 @@ OntapResponse<Lun> createLun(@Param("authHeader") String authHeader,
5654 void deleteLun (@ Param ("authHeader" ) String authHeader , @ Param ("uuid" ) String uuid );
5755
5856 // iGroup Operation APIs
59- @ RequestLine ("POST /api/protocols/san/igroups" )
60- @ Headers ({"Authorization: {authHeader}" , "return_records: {returnRecords}" })
57+ @ RequestLine ("POST /api/protocols/san/igroups?return_records={returnRecords} " )
58+ @ Headers ({"Authorization: {authHeader}" })
6159 OntapResponse <Igroup > createIgroup (@ Param ("authHeader" ) String authHeader , @ Param ("returnRecords" ) boolean returnRecords , Igroup igroupRequest );
6260
6361 @ RequestLine ("GET /api/protocols/san/igroups" )
You can’t perform that action at this time.
0 commit comments