toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bootDiskProfile = this.bootDiskProfile;
final dedicatedLocalSsdProfile = this.dedicatedLocalSsdProfile;
final enabled = this.enabled;
final encryptionConfig = this.encryptionConfig;
final ephemeralLocalSsdProfile = this.ephemeralLocalSsdProfile;
return {
'bootDiskProfile': ?bootDiskProfile,
'dedicatedLocalSsdProfile': ?dedicatedLocalSsdProfile,
'enabled': ?enabled,
'encryptionConfig': ?encryptionConfig,
'ephemeralLocalSsdProfile': ?ephemeralLocalSsdProfile,
};
}