Github user jvwing commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2017#discussion_r137959785
--- Diff:
nifi-nar-bundles/nifi-gcp-bundle/nifi-gcp-processors/src/main/java/org/apache/nifi/processors/gcp/AbstractGCPProcessor.java
---
@@ -55,6 +55,25 @@
.addValidator(StandardValidators.INTEGER_VALIDATOR)
.build();
+ public static final PropertyDescriptor PROXY_HOST = new
PropertyDescriptor
+ .Builder().name("proxy-host")
+ .displayName("Proxy host")
+ .description("IP or hostname of the proxy to be used")
+ .required(false)
+ .expressionLanguageSupported(false)
+ .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+ .build();
+
+ public static final PropertyDescriptor PROXY_PORT = new
PropertyDescriptor
+ .Builder().name("proxy-port")
--- End diff --
Same thing with the `gcp-` prefix.
---