@@ -521,6 +521,7 @@ async def list_platforms(
521
521
self ,
522
522
* ,
523
523
provider_name : Optional [str ] = None ,
524
+ backend_name : Optional [str ] = None ,
524
525
name : Optional [str ] = None ,
525
526
platform_type : Optional [PlatformType ] = None ,
526
527
platform_technology : Optional [PlatformTechnology ] = None ,
@@ -532,6 +533,7 @@ async def list_platforms(
532
533
List all available platforms.
533
534
Retrieve information about all platforms.
534
535
:param provider_name: List platforms with this provider name.
536
+ :param backend_name: List platforms with this backend name.
535
537
:param name: List platforms with this name.
536
538
:param platform_type: List platforms with this type.
537
539
:param platform_technology: List platforms with this technology.
@@ -550,6 +552,7 @@ async def list_platforms(
550
552
"GET" ,
551
553
"/qaas/v1alpha1/platforms" ,
552
554
params = {
555
+ "backend_name" : backend_name ,
553
556
"name" : name ,
554
557
"order_by" : order_by ,
555
558
"page" : page ,
@@ -567,6 +570,7 @@ async def list_platforms_all(
567
570
self ,
568
571
* ,
569
572
provider_name : Optional [str ] = None ,
573
+ backend_name : Optional [str ] = None ,
570
574
name : Optional [str ] = None ,
571
575
platform_type : Optional [PlatformType ] = None ,
572
576
platform_technology : Optional [PlatformTechnology ] = None ,
@@ -578,6 +582,7 @@ async def list_platforms_all(
578
582
List all available platforms.
579
583
Retrieve information about all platforms.
580
584
:param provider_name: List platforms with this provider name.
585
+ :param backend_name: List platforms with this backend name.
581
586
:param name: List platforms with this name.
582
587
:param platform_type: List platforms with this type.
583
588
:param platform_technology: List platforms with this technology.
@@ -598,6 +603,7 @@ async def list_platforms_all(
598
603
fetcher = self .list_platforms ,
599
604
args = {
600
605
"provider_name" : provider_name ,
606
+ "backend_name" : backend_name ,
601
607
"name" : name ,
602
608
"platform_type" : platform_type ,
603
609
"platform_technology" : platform_technology ,
0 commit comments