File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/Networking/v2/Extensions/Layer3 Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ public function getFloatingIps(): array
34
34
return [
35
35
'method ' => 'GET ' ,
36
36
'path ' => $ this ->pathPrefix . '/floatingips ' ,
37
- 'params ' => [],
37
+ 'params ' => [
38
+ 'tenantId ' => $ this ->params ->queryTenantId (),
39
+ ],
38
40
];
39
41
}
40
42
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ public function getFloatingIp($id): FloatingIp
42
42
/**
43
43
* @return \Generator
44
44
*/
45
- public function listFloatingIps (): \Generator
45
+ public function listFloatingIps (array $ options = [] ): \Generator
46
46
{
47
- return $ this ->floatingIp ()->enumerate ($ this ->api ->getFloatingIps ());
47
+ return $ this ->floatingIp ()->enumerate ($ this ->api ->getFloatingIps (), $ options );
48
48
}
49
49
50
50
/**
You can’t perform that action at this time.
0 commit comments