toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedUnsafeSysctls = this.allowedUnsafeSysctls;
final containerLogMaxFiles = this.containerLogMaxFiles;
final containerLogMaxSize = this.containerLogMaxSize;
final cpuCfsQuota = this.cpuCfsQuota;
final cpuCfsQuotaPeriod = this.cpuCfsQuotaPeriod;
final cpuManagerPolicy = this.cpuManagerPolicy;
final evictionMaxPodGracePeriodSeconds =
this.evictionMaxPodGracePeriodSeconds;
final evictionMinimumReclaim = this.evictionMinimumReclaim;
final evictionSoft = this.evictionSoft;
final evictionSoftGracePeriod = this.evictionSoftGracePeriod;
final imageGcHighThresholdPercent = this.imageGcHighThresholdPercent;
final imageGcLowThresholdPercent = this.imageGcLowThresholdPercent;
final imageMaximumGcAge = this.imageMaximumGcAge;
final imageMinimumGcAge = this.imageMinimumGcAge;
final insecureKubeletReadonlyPortEnabled =
this.insecureKubeletReadonlyPortEnabled;
final maxParallelImagePulls = this.maxParallelImagePulls;
final memoryManager = this.memoryManager;
final podPidsLimit = this.podPidsLimit;
final singleProcessOomKill = this.singleProcessOomKill;
final topologyManager = this.topologyManager;
return {
'allowedUnsafeSysctls': ?allowedUnsafeSysctls,
'containerLogMaxFiles': ?containerLogMaxFiles,
'containerLogMaxSize': ?containerLogMaxSize,
'cpuCfsQuota': ?cpuCfsQuota,
'cpuCfsQuotaPeriod': ?cpuCfsQuotaPeriod,
'cpuManagerPolicy': ?cpuManagerPolicy,
'evictionMaxPodGracePeriodSeconds': ?evictionMaxPodGracePeriodSeconds,
'evictionMinimumReclaim': ?evictionMinimumReclaim,
'evictionSoft': ?evictionSoft,
'evictionSoftGracePeriod': ?evictionSoftGracePeriod,
'imageGcHighThresholdPercent': ?imageGcHighThresholdPercent,
'imageGcLowThresholdPercent': ?imageGcLowThresholdPercent,
'imageMaximumGcAge': ?imageMaximumGcAge,
'imageMinimumGcAge': ?imageMinimumGcAge,
'insecureKubeletReadonlyPortEnabled': ?insecureKubeletReadonlyPortEnabled,
'maxParallelImagePulls': ?maxParallelImagePulls,
'memoryManager': ?memoryManager,
'podPidsLimit': ?podPidsLimit,
'singleProcessOomKill': ?singleProcessOomKill,
'topologyManager': ?topologyManager,
};
}