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:
286286
287287 args : Dict [str , Any ] = {}
288288
289+ field = data .get ("audit_logs_supported" , None )
290+ args ["audit_logs_supported" ] = field
291+
289292 field = data .get ("availability" , None )
290293 args ["availability" ] = field
291294
Original file line number Diff line number Diff line change @@ -497,6 +497,11 @@ class ClusterType:
497497 Returns information if this offer uses dedicated resources.
498498 """
499499
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+
500505
501506@dataclass
502507class CreateClusterRequestAutoUpgrade :
Original file line number Diff line number Diff line change @@ -286,6 +286,9 @@ def unmarshal_ClusterType(data: Any) -> ClusterType:
286286
287287 args : Dict [str , Any ] = {}
288288
289+ field = data .get ("audit_logs_supported" , None )
290+ args ["audit_logs_supported" ] = field
291+
289292 field = data .get ("availability" , None )
290293 args ["availability" ] = field
291294
Original file line number Diff line number Diff line change @@ -497,6 +497,11 @@ class ClusterType:
497497 Returns information if this offer uses dedicated resources.
498498 """
499499
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+
500505
501506@dataclass
502507class CreateClusterRequestAutoUpgrade :
You can’t perform that action at this time.
0 commit comments