toJson method

Map<String, dynamic> toJson()

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,
  };
}