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