Probe constructor

Probe({
  1. ExecAction? exec,
  2. int? failureThreshold,
  3. GRPCAction? grpc,
  4. HTTPGetAction? httpGet,
  5. int? initialDelaySeconds,
  6. int? periodSeconds,
  7. int? successThreshold,
  8. TCPSocketAction? tcpSocket,
  9. int? timeoutSeconds,
})

Implementation

Probe({
  this.exec,
  this.failureThreshold,
  this.grpc,
  this.httpGet,
  this.initialDelaySeconds,
  this.periodSeconds,
  this.successThreshold,
  this.tcpSocket,
  this.timeoutSeconds,
});