File tree Expand file tree Collapse file tree 4 files changed +18
-0
lines changed
scaleway/scaleway/edge_services/v1alpha1
scaleway-async/scaleway_async/edge_services/v1alpha1 Expand file tree Collapse file tree 4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -366,6 +366,10 @@ def unmarshal_Pipeline(data: Any) -> Pipeline:
366
366
if field is not None :
367
367
args ["project_id" ] = field
368
368
369
+ field = data .get ("organization_id" , None )
370
+ if field is not None :
371
+ args ["organization_id" ] = field
372
+
369
373
field = data .get ("created_at" , None )
370
374
if field is not None :
371
375
args ["created_at" ] = parser .isoparse (field ) if isinstance (field , str ) else field
Original file line number Diff line number Diff line change @@ -413,6 +413,11 @@ class Pipeline:
413
413
Project ID of the pipeline.
414
414
"""
415
415
416
+ organization_id : str
417
+ """
418
+ Organization ID of the pipeline.
419
+ """
420
+
416
421
created_at : Optional [datetime ]
417
422
"""
418
423
Date the pipeline was created.
Original file line number Diff line number Diff line change @@ -366,6 +366,10 @@ def unmarshal_Pipeline(data: Any) -> Pipeline:
366
366
if field is not None :
367
367
args ["project_id" ] = field
368
368
369
+ field = data .get ("organization_id" , None )
370
+ if field is not None :
371
+ args ["organization_id" ] = field
372
+
369
373
field = data .get ("created_at" , None )
370
374
if field is not None :
371
375
args ["created_at" ] = parser .isoparse (field ) if isinstance (field , str ) else field
Original file line number Diff line number Diff line change @@ -413,6 +413,11 @@ class Pipeline:
413
413
Project ID of the pipeline.
414
414
"""
415
415
416
+ organization_id : str
417
+ """
418
+ Organization ID of the pipeline.
419
+ """
420
+
416
421
created_at : Optional [datetime ]
417
422
"""
418
423
Date the pipeline was created.
You can’t perform that action at this time.
0 commit comments