@@ -263,6 +263,7 @@ async def list_i_ps(
263
263
vpc_id : Optional [str ] = None ,
264
264
attached : Optional [bool ] = None ,
265
265
resource_id : Optional [str ] = None ,
266
+ resource_ids : Optional [List [str ]] = None ,
266
267
resource_type : Optional [ResourceType ] = None ,
267
268
mac_address : Optional [str ] = None ,
268
269
tags : Optional [List [str ]] = None ,
@@ -288,6 +289,7 @@ async def list_i_ps(
288
289
:param vpc_id: Only IPs owned by resources in this VPC will be returned.
289
290
:param attached: Defines whether to filter only for IPs which are attached to a resource.
290
291
:param resource_id: Resource ID to filter for. Only IPs attached to this resource will be returned.
292
+ :param resource_ids: Resource IDs to filter for. Only IPs attached to at least one of these resources will be returned.
291
293
:param resource_type: Resource type to filter for. Only IPs attached to this type of resource will be returned.
292
294
:param mac_address: MAC address to filter for. Only IPs attached to a resource with this MAC address will be returned.
293
295
:param tags: Tags to filter for, only IPs with one or more matching tags will be returned.
@@ -321,6 +323,7 @@ async def list_i_ps(
321
323
"page_size" : page_size or self .client .default_page_size ,
322
324
"project_id" : project_id or self .client .default_project_id ,
323
325
"resource_id" : resource_id ,
326
+ "resource_ids" : resource_ids ,
324
327
"resource_name" : resource_name ,
325
328
"resource_type" : resource_type ,
326
329
"resource_types" : resource_types ,
@@ -353,6 +356,7 @@ async def list_i_ps_all(
353
356
vpc_id : Optional [str ] = None ,
354
357
attached : Optional [bool ] = None ,
355
358
resource_id : Optional [str ] = None ,
359
+ resource_ids : Optional [List [str ]] = None ,
356
360
resource_type : Optional [ResourceType ] = None ,
357
361
mac_address : Optional [str ] = None ,
358
362
tags : Optional [List [str ]] = None ,
@@ -378,6 +382,7 @@ async def list_i_ps_all(
378
382
:param vpc_id: Only IPs owned by resources in this VPC will be returned.
379
383
:param attached: Defines whether to filter only for IPs which are attached to a resource.
380
384
:param resource_id: Resource ID to filter for. Only IPs attached to this resource will be returned.
385
+ :param resource_ids: Resource IDs to filter for. Only IPs attached to at least one of these resources will be returned.
381
386
:param resource_type: Resource type to filter for. Only IPs attached to this type of resource will be returned.
382
387
:param mac_address: MAC address to filter for. Only IPs attached to a resource with this MAC address will be returned.
383
388
:param tags: Tags to filter for, only IPs with one or more matching tags will be returned.
@@ -406,6 +411,7 @@ async def list_i_ps_all(
406
411
"vpc_id" : vpc_id ,
407
412
"attached" : attached ,
408
413
"resource_id" : resource_id ,
414
+ "resource_ids" : resource_ids ,
409
415
"resource_type" : resource_type ,
410
416
"mac_address" : mac_address ,
411
417
"tags" : tags ,
0 commit comments