toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final autoDeployConfidenceThreshold = this.autoDeployConfidenceThreshold;
final autoDeployExpirationSec = this.autoDeployExpirationSec;
final autoDeployImpactedBaselineThreshold =
this.autoDeployImpactedBaselineThreshold;
final autoDeployLoadThreshold = this.autoDeployLoadThreshold;
final detectionAbsoluteQps = this.detectionAbsoluteQps;
final detectionLoadThreshold = this.detectionLoadThreshold;
final detectionRelativeToBaselineQps = this.detectionRelativeToBaselineQps;
final name = this.name;
final trafficGranularityConfigs = this.trafficGranularityConfigs;
return {
'autoDeployConfidenceThreshold': ?autoDeployConfidenceThreshold,
'autoDeployExpirationSec': ?autoDeployExpirationSec,
'autoDeployImpactedBaselineThreshold':
?autoDeployImpactedBaselineThreshold,
'autoDeployLoadThreshold': ?autoDeployLoadThreshold,
'detectionAbsoluteQps': ?detectionAbsoluteQps,
'detectionLoadThreshold': ?detectionLoadThreshold,
'detectionRelativeToBaselineQps': ?detectionRelativeToBaselineQps,
'name': ?name,
'trafficGranularityConfigs': ?trafficGranularityConfigs,
};
}