HecConfig represents vendor-specific config for an HTTPS Event Collector (HEC) endpoint.
| 84 | |
| 85 | // HecConfig represents vendor-specific config for an HTTPS Event Collector (HEC) endpoint. |
| 86 | type HecConfig struct { |
| 87 | Domain string `json:"domain"` |
| 88 | Port uint16 `json:"port"` |
| 89 | KeyID string `json:"key_id"` |
| 90 | EncryptedToken string `json:"encrypted_token"` |
| 91 | Path string `json:"path"` |
| 92 | SSLVerify bool `json:"ssl_verify"` |
| 93 | } |
| 94 | |
| 95 | // GoogleCloudConfig represents vendor-specific config for Google Cloud Storage. |
| 96 | type GoogleCloudConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected