toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final linuxNodeConfig = this.linuxNodeConfig;
  final networkTags = this.networkTags;
  final nodeKubeletConfig = this.nodeKubeletConfig;
  final resourceManagerTags = this.resourceManagerTags;
  return {
    'linuxNodeConfig': ?linuxNodeConfig,
    'networkTags': ?networkTags,
    'nodeKubeletConfig': ?nodeKubeletConfig,
    'resourceManagerTags': ?resourceManagerTags,
  };
}