toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final canIpForward = this.canIpForward;
  final description = this.description;
  final disk = this.disk;
  final guestAccelerator = this.guestAccelerator;
  final keyRevocationActionType = this.keyRevocationActionType;
  final labels = this.labels;
  final machineType = this.machineType;
  final metadata = this.metadata;
  final minCpuPlatform = this.minCpuPlatform;
  final networkInterface = this.networkInterface;
  final scheduling = this.scheduling;
  final serviceAccount = this.serviceAccount;
  final sourceInstance = this.sourceInstance;
  final tags = this.tags;
  return {
    'canIpForward': ?canIpForward,
    'description': ?description,
    'disk': ?disk,
    'guestAccelerator': ?guestAccelerator,
    'keyRevocationActionType': ?keyRevocationActionType,
    'labels': ?labels,
    'machineType': ?machineType,
    'metadata': ?metadata,
    'minCpuPlatform': ?minCpuPlatform,
    'networkInterface': ?networkInterface,
    'scheduling': ?scheduling,
    'serviceAccount': ?serviceAccount,
    'sourceInstance': ?sourceInstance,
    'tags': ?tags,
  };
}