Probe constructor

Probe({
  1. Probe_ExecAction? exec,
  2. Probe_HttpGetAction? httpGet,
  3. Probe_GrpcAction? grpc,
  4. Probe_TcpSocketAction? tcpSocket,
  5. int periodSeconds = 0,
  6. int timeoutSeconds = 0,
  7. int failureThreshold = 0,
  8. int successThreshold = 0,
  9. int initialDelaySeconds = 0,
})

Implementation

Probe({
  this.exec,
  this.httpGet,
  this.grpc,
  this.tcpSocket,
  this.periodSeconds = 0,
  this.timeoutSeconds = 0,
  this.failureThreshold = 0,
  this.successThreshold = 0,
  this.initialDelaySeconds = 0,
}) : super(fullyQualifiedName);