@n8n-dev/n8n-nodes-googleapis-storage 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 +193 -0
- package/dist/banner.svg +108 -0
- package/dist/credentials/GoogleapisStorageApi.credentials.d.ts +9 -0
- package/dist/credentials/GoogleapisStorageApi.credentials.js +49 -0
- package/dist/credentials/GoogleapisStorageApi.credentials.js.map +1 -0
- package/dist/icons/googleapis-storage.dark.png +0 -0
- package/dist/icons/googleapis-storage.png +0 -0
- package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.d.ts +4 -0
- package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.js +103 -0
- package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.json +20 -0
- package/dist/nodes/GoogleapisStorage/googleapis-storage.dark.png +0 -0
- package/dist/nodes/GoogleapisStorage/googleapis-storage.png +0 -0
- package/dist/nodes/GoogleapisStorage/resources/bucket-access-controls/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/bucket-access-controls/index.js +1363 -0
- package/dist/nodes/GoogleapisStorage/resources/bucket-access-controls/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/buckets/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/buckets/index.js +3974 -0
- package/dist/nodes/GoogleapisStorage/resources/buckets/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/channels/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/channels/index.js +303 -0
- package/dist/nodes/GoogleapisStorage/resources/channels/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/default-object-access-controls/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/default-object-access-controls/index.js +1563 -0
- package/dist/nodes/GoogleapisStorage/resources/default-object-access-controls/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/index.d.ts +8 -0
- package/dist/nodes/GoogleapisStorage/resources/index.js +20 -0
- package/dist/nodes/GoogleapisStorage/resources/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/notifications/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/notifications/index.js +579 -0
- package/dist/nodes/GoogleapisStorage/resources/notifications/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/object-access-controls/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/object-access-controls/index.js +1771 -0
- package/dist/nodes/GoogleapisStorage/resources/object-access-controls/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/objects/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/objects/index.js +7314 -0
- package/dist/nodes/GoogleapisStorage/resources/objects/index.js.map +1 -0
- package/dist/nodes/GoogleapisStorage/resources/projects/index.d.ts +2 -0
- package/dist/nodes/GoogleapisStorage/resources/projects/index.js +896 -0
- package/dist/nodes/GoogleapisStorage/resources/projects/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,1771 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.objectAccessControlsDescription = void 0;
|
|
4
|
+
exports.objectAccessControlsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Object Access Controls"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Storage Object Access Controls List",
|
|
20
|
+
"value": "Storage Object Access Controls List",
|
|
21
|
+
"action": "Storage Object Access Controls List",
|
|
22
|
+
"description": "Retrieves ACL entries on the specified object.",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/o/{{$parameter[\"object\"]}}/acl"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Storage Object Access Controls Insert",
|
|
32
|
+
"value": "Storage Object Access Controls Insert",
|
|
33
|
+
"action": "Storage Object Access Controls Insert",
|
|
34
|
+
"description": "Creates a new ACL entry on the specified object.",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/o/{{$parameter[\"object\"]}}/acl"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Storage Object Access Controls Delete",
|
|
44
|
+
"value": "Storage Object Access Controls Delete",
|
|
45
|
+
"action": "Storage Object Access Controls Delete",
|
|
46
|
+
"description": "Permanently deletes the ACL entry for the specified entity on the specified object.",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "DELETE",
|
|
50
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/o/{{$parameter[\"object\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Storage Object Access Controls Get",
|
|
56
|
+
"value": "Storage Object Access Controls Get",
|
|
57
|
+
"action": "Storage Object Access Controls Get",
|
|
58
|
+
"description": "Returns the ACL entry for the specified entity on the specified object.",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/o/{{$parameter[\"object\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Storage Object Access Controls Patch",
|
|
68
|
+
"value": "Storage Object Access Controls Patch",
|
|
69
|
+
"action": "Storage Object Access Controls Patch",
|
|
70
|
+
"description": "Patches an ACL entry on the specified object.",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "PATCH",
|
|
74
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/o/{{$parameter[\"object\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Storage Object Access Controls Update",
|
|
80
|
+
"value": "Storage Object Access Controls Update",
|
|
81
|
+
"action": "Storage Object Access Controls Update",
|
|
82
|
+
"description": "Updates an ACL entry on the specified object.",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "PUT",
|
|
86
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/o/{{$parameter[\"object\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"default": ""
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"displayName": "GET /b/{bucket}/o/{object}/acl",
|
|
95
|
+
"name": "operation",
|
|
96
|
+
"type": "notice",
|
|
97
|
+
"typeOptions": {
|
|
98
|
+
"theme": "info"
|
|
99
|
+
},
|
|
100
|
+
"default": "",
|
|
101
|
+
"displayOptions": {
|
|
102
|
+
"show": {
|
|
103
|
+
"resource": [
|
|
104
|
+
"Object Access Controls"
|
|
105
|
+
],
|
|
106
|
+
"operation": [
|
|
107
|
+
"Storage Object Access Controls List"
|
|
108
|
+
]
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"displayName": "Bucket",
|
|
114
|
+
"name": "bucket",
|
|
115
|
+
"required": true,
|
|
116
|
+
"description": "Name of a bucket.",
|
|
117
|
+
"default": "",
|
|
118
|
+
"type": "string",
|
|
119
|
+
"displayOptions": {
|
|
120
|
+
"show": {
|
|
121
|
+
"resource": [
|
|
122
|
+
"Object Access Controls"
|
|
123
|
+
],
|
|
124
|
+
"operation": [
|
|
125
|
+
"Storage Object Access Controls List"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"displayName": "Object",
|
|
132
|
+
"name": "object",
|
|
133
|
+
"required": true,
|
|
134
|
+
"description": "Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.",
|
|
135
|
+
"default": "",
|
|
136
|
+
"type": "string",
|
|
137
|
+
"displayOptions": {
|
|
138
|
+
"show": {
|
|
139
|
+
"resource": [
|
|
140
|
+
"Object Access Controls"
|
|
141
|
+
],
|
|
142
|
+
"operation": [
|
|
143
|
+
"Storage Object Access Controls List"
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"displayName": "Generation",
|
|
150
|
+
"name": "generation",
|
|
151
|
+
"description": "If present, selects a specific revision of this object (as opposed to the latest version, the default).",
|
|
152
|
+
"default": "",
|
|
153
|
+
"type": "string",
|
|
154
|
+
"routing": {
|
|
155
|
+
"send": {
|
|
156
|
+
"type": "query",
|
|
157
|
+
"property": "generation",
|
|
158
|
+
"value": "={{ $value }}",
|
|
159
|
+
"propertyInDotNotation": false
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"displayOptions": {
|
|
163
|
+
"show": {
|
|
164
|
+
"resource": [
|
|
165
|
+
"Object Access Controls"
|
|
166
|
+
],
|
|
167
|
+
"operation": [
|
|
168
|
+
"Storage Object Access Controls List"
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"displayName": "User Project",
|
|
175
|
+
"name": "userProject",
|
|
176
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
177
|
+
"default": "",
|
|
178
|
+
"type": "string",
|
|
179
|
+
"routing": {
|
|
180
|
+
"send": {
|
|
181
|
+
"type": "query",
|
|
182
|
+
"property": "userProject",
|
|
183
|
+
"value": "={{ $value }}",
|
|
184
|
+
"propertyInDotNotation": false
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"displayOptions": {
|
|
188
|
+
"show": {
|
|
189
|
+
"resource": [
|
|
190
|
+
"Object Access Controls"
|
|
191
|
+
],
|
|
192
|
+
"operation": [
|
|
193
|
+
"Storage Object Access Controls List"
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"displayName": "POST /b/{bucket}/o/{object}/acl",
|
|
200
|
+
"name": "operation",
|
|
201
|
+
"type": "notice",
|
|
202
|
+
"typeOptions": {
|
|
203
|
+
"theme": "info"
|
|
204
|
+
},
|
|
205
|
+
"default": "",
|
|
206
|
+
"displayOptions": {
|
|
207
|
+
"show": {
|
|
208
|
+
"resource": [
|
|
209
|
+
"Object Access Controls"
|
|
210
|
+
],
|
|
211
|
+
"operation": [
|
|
212
|
+
"Storage Object Access Controls Insert"
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"displayName": "Bucket",
|
|
219
|
+
"name": "bucket",
|
|
220
|
+
"required": true,
|
|
221
|
+
"description": "Name of a bucket.",
|
|
222
|
+
"default": "",
|
|
223
|
+
"type": "string",
|
|
224
|
+
"displayOptions": {
|
|
225
|
+
"show": {
|
|
226
|
+
"resource": [
|
|
227
|
+
"Object Access Controls"
|
|
228
|
+
],
|
|
229
|
+
"operation": [
|
|
230
|
+
"Storage Object Access Controls Insert"
|
|
231
|
+
]
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"displayName": "Object",
|
|
237
|
+
"name": "object",
|
|
238
|
+
"required": true,
|
|
239
|
+
"description": "Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.",
|
|
240
|
+
"default": "",
|
|
241
|
+
"type": "string",
|
|
242
|
+
"displayOptions": {
|
|
243
|
+
"show": {
|
|
244
|
+
"resource": [
|
|
245
|
+
"Object Access Controls"
|
|
246
|
+
],
|
|
247
|
+
"operation": [
|
|
248
|
+
"Storage Object Access Controls Insert"
|
|
249
|
+
]
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"displayName": "Generation",
|
|
255
|
+
"name": "generation",
|
|
256
|
+
"description": "If present, selects a specific revision of this object (as opposed to the latest version, the default).",
|
|
257
|
+
"default": "",
|
|
258
|
+
"type": "string",
|
|
259
|
+
"routing": {
|
|
260
|
+
"send": {
|
|
261
|
+
"type": "query",
|
|
262
|
+
"property": "generation",
|
|
263
|
+
"value": "={{ $value }}",
|
|
264
|
+
"propertyInDotNotation": false
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"displayOptions": {
|
|
268
|
+
"show": {
|
|
269
|
+
"resource": [
|
|
270
|
+
"Object Access Controls"
|
|
271
|
+
],
|
|
272
|
+
"operation": [
|
|
273
|
+
"Storage Object Access Controls Insert"
|
|
274
|
+
]
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"displayName": "User Project",
|
|
280
|
+
"name": "userProject",
|
|
281
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
282
|
+
"default": "",
|
|
283
|
+
"type": "string",
|
|
284
|
+
"routing": {
|
|
285
|
+
"send": {
|
|
286
|
+
"type": "query",
|
|
287
|
+
"property": "userProject",
|
|
288
|
+
"value": "={{ $value }}",
|
|
289
|
+
"propertyInDotNotation": false
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"displayOptions": {
|
|
293
|
+
"show": {
|
|
294
|
+
"resource": [
|
|
295
|
+
"Object Access Controls"
|
|
296
|
+
],
|
|
297
|
+
"operation": [
|
|
298
|
+
"Storage Object Access Controls Insert"
|
|
299
|
+
]
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"displayName": "Bucket",
|
|
305
|
+
"name": "bucket",
|
|
306
|
+
"type": "string",
|
|
307
|
+
"default": "",
|
|
308
|
+
"description": "The name of the bucket.",
|
|
309
|
+
"routing": {
|
|
310
|
+
"send": {
|
|
311
|
+
"property": "bucket",
|
|
312
|
+
"propertyInDotNotation": false,
|
|
313
|
+
"type": "body",
|
|
314
|
+
"value": "={{ $value }}"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"displayOptions": {
|
|
318
|
+
"show": {
|
|
319
|
+
"resource": [
|
|
320
|
+
"Object Access Controls"
|
|
321
|
+
],
|
|
322
|
+
"operation": [
|
|
323
|
+
"Storage Object Access Controls Insert"
|
|
324
|
+
]
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"displayName": "Domain",
|
|
330
|
+
"name": "domain",
|
|
331
|
+
"type": "string",
|
|
332
|
+
"default": "",
|
|
333
|
+
"description": "The domain associated with the entity, if any.",
|
|
334
|
+
"routing": {
|
|
335
|
+
"send": {
|
|
336
|
+
"property": "domain",
|
|
337
|
+
"propertyInDotNotation": false,
|
|
338
|
+
"type": "body",
|
|
339
|
+
"value": "={{ $value }}"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"displayOptions": {
|
|
343
|
+
"show": {
|
|
344
|
+
"resource": [
|
|
345
|
+
"Object Access Controls"
|
|
346
|
+
],
|
|
347
|
+
"operation": [
|
|
348
|
+
"Storage Object Access Controls Insert"
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"displayName": "Email",
|
|
355
|
+
"name": "email",
|
|
356
|
+
"type": "string",
|
|
357
|
+
"default": "",
|
|
358
|
+
"description": "The email address associated with the entity, if any.",
|
|
359
|
+
"routing": {
|
|
360
|
+
"send": {
|
|
361
|
+
"property": "email",
|
|
362
|
+
"propertyInDotNotation": false,
|
|
363
|
+
"type": "body",
|
|
364
|
+
"value": "={{ $value }}"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"displayOptions": {
|
|
368
|
+
"show": {
|
|
369
|
+
"resource": [
|
|
370
|
+
"Object Access Controls"
|
|
371
|
+
],
|
|
372
|
+
"operation": [
|
|
373
|
+
"Storage Object Access Controls Insert"
|
|
374
|
+
]
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"displayName": "Entity",
|
|
380
|
+
"name": "entity",
|
|
381
|
+
"type": "string",
|
|
382
|
+
"default": "",
|
|
383
|
+
"description": "The entity holding the permission, in one of the following forms: \n- user-userId \n- user-email \n- group-groupId \n- group-email \n- domain-domain \n- project-team-projectId \n- allUsers \n- allAuthenticatedUsers Examples: \n- The user liz@example.com would be user-liz@example.com. \n- The group example@googlegroups.com would be group-example@googlegroups.com. \n- To refer to all members of the Google Apps for Business domain example.com, the entity would be domain-example.com.",
|
|
384
|
+
"routing": {
|
|
385
|
+
"send": {
|
|
386
|
+
"property": "entity",
|
|
387
|
+
"propertyInDotNotation": false,
|
|
388
|
+
"type": "body",
|
|
389
|
+
"value": "={{ $value }}"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"displayOptions": {
|
|
393
|
+
"show": {
|
|
394
|
+
"resource": [
|
|
395
|
+
"Object Access Controls"
|
|
396
|
+
],
|
|
397
|
+
"operation": [
|
|
398
|
+
"Storage Object Access Controls Insert"
|
|
399
|
+
]
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"displayName": "Entity ID",
|
|
405
|
+
"name": "entityId",
|
|
406
|
+
"type": "string",
|
|
407
|
+
"default": "",
|
|
408
|
+
"description": "The ID for the entity, if any.",
|
|
409
|
+
"routing": {
|
|
410
|
+
"send": {
|
|
411
|
+
"property": "entityId",
|
|
412
|
+
"propertyInDotNotation": false,
|
|
413
|
+
"type": "body",
|
|
414
|
+
"value": "={{ $value }}"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"displayOptions": {
|
|
418
|
+
"show": {
|
|
419
|
+
"resource": [
|
|
420
|
+
"Object Access Controls"
|
|
421
|
+
],
|
|
422
|
+
"operation": [
|
|
423
|
+
"Storage Object Access Controls Insert"
|
|
424
|
+
]
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"displayName": "Etag",
|
|
430
|
+
"name": "etag",
|
|
431
|
+
"type": "string",
|
|
432
|
+
"default": "",
|
|
433
|
+
"description": "HTTP 1.1 Entity tag for the access-control entry.",
|
|
434
|
+
"routing": {
|
|
435
|
+
"send": {
|
|
436
|
+
"property": "etag",
|
|
437
|
+
"propertyInDotNotation": false,
|
|
438
|
+
"type": "body",
|
|
439
|
+
"value": "={{ $value }}"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"displayOptions": {
|
|
443
|
+
"show": {
|
|
444
|
+
"resource": [
|
|
445
|
+
"Object Access Controls"
|
|
446
|
+
],
|
|
447
|
+
"operation": [
|
|
448
|
+
"Storage Object Access Controls Insert"
|
|
449
|
+
]
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"displayName": "Generation",
|
|
455
|
+
"name": "generation",
|
|
456
|
+
"type": "string",
|
|
457
|
+
"default": "",
|
|
458
|
+
"description": "The content generation of the object, if applied to an object.",
|
|
459
|
+
"routing": {
|
|
460
|
+
"send": {
|
|
461
|
+
"property": "generation",
|
|
462
|
+
"propertyInDotNotation": false,
|
|
463
|
+
"type": "body",
|
|
464
|
+
"value": "={{ $value }}"
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"displayOptions": {
|
|
468
|
+
"show": {
|
|
469
|
+
"resource": [
|
|
470
|
+
"Object Access Controls"
|
|
471
|
+
],
|
|
472
|
+
"operation": [
|
|
473
|
+
"Storage Object Access Controls Insert"
|
|
474
|
+
]
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"displayName": "ID",
|
|
480
|
+
"name": "id",
|
|
481
|
+
"type": "string",
|
|
482
|
+
"default": "",
|
|
483
|
+
"description": "The ID of the access-control entry.",
|
|
484
|
+
"routing": {
|
|
485
|
+
"send": {
|
|
486
|
+
"property": "id",
|
|
487
|
+
"propertyInDotNotation": false,
|
|
488
|
+
"type": "body",
|
|
489
|
+
"value": "={{ $value }}"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
"displayOptions": {
|
|
493
|
+
"show": {
|
|
494
|
+
"resource": [
|
|
495
|
+
"Object Access Controls"
|
|
496
|
+
],
|
|
497
|
+
"operation": [
|
|
498
|
+
"Storage Object Access Controls Insert"
|
|
499
|
+
]
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"displayName": "Kind",
|
|
505
|
+
"name": "kind",
|
|
506
|
+
"type": "string",
|
|
507
|
+
"default": "storage#objectAccessControl",
|
|
508
|
+
"description": "The kind of item this is. For object access control entries, this is always storage#objectAccessControl.",
|
|
509
|
+
"routing": {
|
|
510
|
+
"send": {
|
|
511
|
+
"property": "kind",
|
|
512
|
+
"propertyInDotNotation": false,
|
|
513
|
+
"type": "body",
|
|
514
|
+
"value": "={{ $value }}"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"displayOptions": {
|
|
518
|
+
"show": {
|
|
519
|
+
"resource": [
|
|
520
|
+
"Object Access Controls"
|
|
521
|
+
],
|
|
522
|
+
"operation": [
|
|
523
|
+
"Storage Object Access Controls Insert"
|
|
524
|
+
]
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"displayName": "Object",
|
|
530
|
+
"name": "object",
|
|
531
|
+
"type": "string",
|
|
532
|
+
"default": "",
|
|
533
|
+
"description": "The name of the object, if applied to an object.",
|
|
534
|
+
"routing": {
|
|
535
|
+
"send": {
|
|
536
|
+
"property": "object",
|
|
537
|
+
"propertyInDotNotation": false,
|
|
538
|
+
"type": "body",
|
|
539
|
+
"value": "={{ $value }}"
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"displayOptions": {
|
|
543
|
+
"show": {
|
|
544
|
+
"resource": [
|
|
545
|
+
"Object Access Controls"
|
|
546
|
+
],
|
|
547
|
+
"operation": [
|
|
548
|
+
"Storage Object Access Controls Insert"
|
|
549
|
+
]
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"displayName": "Project Team",
|
|
555
|
+
"name": "projectTeam",
|
|
556
|
+
"type": "json",
|
|
557
|
+
"default": "{}",
|
|
558
|
+
"description": "The project team associated with the entity, if any.",
|
|
559
|
+
"routing": {
|
|
560
|
+
"send": {
|
|
561
|
+
"property": "projectTeam",
|
|
562
|
+
"propertyInDotNotation": false,
|
|
563
|
+
"type": "body",
|
|
564
|
+
"value": "={{ JSON.parse($value) }}"
|
|
565
|
+
}
|
|
566
|
+
},
|
|
567
|
+
"displayOptions": {
|
|
568
|
+
"show": {
|
|
569
|
+
"resource": [
|
|
570
|
+
"Object Access Controls"
|
|
571
|
+
],
|
|
572
|
+
"operation": [
|
|
573
|
+
"Storage Object Access Controls Insert"
|
|
574
|
+
]
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"displayName": "Role",
|
|
580
|
+
"name": "role",
|
|
581
|
+
"type": "string",
|
|
582
|
+
"default": "",
|
|
583
|
+
"description": "The access permission for the entity.",
|
|
584
|
+
"routing": {
|
|
585
|
+
"send": {
|
|
586
|
+
"property": "role",
|
|
587
|
+
"propertyInDotNotation": false,
|
|
588
|
+
"type": "body",
|
|
589
|
+
"value": "={{ $value }}"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"displayOptions": {
|
|
593
|
+
"show": {
|
|
594
|
+
"resource": [
|
|
595
|
+
"Object Access Controls"
|
|
596
|
+
],
|
|
597
|
+
"operation": [
|
|
598
|
+
"Storage Object Access Controls Insert"
|
|
599
|
+
]
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"displayName": "Self Link",
|
|
605
|
+
"name": "selfLink",
|
|
606
|
+
"type": "string",
|
|
607
|
+
"default": "",
|
|
608
|
+
"description": "The link to this access-control entry.",
|
|
609
|
+
"routing": {
|
|
610
|
+
"send": {
|
|
611
|
+
"property": "selfLink",
|
|
612
|
+
"propertyInDotNotation": false,
|
|
613
|
+
"type": "body",
|
|
614
|
+
"value": "={{ $value }}"
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"displayOptions": {
|
|
618
|
+
"show": {
|
|
619
|
+
"resource": [
|
|
620
|
+
"Object Access Controls"
|
|
621
|
+
],
|
|
622
|
+
"operation": [
|
|
623
|
+
"Storage Object Access Controls Insert"
|
|
624
|
+
]
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"displayName": "DELETE /b/{bucket}/o/{object}/acl/{entity}",
|
|
630
|
+
"name": "operation",
|
|
631
|
+
"type": "notice",
|
|
632
|
+
"typeOptions": {
|
|
633
|
+
"theme": "info"
|
|
634
|
+
},
|
|
635
|
+
"default": "",
|
|
636
|
+
"displayOptions": {
|
|
637
|
+
"show": {
|
|
638
|
+
"resource": [
|
|
639
|
+
"Object Access Controls"
|
|
640
|
+
],
|
|
641
|
+
"operation": [
|
|
642
|
+
"Storage Object Access Controls Delete"
|
|
643
|
+
]
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"displayName": "Bucket",
|
|
649
|
+
"name": "bucket",
|
|
650
|
+
"required": true,
|
|
651
|
+
"description": "Name of a bucket.",
|
|
652
|
+
"default": "",
|
|
653
|
+
"type": "string",
|
|
654
|
+
"displayOptions": {
|
|
655
|
+
"show": {
|
|
656
|
+
"resource": [
|
|
657
|
+
"Object Access Controls"
|
|
658
|
+
],
|
|
659
|
+
"operation": [
|
|
660
|
+
"Storage Object Access Controls Delete"
|
|
661
|
+
]
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"displayName": "Object",
|
|
667
|
+
"name": "object",
|
|
668
|
+
"required": true,
|
|
669
|
+
"description": "Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.",
|
|
670
|
+
"default": "",
|
|
671
|
+
"type": "string",
|
|
672
|
+
"displayOptions": {
|
|
673
|
+
"show": {
|
|
674
|
+
"resource": [
|
|
675
|
+
"Object Access Controls"
|
|
676
|
+
],
|
|
677
|
+
"operation": [
|
|
678
|
+
"Storage Object Access Controls Delete"
|
|
679
|
+
]
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"displayName": "Entity",
|
|
685
|
+
"name": "entity",
|
|
686
|
+
"required": true,
|
|
687
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
688
|
+
"default": "",
|
|
689
|
+
"type": "string",
|
|
690
|
+
"displayOptions": {
|
|
691
|
+
"show": {
|
|
692
|
+
"resource": [
|
|
693
|
+
"Object Access Controls"
|
|
694
|
+
],
|
|
695
|
+
"operation": [
|
|
696
|
+
"Storage Object Access Controls Delete"
|
|
697
|
+
]
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"displayName": "Generation",
|
|
703
|
+
"name": "generation",
|
|
704
|
+
"description": "If present, selects a specific revision of this object (as opposed to the latest version, the default).",
|
|
705
|
+
"default": "",
|
|
706
|
+
"type": "string",
|
|
707
|
+
"routing": {
|
|
708
|
+
"send": {
|
|
709
|
+
"type": "query",
|
|
710
|
+
"property": "generation",
|
|
711
|
+
"value": "={{ $value }}",
|
|
712
|
+
"propertyInDotNotation": false
|
|
713
|
+
}
|
|
714
|
+
},
|
|
715
|
+
"displayOptions": {
|
|
716
|
+
"show": {
|
|
717
|
+
"resource": [
|
|
718
|
+
"Object Access Controls"
|
|
719
|
+
],
|
|
720
|
+
"operation": [
|
|
721
|
+
"Storage Object Access Controls Delete"
|
|
722
|
+
]
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"displayName": "User Project",
|
|
728
|
+
"name": "userProject",
|
|
729
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
730
|
+
"default": "",
|
|
731
|
+
"type": "string",
|
|
732
|
+
"routing": {
|
|
733
|
+
"send": {
|
|
734
|
+
"type": "query",
|
|
735
|
+
"property": "userProject",
|
|
736
|
+
"value": "={{ $value }}",
|
|
737
|
+
"propertyInDotNotation": false
|
|
738
|
+
}
|
|
739
|
+
},
|
|
740
|
+
"displayOptions": {
|
|
741
|
+
"show": {
|
|
742
|
+
"resource": [
|
|
743
|
+
"Object Access Controls"
|
|
744
|
+
],
|
|
745
|
+
"operation": [
|
|
746
|
+
"Storage Object Access Controls Delete"
|
|
747
|
+
]
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"displayName": "GET /b/{bucket}/o/{object}/acl/{entity}",
|
|
753
|
+
"name": "operation",
|
|
754
|
+
"type": "notice",
|
|
755
|
+
"typeOptions": {
|
|
756
|
+
"theme": "info"
|
|
757
|
+
},
|
|
758
|
+
"default": "",
|
|
759
|
+
"displayOptions": {
|
|
760
|
+
"show": {
|
|
761
|
+
"resource": [
|
|
762
|
+
"Object Access Controls"
|
|
763
|
+
],
|
|
764
|
+
"operation": [
|
|
765
|
+
"Storage Object Access Controls Get"
|
|
766
|
+
]
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"displayName": "Bucket",
|
|
772
|
+
"name": "bucket",
|
|
773
|
+
"required": true,
|
|
774
|
+
"description": "Name of a bucket.",
|
|
775
|
+
"default": "",
|
|
776
|
+
"type": "string",
|
|
777
|
+
"displayOptions": {
|
|
778
|
+
"show": {
|
|
779
|
+
"resource": [
|
|
780
|
+
"Object Access Controls"
|
|
781
|
+
],
|
|
782
|
+
"operation": [
|
|
783
|
+
"Storage Object Access Controls Get"
|
|
784
|
+
]
|
|
785
|
+
}
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"displayName": "Object",
|
|
790
|
+
"name": "object",
|
|
791
|
+
"required": true,
|
|
792
|
+
"description": "Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.",
|
|
793
|
+
"default": "",
|
|
794
|
+
"type": "string",
|
|
795
|
+
"displayOptions": {
|
|
796
|
+
"show": {
|
|
797
|
+
"resource": [
|
|
798
|
+
"Object Access Controls"
|
|
799
|
+
],
|
|
800
|
+
"operation": [
|
|
801
|
+
"Storage Object Access Controls Get"
|
|
802
|
+
]
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"displayName": "Entity",
|
|
808
|
+
"name": "entity",
|
|
809
|
+
"required": true,
|
|
810
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
811
|
+
"default": "",
|
|
812
|
+
"type": "string",
|
|
813
|
+
"displayOptions": {
|
|
814
|
+
"show": {
|
|
815
|
+
"resource": [
|
|
816
|
+
"Object Access Controls"
|
|
817
|
+
],
|
|
818
|
+
"operation": [
|
|
819
|
+
"Storage Object Access Controls Get"
|
|
820
|
+
]
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"displayName": "Generation",
|
|
826
|
+
"name": "generation",
|
|
827
|
+
"description": "If present, selects a specific revision of this object (as opposed to the latest version, the default).",
|
|
828
|
+
"default": "",
|
|
829
|
+
"type": "string",
|
|
830
|
+
"routing": {
|
|
831
|
+
"send": {
|
|
832
|
+
"type": "query",
|
|
833
|
+
"property": "generation",
|
|
834
|
+
"value": "={{ $value }}",
|
|
835
|
+
"propertyInDotNotation": false
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
"displayOptions": {
|
|
839
|
+
"show": {
|
|
840
|
+
"resource": [
|
|
841
|
+
"Object Access Controls"
|
|
842
|
+
],
|
|
843
|
+
"operation": [
|
|
844
|
+
"Storage Object Access Controls Get"
|
|
845
|
+
]
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"displayName": "User Project",
|
|
851
|
+
"name": "userProject",
|
|
852
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
853
|
+
"default": "",
|
|
854
|
+
"type": "string",
|
|
855
|
+
"routing": {
|
|
856
|
+
"send": {
|
|
857
|
+
"type": "query",
|
|
858
|
+
"property": "userProject",
|
|
859
|
+
"value": "={{ $value }}",
|
|
860
|
+
"propertyInDotNotation": false
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"displayOptions": {
|
|
864
|
+
"show": {
|
|
865
|
+
"resource": [
|
|
866
|
+
"Object Access Controls"
|
|
867
|
+
],
|
|
868
|
+
"operation": [
|
|
869
|
+
"Storage Object Access Controls Get"
|
|
870
|
+
]
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"displayName": "PATCH /b/{bucket}/o/{object}/acl/{entity}",
|
|
876
|
+
"name": "operation",
|
|
877
|
+
"type": "notice",
|
|
878
|
+
"typeOptions": {
|
|
879
|
+
"theme": "info"
|
|
880
|
+
},
|
|
881
|
+
"default": "",
|
|
882
|
+
"displayOptions": {
|
|
883
|
+
"show": {
|
|
884
|
+
"resource": [
|
|
885
|
+
"Object Access Controls"
|
|
886
|
+
],
|
|
887
|
+
"operation": [
|
|
888
|
+
"Storage Object Access Controls Patch"
|
|
889
|
+
]
|
|
890
|
+
}
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"displayName": "Bucket",
|
|
895
|
+
"name": "bucket",
|
|
896
|
+
"required": true,
|
|
897
|
+
"description": "Name of a bucket.",
|
|
898
|
+
"default": "",
|
|
899
|
+
"type": "string",
|
|
900
|
+
"displayOptions": {
|
|
901
|
+
"show": {
|
|
902
|
+
"resource": [
|
|
903
|
+
"Object Access Controls"
|
|
904
|
+
],
|
|
905
|
+
"operation": [
|
|
906
|
+
"Storage Object Access Controls Patch"
|
|
907
|
+
]
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"displayName": "Object",
|
|
913
|
+
"name": "object",
|
|
914
|
+
"required": true,
|
|
915
|
+
"description": "Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.",
|
|
916
|
+
"default": "",
|
|
917
|
+
"type": "string",
|
|
918
|
+
"displayOptions": {
|
|
919
|
+
"show": {
|
|
920
|
+
"resource": [
|
|
921
|
+
"Object Access Controls"
|
|
922
|
+
],
|
|
923
|
+
"operation": [
|
|
924
|
+
"Storage Object Access Controls Patch"
|
|
925
|
+
]
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"displayName": "Entity",
|
|
931
|
+
"name": "entity",
|
|
932
|
+
"required": true,
|
|
933
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
934
|
+
"default": "",
|
|
935
|
+
"type": "string",
|
|
936
|
+
"displayOptions": {
|
|
937
|
+
"show": {
|
|
938
|
+
"resource": [
|
|
939
|
+
"Object Access Controls"
|
|
940
|
+
],
|
|
941
|
+
"operation": [
|
|
942
|
+
"Storage Object Access Controls Patch"
|
|
943
|
+
]
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"displayName": "Generation",
|
|
949
|
+
"name": "generation",
|
|
950
|
+
"description": "If present, selects a specific revision of this object (as opposed to the latest version, the default).",
|
|
951
|
+
"default": "",
|
|
952
|
+
"type": "string",
|
|
953
|
+
"routing": {
|
|
954
|
+
"send": {
|
|
955
|
+
"type": "query",
|
|
956
|
+
"property": "generation",
|
|
957
|
+
"value": "={{ $value }}",
|
|
958
|
+
"propertyInDotNotation": false
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"displayOptions": {
|
|
962
|
+
"show": {
|
|
963
|
+
"resource": [
|
|
964
|
+
"Object Access Controls"
|
|
965
|
+
],
|
|
966
|
+
"operation": [
|
|
967
|
+
"Storage Object Access Controls Patch"
|
|
968
|
+
]
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"displayName": "User Project",
|
|
974
|
+
"name": "userProject",
|
|
975
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
976
|
+
"default": "",
|
|
977
|
+
"type": "string",
|
|
978
|
+
"routing": {
|
|
979
|
+
"send": {
|
|
980
|
+
"type": "query",
|
|
981
|
+
"property": "userProject",
|
|
982
|
+
"value": "={{ $value }}",
|
|
983
|
+
"propertyInDotNotation": false
|
|
984
|
+
}
|
|
985
|
+
},
|
|
986
|
+
"displayOptions": {
|
|
987
|
+
"show": {
|
|
988
|
+
"resource": [
|
|
989
|
+
"Object Access Controls"
|
|
990
|
+
],
|
|
991
|
+
"operation": [
|
|
992
|
+
"Storage Object Access Controls Patch"
|
|
993
|
+
]
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"displayName": "Bucket",
|
|
999
|
+
"name": "bucket",
|
|
1000
|
+
"type": "string",
|
|
1001
|
+
"default": "",
|
|
1002
|
+
"description": "The name of the bucket.",
|
|
1003
|
+
"routing": {
|
|
1004
|
+
"send": {
|
|
1005
|
+
"property": "bucket",
|
|
1006
|
+
"propertyInDotNotation": false,
|
|
1007
|
+
"type": "body",
|
|
1008
|
+
"value": "={{ $value }}"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"displayOptions": {
|
|
1012
|
+
"show": {
|
|
1013
|
+
"resource": [
|
|
1014
|
+
"Object Access Controls"
|
|
1015
|
+
],
|
|
1016
|
+
"operation": [
|
|
1017
|
+
"Storage Object Access Controls Patch"
|
|
1018
|
+
]
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"displayName": "Domain",
|
|
1024
|
+
"name": "domain",
|
|
1025
|
+
"type": "string",
|
|
1026
|
+
"default": "",
|
|
1027
|
+
"description": "The domain associated with the entity, if any.",
|
|
1028
|
+
"routing": {
|
|
1029
|
+
"send": {
|
|
1030
|
+
"property": "domain",
|
|
1031
|
+
"propertyInDotNotation": false,
|
|
1032
|
+
"type": "body",
|
|
1033
|
+
"value": "={{ $value }}"
|
|
1034
|
+
}
|
|
1035
|
+
},
|
|
1036
|
+
"displayOptions": {
|
|
1037
|
+
"show": {
|
|
1038
|
+
"resource": [
|
|
1039
|
+
"Object Access Controls"
|
|
1040
|
+
],
|
|
1041
|
+
"operation": [
|
|
1042
|
+
"Storage Object Access Controls Patch"
|
|
1043
|
+
]
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"displayName": "Email",
|
|
1049
|
+
"name": "email",
|
|
1050
|
+
"type": "string",
|
|
1051
|
+
"default": "",
|
|
1052
|
+
"description": "The email address associated with the entity, if any.",
|
|
1053
|
+
"routing": {
|
|
1054
|
+
"send": {
|
|
1055
|
+
"property": "email",
|
|
1056
|
+
"propertyInDotNotation": false,
|
|
1057
|
+
"type": "body",
|
|
1058
|
+
"value": "={{ $value }}"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"displayOptions": {
|
|
1062
|
+
"show": {
|
|
1063
|
+
"resource": [
|
|
1064
|
+
"Object Access Controls"
|
|
1065
|
+
],
|
|
1066
|
+
"operation": [
|
|
1067
|
+
"Storage Object Access Controls Patch"
|
|
1068
|
+
]
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"displayName": "Entity",
|
|
1074
|
+
"name": "entity",
|
|
1075
|
+
"type": "string",
|
|
1076
|
+
"default": "",
|
|
1077
|
+
"description": "The entity holding the permission, in one of the following forms: \n- user-userId \n- user-email \n- group-groupId \n- group-email \n- domain-domain \n- project-team-projectId \n- allUsers \n- allAuthenticatedUsers Examples: \n- The user liz@example.com would be user-liz@example.com. \n- The group example@googlegroups.com would be group-example@googlegroups.com. \n- To refer to all members of the Google Apps for Business domain example.com, the entity would be domain-example.com.",
|
|
1078
|
+
"routing": {
|
|
1079
|
+
"send": {
|
|
1080
|
+
"property": "entity",
|
|
1081
|
+
"propertyInDotNotation": false,
|
|
1082
|
+
"type": "body",
|
|
1083
|
+
"value": "={{ $value }}"
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"displayOptions": {
|
|
1087
|
+
"show": {
|
|
1088
|
+
"resource": [
|
|
1089
|
+
"Object Access Controls"
|
|
1090
|
+
],
|
|
1091
|
+
"operation": [
|
|
1092
|
+
"Storage Object Access Controls Patch"
|
|
1093
|
+
]
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"displayName": "Entity ID",
|
|
1099
|
+
"name": "entityId",
|
|
1100
|
+
"type": "string",
|
|
1101
|
+
"default": "",
|
|
1102
|
+
"description": "The ID for the entity, if any.",
|
|
1103
|
+
"routing": {
|
|
1104
|
+
"send": {
|
|
1105
|
+
"property": "entityId",
|
|
1106
|
+
"propertyInDotNotation": false,
|
|
1107
|
+
"type": "body",
|
|
1108
|
+
"value": "={{ $value }}"
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1111
|
+
"displayOptions": {
|
|
1112
|
+
"show": {
|
|
1113
|
+
"resource": [
|
|
1114
|
+
"Object Access Controls"
|
|
1115
|
+
],
|
|
1116
|
+
"operation": [
|
|
1117
|
+
"Storage Object Access Controls Patch"
|
|
1118
|
+
]
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"displayName": "Etag",
|
|
1124
|
+
"name": "etag",
|
|
1125
|
+
"type": "string",
|
|
1126
|
+
"default": "",
|
|
1127
|
+
"description": "HTTP 1.1 Entity tag for the access-control entry.",
|
|
1128
|
+
"routing": {
|
|
1129
|
+
"send": {
|
|
1130
|
+
"property": "etag",
|
|
1131
|
+
"propertyInDotNotation": false,
|
|
1132
|
+
"type": "body",
|
|
1133
|
+
"value": "={{ $value }}"
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
"displayOptions": {
|
|
1137
|
+
"show": {
|
|
1138
|
+
"resource": [
|
|
1139
|
+
"Object Access Controls"
|
|
1140
|
+
],
|
|
1141
|
+
"operation": [
|
|
1142
|
+
"Storage Object Access Controls Patch"
|
|
1143
|
+
]
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"displayName": "Generation",
|
|
1149
|
+
"name": "generation",
|
|
1150
|
+
"type": "string",
|
|
1151
|
+
"default": "",
|
|
1152
|
+
"description": "The content generation of the object, if applied to an object.",
|
|
1153
|
+
"routing": {
|
|
1154
|
+
"send": {
|
|
1155
|
+
"property": "generation",
|
|
1156
|
+
"propertyInDotNotation": false,
|
|
1157
|
+
"type": "body",
|
|
1158
|
+
"value": "={{ $value }}"
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1161
|
+
"displayOptions": {
|
|
1162
|
+
"show": {
|
|
1163
|
+
"resource": [
|
|
1164
|
+
"Object Access Controls"
|
|
1165
|
+
],
|
|
1166
|
+
"operation": [
|
|
1167
|
+
"Storage Object Access Controls Patch"
|
|
1168
|
+
]
|
|
1169
|
+
}
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"displayName": "ID",
|
|
1174
|
+
"name": "id",
|
|
1175
|
+
"type": "string",
|
|
1176
|
+
"default": "",
|
|
1177
|
+
"description": "The ID of the access-control entry.",
|
|
1178
|
+
"routing": {
|
|
1179
|
+
"send": {
|
|
1180
|
+
"property": "id",
|
|
1181
|
+
"propertyInDotNotation": false,
|
|
1182
|
+
"type": "body",
|
|
1183
|
+
"value": "={{ $value }}"
|
|
1184
|
+
}
|
|
1185
|
+
},
|
|
1186
|
+
"displayOptions": {
|
|
1187
|
+
"show": {
|
|
1188
|
+
"resource": [
|
|
1189
|
+
"Object Access Controls"
|
|
1190
|
+
],
|
|
1191
|
+
"operation": [
|
|
1192
|
+
"Storage Object Access Controls Patch"
|
|
1193
|
+
]
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"displayName": "Kind",
|
|
1199
|
+
"name": "kind",
|
|
1200
|
+
"type": "string",
|
|
1201
|
+
"default": "storage#objectAccessControl",
|
|
1202
|
+
"description": "The kind of item this is. For object access control entries, this is always storage#objectAccessControl.",
|
|
1203
|
+
"routing": {
|
|
1204
|
+
"send": {
|
|
1205
|
+
"property": "kind",
|
|
1206
|
+
"propertyInDotNotation": false,
|
|
1207
|
+
"type": "body",
|
|
1208
|
+
"value": "={{ $value }}"
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
"displayOptions": {
|
|
1212
|
+
"show": {
|
|
1213
|
+
"resource": [
|
|
1214
|
+
"Object Access Controls"
|
|
1215
|
+
],
|
|
1216
|
+
"operation": [
|
|
1217
|
+
"Storage Object Access Controls Patch"
|
|
1218
|
+
]
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"displayName": "Object",
|
|
1224
|
+
"name": "object",
|
|
1225
|
+
"type": "string",
|
|
1226
|
+
"default": "",
|
|
1227
|
+
"description": "The name of the object, if applied to an object.",
|
|
1228
|
+
"routing": {
|
|
1229
|
+
"send": {
|
|
1230
|
+
"property": "object",
|
|
1231
|
+
"propertyInDotNotation": false,
|
|
1232
|
+
"type": "body",
|
|
1233
|
+
"value": "={{ $value }}"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"displayOptions": {
|
|
1237
|
+
"show": {
|
|
1238
|
+
"resource": [
|
|
1239
|
+
"Object Access Controls"
|
|
1240
|
+
],
|
|
1241
|
+
"operation": [
|
|
1242
|
+
"Storage Object Access Controls Patch"
|
|
1243
|
+
]
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"displayName": "Project Team",
|
|
1249
|
+
"name": "projectTeam",
|
|
1250
|
+
"type": "json",
|
|
1251
|
+
"default": "{}",
|
|
1252
|
+
"description": "The project team associated with the entity, if any.",
|
|
1253
|
+
"routing": {
|
|
1254
|
+
"send": {
|
|
1255
|
+
"property": "projectTeam",
|
|
1256
|
+
"propertyInDotNotation": false,
|
|
1257
|
+
"type": "body",
|
|
1258
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
"displayOptions": {
|
|
1262
|
+
"show": {
|
|
1263
|
+
"resource": [
|
|
1264
|
+
"Object Access Controls"
|
|
1265
|
+
],
|
|
1266
|
+
"operation": [
|
|
1267
|
+
"Storage Object Access Controls Patch"
|
|
1268
|
+
]
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"displayName": "Role",
|
|
1274
|
+
"name": "role",
|
|
1275
|
+
"type": "string",
|
|
1276
|
+
"default": "",
|
|
1277
|
+
"description": "The access permission for the entity.",
|
|
1278
|
+
"routing": {
|
|
1279
|
+
"send": {
|
|
1280
|
+
"property": "role",
|
|
1281
|
+
"propertyInDotNotation": false,
|
|
1282
|
+
"type": "body",
|
|
1283
|
+
"value": "={{ $value }}"
|
|
1284
|
+
}
|
|
1285
|
+
},
|
|
1286
|
+
"displayOptions": {
|
|
1287
|
+
"show": {
|
|
1288
|
+
"resource": [
|
|
1289
|
+
"Object Access Controls"
|
|
1290
|
+
],
|
|
1291
|
+
"operation": [
|
|
1292
|
+
"Storage Object Access Controls Patch"
|
|
1293
|
+
]
|
|
1294
|
+
}
|
|
1295
|
+
}
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"displayName": "Self Link",
|
|
1299
|
+
"name": "selfLink",
|
|
1300
|
+
"type": "string",
|
|
1301
|
+
"default": "",
|
|
1302
|
+
"description": "The link to this access-control entry.",
|
|
1303
|
+
"routing": {
|
|
1304
|
+
"send": {
|
|
1305
|
+
"property": "selfLink",
|
|
1306
|
+
"propertyInDotNotation": false,
|
|
1307
|
+
"type": "body",
|
|
1308
|
+
"value": "={{ $value }}"
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
"displayOptions": {
|
|
1312
|
+
"show": {
|
|
1313
|
+
"resource": [
|
|
1314
|
+
"Object Access Controls"
|
|
1315
|
+
],
|
|
1316
|
+
"operation": [
|
|
1317
|
+
"Storage Object Access Controls Patch"
|
|
1318
|
+
]
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"displayName": "PUT /b/{bucket}/o/{object}/acl/{entity}",
|
|
1324
|
+
"name": "operation",
|
|
1325
|
+
"type": "notice",
|
|
1326
|
+
"typeOptions": {
|
|
1327
|
+
"theme": "info"
|
|
1328
|
+
},
|
|
1329
|
+
"default": "",
|
|
1330
|
+
"displayOptions": {
|
|
1331
|
+
"show": {
|
|
1332
|
+
"resource": [
|
|
1333
|
+
"Object Access Controls"
|
|
1334
|
+
],
|
|
1335
|
+
"operation": [
|
|
1336
|
+
"Storage Object Access Controls Update"
|
|
1337
|
+
]
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"displayName": "Bucket",
|
|
1343
|
+
"name": "bucket",
|
|
1344
|
+
"required": true,
|
|
1345
|
+
"description": "Name of a bucket.",
|
|
1346
|
+
"default": "",
|
|
1347
|
+
"type": "string",
|
|
1348
|
+
"displayOptions": {
|
|
1349
|
+
"show": {
|
|
1350
|
+
"resource": [
|
|
1351
|
+
"Object Access Controls"
|
|
1352
|
+
],
|
|
1353
|
+
"operation": [
|
|
1354
|
+
"Storage Object Access Controls Update"
|
|
1355
|
+
]
|
|
1356
|
+
}
|
|
1357
|
+
}
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
"displayName": "Object",
|
|
1361
|
+
"name": "object",
|
|
1362
|
+
"required": true,
|
|
1363
|
+
"description": "Name of the object. For information about how to URL encode object names to be path safe, see Encoding URI Path Parts.",
|
|
1364
|
+
"default": "",
|
|
1365
|
+
"type": "string",
|
|
1366
|
+
"displayOptions": {
|
|
1367
|
+
"show": {
|
|
1368
|
+
"resource": [
|
|
1369
|
+
"Object Access Controls"
|
|
1370
|
+
],
|
|
1371
|
+
"operation": [
|
|
1372
|
+
"Storage Object Access Controls Update"
|
|
1373
|
+
]
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
{
|
|
1378
|
+
"displayName": "Entity",
|
|
1379
|
+
"name": "entity",
|
|
1380
|
+
"required": true,
|
|
1381
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
1382
|
+
"default": "",
|
|
1383
|
+
"type": "string",
|
|
1384
|
+
"displayOptions": {
|
|
1385
|
+
"show": {
|
|
1386
|
+
"resource": [
|
|
1387
|
+
"Object Access Controls"
|
|
1388
|
+
],
|
|
1389
|
+
"operation": [
|
|
1390
|
+
"Storage Object Access Controls Update"
|
|
1391
|
+
]
|
|
1392
|
+
}
|
|
1393
|
+
}
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"displayName": "Generation",
|
|
1397
|
+
"name": "generation",
|
|
1398
|
+
"description": "If present, selects a specific revision of this object (as opposed to the latest version, the default).",
|
|
1399
|
+
"default": "",
|
|
1400
|
+
"type": "string",
|
|
1401
|
+
"routing": {
|
|
1402
|
+
"send": {
|
|
1403
|
+
"type": "query",
|
|
1404
|
+
"property": "generation",
|
|
1405
|
+
"value": "={{ $value }}",
|
|
1406
|
+
"propertyInDotNotation": false
|
|
1407
|
+
}
|
|
1408
|
+
},
|
|
1409
|
+
"displayOptions": {
|
|
1410
|
+
"show": {
|
|
1411
|
+
"resource": [
|
|
1412
|
+
"Object Access Controls"
|
|
1413
|
+
],
|
|
1414
|
+
"operation": [
|
|
1415
|
+
"Storage Object Access Controls Update"
|
|
1416
|
+
]
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"displayName": "User Project",
|
|
1422
|
+
"name": "userProject",
|
|
1423
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
1424
|
+
"default": "",
|
|
1425
|
+
"type": "string",
|
|
1426
|
+
"routing": {
|
|
1427
|
+
"send": {
|
|
1428
|
+
"type": "query",
|
|
1429
|
+
"property": "userProject",
|
|
1430
|
+
"value": "={{ $value }}",
|
|
1431
|
+
"propertyInDotNotation": false
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"displayOptions": {
|
|
1435
|
+
"show": {
|
|
1436
|
+
"resource": [
|
|
1437
|
+
"Object Access Controls"
|
|
1438
|
+
],
|
|
1439
|
+
"operation": [
|
|
1440
|
+
"Storage Object Access Controls Update"
|
|
1441
|
+
]
|
|
1442
|
+
}
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"displayName": "Bucket",
|
|
1447
|
+
"name": "bucket",
|
|
1448
|
+
"type": "string",
|
|
1449
|
+
"default": "",
|
|
1450
|
+
"description": "The name of the bucket.",
|
|
1451
|
+
"routing": {
|
|
1452
|
+
"send": {
|
|
1453
|
+
"property": "bucket",
|
|
1454
|
+
"propertyInDotNotation": false,
|
|
1455
|
+
"type": "body",
|
|
1456
|
+
"value": "={{ $value }}"
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1459
|
+
"displayOptions": {
|
|
1460
|
+
"show": {
|
|
1461
|
+
"resource": [
|
|
1462
|
+
"Object Access Controls"
|
|
1463
|
+
],
|
|
1464
|
+
"operation": [
|
|
1465
|
+
"Storage Object Access Controls Update"
|
|
1466
|
+
]
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"displayName": "Domain",
|
|
1472
|
+
"name": "domain",
|
|
1473
|
+
"type": "string",
|
|
1474
|
+
"default": "",
|
|
1475
|
+
"description": "The domain associated with the entity, if any.",
|
|
1476
|
+
"routing": {
|
|
1477
|
+
"send": {
|
|
1478
|
+
"property": "domain",
|
|
1479
|
+
"propertyInDotNotation": false,
|
|
1480
|
+
"type": "body",
|
|
1481
|
+
"value": "={{ $value }}"
|
|
1482
|
+
}
|
|
1483
|
+
},
|
|
1484
|
+
"displayOptions": {
|
|
1485
|
+
"show": {
|
|
1486
|
+
"resource": [
|
|
1487
|
+
"Object Access Controls"
|
|
1488
|
+
],
|
|
1489
|
+
"operation": [
|
|
1490
|
+
"Storage Object Access Controls Update"
|
|
1491
|
+
]
|
|
1492
|
+
}
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"displayName": "Email",
|
|
1497
|
+
"name": "email",
|
|
1498
|
+
"type": "string",
|
|
1499
|
+
"default": "",
|
|
1500
|
+
"description": "The email address associated with the entity, if any.",
|
|
1501
|
+
"routing": {
|
|
1502
|
+
"send": {
|
|
1503
|
+
"property": "email",
|
|
1504
|
+
"propertyInDotNotation": false,
|
|
1505
|
+
"type": "body",
|
|
1506
|
+
"value": "={{ $value }}"
|
|
1507
|
+
}
|
|
1508
|
+
},
|
|
1509
|
+
"displayOptions": {
|
|
1510
|
+
"show": {
|
|
1511
|
+
"resource": [
|
|
1512
|
+
"Object Access Controls"
|
|
1513
|
+
],
|
|
1514
|
+
"operation": [
|
|
1515
|
+
"Storage Object Access Controls Update"
|
|
1516
|
+
]
|
|
1517
|
+
}
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"displayName": "Entity",
|
|
1522
|
+
"name": "entity",
|
|
1523
|
+
"type": "string",
|
|
1524
|
+
"default": "",
|
|
1525
|
+
"description": "The entity holding the permission, in one of the following forms: \n- user-userId \n- user-email \n- group-groupId \n- group-email \n- domain-domain \n- project-team-projectId \n- allUsers \n- allAuthenticatedUsers Examples: \n- The user liz@example.com would be user-liz@example.com. \n- The group example@googlegroups.com would be group-example@googlegroups.com. \n- To refer to all members of the Google Apps for Business domain example.com, the entity would be domain-example.com.",
|
|
1526
|
+
"routing": {
|
|
1527
|
+
"send": {
|
|
1528
|
+
"property": "entity",
|
|
1529
|
+
"propertyInDotNotation": false,
|
|
1530
|
+
"type": "body",
|
|
1531
|
+
"value": "={{ $value }}"
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
"displayOptions": {
|
|
1535
|
+
"show": {
|
|
1536
|
+
"resource": [
|
|
1537
|
+
"Object Access Controls"
|
|
1538
|
+
],
|
|
1539
|
+
"operation": [
|
|
1540
|
+
"Storage Object Access Controls Update"
|
|
1541
|
+
]
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
"displayName": "Entity ID",
|
|
1547
|
+
"name": "entityId",
|
|
1548
|
+
"type": "string",
|
|
1549
|
+
"default": "",
|
|
1550
|
+
"description": "The ID for the entity, if any.",
|
|
1551
|
+
"routing": {
|
|
1552
|
+
"send": {
|
|
1553
|
+
"property": "entityId",
|
|
1554
|
+
"propertyInDotNotation": false,
|
|
1555
|
+
"type": "body",
|
|
1556
|
+
"value": "={{ $value }}"
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
"displayOptions": {
|
|
1560
|
+
"show": {
|
|
1561
|
+
"resource": [
|
|
1562
|
+
"Object Access Controls"
|
|
1563
|
+
],
|
|
1564
|
+
"operation": [
|
|
1565
|
+
"Storage Object Access Controls Update"
|
|
1566
|
+
]
|
|
1567
|
+
}
|
|
1568
|
+
}
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"displayName": "Etag",
|
|
1572
|
+
"name": "etag",
|
|
1573
|
+
"type": "string",
|
|
1574
|
+
"default": "",
|
|
1575
|
+
"description": "HTTP 1.1 Entity tag for the access-control entry.",
|
|
1576
|
+
"routing": {
|
|
1577
|
+
"send": {
|
|
1578
|
+
"property": "etag",
|
|
1579
|
+
"propertyInDotNotation": false,
|
|
1580
|
+
"type": "body",
|
|
1581
|
+
"value": "={{ $value }}"
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"displayOptions": {
|
|
1585
|
+
"show": {
|
|
1586
|
+
"resource": [
|
|
1587
|
+
"Object Access Controls"
|
|
1588
|
+
],
|
|
1589
|
+
"operation": [
|
|
1590
|
+
"Storage Object Access Controls Update"
|
|
1591
|
+
]
|
|
1592
|
+
}
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"displayName": "Generation",
|
|
1597
|
+
"name": "generation",
|
|
1598
|
+
"type": "string",
|
|
1599
|
+
"default": "",
|
|
1600
|
+
"description": "The content generation of the object, if applied to an object.",
|
|
1601
|
+
"routing": {
|
|
1602
|
+
"send": {
|
|
1603
|
+
"property": "generation",
|
|
1604
|
+
"propertyInDotNotation": false,
|
|
1605
|
+
"type": "body",
|
|
1606
|
+
"value": "={{ $value }}"
|
|
1607
|
+
}
|
|
1608
|
+
},
|
|
1609
|
+
"displayOptions": {
|
|
1610
|
+
"show": {
|
|
1611
|
+
"resource": [
|
|
1612
|
+
"Object Access Controls"
|
|
1613
|
+
],
|
|
1614
|
+
"operation": [
|
|
1615
|
+
"Storage Object Access Controls Update"
|
|
1616
|
+
]
|
|
1617
|
+
}
|
|
1618
|
+
}
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"displayName": "ID",
|
|
1622
|
+
"name": "id",
|
|
1623
|
+
"type": "string",
|
|
1624
|
+
"default": "",
|
|
1625
|
+
"description": "The ID of the access-control entry.",
|
|
1626
|
+
"routing": {
|
|
1627
|
+
"send": {
|
|
1628
|
+
"property": "id",
|
|
1629
|
+
"propertyInDotNotation": false,
|
|
1630
|
+
"type": "body",
|
|
1631
|
+
"value": "={{ $value }}"
|
|
1632
|
+
}
|
|
1633
|
+
},
|
|
1634
|
+
"displayOptions": {
|
|
1635
|
+
"show": {
|
|
1636
|
+
"resource": [
|
|
1637
|
+
"Object Access Controls"
|
|
1638
|
+
],
|
|
1639
|
+
"operation": [
|
|
1640
|
+
"Storage Object Access Controls Update"
|
|
1641
|
+
]
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"displayName": "Kind",
|
|
1647
|
+
"name": "kind",
|
|
1648
|
+
"type": "string",
|
|
1649
|
+
"default": "storage#objectAccessControl",
|
|
1650
|
+
"description": "The kind of item this is. For object access control entries, this is always storage#objectAccessControl.",
|
|
1651
|
+
"routing": {
|
|
1652
|
+
"send": {
|
|
1653
|
+
"property": "kind",
|
|
1654
|
+
"propertyInDotNotation": false,
|
|
1655
|
+
"type": "body",
|
|
1656
|
+
"value": "={{ $value }}"
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
"displayOptions": {
|
|
1660
|
+
"show": {
|
|
1661
|
+
"resource": [
|
|
1662
|
+
"Object Access Controls"
|
|
1663
|
+
],
|
|
1664
|
+
"operation": [
|
|
1665
|
+
"Storage Object Access Controls Update"
|
|
1666
|
+
]
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"displayName": "Object",
|
|
1672
|
+
"name": "object",
|
|
1673
|
+
"type": "string",
|
|
1674
|
+
"default": "",
|
|
1675
|
+
"description": "The name of the object, if applied to an object.",
|
|
1676
|
+
"routing": {
|
|
1677
|
+
"send": {
|
|
1678
|
+
"property": "object",
|
|
1679
|
+
"propertyInDotNotation": false,
|
|
1680
|
+
"type": "body",
|
|
1681
|
+
"value": "={{ $value }}"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
"displayOptions": {
|
|
1685
|
+
"show": {
|
|
1686
|
+
"resource": [
|
|
1687
|
+
"Object Access Controls"
|
|
1688
|
+
],
|
|
1689
|
+
"operation": [
|
|
1690
|
+
"Storage Object Access Controls Update"
|
|
1691
|
+
]
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"displayName": "Project Team",
|
|
1697
|
+
"name": "projectTeam",
|
|
1698
|
+
"type": "json",
|
|
1699
|
+
"default": "{}",
|
|
1700
|
+
"description": "The project team associated with the entity, if any.",
|
|
1701
|
+
"routing": {
|
|
1702
|
+
"send": {
|
|
1703
|
+
"property": "projectTeam",
|
|
1704
|
+
"propertyInDotNotation": false,
|
|
1705
|
+
"type": "body",
|
|
1706
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1707
|
+
}
|
|
1708
|
+
},
|
|
1709
|
+
"displayOptions": {
|
|
1710
|
+
"show": {
|
|
1711
|
+
"resource": [
|
|
1712
|
+
"Object Access Controls"
|
|
1713
|
+
],
|
|
1714
|
+
"operation": [
|
|
1715
|
+
"Storage Object Access Controls Update"
|
|
1716
|
+
]
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"displayName": "Role",
|
|
1722
|
+
"name": "role",
|
|
1723
|
+
"type": "string",
|
|
1724
|
+
"default": "",
|
|
1725
|
+
"description": "The access permission for the entity.",
|
|
1726
|
+
"routing": {
|
|
1727
|
+
"send": {
|
|
1728
|
+
"property": "role",
|
|
1729
|
+
"propertyInDotNotation": false,
|
|
1730
|
+
"type": "body",
|
|
1731
|
+
"value": "={{ $value }}"
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1734
|
+
"displayOptions": {
|
|
1735
|
+
"show": {
|
|
1736
|
+
"resource": [
|
|
1737
|
+
"Object Access Controls"
|
|
1738
|
+
],
|
|
1739
|
+
"operation": [
|
|
1740
|
+
"Storage Object Access Controls Update"
|
|
1741
|
+
]
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"displayName": "Self Link",
|
|
1747
|
+
"name": "selfLink",
|
|
1748
|
+
"type": "string",
|
|
1749
|
+
"default": "",
|
|
1750
|
+
"description": "The link to this access-control entry.",
|
|
1751
|
+
"routing": {
|
|
1752
|
+
"send": {
|
|
1753
|
+
"property": "selfLink",
|
|
1754
|
+
"propertyInDotNotation": false,
|
|
1755
|
+
"type": "body",
|
|
1756
|
+
"value": "={{ $value }}"
|
|
1757
|
+
}
|
|
1758
|
+
},
|
|
1759
|
+
"displayOptions": {
|
|
1760
|
+
"show": {
|
|
1761
|
+
"resource": [
|
|
1762
|
+
"Object Access Controls"
|
|
1763
|
+
],
|
|
1764
|
+
"operation": [
|
|
1765
|
+
"Storage Object Access Controls Update"
|
|
1766
|
+
]
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
];
|
|
1771
|
+
//# sourceMappingURL=index.js.map
|