toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final controlPlaneV2Config = this.controlPlaneV2Config;
final dhcpIpConfig = this.dhcpIpConfig;
final hostConfig = this.hostConfig;
final podAddressCidrBlocks = this.podAddressCidrBlocks;
final serviceAddressCidrBlocks = this.serviceAddressCidrBlocks;
final staticIpConfig = this.staticIpConfig;
final vcenterNetwork = this.vcenterNetwork;
return {
'controlPlaneV2Config': ?controlPlaneV2Config,
'dhcpIpConfig': ?dhcpIpConfig,
'hostConfig': ?hostConfig,
'podAddressCidrBlocks': ?podAddressCidrBlocks,
'serviceAddressCidrBlocks': ?serviceAddressCidrBlocks,
'staticIpConfig': ?staticIpConfig,
'vcenterNetwork': ?vcenterNetwork,
};
}