toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final maxPodsPerNode = this.maxPodsPerNode;
final networkAttachment = this.networkAttachment;
final secondaryPodRange = this.secondaryPodRange;
final subnetwork = this.subnetwork;
return {
'maxPodsPerNode': ?maxPodsPerNode,
'networkAttachment': ?networkAttachment,
'secondaryPodRange': ?secondaryPodRange,
'subnetwork': ?subnetwork,
};
}