Modifier and Type | Class and Description |
---|---|
static class |
IprepdIO.ExemptedObject
ExemptedObject contains the metadata associated with a objects excluded from reporting to
iprepd.
|
static class |
IprepdIO.Reader |
static class |
IprepdIO.ReputationValue
A reputation response from iprepd
|
static class |
IprepdIO.Write
Write violation messages to iprepd based on submitted
Alert JSON strings |
Modifier and Type | Field and Description |
---|---|
static String |
exemptedEmailKind
Kind for exempted email entry in Datastore
|
static String |
exemptedIpKind
Kind for exempted IP entry in Datastore
|
static String |
exemptedObjectNamespace
Namespace for exempted objects in Datastore
|
static String |
METRICS_NAMESPACE
Namespace for custom metrics
|
static String |
VIOLATION_WRITES_METRIC
Custom metric name used to count iprepd violation submissions from write functions
|
Constructor and Description |
---|
IprepdIO() |
Modifier and Type | Method and Description |
---|---|
static void |
addMetadataIfIpIsExempt(String ip,
Alert a)
Add IP metadata if the IP address is exempt from reporting to iprepd.
|
static void |
addMetadataIfIpIsExempt(String ip,
Alert a,
String datastoreProject)
Add IP metadata if the IP address is exempt from reporting to iprepd.
|
static void |
addMetadataIfObjectIsExempt(String obj,
String type,
Alert a)
Add metadata if the object is exempt from reporting to iprepd.
|
static void |
addMetadataIfObjectIsExempt(String obj,
String type,
Alert a,
String datastoreProject)
Add metadata if the object is exempt from reporting to iprepd.
|
static void |
addMetadataSuppressRecovery(Integer value,
Alert a)
Add iprepd recovery suppression metadata to an alert
|
static IprepdIO.Reader |
getReader(String iprepdSpec,
String project)
Return a new reader for reading reputation from iprepd
|
static IprepdIO.Write |
writeSpecs(String[] iprepdSpecs,
String project)
Return
PTransform to emit violations to one or more instances of iprepd |
public static final String VIOLATION_WRITES_METRIC
public static final String METRICS_NAMESPACE
public static final String exemptedIpKind
public static final String exemptedEmailKind
public static final String exemptedObjectNamespace
public static IprepdIO.Reader getReader(String iprepdSpec, String project)
Specification format: url|api key
Example: "https://iprepd.example.com|secretapikey"
The specification processor supports RuntimeSecrets, and may therefore also be a cloudkms:// URL or a GCS URL.
iprepdSpec
- iprepd input specificationproject
- GCP project name, only required if decrypting apiKey via cloudkmspublic static IprepdIO.Write writeSpecs(String[] iprepdSpecs, String project)
PTransform
to emit violations to one or more instances of iprepd
Specification format: url|api key
Example: "https://iprepd.example.com|secretapikey"
The specification processor supports RuntimeSecrets, and may therefore also be a cloudkms:// URL or a GCS URL.
iprepdSpecs
- String[] of iprepd input specificationsproject
- GCP project name, only required if decrypting apiKey via cloudkmspublic static void addMetadataSuppressRecovery(Integer value, Alert a)
value
- Seconds for recovery suppressiona
- Alertpublic static void addMetadataIfIpIsExempt(String ip, Alert a) throws IOException
ip
- IP address to checka
- Alert to add metadata toIOException
- IOExceptionpublic static void addMetadataIfIpIsExempt(String ip, Alert a, String datastoreProject) throws IOException
This variant allows specification of a project ID, for cases where the datastore instance lives in another GCP project.
ip
- IP address to checka
- Alert to add metadata todatastoreProject
- If Datastore is in another project, non-null project IDIOException
- IOExceptionpublic static void addMetadataIfObjectIsExempt(String obj, String type, Alert a) throws IOException
obj
- Object to check (usually an IP or email)type
- Type of object (usually "ip" or "email")a
- Alert to add metadata toIOException
- IOExceptionpublic static void addMetadataIfObjectIsExempt(String obj, String type, Alert a, String datastoreProject) throws IOException
This variant allows specification of a project ID, for cases where the datastore instance lives in another GCP project.
If for some reason the exemption state lookup fails, an IOException
will be thrown.
obj
- Object to check (usually an IP or email)type
- Type of object (usually "ip" or "email")a
- Alert to add metadata todatastoreProject
- If Datastore is in another project, non-null project IDIOException
- IOExceptionCopyright © 2022. All rights reserved.