Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • "credentials"/"user_id" - the login user id on the SFTP server
  • "credentials"/"password" - the password to login to the SFTP server
  • "credentials"/"private_key" - the name to the private key file, if necessary. The private key file should be in the estar/tpe/dynamic/dataservices/certificates folder.
  • "credentials"/"passphrase" - the passphrase for the private key
  • "credentials"/"private_key_type"  - the private key type, for example RSA or DSA, defaults to RSA
  • "cfg"/"host" - the host name or IP address of the SFTP server
  • "cfg"/"port" - the port number of the SFTP server, usually set to 22
  • "cfg"/"make_dir" - values of true or false.  Set to true to create missing directories in the distribution path on the SFTP server and false to fail if the directory is missing. The default is true.
  • "cfg"/"location" a path on the SFTP server to distribute the files to.


AZURE Publishing Configuration (starting December 2019 release)

The Azure publishing configuration profile sample is below:

Code Block
languagejs
themeConfluence
titleSample Azure Publishing Configuration
{
    "data_sinks":
    [{
            "sink": "azure_dev",
            "type": "azureblob",
            "cfg": {
                "credentials": {
                    "account": "devdataaccount",
                    "application_id": "11111111-1111-470c-9d01-9999999999",
                    "application_secret": "dalkjflj*SDjhDSljadaok",
                    "tenant_id": "1111111111-1111111-1111-1111-111111111"
                },
                "container_name": "devcontainer",
                "target_dir": "dropdir/dest",
                "compression_codec": "gzip"
            }
        }
    ]
}


The "compression_codec" parameter has to be set to gzip to compress data or none to send uncompressed data.