toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowStoppingForUpdate = this.allowStoppingForUpdate;
final ansibleRunnerServiceAccount = this.ansibleRunnerServiceAccount;
final app = this.app;
final database = this.database;
final deploymentModel = this.deploymentModel;
final environmentType = this.environmentType;
final gcpProjectId = this.gcpProjectId;
final location = this.location;
final mediaBucketName = this.mediaBucketName;
final sapBootDiskImage = this.sapBootDiskImage;
final scalingMethod = this.scalingMethod;
final version = this.version;
final vmPrefix = this.vmPrefix;
return {
'allowStoppingForUpdate': ?allowStoppingForUpdate,
'ansibleRunnerServiceAccount': ?ansibleRunnerServiceAccount,
'app': ?app,
'database': ?database,
'deploymentModel': ?deploymentModel,
'environmentType': ?environmentType,
'gcpProjectId': ?gcpProjectId,
'location': ?location,
'mediaBucketName': ?mediaBucketName,
'sapBootDiskImage': ?sapBootDiskImage,
'scalingMethod': ?scalingMethod,
'version': ?version,
'vmPrefix': ?vmPrefix,
};
}