@n8n-dev/n8n-nodes-googleapis-script 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +127 -0
- package/dist/banner.svg +97 -0
- package/dist/credentials/GoogleapisScriptApi.credentials.d.ts +9 -0
- package/dist/credentials/GoogleapisScriptApi.credentials.js +49 -0
- package/dist/credentials/GoogleapisScriptApi.credentials.js.map +1 -0
- package/dist/icons/googleapis-script.dark.png +0 -0
- package/dist/icons/googleapis-script.png +0 -0
- package/dist/nodes/GoogleapisScript/GoogleapisScript.node.d.ts +4 -0
- package/dist/nodes/GoogleapisScript/GoogleapisScript.node.js +68 -0
- package/dist/nodes/GoogleapisScript/GoogleapisScript.node.js.map +1 -0
- package/dist/nodes/GoogleapisScript/GoogleapisScript.node.json +20 -0
- package/dist/nodes/GoogleapisScript/googleapis-script.dark.png +0 -0
- package/dist/nodes/GoogleapisScript/googleapis-script.png +0 -0
- package/dist/nodes/GoogleapisScript/resources/index.d.ts +3 -0
- package/dist/nodes/GoogleapisScript/resources/index.js +10 -0
- package/dist/nodes/GoogleapisScript/resources/index.js.map +1 -0
- package/dist/nodes/GoogleapisScript/resources/processes/index.d.ts +2 -0
- package/dist/nodes/GoogleapisScript/resources/processes/index.js +609 -0
- package/dist/nodes/GoogleapisScript/resources/processes/index.js.map +1 -0
- package/dist/nodes/GoogleapisScript/resources/projects/index.d.ts +2 -0
- package/dist/nodes/GoogleapisScript/resources/projects/index.js +1227 -0
- package/dist/nodes/GoogleapisScript/resources/projects/index.js.map +1 -0
- package/dist/nodes/GoogleapisScript/resources/scripts/index.d.ts +2 -0
- package/dist/nodes/GoogleapisScript/resources/scripts/index.js +171 -0
- package/dist/nodes/GoogleapisScript/resources/scripts/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1,1227 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.projectsDescription = void 0;
|
|
4
|
+
exports.projectsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Projects"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Script Projects Create",
|
|
20
|
+
"value": "Script Projects Create",
|
|
21
|
+
"action": "Script Projects Create",
|
|
22
|
+
"description": "Creates a new, empty script project with no script files and a base manifest file.",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "POST",
|
|
26
|
+
"url": "=/v1/projects"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Script Projects Get",
|
|
32
|
+
"value": "Script Projects Get",
|
|
33
|
+
"action": "Script Projects Get",
|
|
34
|
+
"description": "Gets a script project's metadata.",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Script Projects Get Content",
|
|
44
|
+
"value": "Script Projects Get Content",
|
|
45
|
+
"action": "Script Projects Get Content",
|
|
46
|
+
"description": "Gets the content of the script project, including the code source and metadata for each script file.",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "GET",
|
|
50
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/content"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Script Projects Update Content",
|
|
56
|
+
"value": "Script Projects Update Content",
|
|
57
|
+
"action": "Script Projects Update Content",
|
|
58
|
+
"description": "Updates the content of the specified script project. This content is stored as the HEAD version, and is used when the script is executed as a trigger, in the script editor, in add-on preview mode, or as a web app or Apps Script API in development mode. This clears all the existing files in the project.",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "PUT",
|
|
62
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/content"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Script Projects Deployments List",
|
|
68
|
+
"value": "Script Projects Deployments List",
|
|
69
|
+
"action": "Script Projects Deployments List",
|
|
70
|
+
"description": "Lists the deployments of an Apps Script project.",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "GET",
|
|
74
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/deployments"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Script Projects Deployments Create",
|
|
80
|
+
"value": "Script Projects Deployments Create",
|
|
81
|
+
"action": "Script Projects Deployments Create",
|
|
82
|
+
"description": "Creates a deployment of an Apps Script project.",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "POST",
|
|
86
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/deployments"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Script Projects Deployments Delete",
|
|
92
|
+
"value": "Script Projects Deployments Delete",
|
|
93
|
+
"action": "Script Projects Deployments Delete",
|
|
94
|
+
"description": "Deletes a deployment of an Apps Script project.",
|
|
95
|
+
"routing": {
|
|
96
|
+
"request": {
|
|
97
|
+
"method": "DELETE",
|
|
98
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/deployments/{{$parameter[\"deploymentId\"]}}"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "Script Projects Deployments Get",
|
|
104
|
+
"value": "Script Projects Deployments Get",
|
|
105
|
+
"action": "Script Projects Deployments Get",
|
|
106
|
+
"description": "Gets a deployment of an Apps Script project.",
|
|
107
|
+
"routing": {
|
|
108
|
+
"request": {
|
|
109
|
+
"method": "GET",
|
|
110
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/deployments/{{$parameter[\"deploymentId\"]}}"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "Script Projects Deployments Update",
|
|
116
|
+
"value": "Script Projects Deployments Update",
|
|
117
|
+
"action": "Script Projects Deployments Update",
|
|
118
|
+
"description": "Updates a deployment of an Apps Script project.",
|
|
119
|
+
"routing": {
|
|
120
|
+
"request": {
|
|
121
|
+
"method": "PUT",
|
|
122
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/deployments/{{$parameter[\"deploymentId\"]}}"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "Script Projects Get Metrics",
|
|
128
|
+
"value": "Script Projects Get Metrics",
|
|
129
|
+
"action": "Script Projects Get Metrics",
|
|
130
|
+
"description": "Get metrics data for scripts, such as number of executions and active users.",
|
|
131
|
+
"routing": {
|
|
132
|
+
"request": {
|
|
133
|
+
"method": "GET",
|
|
134
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/metrics"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "Script Projects Versions List",
|
|
140
|
+
"value": "Script Projects Versions List",
|
|
141
|
+
"action": "Script Projects Versions List",
|
|
142
|
+
"description": "List the versions of a script project.",
|
|
143
|
+
"routing": {
|
|
144
|
+
"request": {
|
|
145
|
+
"method": "GET",
|
|
146
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/versions"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "Script Projects Versions Create",
|
|
152
|
+
"value": "Script Projects Versions Create",
|
|
153
|
+
"action": "Script Projects Versions Create",
|
|
154
|
+
"description": "Creates a new immutable version using the current code, with a unique version number.",
|
|
155
|
+
"routing": {
|
|
156
|
+
"request": {
|
|
157
|
+
"method": "POST",
|
|
158
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/versions"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Script Projects Versions Get",
|
|
164
|
+
"value": "Script Projects Versions Get",
|
|
165
|
+
"action": "Script Projects Versions Get",
|
|
166
|
+
"description": "Gets a version of a script project.",
|
|
167
|
+
"routing": {
|
|
168
|
+
"request": {
|
|
169
|
+
"method": "GET",
|
|
170
|
+
"url": "=/v1/projects/{{$parameter[\"scriptId\"]}}/versions/{{$parameter[\"versionNumber\"]}}"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"default": ""
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"displayName": "POST /v1/projects",
|
|
179
|
+
"name": "operation",
|
|
180
|
+
"type": "notice",
|
|
181
|
+
"typeOptions": {
|
|
182
|
+
"theme": "info"
|
|
183
|
+
},
|
|
184
|
+
"default": "",
|
|
185
|
+
"displayOptions": {
|
|
186
|
+
"show": {
|
|
187
|
+
"resource": [
|
|
188
|
+
"Projects"
|
|
189
|
+
],
|
|
190
|
+
"operation": [
|
|
191
|
+
"Script Projects Create"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"displayName": "Parent ID",
|
|
198
|
+
"name": "parentId",
|
|
199
|
+
"type": "string",
|
|
200
|
+
"default": "",
|
|
201
|
+
"description": "The Drive ID of a parent file that the created script project is bound to. This is usually the ID of a Google Doc, Google Sheet, Google Form, or Google Slides file. If not set, a standalone script project is created.",
|
|
202
|
+
"routing": {
|
|
203
|
+
"send": {
|
|
204
|
+
"property": "parentId",
|
|
205
|
+
"propertyInDotNotation": false,
|
|
206
|
+
"type": "body",
|
|
207
|
+
"value": "={{ $value }}"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"displayOptions": {
|
|
211
|
+
"show": {
|
|
212
|
+
"resource": [
|
|
213
|
+
"Projects"
|
|
214
|
+
],
|
|
215
|
+
"operation": [
|
|
216
|
+
"Script Projects Create"
|
|
217
|
+
]
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"displayName": "Title",
|
|
223
|
+
"name": "title",
|
|
224
|
+
"type": "string",
|
|
225
|
+
"default": "",
|
|
226
|
+
"description": "The title for the project.",
|
|
227
|
+
"routing": {
|
|
228
|
+
"send": {
|
|
229
|
+
"property": "title",
|
|
230
|
+
"propertyInDotNotation": false,
|
|
231
|
+
"type": "body",
|
|
232
|
+
"value": "={{ $value }}"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"displayOptions": {
|
|
236
|
+
"show": {
|
|
237
|
+
"resource": [
|
|
238
|
+
"Projects"
|
|
239
|
+
],
|
|
240
|
+
"operation": [
|
|
241
|
+
"Script Projects Create"
|
|
242
|
+
]
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"displayName": "GET /v1/projects/{scriptId}",
|
|
248
|
+
"name": "operation",
|
|
249
|
+
"type": "notice",
|
|
250
|
+
"typeOptions": {
|
|
251
|
+
"theme": "info"
|
|
252
|
+
},
|
|
253
|
+
"default": "",
|
|
254
|
+
"displayOptions": {
|
|
255
|
+
"show": {
|
|
256
|
+
"resource": [
|
|
257
|
+
"Projects"
|
|
258
|
+
],
|
|
259
|
+
"operation": [
|
|
260
|
+
"Script Projects Get"
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"displayName": "Script ID",
|
|
267
|
+
"name": "scriptId",
|
|
268
|
+
"required": true,
|
|
269
|
+
"description": "The script project's Drive ID.",
|
|
270
|
+
"default": "",
|
|
271
|
+
"type": "string",
|
|
272
|
+
"displayOptions": {
|
|
273
|
+
"show": {
|
|
274
|
+
"resource": [
|
|
275
|
+
"Projects"
|
|
276
|
+
],
|
|
277
|
+
"operation": [
|
|
278
|
+
"Script Projects Get"
|
|
279
|
+
]
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"displayName": "GET /v1/projects/{scriptId}/content",
|
|
285
|
+
"name": "operation",
|
|
286
|
+
"type": "notice",
|
|
287
|
+
"typeOptions": {
|
|
288
|
+
"theme": "info"
|
|
289
|
+
},
|
|
290
|
+
"default": "",
|
|
291
|
+
"displayOptions": {
|
|
292
|
+
"show": {
|
|
293
|
+
"resource": [
|
|
294
|
+
"Projects"
|
|
295
|
+
],
|
|
296
|
+
"operation": [
|
|
297
|
+
"Script Projects Get Content"
|
|
298
|
+
]
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"displayName": "Script ID",
|
|
304
|
+
"name": "scriptId",
|
|
305
|
+
"required": true,
|
|
306
|
+
"description": "The script project's Drive ID.",
|
|
307
|
+
"default": "",
|
|
308
|
+
"type": "string",
|
|
309
|
+
"displayOptions": {
|
|
310
|
+
"show": {
|
|
311
|
+
"resource": [
|
|
312
|
+
"Projects"
|
|
313
|
+
],
|
|
314
|
+
"operation": [
|
|
315
|
+
"Script Projects Get Content"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"displayName": "Version Number",
|
|
322
|
+
"name": "versionNumber",
|
|
323
|
+
"description": "The version number of the project to retrieve. If not provided, the project's HEAD version is returned.",
|
|
324
|
+
"default": 0,
|
|
325
|
+
"type": "number",
|
|
326
|
+
"routing": {
|
|
327
|
+
"send": {
|
|
328
|
+
"type": "query",
|
|
329
|
+
"property": "versionNumber",
|
|
330
|
+
"value": "={{ $value }}",
|
|
331
|
+
"propertyInDotNotation": false
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
"displayOptions": {
|
|
335
|
+
"show": {
|
|
336
|
+
"resource": [
|
|
337
|
+
"Projects"
|
|
338
|
+
],
|
|
339
|
+
"operation": [
|
|
340
|
+
"Script Projects Get Content"
|
|
341
|
+
]
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"displayName": "PUT /v1/projects/{scriptId}/content",
|
|
347
|
+
"name": "operation",
|
|
348
|
+
"type": "notice",
|
|
349
|
+
"typeOptions": {
|
|
350
|
+
"theme": "info"
|
|
351
|
+
},
|
|
352
|
+
"default": "",
|
|
353
|
+
"displayOptions": {
|
|
354
|
+
"show": {
|
|
355
|
+
"resource": [
|
|
356
|
+
"Projects"
|
|
357
|
+
],
|
|
358
|
+
"operation": [
|
|
359
|
+
"Script Projects Update Content"
|
|
360
|
+
]
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"displayName": "Script ID",
|
|
366
|
+
"name": "scriptId",
|
|
367
|
+
"required": true,
|
|
368
|
+
"description": "The script project's Drive ID.",
|
|
369
|
+
"default": "",
|
|
370
|
+
"type": "string",
|
|
371
|
+
"displayOptions": {
|
|
372
|
+
"show": {
|
|
373
|
+
"resource": [
|
|
374
|
+
"Projects"
|
|
375
|
+
],
|
|
376
|
+
"operation": [
|
|
377
|
+
"Script Projects Update Content"
|
|
378
|
+
]
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"displayName": "Files",
|
|
384
|
+
"name": "files",
|
|
385
|
+
"type": "json",
|
|
386
|
+
"default": "[\n {\n \"functionSet\": {\n \"values\": [\n {\n \"parameters\": [\n null\n ]\n }\n ]\n },\n \"lastModifyUser\": {}\n }\n]",
|
|
387
|
+
"description": "The list of script project files. One of the files is a script manifest; it must be named \"appsscript\", must have type of JSON, and include the manifest configurations for the project.",
|
|
388
|
+
"routing": {
|
|
389
|
+
"send": {
|
|
390
|
+
"property": "files",
|
|
391
|
+
"propertyInDotNotation": false,
|
|
392
|
+
"type": "body",
|
|
393
|
+
"value": "={{ JSON.parse($value) }}"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"displayOptions": {
|
|
397
|
+
"show": {
|
|
398
|
+
"resource": [
|
|
399
|
+
"Projects"
|
|
400
|
+
],
|
|
401
|
+
"operation": [
|
|
402
|
+
"Script Projects Update Content"
|
|
403
|
+
]
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"displayName": "Script ID",
|
|
409
|
+
"name": "scriptId",
|
|
410
|
+
"type": "string",
|
|
411
|
+
"default": "",
|
|
412
|
+
"description": "The script project's Drive ID.",
|
|
413
|
+
"routing": {
|
|
414
|
+
"send": {
|
|
415
|
+
"property": "scriptId",
|
|
416
|
+
"propertyInDotNotation": false,
|
|
417
|
+
"type": "body",
|
|
418
|
+
"value": "={{ $value }}"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"displayOptions": {
|
|
422
|
+
"show": {
|
|
423
|
+
"resource": [
|
|
424
|
+
"Projects"
|
|
425
|
+
],
|
|
426
|
+
"operation": [
|
|
427
|
+
"Script Projects Update Content"
|
|
428
|
+
]
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"displayName": "GET /v1/projects/{scriptId}/deployments",
|
|
434
|
+
"name": "operation",
|
|
435
|
+
"type": "notice",
|
|
436
|
+
"typeOptions": {
|
|
437
|
+
"theme": "info"
|
|
438
|
+
},
|
|
439
|
+
"default": "",
|
|
440
|
+
"displayOptions": {
|
|
441
|
+
"show": {
|
|
442
|
+
"resource": [
|
|
443
|
+
"Projects"
|
|
444
|
+
],
|
|
445
|
+
"operation": [
|
|
446
|
+
"Script Projects Deployments List"
|
|
447
|
+
]
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"displayName": "Script ID",
|
|
453
|
+
"name": "scriptId",
|
|
454
|
+
"required": true,
|
|
455
|
+
"description": "The script project's Drive ID.",
|
|
456
|
+
"default": "",
|
|
457
|
+
"type": "string",
|
|
458
|
+
"displayOptions": {
|
|
459
|
+
"show": {
|
|
460
|
+
"resource": [
|
|
461
|
+
"Projects"
|
|
462
|
+
],
|
|
463
|
+
"operation": [
|
|
464
|
+
"Script Projects Deployments List"
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"displayName": "Page Size",
|
|
471
|
+
"name": "pageSize",
|
|
472
|
+
"description": "The maximum number of deployments on each returned page. Defaults to 50.",
|
|
473
|
+
"default": 0,
|
|
474
|
+
"type": "number",
|
|
475
|
+
"routing": {
|
|
476
|
+
"send": {
|
|
477
|
+
"type": "query",
|
|
478
|
+
"property": "pageSize",
|
|
479
|
+
"value": "={{ $value }}",
|
|
480
|
+
"propertyInDotNotation": false
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"displayOptions": {
|
|
484
|
+
"show": {
|
|
485
|
+
"resource": [
|
|
486
|
+
"Projects"
|
|
487
|
+
],
|
|
488
|
+
"operation": [
|
|
489
|
+
"Script Projects Deployments List"
|
|
490
|
+
]
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"displayName": "Page Token",
|
|
496
|
+
"name": "pageToken",
|
|
497
|
+
"description": "The token for continuing a previous list request on the next page. This should be set to the value of `nextPageToken` from a previous response.",
|
|
498
|
+
"default": "",
|
|
499
|
+
"type": "string",
|
|
500
|
+
"routing": {
|
|
501
|
+
"send": {
|
|
502
|
+
"type": "query",
|
|
503
|
+
"property": "pageToken",
|
|
504
|
+
"value": "={{ $value }}",
|
|
505
|
+
"propertyInDotNotation": false
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
"displayOptions": {
|
|
509
|
+
"show": {
|
|
510
|
+
"resource": [
|
|
511
|
+
"Projects"
|
|
512
|
+
],
|
|
513
|
+
"operation": [
|
|
514
|
+
"Script Projects Deployments List"
|
|
515
|
+
]
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"displayName": "POST /v1/projects/{scriptId}/deployments",
|
|
521
|
+
"name": "operation",
|
|
522
|
+
"type": "notice",
|
|
523
|
+
"typeOptions": {
|
|
524
|
+
"theme": "info"
|
|
525
|
+
},
|
|
526
|
+
"default": "",
|
|
527
|
+
"displayOptions": {
|
|
528
|
+
"show": {
|
|
529
|
+
"resource": [
|
|
530
|
+
"Projects"
|
|
531
|
+
],
|
|
532
|
+
"operation": [
|
|
533
|
+
"Script Projects Deployments Create"
|
|
534
|
+
]
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"displayName": "Script ID",
|
|
540
|
+
"name": "scriptId",
|
|
541
|
+
"required": true,
|
|
542
|
+
"description": "The script project's Drive ID.",
|
|
543
|
+
"default": "",
|
|
544
|
+
"type": "string",
|
|
545
|
+
"displayOptions": {
|
|
546
|
+
"show": {
|
|
547
|
+
"resource": [
|
|
548
|
+
"Projects"
|
|
549
|
+
],
|
|
550
|
+
"operation": [
|
|
551
|
+
"Script Projects Deployments Create"
|
|
552
|
+
]
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"displayName": "Description",
|
|
558
|
+
"name": "description",
|
|
559
|
+
"type": "string",
|
|
560
|
+
"default": "",
|
|
561
|
+
"description": "The description for this deployment.",
|
|
562
|
+
"routing": {
|
|
563
|
+
"send": {
|
|
564
|
+
"property": "description",
|
|
565
|
+
"propertyInDotNotation": false,
|
|
566
|
+
"type": "body",
|
|
567
|
+
"value": "={{ $value }}"
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
"displayOptions": {
|
|
571
|
+
"show": {
|
|
572
|
+
"resource": [
|
|
573
|
+
"Projects"
|
|
574
|
+
],
|
|
575
|
+
"operation": [
|
|
576
|
+
"Script Projects Deployments Create"
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"displayName": "Manifest File Name",
|
|
583
|
+
"name": "manifestFileName",
|
|
584
|
+
"type": "string",
|
|
585
|
+
"default": "",
|
|
586
|
+
"description": "The manifest file name for this deployment.",
|
|
587
|
+
"routing": {
|
|
588
|
+
"send": {
|
|
589
|
+
"property": "manifestFileName",
|
|
590
|
+
"propertyInDotNotation": false,
|
|
591
|
+
"type": "body",
|
|
592
|
+
"value": "={{ $value }}"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"displayOptions": {
|
|
596
|
+
"show": {
|
|
597
|
+
"resource": [
|
|
598
|
+
"Projects"
|
|
599
|
+
],
|
|
600
|
+
"operation": [
|
|
601
|
+
"Script Projects Deployments Create"
|
|
602
|
+
]
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"displayName": "Script ID",
|
|
608
|
+
"name": "scriptId",
|
|
609
|
+
"type": "string",
|
|
610
|
+
"default": "",
|
|
611
|
+
"description": "The script project's Drive ID.",
|
|
612
|
+
"routing": {
|
|
613
|
+
"send": {
|
|
614
|
+
"property": "scriptId",
|
|
615
|
+
"propertyInDotNotation": false,
|
|
616
|
+
"type": "body",
|
|
617
|
+
"value": "={{ $value }}"
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
"displayOptions": {
|
|
621
|
+
"show": {
|
|
622
|
+
"resource": [
|
|
623
|
+
"Projects"
|
|
624
|
+
],
|
|
625
|
+
"operation": [
|
|
626
|
+
"Script Projects Deployments Create"
|
|
627
|
+
]
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"displayName": "Version Number",
|
|
633
|
+
"name": "versionNumber",
|
|
634
|
+
"type": "number",
|
|
635
|
+
"default": 0,
|
|
636
|
+
"description": "The version number on which this deployment is based.",
|
|
637
|
+
"routing": {
|
|
638
|
+
"send": {
|
|
639
|
+
"property": "versionNumber",
|
|
640
|
+
"propertyInDotNotation": false,
|
|
641
|
+
"type": "body",
|
|
642
|
+
"value": "={{ $value }}"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"displayOptions": {
|
|
646
|
+
"show": {
|
|
647
|
+
"resource": [
|
|
648
|
+
"Projects"
|
|
649
|
+
],
|
|
650
|
+
"operation": [
|
|
651
|
+
"Script Projects Deployments Create"
|
|
652
|
+
]
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"displayName": "DELETE /v1/projects/{scriptId}/deployments/{deploymentId}",
|
|
658
|
+
"name": "operation",
|
|
659
|
+
"type": "notice",
|
|
660
|
+
"typeOptions": {
|
|
661
|
+
"theme": "info"
|
|
662
|
+
},
|
|
663
|
+
"default": "",
|
|
664
|
+
"displayOptions": {
|
|
665
|
+
"show": {
|
|
666
|
+
"resource": [
|
|
667
|
+
"Projects"
|
|
668
|
+
],
|
|
669
|
+
"operation": [
|
|
670
|
+
"Script Projects Deployments Delete"
|
|
671
|
+
]
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"displayName": "Script ID",
|
|
677
|
+
"name": "scriptId",
|
|
678
|
+
"required": true,
|
|
679
|
+
"description": "The script project's Drive ID.",
|
|
680
|
+
"default": "",
|
|
681
|
+
"type": "string",
|
|
682
|
+
"displayOptions": {
|
|
683
|
+
"show": {
|
|
684
|
+
"resource": [
|
|
685
|
+
"Projects"
|
|
686
|
+
],
|
|
687
|
+
"operation": [
|
|
688
|
+
"Script Projects Deployments Delete"
|
|
689
|
+
]
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"displayName": "Deployment ID",
|
|
695
|
+
"name": "deploymentId",
|
|
696
|
+
"required": true,
|
|
697
|
+
"description": "The deployment ID to be undeployed.",
|
|
698
|
+
"default": "",
|
|
699
|
+
"type": "string",
|
|
700
|
+
"displayOptions": {
|
|
701
|
+
"show": {
|
|
702
|
+
"resource": [
|
|
703
|
+
"Projects"
|
|
704
|
+
],
|
|
705
|
+
"operation": [
|
|
706
|
+
"Script Projects Deployments Delete"
|
|
707
|
+
]
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"displayName": "GET /v1/projects/{scriptId}/deployments/{deploymentId}",
|
|
713
|
+
"name": "operation",
|
|
714
|
+
"type": "notice",
|
|
715
|
+
"typeOptions": {
|
|
716
|
+
"theme": "info"
|
|
717
|
+
},
|
|
718
|
+
"default": "",
|
|
719
|
+
"displayOptions": {
|
|
720
|
+
"show": {
|
|
721
|
+
"resource": [
|
|
722
|
+
"Projects"
|
|
723
|
+
],
|
|
724
|
+
"operation": [
|
|
725
|
+
"Script Projects Deployments Get"
|
|
726
|
+
]
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"displayName": "Script ID",
|
|
732
|
+
"name": "scriptId",
|
|
733
|
+
"required": true,
|
|
734
|
+
"description": "The script project's Drive ID.",
|
|
735
|
+
"default": "",
|
|
736
|
+
"type": "string",
|
|
737
|
+
"displayOptions": {
|
|
738
|
+
"show": {
|
|
739
|
+
"resource": [
|
|
740
|
+
"Projects"
|
|
741
|
+
],
|
|
742
|
+
"operation": [
|
|
743
|
+
"Script Projects Deployments Get"
|
|
744
|
+
]
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"displayName": "Deployment ID",
|
|
750
|
+
"name": "deploymentId",
|
|
751
|
+
"required": true,
|
|
752
|
+
"description": "The deployment ID.",
|
|
753
|
+
"default": "",
|
|
754
|
+
"type": "string",
|
|
755
|
+
"displayOptions": {
|
|
756
|
+
"show": {
|
|
757
|
+
"resource": [
|
|
758
|
+
"Projects"
|
|
759
|
+
],
|
|
760
|
+
"operation": [
|
|
761
|
+
"Script Projects Deployments Get"
|
|
762
|
+
]
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"displayName": "PUT /v1/projects/{scriptId}/deployments/{deploymentId}",
|
|
768
|
+
"name": "operation",
|
|
769
|
+
"type": "notice",
|
|
770
|
+
"typeOptions": {
|
|
771
|
+
"theme": "info"
|
|
772
|
+
},
|
|
773
|
+
"default": "",
|
|
774
|
+
"displayOptions": {
|
|
775
|
+
"show": {
|
|
776
|
+
"resource": [
|
|
777
|
+
"Projects"
|
|
778
|
+
],
|
|
779
|
+
"operation": [
|
|
780
|
+
"Script Projects Deployments Update"
|
|
781
|
+
]
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"displayName": "Script ID",
|
|
787
|
+
"name": "scriptId",
|
|
788
|
+
"required": true,
|
|
789
|
+
"description": "The script project's Drive ID.",
|
|
790
|
+
"default": "",
|
|
791
|
+
"type": "string",
|
|
792
|
+
"displayOptions": {
|
|
793
|
+
"show": {
|
|
794
|
+
"resource": [
|
|
795
|
+
"Projects"
|
|
796
|
+
],
|
|
797
|
+
"operation": [
|
|
798
|
+
"Script Projects Deployments Update"
|
|
799
|
+
]
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"displayName": "Deployment ID",
|
|
805
|
+
"name": "deploymentId",
|
|
806
|
+
"required": true,
|
|
807
|
+
"description": "The deployment ID for this deployment.",
|
|
808
|
+
"default": "",
|
|
809
|
+
"type": "string",
|
|
810
|
+
"displayOptions": {
|
|
811
|
+
"show": {
|
|
812
|
+
"resource": [
|
|
813
|
+
"Projects"
|
|
814
|
+
],
|
|
815
|
+
"operation": [
|
|
816
|
+
"Script Projects Deployments Update"
|
|
817
|
+
]
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"displayName": "Deployment Config",
|
|
823
|
+
"name": "deploymentConfig",
|
|
824
|
+
"type": "json",
|
|
825
|
+
"default": "{}",
|
|
826
|
+
"description": "Metadata the defines how a deployment is configured.",
|
|
827
|
+
"routing": {
|
|
828
|
+
"send": {
|
|
829
|
+
"property": "deploymentConfig",
|
|
830
|
+
"propertyInDotNotation": false,
|
|
831
|
+
"type": "body",
|
|
832
|
+
"value": "={{ JSON.parse($value) }}"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"displayOptions": {
|
|
836
|
+
"show": {
|
|
837
|
+
"resource": [
|
|
838
|
+
"Projects"
|
|
839
|
+
],
|
|
840
|
+
"operation": [
|
|
841
|
+
"Script Projects Deployments Update"
|
|
842
|
+
]
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"displayName": "GET /v1/projects/{scriptId}/metrics",
|
|
848
|
+
"name": "operation",
|
|
849
|
+
"type": "notice",
|
|
850
|
+
"typeOptions": {
|
|
851
|
+
"theme": "info"
|
|
852
|
+
},
|
|
853
|
+
"default": "",
|
|
854
|
+
"displayOptions": {
|
|
855
|
+
"show": {
|
|
856
|
+
"resource": [
|
|
857
|
+
"Projects"
|
|
858
|
+
],
|
|
859
|
+
"operation": [
|
|
860
|
+
"Script Projects Get Metrics"
|
|
861
|
+
]
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"displayName": "Script ID",
|
|
867
|
+
"name": "scriptId",
|
|
868
|
+
"required": true,
|
|
869
|
+
"description": "Required field indicating the script to get metrics for.",
|
|
870
|
+
"default": "",
|
|
871
|
+
"type": "string",
|
|
872
|
+
"displayOptions": {
|
|
873
|
+
"show": {
|
|
874
|
+
"resource": [
|
|
875
|
+
"Projects"
|
|
876
|
+
],
|
|
877
|
+
"operation": [
|
|
878
|
+
"Script Projects Get Metrics"
|
|
879
|
+
]
|
|
880
|
+
}
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"displayName": "Metrics Filter Deployment ID",
|
|
885
|
+
"name": "metricsFilter-deploymentId",
|
|
886
|
+
"description": "Optional field indicating a specific deployment to retrieve metrics from.",
|
|
887
|
+
"default": "",
|
|
888
|
+
"type": "string",
|
|
889
|
+
"routing": {
|
|
890
|
+
"send": {
|
|
891
|
+
"type": "query",
|
|
892
|
+
"property": "metricsFilter.deploymentId",
|
|
893
|
+
"value": "={{ $value }}",
|
|
894
|
+
"propertyInDotNotation": false
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"displayOptions": {
|
|
898
|
+
"show": {
|
|
899
|
+
"resource": [
|
|
900
|
+
"Projects"
|
|
901
|
+
],
|
|
902
|
+
"operation": [
|
|
903
|
+
"Script Projects Get Metrics"
|
|
904
|
+
]
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"displayName": "Metrics Granularity",
|
|
910
|
+
"name": "metricsGranularity",
|
|
911
|
+
"description": "Required field indicating what granularity of metrics are returned.",
|
|
912
|
+
"default": "UNSPECIFIED_GRANULARITY",
|
|
913
|
+
"type": "options",
|
|
914
|
+
"options": [
|
|
915
|
+
{
|
|
916
|
+
"name": "UNSPECIFIED GRANULARITY",
|
|
917
|
+
"value": "UNSPECIFIED_GRANULARITY"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"name": "WEEKLY",
|
|
921
|
+
"value": "WEEKLY"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"name": "DAILY",
|
|
925
|
+
"value": "DAILY"
|
|
926
|
+
}
|
|
927
|
+
],
|
|
928
|
+
"routing": {
|
|
929
|
+
"send": {
|
|
930
|
+
"type": "query",
|
|
931
|
+
"property": "metricsGranularity",
|
|
932
|
+
"value": "={{ $value }}",
|
|
933
|
+
"propertyInDotNotation": false
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"displayOptions": {
|
|
937
|
+
"show": {
|
|
938
|
+
"resource": [
|
|
939
|
+
"Projects"
|
|
940
|
+
],
|
|
941
|
+
"operation": [
|
|
942
|
+
"Script Projects Get Metrics"
|
|
943
|
+
]
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"displayName": "GET /v1/projects/{scriptId}/versions",
|
|
949
|
+
"name": "operation",
|
|
950
|
+
"type": "notice",
|
|
951
|
+
"typeOptions": {
|
|
952
|
+
"theme": "info"
|
|
953
|
+
},
|
|
954
|
+
"default": "",
|
|
955
|
+
"displayOptions": {
|
|
956
|
+
"show": {
|
|
957
|
+
"resource": [
|
|
958
|
+
"Projects"
|
|
959
|
+
],
|
|
960
|
+
"operation": [
|
|
961
|
+
"Script Projects Versions List"
|
|
962
|
+
]
|
|
963
|
+
}
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"displayName": "Script ID",
|
|
968
|
+
"name": "scriptId",
|
|
969
|
+
"required": true,
|
|
970
|
+
"description": "The script project's Drive ID.",
|
|
971
|
+
"default": "",
|
|
972
|
+
"type": "string",
|
|
973
|
+
"displayOptions": {
|
|
974
|
+
"show": {
|
|
975
|
+
"resource": [
|
|
976
|
+
"Projects"
|
|
977
|
+
],
|
|
978
|
+
"operation": [
|
|
979
|
+
"Script Projects Versions List"
|
|
980
|
+
]
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"displayName": "Page Size",
|
|
986
|
+
"name": "pageSize",
|
|
987
|
+
"description": "The maximum number of versions on each returned page. Defaults to 50.",
|
|
988
|
+
"default": 0,
|
|
989
|
+
"type": "number",
|
|
990
|
+
"routing": {
|
|
991
|
+
"send": {
|
|
992
|
+
"type": "query",
|
|
993
|
+
"property": "pageSize",
|
|
994
|
+
"value": "={{ $value }}",
|
|
995
|
+
"propertyInDotNotation": false
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
"displayOptions": {
|
|
999
|
+
"show": {
|
|
1000
|
+
"resource": [
|
|
1001
|
+
"Projects"
|
|
1002
|
+
],
|
|
1003
|
+
"operation": [
|
|
1004
|
+
"Script Projects Versions List"
|
|
1005
|
+
]
|
|
1006
|
+
}
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"displayName": "Page Token",
|
|
1011
|
+
"name": "pageToken",
|
|
1012
|
+
"description": "The token for continuing a previous list request on the next page. This should be set to the value of `nextPageToken` from a previous response.",
|
|
1013
|
+
"default": "",
|
|
1014
|
+
"type": "string",
|
|
1015
|
+
"routing": {
|
|
1016
|
+
"send": {
|
|
1017
|
+
"type": "query",
|
|
1018
|
+
"property": "pageToken",
|
|
1019
|
+
"value": "={{ $value }}",
|
|
1020
|
+
"propertyInDotNotation": false
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
"displayOptions": {
|
|
1024
|
+
"show": {
|
|
1025
|
+
"resource": [
|
|
1026
|
+
"Projects"
|
|
1027
|
+
],
|
|
1028
|
+
"operation": [
|
|
1029
|
+
"Script Projects Versions List"
|
|
1030
|
+
]
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"displayName": "POST /v1/projects/{scriptId}/versions",
|
|
1036
|
+
"name": "operation",
|
|
1037
|
+
"type": "notice",
|
|
1038
|
+
"typeOptions": {
|
|
1039
|
+
"theme": "info"
|
|
1040
|
+
},
|
|
1041
|
+
"default": "",
|
|
1042
|
+
"displayOptions": {
|
|
1043
|
+
"show": {
|
|
1044
|
+
"resource": [
|
|
1045
|
+
"Projects"
|
|
1046
|
+
],
|
|
1047
|
+
"operation": [
|
|
1048
|
+
"Script Projects Versions Create"
|
|
1049
|
+
]
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"displayName": "Script ID",
|
|
1055
|
+
"name": "scriptId",
|
|
1056
|
+
"required": true,
|
|
1057
|
+
"description": "The script project's Drive ID.",
|
|
1058
|
+
"default": "",
|
|
1059
|
+
"type": "string",
|
|
1060
|
+
"displayOptions": {
|
|
1061
|
+
"show": {
|
|
1062
|
+
"resource": [
|
|
1063
|
+
"Projects"
|
|
1064
|
+
],
|
|
1065
|
+
"operation": [
|
|
1066
|
+
"Script Projects Versions Create"
|
|
1067
|
+
]
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"displayName": "Create Time",
|
|
1073
|
+
"name": "createTime",
|
|
1074
|
+
"type": "string",
|
|
1075
|
+
"default": "",
|
|
1076
|
+
"description": "When the version was created.",
|
|
1077
|
+
"routing": {
|
|
1078
|
+
"send": {
|
|
1079
|
+
"property": "createTime",
|
|
1080
|
+
"propertyInDotNotation": false,
|
|
1081
|
+
"type": "body",
|
|
1082
|
+
"value": "={{ $value }}"
|
|
1083
|
+
}
|
|
1084
|
+
},
|
|
1085
|
+
"displayOptions": {
|
|
1086
|
+
"show": {
|
|
1087
|
+
"resource": [
|
|
1088
|
+
"Projects"
|
|
1089
|
+
],
|
|
1090
|
+
"operation": [
|
|
1091
|
+
"Script Projects Versions Create"
|
|
1092
|
+
]
|
|
1093
|
+
}
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"displayName": "Description",
|
|
1098
|
+
"name": "description",
|
|
1099
|
+
"type": "string",
|
|
1100
|
+
"default": "",
|
|
1101
|
+
"description": "The description for this version.",
|
|
1102
|
+
"routing": {
|
|
1103
|
+
"send": {
|
|
1104
|
+
"property": "description",
|
|
1105
|
+
"propertyInDotNotation": false,
|
|
1106
|
+
"type": "body",
|
|
1107
|
+
"value": "={{ $value }}"
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1110
|
+
"displayOptions": {
|
|
1111
|
+
"show": {
|
|
1112
|
+
"resource": [
|
|
1113
|
+
"Projects"
|
|
1114
|
+
],
|
|
1115
|
+
"operation": [
|
|
1116
|
+
"Script Projects Versions Create"
|
|
1117
|
+
]
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
"displayName": "Script ID",
|
|
1123
|
+
"name": "scriptId",
|
|
1124
|
+
"type": "string",
|
|
1125
|
+
"default": "",
|
|
1126
|
+
"description": "The script project's Drive ID.",
|
|
1127
|
+
"routing": {
|
|
1128
|
+
"send": {
|
|
1129
|
+
"property": "scriptId",
|
|
1130
|
+
"propertyInDotNotation": false,
|
|
1131
|
+
"type": "body",
|
|
1132
|
+
"value": "={{ $value }}"
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
"displayOptions": {
|
|
1136
|
+
"show": {
|
|
1137
|
+
"resource": [
|
|
1138
|
+
"Projects"
|
|
1139
|
+
],
|
|
1140
|
+
"operation": [
|
|
1141
|
+
"Script Projects Versions Create"
|
|
1142
|
+
]
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"displayName": "Version Number",
|
|
1148
|
+
"name": "versionNumber",
|
|
1149
|
+
"type": "number",
|
|
1150
|
+
"default": 0,
|
|
1151
|
+
"description": "The incremental ID that is created by Apps Script when a version is created. This is system assigned number and is immutable once created.",
|
|
1152
|
+
"routing": {
|
|
1153
|
+
"send": {
|
|
1154
|
+
"property": "versionNumber",
|
|
1155
|
+
"propertyInDotNotation": false,
|
|
1156
|
+
"type": "body",
|
|
1157
|
+
"value": "={{ $value }}"
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
"displayOptions": {
|
|
1161
|
+
"show": {
|
|
1162
|
+
"resource": [
|
|
1163
|
+
"Projects"
|
|
1164
|
+
],
|
|
1165
|
+
"operation": [
|
|
1166
|
+
"Script Projects Versions Create"
|
|
1167
|
+
]
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"displayName": "GET /v1/projects/{scriptId}/versions/{versionNumber}",
|
|
1173
|
+
"name": "operation",
|
|
1174
|
+
"type": "notice",
|
|
1175
|
+
"typeOptions": {
|
|
1176
|
+
"theme": "info"
|
|
1177
|
+
},
|
|
1178
|
+
"default": "",
|
|
1179
|
+
"displayOptions": {
|
|
1180
|
+
"show": {
|
|
1181
|
+
"resource": [
|
|
1182
|
+
"Projects"
|
|
1183
|
+
],
|
|
1184
|
+
"operation": [
|
|
1185
|
+
"Script Projects Versions Get"
|
|
1186
|
+
]
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"displayName": "Script ID",
|
|
1192
|
+
"name": "scriptId",
|
|
1193
|
+
"required": true,
|
|
1194
|
+
"description": "The script project's Drive ID.",
|
|
1195
|
+
"default": "",
|
|
1196
|
+
"type": "string",
|
|
1197
|
+
"displayOptions": {
|
|
1198
|
+
"show": {
|
|
1199
|
+
"resource": [
|
|
1200
|
+
"Projects"
|
|
1201
|
+
],
|
|
1202
|
+
"operation": [
|
|
1203
|
+
"Script Projects Versions Get"
|
|
1204
|
+
]
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"displayName": "Version Number",
|
|
1210
|
+
"name": "versionNumber",
|
|
1211
|
+
"required": true,
|
|
1212
|
+
"description": "The version number.",
|
|
1213
|
+
"default": 0,
|
|
1214
|
+
"type": "number",
|
|
1215
|
+
"displayOptions": {
|
|
1216
|
+
"show": {
|
|
1217
|
+
"resource": [
|
|
1218
|
+
"Projects"
|
|
1219
|
+
],
|
|
1220
|
+
"operation": [
|
|
1221
|
+
"Script Projects Versions Get"
|
|
1222
|
+
]
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
];
|
|
1227
|
+
//# sourceMappingURL=index.js.map
|