Versions Compared

Key

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

On This Page

Table of Contents

Overview

Some advanced job settings are not surfaced in the DryvIQ user interface. The advanced scripting feature allows you to add these configuration options to your job. This means you can configure the job without using a REST API tool such as Postman. Instead, you would add the code to this page. Additional configuration options may be added to the user interface as part of future releases, so be sure to review the release notes for each release to see what’s been added.

Image Modified

Info

...

You can click and drag the bottom-right corner of the scripting window to make it larger.

Additional Job Configuration Options

These options are not surfaced in the DryvIQ user interface but can be configured through the Scripting option when creating a new job.

...

...

...

Job Failure Policy

...

Job Validation Report | item_inspection_policy

...

Large Item Policy

...

Lock Propagation

...

Dropbox for Business | Transfer Published Versions Only

...

Parallel Writes

...

...

Directory Item Limits | max_items_per_container

...

Duplicate Name Policy

...

Item Overwrite Policy

...

Trust Mode | Optimize Data Upload

Sample Scripting Content

Code Block
{
"transfer": {
"audit_level": "trace",
"batch_mode": "always",
"failure_policy": "continue",
"item_inspection_policy": "all",
"large_item": "skip",
"lock_propagation": "ignore",
"versioning": {
            "preserve": "native",
            "select": "published"
        },
"performance": {
       "parallel_writes": {
            "requested": 4
          }
      },  
"timestamps": true,        
"empty_containers": "create",
"max_items_per_container": 10000,
"duplicate_names": "rename",
"item_overwrite": "overwrite",
"trust_mode": true,
"tags": "none"
 }
}