toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final containers = this.containers;
  final encryptionKey = this.encryptionKey;
  final executionEnvironment = this.executionEnvironment;
  final gpuZonalRedundancyDisabled = this.gpuZonalRedundancyDisabled;
  final maxRetries = this.maxRetries;
  final nodeSelector = this.nodeSelector;
  final serviceAccount = this.serviceAccount;
  final timeout = this.timeout;
  final volumes = this.volumes;
  final vpcAccess = this.vpcAccess;
  return {
    'containers': ?containers,
    'encryptionKey': ?encryptionKey,
    'executionEnvironment': ?executionEnvironment,
    'gpuZonalRedundancyDisabled': ?gpuZonalRedundancyDisabled,
    'maxRetries': ?maxRetries,
    'nodeSelector': ?nodeSelector,
    'serviceAccount': ?serviceAccount,
    'timeout': ?timeout,
    'volumes': ?volumes,
    'vpcAccess': ?vpcAccess,
  };
}