You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jf...@apache.org on 2021/07/06 20:25:03 UTC

[nifi] branch main updated (54624bc -> ace27e5)

This is an automated email from the ASF dual-hosted git repository.

jfrazee pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git.


    from 54624bc  NIFI-8758 Increased GitHub build timeout to 120 minutes
     add ace27e5  NIFI-8501 Added Azure blob client side encryption

No new revisions were added by this update.

Summary of changes:
 .../nifi-azure-processors/pom.xml                  |   6 +
 .../azure/AbstractAzureBlobProcessor.java          |  28 +++
 .../azure/storage/FetchAzureBlobStorage.java       |  24 +-
 .../azure/storage/PutAzureBlobStorage.java         |  26 ++-
 .../AzureBlobClientSideEncryptionMethod.java}      |  43 ++--
 .../utils/AzureBlobClientSideEncryptionUtils.java  | 118 ++++++++++
 .../azure/storage/ITAzureBlobStorageE2E.java       | 249 +++++++++++++++++++++
 .../azure/storage/ITListAzureBlobStorage.java      |   5 +-
 .../azure/storage/ITPutAzureBlobStorage.java       |  88 +++++++-
 .../azure/storage/TestPutAzureBlobStorage.java     |   2 +-
 .../TestAzureBlobClientSideEncryptionUtils.java    | 161 +++++++++++++
 ...reStorageUtilsGetStorageCredentialsDetails.java |   4 +-
 12 files changed, 713 insertions(+), 41 deletions(-)
 copy nifi-nar-bundles/{nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/concurrent/StandardUpdateStep.java => nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/storage/utils/AzureBlobClientSideEncryptionMethod.java} (60%)
 create mode 100644 nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/storage/utils/AzureBlobClientSideEncryptionUtils.java
 create mode 100644 nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/test/java/org/apache/nifi/processors/azure/storage/ITAzureBlobStorageE2E.java
 create mode 100644 nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/test/java/org/apache/nifi/processors/azure/storage/utils/TestAzureBlobClientSideEncryptionUtils.java