Versions Compared

Key

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

...

  1. To distribute to multiple accounts, the configuration string should be an array.In the example below the target_dir is optional.

    Code Block
    languagejs
    themeConfluence
    titleConfiguration Example - Push To Multiple Containers
    [
        {"account":"eagleaccount1","application_id":"application-id1","application_secret":"BASE64ENCODEDAPPSECRET==","tenant_id":"tenant-id", "container_name": "container1", "target_dir": "mydropbox"},
        {"account":"eagleaccount2","application_id":"application-id2","application_secret":"BASE64ENCODEDAPPSECRET==","tenant_id":"tenant-id", "container_name": "container2", "target_dir": "mydropbox"}
    ]



  2. If the extract has to be distributed to more than one container within same account, you can specify an array of containers.

    Code Block
    languagejs
    themeConfluence
    titleConfiguration Example - Push To Several Containers, Same Account
    [
        {"account":"eagleaccount1","application_id":"application-id1","application_secret":"BASE64ENCODEDAPPSECRET==","tenant_id":"tenant-id", 
                 "containers" : [
                       {"container_name": "container1", "target_dir": "mydropbox1"},
                       {"container_name": "container2", "target_dir": "mydropbox2"},
                 ]
         }
    ]