HealthCheck constructor

HealthCheck({
  1. int? checkIntervalSec,
  2. String? creationTimestamp,
  3. String? description,
  4. GRPCHealthCheck? grpcHealthCheck,
  5. int? healthyThreshold,
  6. HTTP2HealthCheck? http2HealthCheck,
  7. HTTPHealthCheck? httpHealthCheck,
  8. HTTPSHealthCheck? httpsHealthCheck,
  9. String? id,
  10. String? kind,
  11. HealthCheckLogConfig? logConfig,
  12. String? name,
  13. String? region,
  14. String? selfLink,
  15. SSLHealthCheck? sslHealthCheck,
  16. TCPHealthCheck? tcpHealthCheck,
  17. int? timeoutSec,
  18. String? type,
  19. int? unhealthyThreshold,
})

Implementation

HealthCheck({
  this.checkIntervalSec,
  this.creationTimestamp,
  this.description,
  this.grpcHealthCheck,
  this.healthyThreshold,
  this.http2HealthCheck,
  this.httpHealthCheck,
  this.httpsHealthCheck,
  this.id,
  this.kind,
  this.logConfig,
  this.name,
  this.region,
  this.selfLink,
  this.sslHealthCheck,
  this.tcpHealthCheck,
  this.timeoutSec,
  this.type,
  this.unhealthyThreshold,
});