toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final additionalLicenses = this.additionalLicenses;
  final bootDiskDefaults = this.bootDiskDefaults;
  final computeScheduling = this.computeScheduling;
  final enableIntegrityMonitoring = this.enableIntegrityMonitoring;
  final enableVtpm = this.enableVtpm;
  final encryption = this.encryption;
  final hostname = this.hostname;
  final labels = this.labels;
  final machineType = this.machineType;
  final machineTypeSeries = this.machineTypeSeries;
  final metadata = this.metadata;
  final networkInterfaces = this.networkInterfaces;
  final networkTags = this.networkTags;
  final secureBoot = this.secureBoot;
  final serviceAccount = this.serviceAccount;
  final vmName = this.vmName;
  return {
    'additionalLicenses': ?additionalLicenses,
    'bootDiskDefaults': ?bootDiskDefaults,
    'computeScheduling': ?computeScheduling,
    'enableIntegrityMonitoring': ?enableIntegrityMonitoring,
    'enableVtpm': ?enableVtpm,
    'encryption': ?encryption,
    'hostname': ?hostname,
    'labels': ?labels,
    'machineType': ?machineType,
    'machineTypeSeries': ?machineTypeSeries,
    'metadata': ?metadata,
    'networkInterfaces': ?networkInterfaces,
    'networkTags': ?networkTags,
    'secureBoot': ?secureBoot,
    'serviceAccount': ?serviceAccount,
    'vmName': ?vmName,
  };
}