bejancsaba commented on code in PR #6580:
URL: https://github.com/apache/nifi/pull/6580#discussion_r1006797052
##########
nifi-nar-bundles/nifi-gcp-bundle/nifi-gcp-processors/src/main/java/org/apache/nifi/processors/gcp/bigquery/PutBigQuery.java:
##########
@@ -119,6 +127,15 @@ public class PutBigQuery extends AbstractBigQueryProcessor
{
private int recordBatchCount;
private boolean skipInvalidRows;
+ public static final PropertyDescriptor PROJECT_ID = new
PropertyDescriptor.Builder()
+ .name(PROJECT_ID_NAME)
+ .displayName("Project ID")
+ .description(PROJECT_ID_DESC)
+ .required(true)
+ .expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
+ .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+ .build();
Review Comment:
Thanks, applied I was not aware of this neat functionality :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]