File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
scaleway-async/scaleway_async/k8s/v1 Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,9 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
286
286
287
287
args : Dict [str , Any ] = {}
288
288
289
+ field = data .get ("audit_logs_supported" , None )
290
+ args ["audit_logs_supported" ] = field
291
+
289
292
field = data .get ("availability" , None )
290
293
args ["availability" ] = field
291
294
Original file line number Diff line number Diff line change @@ -497,6 +497,11 @@ class ClusterType:
497
497
Returns information if this offer uses dedicated resources.
498
498
"""
499
499
500
+ audit_logs_supported : bool
501
+ """
502
+ True if the offer allows activation of the audit log functionality. Please note that audit logs are sent to Cockpit.
503
+ """
504
+
500
505
501
506
@dataclass
502
507
class CreateClusterRequestAutoUpgrade :
Original file line number Diff line number Diff line change @@ -286,6 +286,9 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
286
286
287
287
args : Dict [str , Any ] = {}
288
288
289
+ field = data .get ("audit_logs_supported" , None )
290
+ args ["audit_logs_supported" ] = field
291
+
289
292
field = data .get ("availability" , None )
290
293
args ["availability" ] = field
291
294
Original file line number Diff line number Diff line change @@ -497,6 +497,11 @@ class ClusterType:
497
497
Returns information if this offer uses dedicated resources.
498
498
"""
499
499
500
+ audit_logs_supported : bool
501
+ """
502
+ True if the offer allows activation of the audit log functionality. Please note that audit logs are sent to Cockpit.
503
+ """
504
+
500
505
501
506
@dataclass
502
507
class CreateClusterRequestAutoUpgrade :
You can’t perform that action at this time.
0 commit comments