toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final newFlexStartInstances = this.newFlexStartInstances;
final newOnDemandInstances = this.newOnDemandInstances;
final newReservedInstances = this.newReservedInstances;
final newSpotInstances = this.newSpotInstances;
return {
'newFlexStartInstances': ?newFlexStartInstances,
'newOnDemandInstances': ?newOnDemandInstances,
'newReservedInstances': ?newReservedInstances,
'newSpotInstances': ?newSpotInstances,
};
}