toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final baseOutputDirectory = this.baseOutputDirectory;
final enableDashboardAccess = this.enableDashboardAccess;
final enableWebAccess = this.enableWebAccess;
final experiment = this.experiment;
final experimentRun = this.experimentRun;
final models = this.models;
final network = this.network;
final persistentResourceId = this.persistentResourceId;
final protectedArtifactLocationId = this.protectedArtifactLocationId;
final pscInterfaceConfig = this.pscInterfaceConfig;
final reservedIpRanges = this.reservedIpRanges;
final scheduling = this.scheduling;
final serviceAccount = this.serviceAccount;
final tensorboard = this.tensorboard;
final workerPoolSpecs = this.workerPoolSpecs;
return {
'baseOutputDirectory': ?baseOutputDirectory,
'enableDashboardAccess': ?enableDashboardAccess,
'enableWebAccess': ?enableWebAccess,
'experiment': ?experiment,
'experimentRun': ?experimentRun,
'models': ?models,
'network': ?network,
'persistentResourceId': ?persistentResourceId,
'protectedArtifactLocationId': ?protectedArtifactLocationId,
'pscInterfaceConfig': ?pscInterfaceConfig,
'reservedIpRanges': ?reservedIpRanges,
'scheduling': ?scheduling,
'serviceAccount': ?serviceAccount,
'tensorboard': ?tensorboard,
'workerPoolSpecs': ?workerPoolSpecs,
};
}