toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final acceleratorConfig = this.acceleratorConfig;
final bootImage = this.bootImage;
final containerImages = this.containerImages;
final dataDisk = this.dataDisk;
final encryptionConfig = this.encryptionConfig;
final guestAttributes = this.guestAttributes;
final internalIpOnly = this.internalIpOnly;
final labels = this.labels;
final machineType = this.machineType;
final metadata = this.metadata;
final network = this.network;
final nicType = this.nicType;
final reservedIpRange = this.reservedIpRange;
final shieldedInstanceConfig = this.shieldedInstanceConfig;
final subnet = this.subnet;
final tags = this.tags;
final zone = this.zone;
return {
'acceleratorConfig': ?acceleratorConfig,
'bootImage': ?bootImage,
'containerImages': ?containerImages,
'dataDisk': ?dataDisk,
'encryptionConfig': ?encryptionConfig,
'guestAttributes': ?guestAttributes,
'internalIpOnly': ?internalIpOnly,
'labels': ?labels,
'machineType': ?machineType,
'metadata': ?metadata,
'network': ?network,
'nicType': ?nicType,
'reservedIpRange': ?reservedIpRange,
'shieldedInstanceConfig': ?shieldedInstanceConfig,
'subnet': ?subnet,
'tags': ?tags,
'zone': ?zone,
};
}