Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2682#discussion_r216687983
--- Diff:
nifi-nar-bundles/nifi-gcp-bundle/nifi-gcp-processors/src/main/java/org/apache/nifi/processors/gcp/AbstractGCPProcessor.java
---
@@ -43,7 +43,8 @@
.Builder().name("gcp-project-id")
.displayName("Project ID")
.description("Google Cloud Project ID")
- .required(true)
--- End diff --
Can you add a custom validate to ensure this property is set in processors
where it is required (such as the one you're proposing here)?
---