This repository was archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathdcm_to_storage.json
More file actions
executable file
·36 lines (36 loc) · 1.48 KB
/
Copy pathdcm_to_storage.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"script":{
"released":"2017-08-14",
"license":"Licensed under the Apache License, Version 2.0",
"copyright":"Copyright 2020 Google LLC",
"icon":"donut_small",
"title":"CM360 Report To Storage",
"description":"Move existing CM report into a Storage bucket.",
"from":["cm360"],
"to":["storage"],
"instructions":[
"Specify an account id.",
"Specify either report name or report id to move a report.",
"The most recent file will be moved to the bucket.",
"Schema is pulled from the official CM specification."
],
"authors":["kenjora@google.com"]
},
"tasks":[
{ "dcm":{
"auth":{"field":{ "name":"auth_read", "kind":"authentication", "order":1, "default":"user", "description":"Credentials used for reading data." }},
"report":{
"account":{"field":{ "name":"account", "kind":"integer", "order":2, "default":"" }},
"report_id":{"field":{ "name":"report_id", "kind":"integer", "order":3, "default":"" }},
"name":{"field":{ "name":"report_name", "kind":"string", "order":4, "default":"" }}
},
"out":{
"storage":{
"auth":{"field":{ "name":"auth_write", "kind":"authentication", "order":1, "default":"service", "description":"Credentials used for writing data." }},
"bucket":{"field":{ "name":"bucket", "kind":"string", "order":5, "default":"" }},
"path":{"field":{ "name":"path", "kind":"string", "order":6, "default":"CM_Report" }}
}
}
}}
]
}