ContainerServiceHealthCheckConfig constructor

ContainerServiceHealthCheckConfig({
  1. int? healthyThreshold,
  2. int? intervalSeconds,
  3. String? path,
  4. String? successCodes,
  5. int? timeoutSeconds,
  6. int? unhealthyThreshold,
})

Implementation

ContainerServiceHealthCheckConfig({
  this.healthyThreshold,
  this.intervalSeconds,
  this.path,
  this.successCodes,
  this.timeoutSeconds,
  this.unhealthyThreshold,
});