toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apt = this.apt;
final goo = this.goo;
final migInstancesAllowed = this.migInstancesAllowed;
final postStep = this.postStep;
final preStep = this.preStep;
final rebootConfig = this.rebootConfig;
final skipUnpatchableVms = this.skipUnpatchableVms;
final windowsUpdate = this.windowsUpdate;
final yum = this.yum;
final zypper = this.zypper;
return {
'apt': ?apt,
'goo': ?goo,
'migInstancesAllowed': ?migInstancesAllowed,
'postStep': ?postStep,
'preStep': ?preStep,
'rebootConfig': ?rebootConfig,
'skipUnpatchableVms': ?skipUnpatchableVms,
'windowsUpdate': ?windowsUpdate,
'yum': ?yum,
'zypper': ?zypper,
};
}