@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,1363 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.bucketAccessControlsDescription = void 0;
|
|
4
|
+
exports.bucketAccessControlsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Bucket Access Controls"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "Storage Bucket Access Controls List",
|
|
20
|
+
"value": "Storage Bucket Access Controls List",
|
|
21
|
+
"action": "Storage Bucket Access Controls List",
|
|
22
|
+
"description": "Retrieves ACL entries on the specified bucket.",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/acl"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Storage Bucket Access Controls Insert",
|
|
32
|
+
"value": "Storage Bucket Access Controls Insert",
|
|
33
|
+
"action": "Storage Bucket Access Controls Insert",
|
|
34
|
+
"description": "Creates a new ACL entry on the specified bucket.",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/acl"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "Storage Bucket Access Controls Delete",
|
|
44
|
+
"value": "Storage Bucket Access Controls Delete",
|
|
45
|
+
"action": "Storage Bucket Access Controls Delete",
|
|
46
|
+
"description": "Permanently deletes the ACL entry for the specified entity on the specified bucket.",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "DELETE",
|
|
50
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Storage Bucket Access Controls Get",
|
|
56
|
+
"value": "Storage Bucket Access Controls Get",
|
|
57
|
+
"action": "Storage Bucket Access Controls Get",
|
|
58
|
+
"description": "Returns the ACL entry for the specified entity on the specified bucket.",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Storage Bucket Access Controls Patch",
|
|
68
|
+
"value": "Storage Bucket Access Controls Patch",
|
|
69
|
+
"action": "Storage Bucket Access Controls Patch",
|
|
70
|
+
"description": "Patches an ACL entry on the specified bucket.",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "PATCH",
|
|
74
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Storage Bucket Access Controls Update",
|
|
80
|
+
"value": "Storage Bucket Access Controls Update",
|
|
81
|
+
"action": "Storage Bucket Access Controls Update",
|
|
82
|
+
"description": "Updates an ACL entry on the specified bucket.",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "PUT",
|
|
86
|
+
"url": "=/b/{{$parameter[\"bucket\"]}}/acl/{{$parameter[\"entity\"]}}"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"default": ""
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"displayName": "GET /b/{bucket}/acl",
|
|
95
|
+
"name": "operation",
|
|
96
|
+
"type": "notice",
|
|
97
|
+
"typeOptions": {
|
|
98
|
+
"theme": "info"
|
|
99
|
+
},
|
|
100
|
+
"default": "",
|
|
101
|
+
"displayOptions": {
|
|
102
|
+
"show": {
|
|
103
|
+
"resource": [
|
|
104
|
+
"Bucket Access Controls"
|
|
105
|
+
],
|
|
106
|
+
"operation": [
|
|
107
|
+
"Storage Bucket 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
|
+
"Bucket Access Controls"
|
|
123
|
+
],
|
|
124
|
+
"operation": [
|
|
125
|
+
"Storage Bucket Access Controls List"
|
|
126
|
+
]
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"displayName": "User Project",
|
|
132
|
+
"name": "userProject",
|
|
133
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
134
|
+
"default": "",
|
|
135
|
+
"type": "string",
|
|
136
|
+
"routing": {
|
|
137
|
+
"send": {
|
|
138
|
+
"type": "query",
|
|
139
|
+
"property": "userProject",
|
|
140
|
+
"value": "={{ $value }}",
|
|
141
|
+
"propertyInDotNotation": false
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"displayOptions": {
|
|
145
|
+
"show": {
|
|
146
|
+
"resource": [
|
|
147
|
+
"Bucket Access Controls"
|
|
148
|
+
],
|
|
149
|
+
"operation": [
|
|
150
|
+
"Storage Bucket Access Controls List"
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"displayName": "POST /b/{bucket}/acl",
|
|
157
|
+
"name": "operation",
|
|
158
|
+
"type": "notice",
|
|
159
|
+
"typeOptions": {
|
|
160
|
+
"theme": "info"
|
|
161
|
+
},
|
|
162
|
+
"default": "",
|
|
163
|
+
"displayOptions": {
|
|
164
|
+
"show": {
|
|
165
|
+
"resource": [
|
|
166
|
+
"Bucket Access Controls"
|
|
167
|
+
],
|
|
168
|
+
"operation": [
|
|
169
|
+
"Storage Bucket Access Controls Insert"
|
|
170
|
+
]
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"displayName": "Bucket",
|
|
176
|
+
"name": "bucket",
|
|
177
|
+
"required": true,
|
|
178
|
+
"description": "Name of a bucket.",
|
|
179
|
+
"default": "",
|
|
180
|
+
"type": "string",
|
|
181
|
+
"displayOptions": {
|
|
182
|
+
"show": {
|
|
183
|
+
"resource": [
|
|
184
|
+
"Bucket Access Controls"
|
|
185
|
+
],
|
|
186
|
+
"operation": [
|
|
187
|
+
"Storage Bucket Access Controls Insert"
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"displayName": "User Project",
|
|
194
|
+
"name": "userProject",
|
|
195
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
196
|
+
"default": "",
|
|
197
|
+
"type": "string",
|
|
198
|
+
"routing": {
|
|
199
|
+
"send": {
|
|
200
|
+
"type": "query",
|
|
201
|
+
"property": "userProject",
|
|
202
|
+
"value": "={{ $value }}",
|
|
203
|
+
"propertyInDotNotation": false
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"displayOptions": {
|
|
207
|
+
"show": {
|
|
208
|
+
"resource": [
|
|
209
|
+
"Bucket Access Controls"
|
|
210
|
+
],
|
|
211
|
+
"operation": [
|
|
212
|
+
"Storage Bucket Access Controls Insert"
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"displayName": "Bucket",
|
|
219
|
+
"name": "bucket",
|
|
220
|
+
"type": "string",
|
|
221
|
+
"default": "",
|
|
222
|
+
"description": "The name of the bucket.",
|
|
223
|
+
"routing": {
|
|
224
|
+
"send": {
|
|
225
|
+
"property": "bucket",
|
|
226
|
+
"propertyInDotNotation": false,
|
|
227
|
+
"type": "body",
|
|
228
|
+
"value": "={{ $value }}"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"displayOptions": {
|
|
232
|
+
"show": {
|
|
233
|
+
"resource": [
|
|
234
|
+
"Bucket Access Controls"
|
|
235
|
+
],
|
|
236
|
+
"operation": [
|
|
237
|
+
"Storage Bucket Access Controls Insert"
|
|
238
|
+
]
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"displayName": "Domain",
|
|
244
|
+
"name": "domain",
|
|
245
|
+
"type": "string",
|
|
246
|
+
"default": "",
|
|
247
|
+
"description": "The domain associated with the entity, if any.",
|
|
248
|
+
"routing": {
|
|
249
|
+
"send": {
|
|
250
|
+
"property": "domain",
|
|
251
|
+
"propertyInDotNotation": false,
|
|
252
|
+
"type": "body",
|
|
253
|
+
"value": "={{ $value }}"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"displayOptions": {
|
|
257
|
+
"show": {
|
|
258
|
+
"resource": [
|
|
259
|
+
"Bucket Access Controls"
|
|
260
|
+
],
|
|
261
|
+
"operation": [
|
|
262
|
+
"Storage Bucket Access Controls Insert"
|
|
263
|
+
]
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"displayName": "Email",
|
|
269
|
+
"name": "email",
|
|
270
|
+
"type": "string",
|
|
271
|
+
"default": "",
|
|
272
|
+
"description": "The email address associated with the entity, if any.",
|
|
273
|
+
"routing": {
|
|
274
|
+
"send": {
|
|
275
|
+
"property": "email",
|
|
276
|
+
"propertyInDotNotation": false,
|
|
277
|
+
"type": "body",
|
|
278
|
+
"value": "={{ $value }}"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"displayOptions": {
|
|
282
|
+
"show": {
|
|
283
|
+
"resource": [
|
|
284
|
+
"Bucket Access Controls"
|
|
285
|
+
],
|
|
286
|
+
"operation": [
|
|
287
|
+
"Storage Bucket Access Controls Insert"
|
|
288
|
+
]
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"displayName": "Entity",
|
|
294
|
+
"name": "entity",
|
|
295
|
+
"type": "string",
|
|
296
|
+
"default": "",
|
|
297
|
+
"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.",
|
|
298
|
+
"routing": {
|
|
299
|
+
"send": {
|
|
300
|
+
"property": "entity",
|
|
301
|
+
"propertyInDotNotation": false,
|
|
302
|
+
"type": "body",
|
|
303
|
+
"value": "={{ $value }}"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"displayOptions": {
|
|
307
|
+
"show": {
|
|
308
|
+
"resource": [
|
|
309
|
+
"Bucket Access Controls"
|
|
310
|
+
],
|
|
311
|
+
"operation": [
|
|
312
|
+
"Storage Bucket Access Controls Insert"
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"displayName": "Entity ID",
|
|
319
|
+
"name": "entityId",
|
|
320
|
+
"type": "string",
|
|
321
|
+
"default": "",
|
|
322
|
+
"description": "The ID for the entity, if any.",
|
|
323
|
+
"routing": {
|
|
324
|
+
"send": {
|
|
325
|
+
"property": "entityId",
|
|
326
|
+
"propertyInDotNotation": false,
|
|
327
|
+
"type": "body",
|
|
328
|
+
"value": "={{ $value }}"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"displayOptions": {
|
|
332
|
+
"show": {
|
|
333
|
+
"resource": [
|
|
334
|
+
"Bucket Access Controls"
|
|
335
|
+
],
|
|
336
|
+
"operation": [
|
|
337
|
+
"Storage Bucket Access Controls Insert"
|
|
338
|
+
]
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"displayName": "Etag",
|
|
344
|
+
"name": "etag",
|
|
345
|
+
"type": "string",
|
|
346
|
+
"default": "",
|
|
347
|
+
"description": "HTTP 1.1 Entity tag for the access-control entry.",
|
|
348
|
+
"routing": {
|
|
349
|
+
"send": {
|
|
350
|
+
"property": "etag",
|
|
351
|
+
"propertyInDotNotation": false,
|
|
352
|
+
"type": "body",
|
|
353
|
+
"value": "={{ $value }}"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"displayOptions": {
|
|
357
|
+
"show": {
|
|
358
|
+
"resource": [
|
|
359
|
+
"Bucket Access Controls"
|
|
360
|
+
],
|
|
361
|
+
"operation": [
|
|
362
|
+
"Storage Bucket Access Controls Insert"
|
|
363
|
+
]
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"displayName": "ID",
|
|
369
|
+
"name": "id",
|
|
370
|
+
"type": "string",
|
|
371
|
+
"default": "",
|
|
372
|
+
"description": "The ID of the access-control entry.",
|
|
373
|
+
"routing": {
|
|
374
|
+
"send": {
|
|
375
|
+
"property": "id",
|
|
376
|
+
"propertyInDotNotation": false,
|
|
377
|
+
"type": "body",
|
|
378
|
+
"value": "={{ $value }}"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"displayOptions": {
|
|
382
|
+
"show": {
|
|
383
|
+
"resource": [
|
|
384
|
+
"Bucket Access Controls"
|
|
385
|
+
],
|
|
386
|
+
"operation": [
|
|
387
|
+
"Storage Bucket Access Controls Insert"
|
|
388
|
+
]
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"displayName": "Kind",
|
|
394
|
+
"name": "kind",
|
|
395
|
+
"type": "string",
|
|
396
|
+
"default": "storage#bucketAccessControl",
|
|
397
|
+
"description": "The kind of item this is. For bucket access control entries, this is always storage#bucketAccessControl.",
|
|
398
|
+
"routing": {
|
|
399
|
+
"send": {
|
|
400
|
+
"property": "kind",
|
|
401
|
+
"propertyInDotNotation": false,
|
|
402
|
+
"type": "body",
|
|
403
|
+
"value": "={{ $value }}"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"displayOptions": {
|
|
407
|
+
"show": {
|
|
408
|
+
"resource": [
|
|
409
|
+
"Bucket Access Controls"
|
|
410
|
+
],
|
|
411
|
+
"operation": [
|
|
412
|
+
"Storage Bucket Access Controls Insert"
|
|
413
|
+
]
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"displayName": "Project Team",
|
|
419
|
+
"name": "projectTeam",
|
|
420
|
+
"type": "json",
|
|
421
|
+
"default": "{}",
|
|
422
|
+
"description": "The project team associated with the entity, if any.",
|
|
423
|
+
"routing": {
|
|
424
|
+
"send": {
|
|
425
|
+
"property": "projectTeam",
|
|
426
|
+
"propertyInDotNotation": false,
|
|
427
|
+
"type": "body",
|
|
428
|
+
"value": "={{ JSON.parse($value) }}"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"displayOptions": {
|
|
432
|
+
"show": {
|
|
433
|
+
"resource": [
|
|
434
|
+
"Bucket Access Controls"
|
|
435
|
+
],
|
|
436
|
+
"operation": [
|
|
437
|
+
"Storage Bucket Access Controls Insert"
|
|
438
|
+
]
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"displayName": "Role",
|
|
444
|
+
"name": "role",
|
|
445
|
+
"type": "string",
|
|
446
|
+
"default": "",
|
|
447
|
+
"description": "The access permission for the entity.",
|
|
448
|
+
"routing": {
|
|
449
|
+
"send": {
|
|
450
|
+
"property": "role",
|
|
451
|
+
"propertyInDotNotation": false,
|
|
452
|
+
"type": "body",
|
|
453
|
+
"value": "={{ $value }}"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"displayOptions": {
|
|
457
|
+
"show": {
|
|
458
|
+
"resource": [
|
|
459
|
+
"Bucket Access Controls"
|
|
460
|
+
],
|
|
461
|
+
"operation": [
|
|
462
|
+
"Storage Bucket Access Controls Insert"
|
|
463
|
+
]
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"displayName": "Self Link",
|
|
469
|
+
"name": "selfLink",
|
|
470
|
+
"type": "string",
|
|
471
|
+
"default": "",
|
|
472
|
+
"description": "The link to this access-control entry.",
|
|
473
|
+
"routing": {
|
|
474
|
+
"send": {
|
|
475
|
+
"property": "selfLink",
|
|
476
|
+
"propertyInDotNotation": false,
|
|
477
|
+
"type": "body",
|
|
478
|
+
"value": "={{ $value }}"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"displayOptions": {
|
|
482
|
+
"show": {
|
|
483
|
+
"resource": [
|
|
484
|
+
"Bucket Access Controls"
|
|
485
|
+
],
|
|
486
|
+
"operation": [
|
|
487
|
+
"Storage Bucket Access Controls Insert"
|
|
488
|
+
]
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"displayName": "DELETE /b/{bucket}/acl/{entity}",
|
|
494
|
+
"name": "operation",
|
|
495
|
+
"type": "notice",
|
|
496
|
+
"typeOptions": {
|
|
497
|
+
"theme": "info"
|
|
498
|
+
},
|
|
499
|
+
"default": "",
|
|
500
|
+
"displayOptions": {
|
|
501
|
+
"show": {
|
|
502
|
+
"resource": [
|
|
503
|
+
"Bucket Access Controls"
|
|
504
|
+
],
|
|
505
|
+
"operation": [
|
|
506
|
+
"Storage Bucket Access Controls Delete"
|
|
507
|
+
]
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"displayName": "Bucket",
|
|
513
|
+
"name": "bucket",
|
|
514
|
+
"required": true,
|
|
515
|
+
"description": "Name of a bucket.",
|
|
516
|
+
"default": "",
|
|
517
|
+
"type": "string",
|
|
518
|
+
"displayOptions": {
|
|
519
|
+
"show": {
|
|
520
|
+
"resource": [
|
|
521
|
+
"Bucket Access Controls"
|
|
522
|
+
],
|
|
523
|
+
"operation": [
|
|
524
|
+
"Storage Bucket Access Controls Delete"
|
|
525
|
+
]
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"displayName": "Entity",
|
|
531
|
+
"name": "entity",
|
|
532
|
+
"required": true,
|
|
533
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
534
|
+
"default": "",
|
|
535
|
+
"type": "string",
|
|
536
|
+
"displayOptions": {
|
|
537
|
+
"show": {
|
|
538
|
+
"resource": [
|
|
539
|
+
"Bucket Access Controls"
|
|
540
|
+
],
|
|
541
|
+
"operation": [
|
|
542
|
+
"Storage Bucket Access Controls Delete"
|
|
543
|
+
]
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"displayName": "User Project",
|
|
549
|
+
"name": "userProject",
|
|
550
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
551
|
+
"default": "",
|
|
552
|
+
"type": "string",
|
|
553
|
+
"routing": {
|
|
554
|
+
"send": {
|
|
555
|
+
"type": "query",
|
|
556
|
+
"property": "userProject",
|
|
557
|
+
"value": "={{ $value }}",
|
|
558
|
+
"propertyInDotNotation": false
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"displayOptions": {
|
|
562
|
+
"show": {
|
|
563
|
+
"resource": [
|
|
564
|
+
"Bucket Access Controls"
|
|
565
|
+
],
|
|
566
|
+
"operation": [
|
|
567
|
+
"Storage Bucket Access Controls Delete"
|
|
568
|
+
]
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"displayName": "GET /b/{bucket}/acl/{entity}",
|
|
574
|
+
"name": "operation",
|
|
575
|
+
"type": "notice",
|
|
576
|
+
"typeOptions": {
|
|
577
|
+
"theme": "info"
|
|
578
|
+
},
|
|
579
|
+
"default": "",
|
|
580
|
+
"displayOptions": {
|
|
581
|
+
"show": {
|
|
582
|
+
"resource": [
|
|
583
|
+
"Bucket Access Controls"
|
|
584
|
+
],
|
|
585
|
+
"operation": [
|
|
586
|
+
"Storage Bucket Access Controls Get"
|
|
587
|
+
]
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"displayName": "Bucket",
|
|
593
|
+
"name": "bucket",
|
|
594
|
+
"required": true,
|
|
595
|
+
"description": "Name of a bucket.",
|
|
596
|
+
"default": "",
|
|
597
|
+
"type": "string",
|
|
598
|
+
"displayOptions": {
|
|
599
|
+
"show": {
|
|
600
|
+
"resource": [
|
|
601
|
+
"Bucket Access Controls"
|
|
602
|
+
],
|
|
603
|
+
"operation": [
|
|
604
|
+
"Storage Bucket Access Controls Get"
|
|
605
|
+
]
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"displayName": "Entity",
|
|
611
|
+
"name": "entity",
|
|
612
|
+
"required": true,
|
|
613
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
614
|
+
"default": "",
|
|
615
|
+
"type": "string",
|
|
616
|
+
"displayOptions": {
|
|
617
|
+
"show": {
|
|
618
|
+
"resource": [
|
|
619
|
+
"Bucket Access Controls"
|
|
620
|
+
],
|
|
621
|
+
"operation": [
|
|
622
|
+
"Storage Bucket Access Controls Get"
|
|
623
|
+
]
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"displayName": "User Project",
|
|
629
|
+
"name": "userProject",
|
|
630
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
631
|
+
"default": "",
|
|
632
|
+
"type": "string",
|
|
633
|
+
"routing": {
|
|
634
|
+
"send": {
|
|
635
|
+
"type": "query",
|
|
636
|
+
"property": "userProject",
|
|
637
|
+
"value": "={{ $value }}",
|
|
638
|
+
"propertyInDotNotation": false
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"displayOptions": {
|
|
642
|
+
"show": {
|
|
643
|
+
"resource": [
|
|
644
|
+
"Bucket Access Controls"
|
|
645
|
+
],
|
|
646
|
+
"operation": [
|
|
647
|
+
"Storage Bucket Access Controls Get"
|
|
648
|
+
]
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"displayName": "PATCH /b/{bucket}/acl/{entity}",
|
|
654
|
+
"name": "operation",
|
|
655
|
+
"type": "notice",
|
|
656
|
+
"typeOptions": {
|
|
657
|
+
"theme": "info"
|
|
658
|
+
},
|
|
659
|
+
"default": "",
|
|
660
|
+
"displayOptions": {
|
|
661
|
+
"show": {
|
|
662
|
+
"resource": [
|
|
663
|
+
"Bucket Access Controls"
|
|
664
|
+
],
|
|
665
|
+
"operation": [
|
|
666
|
+
"Storage Bucket Access Controls Patch"
|
|
667
|
+
]
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"displayName": "Bucket",
|
|
673
|
+
"name": "bucket",
|
|
674
|
+
"required": true,
|
|
675
|
+
"description": "Name of a bucket.",
|
|
676
|
+
"default": "",
|
|
677
|
+
"type": "string",
|
|
678
|
+
"displayOptions": {
|
|
679
|
+
"show": {
|
|
680
|
+
"resource": [
|
|
681
|
+
"Bucket Access Controls"
|
|
682
|
+
],
|
|
683
|
+
"operation": [
|
|
684
|
+
"Storage Bucket Access Controls Patch"
|
|
685
|
+
]
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"displayName": "Entity",
|
|
691
|
+
"name": "entity",
|
|
692
|
+
"required": true,
|
|
693
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
694
|
+
"default": "",
|
|
695
|
+
"type": "string",
|
|
696
|
+
"displayOptions": {
|
|
697
|
+
"show": {
|
|
698
|
+
"resource": [
|
|
699
|
+
"Bucket Access Controls"
|
|
700
|
+
],
|
|
701
|
+
"operation": [
|
|
702
|
+
"Storage Bucket Access Controls Patch"
|
|
703
|
+
]
|
|
704
|
+
}
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"displayName": "User Project",
|
|
709
|
+
"name": "userProject",
|
|
710
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
711
|
+
"default": "",
|
|
712
|
+
"type": "string",
|
|
713
|
+
"routing": {
|
|
714
|
+
"send": {
|
|
715
|
+
"type": "query",
|
|
716
|
+
"property": "userProject",
|
|
717
|
+
"value": "={{ $value }}",
|
|
718
|
+
"propertyInDotNotation": false
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"displayOptions": {
|
|
722
|
+
"show": {
|
|
723
|
+
"resource": [
|
|
724
|
+
"Bucket Access Controls"
|
|
725
|
+
],
|
|
726
|
+
"operation": [
|
|
727
|
+
"Storage Bucket Access Controls Patch"
|
|
728
|
+
]
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"displayName": "Bucket",
|
|
734
|
+
"name": "bucket",
|
|
735
|
+
"type": "string",
|
|
736
|
+
"default": "",
|
|
737
|
+
"description": "The name of the bucket.",
|
|
738
|
+
"routing": {
|
|
739
|
+
"send": {
|
|
740
|
+
"property": "bucket",
|
|
741
|
+
"propertyInDotNotation": false,
|
|
742
|
+
"type": "body",
|
|
743
|
+
"value": "={{ $value }}"
|
|
744
|
+
}
|
|
745
|
+
},
|
|
746
|
+
"displayOptions": {
|
|
747
|
+
"show": {
|
|
748
|
+
"resource": [
|
|
749
|
+
"Bucket Access Controls"
|
|
750
|
+
],
|
|
751
|
+
"operation": [
|
|
752
|
+
"Storage Bucket Access Controls Patch"
|
|
753
|
+
]
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"displayName": "Domain",
|
|
759
|
+
"name": "domain",
|
|
760
|
+
"type": "string",
|
|
761
|
+
"default": "",
|
|
762
|
+
"description": "The domain associated with the entity, if any.",
|
|
763
|
+
"routing": {
|
|
764
|
+
"send": {
|
|
765
|
+
"property": "domain",
|
|
766
|
+
"propertyInDotNotation": false,
|
|
767
|
+
"type": "body",
|
|
768
|
+
"value": "={{ $value }}"
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"displayOptions": {
|
|
772
|
+
"show": {
|
|
773
|
+
"resource": [
|
|
774
|
+
"Bucket Access Controls"
|
|
775
|
+
],
|
|
776
|
+
"operation": [
|
|
777
|
+
"Storage Bucket Access Controls Patch"
|
|
778
|
+
]
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"displayName": "Email",
|
|
784
|
+
"name": "email",
|
|
785
|
+
"type": "string",
|
|
786
|
+
"default": "",
|
|
787
|
+
"description": "The email address associated with the entity, if any.",
|
|
788
|
+
"routing": {
|
|
789
|
+
"send": {
|
|
790
|
+
"property": "email",
|
|
791
|
+
"propertyInDotNotation": false,
|
|
792
|
+
"type": "body",
|
|
793
|
+
"value": "={{ $value }}"
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
"displayOptions": {
|
|
797
|
+
"show": {
|
|
798
|
+
"resource": [
|
|
799
|
+
"Bucket Access Controls"
|
|
800
|
+
],
|
|
801
|
+
"operation": [
|
|
802
|
+
"Storage Bucket Access Controls Patch"
|
|
803
|
+
]
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"displayName": "Entity",
|
|
809
|
+
"name": "entity",
|
|
810
|
+
"type": "string",
|
|
811
|
+
"default": "",
|
|
812
|
+
"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.",
|
|
813
|
+
"routing": {
|
|
814
|
+
"send": {
|
|
815
|
+
"property": "entity",
|
|
816
|
+
"propertyInDotNotation": false,
|
|
817
|
+
"type": "body",
|
|
818
|
+
"value": "={{ $value }}"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
"displayOptions": {
|
|
822
|
+
"show": {
|
|
823
|
+
"resource": [
|
|
824
|
+
"Bucket Access Controls"
|
|
825
|
+
],
|
|
826
|
+
"operation": [
|
|
827
|
+
"Storage Bucket Access Controls Patch"
|
|
828
|
+
]
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"displayName": "Entity ID",
|
|
834
|
+
"name": "entityId",
|
|
835
|
+
"type": "string",
|
|
836
|
+
"default": "",
|
|
837
|
+
"description": "The ID for the entity, if any.",
|
|
838
|
+
"routing": {
|
|
839
|
+
"send": {
|
|
840
|
+
"property": "entityId",
|
|
841
|
+
"propertyInDotNotation": false,
|
|
842
|
+
"type": "body",
|
|
843
|
+
"value": "={{ $value }}"
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"displayOptions": {
|
|
847
|
+
"show": {
|
|
848
|
+
"resource": [
|
|
849
|
+
"Bucket Access Controls"
|
|
850
|
+
],
|
|
851
|
+
"operation": [
|
|
852
|
+
"Storage Bucket Access Controls Patch"
|
|
853
|
+
]
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"displayName": "Etag",
|
|
859
|
+
"name": "etag",
|
|
860
|
+
"type": "string",
|
|
861
|
+
"default": "",
|
|
862
|
+
"description": "HTTP 1.1 Entity tag for the access-control entry.",
|
|
863
|
+
"routing": {
|
|
864
|
+
"send": {
|
|
865
|
+
"property": "etag",
|
|
866
|
+
"propertyInDotNotation": false,
|
|
867
|
+
"type": "body",
|
|
868
|
+
"value": "={{ $value }}"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
"displayOptions": {
|
|
872
|
+
"show": {
|
|
873
|
+
"resource": [
|
|
874
|
+
"Bucket Access Controls"
|
|
875
|
+
],
|
|
876
|
+
"operation": [
|
|
877
|
+
"Storage Bucket Access Controls Patch"
|
|
878
|
+
]
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"displayName": "ID",
|
|
884
|
+
"name": "id",
|
|
885
|
+
"type": "string",
|
|
886
|
+
"default": "",
|
|
887
|
+
"description": "The ID of the access-control entry.",
|
|
888
|
+
"routing": {
|
|
889
|
+
"send": {
|
|
890
|
+
"property": "id",
|
|
891
|
+
"propertyInDotNotation": false,
|
|
892
|
+
"type": "body",
|
|
893
|
+
"value": "={{ $value }}"
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
"displayOptions": {
|
|
897
|
+
"show": {
|
|
898
|
+
"resource": [
|
|
899
|
+
"Bucket Access Controls"
|
|
900
|
+
],
|
|
901
|
+
"operation": [
|
|
902
|
+
"Storage Bucket Access Controls Patch"
|
|
903
|
+
]
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"displayName": "Kind",
|
|
909
|
+
"name": "kind",
|
|
910
|
+
"type": "string",
|
|
911
|
+
"default": "storage#bucketAccessControl",
|
|
912
|
+
"description": "The kind of item this is. For bucket access control entries, this is always storage#bucketAccessControl.",
|
|
913
|
+
"routing": {
|
|
914
|
+
"send": {
|
|
915
|
+
"property": "kind",
|
|
916
|
+
"propertyInDotNotation": false,
|
|
917
|
+
"type": "body",
|
|
918
|
+
"value": "={{ $value }}"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"displayOptions": {
|
|
922
|
+
"show": {
|
|
923
|
+
"resource": [
|
|
924
|
+
"Bucket Access Controls"
|
|
925
|
+
],
|
|
926
|
+
"operation": [
|
|
927
|
+
"Storage Bucket Access Controls Patch"
|
|
928
|
+
]
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"displayName": "Project Team",
|
|
934
|
+
"name": "projectTeam",
|
|
935
|
+
"type": "json",
|
|
936
|
+
"default": "{}",
|
|
937
|
+
"description": "The project team associated with the entity, if any.",
|
|
938
|
+
"routing": {
|
|
939
|
+
"send": {
|
|
940
|
+
"property": "projectTeam",
|
|
941
|
+
"propertyInDotNotation": false,
|
|
942
|
+
"type": "body",
|
|
943
|
+
"value": "={{ JSON.parse($value) }}"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
"displayOptions": {
|
|
947
|
+
"show": {
|
|
948
|
+
"resource": [
|
|
949
|
+
"Bucket Access Controls"
|
|
950
|
+
],
|
|
951
|
+
"operation": [
|
|
952
|
+
"Storage Bucket Access Controls Patch"
|
|
953
|
+
]
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"displayName": "Role",
|
|
959
|
+
"name": "role",
|
|
960
|
+
"type": "string",
|
|
961
|
+
"default": "",
|
|
962
|
+
"description": "The access permission for the entity.",
|
|
963
|
+
"routing": {
|
|
964
|
+
"send": {
|
|
965
|
+
"property": "role",
|
|
966
|
+
"propertyInDotNotation": false,
|
|
967
|
+
"type": "body",
|
|
968
|
+
"value": "={{ $value }}"
|
|
969
|
+
}
|
|
970
|
+
},
|
|
971
|
+
"displayOptions": {
|
|
972
|
+
"show": {
|
|
973
|
+
"resource": [
|
|
974
|
+
"Bucket Access Controls"
|
|
975
|
+
],
|
|
976
|
+
"operation": [
|
|
977
|
+
"Storage Bucket Access Controls Patch"
|
|
978
|
+
]
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"displayName": "Self Link",
|
|
984
|
+
"name": "selfLink",
|
|
985
|
+
"type": "string",
|
|
986
|
+
"default": "",
|
|
987
|
+
"description": "The link to this access-control entry.",
|
|
988
|
+
"routing": {
|
|
989
|
+
"send": {
|
|
990
|
+
"property": "selfLink",
|
|
991
|
+
"propertyInDotNotation": false,
|
|
992
|
+
"type": "body",
|
|
993
|
+
"value": "={{ $value }}"
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
"displayOptions": {
|
|
997
|
+
"show": {
|
|
998
|
+
"resource": [
|
|
999
|
+
"Bucket Access Controls"
|
|
1000
|
+
],
|
|
1001
|
+
"operation": [
|
|
1002
|
+
"Storage Bucket Access Controls Patch"
|
|
1003
|
+
]
|
|
1004
|
+
}
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"displayName": "PUT /b/{bucket}/acl/{entity}",
|
|
1009
|
+
"name": "operation",
|
|
1010
|
+
"type": "notice",
|
|
1011
|
+
"typeOptions": {
|
|
1012
|
+
"theme": "info"
|
|
1013
|
+
},
|
|
1014
|
+
"default": "",
|
|
1015
|
+
"displayOptions": {
|
|
1016
|
+
"show": {
|
|
1017
|
+
"resource": [
|
|
1018
|
+
"Bucket Access Controls"
|
|
1019
|
+
],
|
|
1020
|
+
"operation": [
|
|
1021
|
+
"Storage Bucket Access Controls Update"
|
|
1022
|
+
]
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"displayName": "Bucket",
|
|
1028
|
+
"name": "bucket",
|
|
1029
|
+
"required": true,
|
|
1030
|
+
"description": "Name of a bucket.",
|
|
1031
|
+
"default": "",
|
|
1032
|
+
"type": "string",
|
|
1033
|
+
"displayOptions": {
|
|
1034
|
+
"show": {
|
|
1035
|
+
"resource": [
|
|
1036
|
+
"Bucket Access Controls"
|
|
1037
|
+
],
|
|
1038
|
+
"operation": [
|
|
1039
|
+
"Storage Bucket Access Controls Update"
|
|
1040
|
+
]
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"displayName": "Entity",
|
|
1046
|
+
"name": "entity",
|
|
1047
|
+
"required": true,
|
|
1048
|
+
"description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.",
|
|
1049
|
+
"default": "",
|
|
1050
|
+
"type": "string",
|
|
1051
|
+
"displayOptions": {
|
|
1052
|
+
"show": {
|
|
1053
|
+
"resource": [
|
|
1054
|
+
"Bucket Access Controls"
|
|
1055
|
+
],
|
|
1056
|
+
"operation": [
|
|
1057
|
+
"Storage Bucket Access Controls Update"
|
|
1058
|
+
]
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"displayName": "User Project",
|
|
1064
|
+
"name": "userProject",
|
|
1065
|
+
"description": "The project to be billed for this request. Required for Requester Pays buckets.",
|
|
1066
|
+
"default": "",
|
|
1067
|
+
"type": "string",
|
|
1068
|
+
"routing": {
|
|
1069
|
+
"send": {
|
|
1070
|
+
"type": "query",
|
|
1071
|
+
"property": "userProject",
|
|
1072
|
+
"value": "={{ $value }}",
|
|
1073
|
+
"propertyInDotNotation": false
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"displayOptions": {
|
|
1077
|
+
"show": {
|
|
1078
|
+
"resource": [
|
|
1079
|
+
"Bucket Access Controls"
|
|
1080
|
+
],
|
|
1081
|
+
"operation": [
|
|
1082
|
+
"Storage Bucket Access Controls Update"
|
|
1083
|
+
]
|
|
1084
|
+
}
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"displayName": "Bucket",
|
|
1089
|
+
"name": "bucket",
|
|
1090
|
+
"type": "string",
|
|
1091
|
+
"default": "",
|
|
1092
|
+
"description": "The name of the bucket.",
|
|
1093
|
+
"routing": {
|
|
1094
|
+
"send": {
|
|
1095
|
+
"property": "bucket",
|
|
1096
|
+
"propertyInDotNotation": false,
|
|
1097
|
+
"type": "body",
|
|
1098
|
+
"value": "={{ $value }}"
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1101
|
+
"displayOptions": {
|
|
1102
|
+
"show": {
|
|
1103
|
+
"resource": [
|
|
1104
|
+
"Bucket Access Controls"
|
|
1105
|
+
],
|
|
1106
|
+
"operation": [
|
|
1107
|
+
"Storage Bucket Access Controls Update"
|
|
1108
|
+
]
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"displayName": "Domain",
|
|
1114
|
+
"name": "domain",
|
|
1115
|
+
"type": "string",
|
|
1116
|
+
"default": "",
|
|
1117
|
+
"description": "The domain associated with the entity, if any.",
|
|
1118
|
+
"routing": {
|
|
1119
|
+
"send": {
|
|
1120
|
+
"property": "domain",
|
|
1121
|
+
"propertyInDotNotation": false,
|
|
1122
|
+
"type": "body",
|
|
1123
|
+
"value": "={{ $value }}"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
"displayOptions": {
|
|
1127
|
+
"show": {
|
|
1128
|
+
"resource": [
|
|
1129
|
+
"Bucket Access Controls"
|
|
1130
|
+
],
|
|
1131
|
+
"operation": [
|
|
1132
|
+
"Storage Bucket Access Controls Update"
|
|
1133
|
+
]
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"displayName": "Email",
|
|
1139
|
+
"name": "email",
|
|
1140
|
+
"type": "string",
|
|
1141
|
+
"default": "",
|
|
1142
|
+
"description": "The email address associated with the entity, if any.",
|
|
1143
|
+
"routing": {
|
|
1144
|
+
"send": {
|
|
1145
|
+
"property": "email",
|
|
1146
|
+
"propertyInDotNotation": false,
|
|
1147
|
+
"type": "body",
|
|
1148
|
+
"value": "={{ $value }}"
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
"displayOptions": {
|
|
1152
|
+
"show": {
|
|
1153
|
+
"resource": [
|
|
1154
|
+
"Bucket Access Controls"
|
|
1155
|
+
],
|
|
1156
|
+
"operation": [
|
|
1157
|
+
"Storage Bucket Access Controls Update"
|
|
1158
|
+
]
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"displayName": "Entity",
|
|
1164
|
+
"name": "entity",
|
|
1165
|
+
"type": "string",
|
|
1166
|
+
"default": "",
|
|
1167
|
+
"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.",
|
|
1168
|
+
"routing": {
|
|
1169
|
+
"send": {
|
|
1170
|
+
"property": "entity",
|
|
1171
|
+
"propertyInDotNotation": false,
|
|
1172
|
+
"type": "body",
|
|
1173
|
+
"value": "={{ $value }}"
|
|
1174
|
+
}
|
|
1175
|
+
},
|
|
1176
|
+
"displayOptions": {
|
|
1177
|
+
"show": {
|
|
1178
|
+
"resource": [
|
|
1179
|
+
"Bucket Access Controls"
|
|
1180
|
+
],
|
|
1181
|
+
"operation": [
|
|
1182
|
+
"Storage Bucket Access Controls Update"
|
|
1183
|
+
]
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"displayName": "Entity ID",
|
|
1189
|
+
"name": "entityId",
|
|
1190
|
+
"type": "string",
|
|
1191
|
+
"default": "",
|
|
1192
|
+
"description": "The ID for the entity, if any.",
|
|
1193
|
+
"routing": {
|
|
1194
|
+
"send": {
|
|
1195
|
+
"property": "entityId",
|
|
1196
|
+
"propertyInDotNotation": false,
|
|
1197
|
+
"type": "body",
|
|
1198
|
+
"value": "={{ $value }}"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"displayOptions": {
|
|
1202
|
+
"show": {
|
|
1203
|
+
"resource": [
|
|
1204
|
+
"Bucket Access Controls"
|
|
1205
|
+
],
|
|
1206
|
+
"operation": [
|
|
1207
|
+
"Storage Bucket Access Controls Update"
|
|
1208
|
+
]
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"displayName": "Etag",
|
|
1214
|
+
"name": "etag",
|
|
1215
|
+
"type": "string",
|
|
1216
|
+
"default": "",
|
|
1217
|
+
"description": "HTTP 1.1 Entity tag for the access-control entry.",
|
|
1218
|
+
"routing": {
|
|
1219
|
+
"send": {
|
|
1220
|
+
"property": "etag",
|
|
1221
|
+
"propertyInDotNotation": false,
|
|
1222
|
+
"type": "body",
|
|
1223
|
+
"value": "={{ $value }}"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"displayOptions": {
|
|
1227
|
+
"show": {
|
|
1228
|
+
"resource": [
|
|
1229
|
+
"Bucket Access Controls"
|
|
1230
|
+
],
|
|
1231
|
+
"operation": [
|
|
1232
|
+
"Storage Bucket Access Controls Update"
|
|
1233
|
+
]
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"displayName": "ID",
|
|
1239
|
+
"name": "id",
|
|
1240
|
+
"type": "string",
|
|
1241
|
+
"default": "",
|
|
1242
|
+
"description": "The ID of the access-control entry.",
|
|
1243
|
+
"routing": {
|
|
1244
|
+
"send": {
|
|
1245
|
+
"property": "id",
|
|
1246
|
+
"propertyInDotNotation": false,
|
|
1247
|
+
"type": "body",
|
|
1248
|
+
"value": "={{ $value }}"
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"displayOptions": {
|
|
1252
|
+
"show": {
|
|
1253
|
+
"resource": [
|
|
1254
|
+
"Bucket Access Controls"
|
|
1255
|
+
],
|
|
1256
|
+
"operation": [
|
|
1257
|
+
"Storage Bucket Access Controls Update"
|
|
1258
|
+
]
|
|
1259
|
+
}
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"displayName": "Kind",
|
|
1264
|
+
"name": "kind",
|
|
1265
|
+
"type": "string",
|
|
1266
|
+
"default": "storage#bucketAccessControl",
|
|
1267
|
+
"description": "The kind of item this is. For bucket access control entries, this is always storage#bucketAccessControl.",
|
|
1268
|
+
"routing": {
|
|
1269
|
+
"send": {
|
|
1270
|
+
"property": "kind",
|
|
1271
|
+
"propertyInDotNotation": false,
|
|
1272
|
+
"type": "body",
|
|
1273
|
+
"value": "={{ $value }}"
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"displayOptions": {
|
|
1277
|
+
"show": {
|
|
1278
|
+
"resource": [
|
|
1279
|
+
"Bucket Access Controls"
|
|
1280
|
+
],
|
|
1281
|
+
"operation": [
|
|
1282
|
+
"Storage Bucket Access Controls Update"
|
|
1283
|
+
]
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"displayName": "Project Team",
|
|
1289
|
+
"name": "projectTeam",
|
|
1290
|
+
"type": "json",
|
|
1291
|
+
"default": "{}",
|
|
1292
|
+
"description": "The project team associated with the entity, if any.",
|
|
1293
|
+
"routing": {
|
|
1294
|
+
"send": {
|
|
1295
|
+
"property": "projectTeam",
|
|
1296
|
+
"propertyInDotNotation": false,
|
|
1297
|
+
"type": "body",
|
|
1298
|
+
"value": "={{ JSON.parse($value) }}"
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"displayOptions": {
|
|
1302
|
+
"show": {
|
|
1303
|
+
"resource": [
|
|
1304
|
+
"Bucket Access Controls"
|
|
1305
|
+
],
|
|
1306
|
+
"operation": [
|
|
1307
|
+
"Storage Bucket Access Controls Update"
|
|
1308
|
+
]
|
|
1309
|
+
}
|
|
1310
|
+
}
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"displayName": "Role",
|
|
1314
|
+
"name": "role",
|
|
1315
|
+
"type": "string",
|
|
1316
|
+
"default": "",
|
|
1317
|
+
"description": "The access permission for the entity.",
|
|
1318
|
+
"routing": {
|
|
1319
|
+
"send": {
|
|
1320
|
+
"property": "role",
|
|
1321
|
+
"propertyInDotNotation": false,
|
|
1322
|
+
"type": "body",
|
|
1323
|
+
"value": "={{ $value }}"
|
|
1324
|
+
}
|
|
1325
|
+
},
|
|
1326
|
+
"displayOptions": {
|
|
1327
|
+
"show": {
|
|
1328
|
+
"resource": [
|
|
1329
|
+
"Bucket Access Controls"
|
|
1330
|
+
],
|
|
1331
|
+
"operation": [
|
|
1332
|
+
"Storage Bucket Access Controls Update"
|
|
1333
|
+
]
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"displayName": "Self Link",
|
|
1339
|
+
"name": "selfLink",
|
|
1340
|
+
"type": "string",
|
|
1341
|
+
"default": "",
|
|
1342
|
+
"description": "The link to this access-control entry.",
|
|
1343
|
+
"routing": {
|
|
1344
|
+
"send": {
|
|
1345
|
+
"property": "selfLink",
|
|
1346
|
+
"propertyInDotNotation": false,
|
|
1347
|
+
"type": "body",
|
|
1348
|
+
"value": "={{ $value }}"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"displayOptions": {
|
|
1352
|
+
"show": {
|
|
1353
|
+
"resource": [
|
|
1354
|
+
"Bucket Access Controls"
|
|
1355
|
+
],
|
|
1356
|
+
"operation": [
|
|
1357
|
+
"Storage Bucket Access Controls Update"
|
|
1358
|
+
]
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
];
|
|
1363
|
+
//# sourceMappingURL=index.js.map
|