@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.
Files changed (43) hide show
  1. package/README.md +193 -0
  2. package/dist/banner.svg +108 -0
  3. package/dist/credentials/GoogleapisStorageApi.credentials.d.ts +9 -0
  4. package/dist/credentials/GoogleapisStorageApi.credentials.js +49 -0
  5. package/dist/credentials/GoogleapisStorageApi.credentials.js.map +1 -0
  6. package/dist/icons/googleapis-storage.dark.png +0 -0
  7. package/dist/icons/googleapis-storage.png +0 -0
  8. package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.d.ts +4 -0
  9. package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.js +103 -0
  10. package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.js.map +1 -0
  11. package/dist/nodes/GoogleapisStorage/GoogleapisStorage.node.json +20 -0
  12. package/dist/nodes/GoogleapisStorage/googleapis-storage.dark.png +0 -0
  13. package/dist/nodes/GoogleapisStorage/googleapis-storage.png +0 -0
  14. package/dist/nodes/GoogleapisStorage/resources/bucket-access-controls/index.d.ts +2 -0
  15. package/dist/nodes/GoogleapisStorage/resources/bucket-access-controls/index.js +1363 -0
  16. package/dist/nodes/GoogleapisStorage/resources/bucket-access-controls/index.js.map +1 -0
  17. package/dist/nodes/GoogleapisStorage/resources/buckets/index.d.ts +2 -0
  18. package/dist/nodes/GoogleapisStorage/resources/buckets/index.js +3974 -0
  19. package/dist/nodes/GoogleapisStorage/resources/buckets/index.js.map +1 -0
  20. package/dist/nodes/GoogleapisStorage/resources/channels/index.d.ts +2 -0
  21. package/dist/nodes/GoogleapisStorage/resources/channels/index.js +303 -0
  22. package/dist/nodes/GoogleapisStorage/resources/channels/index.js.map +1 -0
  23. package/dist/nodes/GoogleapisStorage/resources/default-object-access-controls/index.d.ts +2 -0
  24. package/dist/nodes/GoogleapisStorage/resources/default-object-access-controls/index.js +1563 -0
  25. package/dist/nodes/GoogleapisStorage/resources/default-object-access-controls/index.js.map +1 -0
  26. package/dist/nodes/GoogleapisStorage/resources/index.d.ts +8 -0
  27. package/dist/nodes/GoogleapisStorage/resources/index.js +20 -0
  28. package/dist/nodes/GoogleapisStorage/resources/index.js.map +1 -0
  29. package/dist/nodes/GoogleapisStorage/resources/notifications/index.d.ts +2 -0
  30. package/dist/nodes/GoogleapisStorage/resources/notifications/index.js +579 -0
  31. package/dist/nodes/GoogleapisStorage/resources/notifications/index.js.map +1 -0
  32. package/dist/nodes/GoogleapisStorage/resources/object-access-controls/index.d.ts +2 -0
  33. package/dist/nodes/GoogleapisStorage/resources/object-access-controls/index.js +1771 -0
  34. package/dist/nodes/GoogleapisStorage/resources/object-access-controls/index.js.map +1 -0
  35. package/dist/nodes/GoogleapisStorage/resources/objects/index.d.ts +2 -0
  36. package/dist/nodes/GoogleapisStorage/resources/objects/index.js +7314 -0
  37. package/dist/nodes/GoogleapisStorage/resources/objects/index.js.map +1 -0
  38. package/dist/nodes/GoogleapisStorage/resources/projects/index.d.ts +2 -0
  39. package/dist/nodes/GoogleapisStorage/resources/projects/index.js +896 -0
  40. package/dist/nodes/GoogleapisStorage/resources/projects/index.js.map +1 -0
  41. package/dist/package.json +62 -0
  42. package/dist/tsconfig.tsbuildinfo +1 -0
  43. package/package.json +62 -0
@@ -0,0 +1,3974 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.bucketsDescription = void 0;
4
+ exports.bucketsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Buckets"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Storage Buckets List",
20
+ "value": "Storage Buckets List",
21
+ "action": "Storage Buckets List",
22
+ "description": "Retrieves a list of buckets for a given project.",
23
+ "routing": {
24
+ "request": {
25
+ "method": "GET",
26
+ "url": "=/b"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Storage Buckets Insert",
32
+ "value": "Storage Buckets Insert",
33
+ "action": "Storage Buckets Insert",
34
+ "description": "Creates a new bucket.",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/b"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Storage Buckets Delete",
44
+ "value": "Storage Buckets Delete",
45
+ "action": "Storage Buckets Delete",
46
+ "description": "Permanently deletes an empty bucket.",
47
+ "routing": {
48
+ "request": {
49
+ "method": "DELETE",
50
+ "url": "=/b/{{$parameter[\"bucket\"]}}"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Storage Buckets Get",
56
+ "value": "Storage Buckets Get",
57
+ "action": "Storage Buckets Get",
58
+ "description": "Returns metadata for the specified bucket.",
59
+ "routing": {
60
+ "request": {
61
+ "method": "GET",
62
+ "url": "=/b/{{$parameter[\"bucket\"]}}"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "name": "Storage Buckets Patch",
68
+ "value": "Storage Buckets Patch",
69
+ "action": "Storage Buckets Patch",
70
+ "description": "Patches a bucket. Changes to the bucket will be readable immediately after writing, but configuration changes may take time to propagate.",
71
+ "routing": {
72
+ "request": {
73
+ "method": "PATCH",
74
+ "url": "=/b/{{$parameter[\"bucket\"]}}"
75
+ }
76
+ }
77
+ },
78
+ {
79
+ "name": "Storage Buckets Update",
80
+ "value": "Storage Buckets Update",
81
+ "action": "Storage Buckets Update",
82
+ "description": "Updates a bucket. Changes to the bucket will be readable immediately after writing, but configuration changes may take time to propagate.",
83
+ "routing": {
84
+ "request": {
85
+ "method": "PUT",
86
+ "url": "=/b/{{$parameter[\"bucket\"]}}"
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "name": "Storage Buckets Get Iam Policy",
92
+ "value": "Storage Buckets Get Iam Policy",
93
+ "action": "Storage Buckets Get Iam Policy",
94
+ "description": "Returns an IAM policy for the specified bucket.",
95
+ "routing": {
96
+ "request": {
97
+ "method": "GET",
98
+ "url": "=/b/{{$parameter[\"bucket\"]}}/iam"
99
+ }
100
+ }
101
+ },
102
+ {
103
+ "name": "Storage Buckets Set Iam Policy",
104
+ "value": "Storage Buckets Set Iam Policy",
105
+ "action": "Storage Buckets Set Iam Policy",
106
+ "description": "Updates an IAM policy for the specified bucket.",
107
+ "routing": {
108
+ "request": {
109
+ "method": "PUT",
110
+ "url": "=/b/{{$parameter[\"bucket\"]}}/iam"
111
+ }
112
+ }
113
+ },
114
+ {
115
+ "name": "Storage Buckets Test Iam Permissions",
116
+ "value": "Storage Buckets Test Iam Permissions",
117
+ "action": "Storage Buckets Test Iam Permissions",
118
+ "description": "Tests a set of permissions on the given bucket to see which, if any, are held by the caller.",
119
+ "routing": {
120
+ "request": {
121
+ "method": "GET",
122
+ "url": "=/b/{{$parameter[\"bucket\"]}}/iam/testPermissions"
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "name": "Storage Buckets Lock Retention Policy",
128
+ "value": "Storage Buckets Lock Retention Policy",
129
+ "action": "Storage Buckets Lock Retention Policy",
130
+ "description": "Locks retention policy on a bucket.",
131
+ "routing": {
132
+ "request": {
133
+ "method": "POST",
134
+ "url": "=/b/{{$parameter[\"bucket\"]}}/lockRetentionPolicy"
135
+ }
136
+ }
137
+ }
138
+ ],
139
+ "default": ""
140
+ },
141
+ {
142
+ "displayName": "GET /b",
143
+ "name": "operation",
144
+ "type": "notice",
145
+ "typeOptions": {
146
+ "theme": "info"
147
+ },
148
+ "default": "",
149
+ "displayOptions": {
150
+ "show": {
151
+ "resource": [
152
+ "Buckets"
153
+ ],
154
+ "operation": [
155
+ "Storage Buckets List"
156
+ ]
157
+ }
158
+ }
159
+ },
160
+ {
161
+ "displayName": "Project",
162
+ "name": "project",
163
+ "required": true,
164
+ "description": "A valid API project identifier.",
165
+ "default": "",
166
+ "type": "string",
167
+ "routing": {
168
+ "send": {
169
+ "type": "query",
170
+ "property": "project",
171
+ "value": "={{ $value }}",
172
+ "propertyInDotNotation": false
173
+ }
174
+ },
175
+ "displayOptions": {
176
+ "show": {
177
+ "resource": [
178
+ "Buckets"
179
+ ],
180
+ "operation": [
181
+ "Storage Buckets List"
182
+ ]
183
+ }
184
+ }
185
+ },
186
+ {
187
+ "displayName": "Max Results",
188
+ "name": "maxResults",
189
+ "description": "Maximum number of buckets to return in a single response. The service will use this parameter or 1,000 items, whichever is smaller.",
190
+ "default": 0,
191
+ "type": "number",
192
+ "routing": {
193
+ "send": {
194
+ "type": "query",
195
+ "property": "maxResults",
196
+ "value": "={{ $value }}",
197
+ "propertyInDotNotation": false
198
+ }
199
+ },
200
+ "displayOptions": {
201
+ "show": {
202
+ "resource": [
203
+ "Buckets"
204
+ ],
205
+ "operation": [
206
+ "Storage Buckets List"
207
+ ]
208
+ }
209
+ }
210
+ },
211
+ {
212
+ "displayName": "Page Token",
213
+ "name": "pageToken",
214
+ "description": "A previously-returned page token representing part of the larger set of results to view.",
215
+ "default": "",
216
+ "type": "string",
217
+ "routing": {
218
+ "send": {
219
+ "type": "query",
220
+ "property": "pageToken",
221
+ "value": "={{ $value }}",
222
+ "propertyInDotNotation": false
223
+ }
224
+ },
225
+ "displayOptions": {
226
+ "show": {
227
+ "resource": [
228
+ "Buckets"
229
+ ],
230
+ "operation": [
231
+ "Storage Buckets List"
232
+ ]
233
+ }
234
+ }
235
+ },
236
+ {
237
+ "displayName": "Prefix",
238
+ "name": "prefix",
239
+ "description": "Filter results to buckets whose names begin with this prefix.",
240
+ "default": "",
241
+ "type": "string",
242
+ "routing": {
243
+ "send": {
244
+ "type": "query",
245
+ "property": "prefix",
246
+ "value": "={{ $value }}",
247
+ "propertyInDotNotation": false
248
+ }
249
+ },
250
+ "displayOptions": {
251
+ "show": {
252
+ "resource": [
253
+ "Buckets"
254
+ ],
255
+ "operation": [
256
+ "Storage Buckets List"
257
+ ]
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "displayName": "Projection",
263
+ "name": "projection",
264
+ "description": "Set of properties to return. Defaults to noAcl.",
265
+ "default": "full",
266
+ "type": "options",
267
+ "options": [
268
+ {
269
+ "name": "Full",
270
+ "value": "full"
271
+ },
272
+ {
273
+ "name": "No Acl",
274
+ "value": "noAcl"
275
+ }
276
+ ],
277
+ "routing": {
278
+ "send": {
279
+ "type": "query",
280
+ "property": "projection",
281
+ "value": "={{ $value }}",
282
+ "propertyInDotNotation": false
283
+ }
284
+ },
285
+ "displayOptions": {
286
+ "show": {
287
+ "resource": [
288
+ "Buckets"
289
+ ],
290
+ "operation": [
291
+ "Storage Buckets List"
292
+ ]
293
+ }
294
+ }
295
+ },
296
+ {
297
+ "displayName": "User Project",
298
+ "name": "userProject",
299
+ "description": "The project to be billed for this request.",
300
+ "default": "",
301
+ "type": "string",
302
+ "routing": {
303
+ "send": {
304
+ "type": "query",
305
+ "property": "userProject",
306
+ "value": "={{ $value }}",
307
+ "propertyInDotNotation": false
308
+ }
309
+ },
310
+ "displayOptions": {
311
+ "show": {
312
+ "resource": [
313
+ "Buckets"
314
+ ],
315
+ "operation": [
316
+ "Storage Buckets List"
317
+ ]
318
+ }
319
+ }
320
+ },
321
+ {
322
+ "displayName": "POST /b",
323
+ "name": "operation",
324
+ "type": "notice",
325
+ "typeOptions": {
326
+ "theme": "info"
327
+ },
328
+ "default": "",
329
+ "displayOptions": {
330
+ "show": {
331
+ "resource": [
332
+ "Buckets"
333
+ ],
334
+ "operation": [
335
+ "Storage Buckets Insert"
336
+ ]
337
+ }
338
+ }
339
+ },
340
+ {
341
+ "displayName": "Project",
342
+ "name": "project",
343
+ "required": true,
344
+ "description": "A valid API project identifier.",
345
+ "default": "",
346
+ "type": "string",
347
+ "routing": {
348
+ "send": {
349
+ "type": "query",
350
+ "property": "project",
351
+ "value": "={{ $value }}",
352
+ "propertyInDotNotation": false
353
+ }
354
+ },
355
+ "displayOptions": {
356
+ "show": {
357
+ "resource": [
358
+ "Buckets"
359
+ ],
360
+ "operation": [
361
+ "Storage Buckets Insert"
362
+ ]
363
+ }
364
+ }
365
+ },
366
+ {
367
+ "displayName": "Predefined Acl",
368
+ "name": "predefinedAcl",
369
+ "description": "Apply a predefined set of access controls to this bucket.",
370
+ "default": "authenticatedRead",
371
+ "type": "options",
372
+ "options": [
373
+ {
374
+ "name": "Authenticated Read",
375
+ "value": "authenticatedRead"
376
+ },
377
+ {
378
+ "name": "Private",
379
+ "value": "private"
380
+ },
381
+ {
382
+ "name": "Project Private",
383
+ "value": "projectPrivate"
384
+ },
385
+ {
386
+ "name": "Public Read",
387
+ "value": "publicRead"
388
+ },
389
+ {
390
+ "name": "Public Read Write",
391
+ "value": "publicReadWrite"
392
+ }
393
+ ],
394
+ "routing": {
395
+ "send": {
396
+ "type": "query",
397
+ "property": "predefinedAcl",
398
+ "value": "={{ $value }}",
399
+ "propertyInDotNotation": false
400
+ }
401
+ },
402
+ "displayOptions": {
403
+ "show": {
404
+ "resource": [
405
+ "Buckets"
406
+ ],
407
+ "operation": [
408
+ "Storage Buckets Insert"
409
+ ]
410
+ }
411
+ }
412
+ },
413
+ {
414
+ "displayName": "Predefined Default Object Acl",
415
+ "name": "predefinedDefaultObjectAcl",
416
+ "description": "Apply a predefined set of default object access controls to this bucket.",
417
+ "default": "authenticatedRead",
418
+ "type": "options",
419
+ "options": [
420
+ {
421
+ "name": "Authenticated Read",
422
+ "value": "authenticatedRead"
423
+ },
424
+ {
425
+ "name": "Bucket Owner Full Control",
426
+ "value": "bucketOwnerFullControl"
427
+ },
428
+ {
429
+ "name": "Bucket Owner Read",
430
+ "value": "bucketOwnerRead"
431
+ },
432
+ {
433
+ "name": "Private",
434
+ "value": "private"
435
+ },
436
+ {
437
+ "name": "Project Private",
438
+ "value": "projectPrivate"
439
+ },
440
+ {
441
+ "name": "Public Read",
442
+ "value": "publicRead"
443
+ }
444
+ ],
445
+ "routing": {
446
+ "send": {
447
+ "type": "query",
448
+ "property": "predefinedDefaultObjectAcl",
449
+ "value": "={{ $value }}",
450
+ "propertyInDotNotation": false
451
+ }
452
+ },
453
+ "displayOptions": {
454
+ "show": {
455
+ "resource": [
456
+ "Buckets"
457
+ ],
458
+ "operation": [
459
+ "Storage Buckets Insert"
460
+ ]
461
+ }
462
+ }
463
+ },
464
+ {
465
+ "displayName": "Projection",
466
+ "name": "projection",
467
+ "description": "Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or defaultObjectAcl properties, when it defaults to full.",
468
+ "default": "full",
469
+ "type": "options",
470
+ "options": [
471
+ {
472
+ "name": "Full",
473
+ "value": "full"
474
+ },
475
+ {
476
+ "name": "No Acl",
477
+ "value": "noAcl"
478
+ }
479
+ ],
480
+ "routing": {
481
+ "send": {
482
+ "type": "query",
483
+ "property": "projection",
484
+ "value": "={{ $value }}",
485
+ "propertyInDotNotation": false
486
+ }
487
+ },
488
+ "displayOptions": {
489
+ "show": {
490
+ "resource": [
491
+ "Buckets"
492
+ ],
493
+ "operation": [
494
+ "Storage Buckets Insert"
495
+ ]
496
+ }
497
+ }
498
+ },
499
+ {
500
+ "displayName": "User Project",
501
+ "name": "userProject",
502
+ "description": "The project to be billed for this request.",
503
+ "default": "",
504
+ "type": "string",
505
+ "routing": {
506
+ "send": {
507
+ "type": "query",
508
+ "property": "userProject",
509
+ "value": "={{ $value }}",
510
+ "propertyInDotNotation": false
511
+ }
512
+ },
513
+ "displayOptions": {
514
+ "show": {
515
+ "resource": [
516
+ "Buckets"
517
+ ],
518
+ "operation": [
519
+ "Storage Buckets Insert"
520
+ ]
521
+ }
522
+ }
523
+ },
524
+ {
525
+ "displayName": "Acl",
526
+ "name": "acl",
527
+ "type": "json",
528
+ "default": "[\n {\n \"kind\": \"storage#bucketAccessControl\",\n \"projectTeam\": {}\n }\n]",
529
+ "description": "Access controls on the bucket.",
530
+ "routing": {
531
+ "send": {
532
+ "property": "acl",
533
+ "propertyInDotNotation": false,
534
+ "type": "body",
535
+ "value": "={{ JSON.parse($value) }}"
536
+ }
537
+ },
538
+ "displayOptions": {
539
+ "show": {
540
+ "resource": [
541
+ "Buckets"
542
+ ],
543
+ "operation": [
544
+ "Storage Buckets Insert"
545
+ ]
546
+ }
547
+ }
548
+ },
549
+ {
550
+ "displayName": "Autoclass",
551
+ "name": "autoclass",
552
+ "type": "json",
553
+ "default": "{}",
554
+ "description": "The bucket's Autoclass configuration.",
555
+ "routing": {
556
+ "send": {
557
+ "property": "autoclass",
558
+ "propertyInDotNotation": false,
559
+ "type": "body",
560
+ "value": "={{ JSON.parse($value) }}"
561
+ }
562
+ },
563
+ "displayOptions": {
564
+ "show": {
565
+ "resource": [
566
+ "Buckets"
567
+ ],
568
+ "operation": [
569
+ "Storage Buckets Insert"
570
+ ]
571
+ }
572
+ }
573
+ },
574
+ {
575
+ "displayName": "Billing",
576
+ "name": "billing",
577
+ "type": "json",
578
+ "default": "{}",
579
+ "description": "The bucket's billing configuration.",
580
+ "routing": {
581
+ "send": {
582
+ "property": "billing",
583
+ "propertyInDotNotation": false,
584
+ "type": "body",
585
+ "value": "={{ JSON.parse($value) }}"
586
+ }
587
+ },
588
+ "displayOptions": {
589
+ "show": {
590
+ "resource": [
591
+ "Buckets"
592
+ ],
593
+ "operation": [
594
+ "Storage Buckets Insert"
595
+ ]
596
+ }
597
+ }
598
+ },
599
+ {
600
+ "displayName": "CORS",
601
+ "name": "cors",
602
+ "type": "json",
603
+ "default": "[\n {\n \"method\": [\n null\n ],\n \"origin\": [\n null\n ],\n \"responseHeader\": [\n null\n ]\n }\n]",
604
+ "description": "The bucket's Cross-Origin Resource Sharing (CORS) configuration.",
605
+ "routing": {
606
+ "send": {
607
+ "property": "cors",
608
+ "propertyInDotNotation": false,
609
+ "type": "body",
610
+ "value": "={{ JSON.parse($value) }}"
611
+ }
612
+ },
613
+ "displayOptions": {
614
+ "show": {
615
+ "resource": [
616
+ "Buckets"
617
+ ],
618
+ "operation": [
619
+ "Storage Buckets Insert"
620
+ ]
621
+ }
622
+ }
623
+ },
624
+ {
625
+ "displayName": "Custom Placement Config",
626
+ "name": "customPlacementConfig",
627
+ "type": "json",
628
+ "default": "{\n \"dataLocations\": [\n null\n ]\n}",
629
+ "description": "The bucket's custom placement configuration for Custom Dual Regions.",
630
+ "routing": {
631
+ "send": {
632
+ "property": "customPlacementConfig",
633
+ "propertyInDotNotation": false,
634
+ "type": "body",
635
+ "value": "={{ JSON.parse($value) }}"
636
+ }
637
+ },
638
+ "displayOptions": {
639
+ "show": {
640
+ "resource": [
641
+ "Buckets"
642
+ ],
643
+ "operation": [
644
+ "Storage Buckets Insert"
645
+ ]
646
+ }
647
+ }
648
+ },
649
+ {
650
+ "displayName": "Default Event Based Hold",
651
+ "name": "defaultEventBasedHold",
652
+ "type": "boolean",
653
+ "default": true,
654
+ "description": "The default value for event-based hold on newly created objects in this bucket. Event-based hold is a way to retain objects indefinitely until an event occurs, signified by the hold's release. After being released, such objects will be subject to bucket-level retention (if any). One sample use case of this flag is for banks to hold loan documents for at least 3 years after loan is paid in full. Here, bucket-level retention is 3 years and the event is loan being paid in full. In this example, these objects will be held intact for any number of years until the event has occurred (event-based hold on the object is released) and then 3 more years after that. That means retention duration of the objects begins from the moment event-based hold transitioned from true to false. Objects under event-based hold cannot be deleted, overwritten or archived until the hold is removed.",
655
+ "routing": {
656
+ "send": {
657
+ "property": "defaultEventBasedHold",
658
+ "propertyInDotNotation": false,
659
+ "type": "body",
660
+ "value": "={{ $value }}"
661
+ }
662
+ },
663
+ "displayOptions": {
664
+ "show": {
665
+ "resource": [
666
+ "Buckets"
667
+ ],
668
+ "operation": [
669
+ "Storage Buckets Insert"
670
+ ]
671
+ }
672
+ }
673
+ },
674
+ {
675
+ "displayName": "Default Object Acl",
676
+ "name": "defaultObjectAcl",
677
+ "type": "json",
678
+ "default": "[\n {\n \"kind\": \"storage#objectAccessControl\",\n \"projectTeam\": {}\n }\n]",
679
+ "description": "Default access controls to apply to new objects when no ACL is provided.",
680
+ "routing": {
681
+ "send": {
682
+ "property": "defaultObjectAcl",
683
+ "propertyInDotNotation": false,
684
+ "type": "body",
685
+ "value": "={{ JSON.parse($value) }}"
686
+ }
687
+ },
688
+ "displayOptions": {
689
+ "show": {
690
+ "resource": [
691
+ "Buckets"
692
+ ],
693
+ "operation": [
694
+ "Storage Buckets Insert"
695
+ ]
696
+ }
697
+ }
698
+ },
699
+ {
700
+ "displayName": "Encryption",
701
+ "name": "encryption",
702
+ "type": "json",
703
+ "default": "{}",
704
+ "description": "Encryption configuration for a bucket.",
705
+ "routing": {
706
+ "send": {
707
+ "property": "encryption",
708
+ "propertyInDotNotation": false,
709
+ "type": "body",
710
+ "value": "={{ JSON.parse($value) }}"
711
+ }
712
+ },
713
+ "displayOptions": {
714
+ "show": {
715
+ "resource": [
716
+ "Buckets"
717
+ ],
718
+ "operation": [
719
+ "Storage Buckets Insert"
720
+ ]
721
+ }
722
+ }
723
+ },
724
+ {
725
+ "displayName": "Etag",
726
+ "name": "etag",
727
+ "type": "string",
728
+ "default": "",
729
+ "description": "HTTP 1.1 Entity tag for the bucket.",
730
+ "routing": {
731
+ "send": {
732
+ "property": "etag",
733
+ "propertyInDotNotation": false,
734
+ "type": "body",
735
+ "value": "={{ $value }}"
736
+ }
737
+ },
738
+ "displayOptions": {
739
+ "show": {
740
+ "resource": [
741
+ "Buckets"
742
+ ],
743
+ "operation": [
744
+ "Storage Buckets Insert"
745
+ ]
746
+ }
747
+ }
748
+ },
749
+ {
750
+ "displayName": "Iam Configuration",
751
+ "name": "iamConfiguration",
752
+ "type": "json",
753
+ "default": "{\n \"bucketPolicyOnly\": {},\n \"uniformBucketLevelAccess\": {}\n}",
754
+ "description": "The bucket's IAM configuration.",
755
+ "routing": {
756
+ "send": {
757
+ "property": "iamConfiguration",
758
+ "propertyInDotNotation": false,
759
+ "type": "body",
760
+ "value": "={{ JSON.parse($value) }}"
761
+ }
762
+ },
763
+ "displayOptions": {
764
+ "show": {
765
+ "resource": [
766
+ "Buckets"
767
+ ],
768
+ "operation": [
769
+ "Storage Buckets Insert"
770
+ ]
771
+ }
772
+ }
773
+ },
774
+ {
775
+ "displayName": "ID",
776
+ "name": "id",
777
+ "type": "string",
778
+ "default": "",
779
+ "description": "The ID of the bucket. For buckets, the id and name properties are the same.",
780
+ "routing": {
781
+ "send": {
782
+ "property": "id",
783
+ "propertyInDotNotation": false,
784
+ "type": "body",
785
+ "value": "={{ $value }}"
786
+ }
787
+ },
788
+ "displayOptions": {
789
+ "show": {
790
+ "resource": [
791
+ "Buckets"
792
+ ],
793
+ "operation": [
794
+ "Storage Buckets Insert"
795
+ ]
796
+ }
797
+ }
798
+ },
799
+ {
800
+ "displayName": "Kind",
801
+ "name": "kind",
802
+ "type": "string",
803
+ "default": "storage#bucket",
804
+ "description": "The kind of item this is. For buckets, this is always storage#bucket.",
805
+ "routing": {
806
+ "send": {
807
+ "property": "kind",
808
+ "propertyInDotNotation": false,
809
+ "type": "body",
810
+ "value": "={{ $value }}"
811
+ }
812
+ },
813
+ "displayOptions": {
814
+ "show": {
815
+ "resource": [
816
+ "Buckets"
817
+ ],
818
+ "operation": [
819
+ "Storage Buckets Insert"
820
+ ]
821
+ }
822
+ }
823
+ },
824
+ {
825
+ "displayName": "Labels",
826
+ "name": "labels",
827
+ "type": "json",
828
+ "default": "{}",
829
+ "description": "User-provided labels, in key/value pairs.",
830
+ "routing": {
831
+ "send": {
832
+ "property": "labels",
833
+ "propertyInDotNotation": false,
834
+ "type": "body",
835
+ "value": "={{ JSON.parse($value) }}"
836
+ }
837
+ },
838
+ "displayOptions": {
839
+ "show": {
840
+ "resource": [
841
+ "Buckets"
842
+ ],
843
+ "operation": [
844
+ "Storage Buckets Insert"
845
+ ]
846
+ }
847
+ }
848
+ },
849
+ {
850
+ "displayName": "Lifecycle",
851
+ "name": "lifecycle",
852
+ "type": "json",
853
+ "default": "{\n \"rule\": [\n {\n \"action\": {},\n \"condition\": {\n \"matchesPrefix\": [\n null\n ],\n \"matchesStorageClass\": [\n null\n ],\n \"matchesSuffix\": [\n null\n ]\n }\n }\n ]\n}",
854
+ "description": "The bucket's lifecycle configuration. See lifecycle management for more information.",
855
+ "routing": {
856
+ "send": {
857
+ "property": "lifecycle",
858
+ "propertyInDotNotation": false,
859
+ "type": "body",
860
+ "value": "={{ JSON.parse($value) }}"
861
+ }
862
+ },
863
+ "displayOptions": {
864
+ "show": {
865
+ "resource": [
866
+ "Buckets"
867
+ ],
868
+ "operation": [
869
+ "Storage Buckets Insert"
870
+ ]
871
+ }
872
+ }
873
+ },
874
+ {
875
+ "displayName": "Location",
876
+ "name": "location",
877
+ "type": "string",
878
+ "default": "",
879
+ "description": "The location of the bucket. Object data for objects in the bucket resides in physical storage within this region. Defaults to US. See the developer's guide for the authoritative list.",
880
+ "routing": {
881
+ "send": {
882
+ "property": "location",
883
+ "propertyInDotNotation": false,
884
+ "type": "body",
885
+ "value": "={{ $value }}"
886
+ }
887
+ },
888
+ "displayOptions": {
889
+ "show": {
890
+ "resource": [
891
+ "Buckets"
892
+ ],
893
+ "operation": [
894
+ "Storage Buckets Insert"
895
+ ]
896
+ }
897
+ }
898
+ },
899
+ {
900
+ "displayName": "Location Type",
901
+ "name": "locationType",
902
+ "type": "string",
903
+ "default": "",
904
+ "description": "The type of the bucket location.",
905
+ "routing": {
906
+ "send": {
907
+ "property": "locationType",
908
+ "propertyInDotNotation": false,
909
+ "type": "body",
910
+ "value": "={{ $value }}"
911
+ }
912
+ },
913
+ "displayOptions": {
914
+ "show": {
915
+ "resource": [
916
+ "Buckets"
917
+ ],
918
+ "operation": [
919
+ "Storage Buckets Insert"
920
+ ]
921
+ }
922
+ }
923
+ },
924
+ {
925
+ "displayName": "Logging",
926
+ "name": "logging",
927
+ "type": "json",
928
+ "default": "{}",
929
+ "description": "The bucket's logging configuration, which defines the destination bucket and optional name prefix for the current bucket's logs.",
930
+ "routing": {
931
+ "send": {
932
+ "property": "logging",
933
+ "propertyInDotNotation": false,
934
+ "type": "body",
935
+ "value": "={{ JSON.parse($value) }}"
936
+ }
937
+ },
938
+ "displayOptions": {
939
+ "show": {
940
+ "resource": [
941
+ "Buckets"
942
+ ],
943
+ "operation": [
944
+ "Storage Buckets Insert"
945
+ ]
946
+ }
947
+ }
948
+ },
949
+ {
950
+ "displayName": "Metageneration",
951
+ "name": "metageneration",
952
+ "type": "string",
953
+ "default": "",
954
+ "description": "The metadata generation of this bucket.",
955
+ "routing": {
956
+ "send": {
957
+ "property": "metageneration",
958
+ "propertyInDotNotation": false,
959
+ "type": "body",
960
+ "value": "={{ $value }}"
961
+ }
962
+ },
963
+ "displayOptions": {
964
+ "show": {
965
+ "resource": [
966
+ "Buckets"
967
+ ],
968
+ "operation": [
969
+ "Storage Buckets Insert"
970
+ ]
971
+ }
972
+ }
973
+ },
974
+ {
975
+ "displayName": "Name",
976
+ "name": "name",
977
+ "type": "string",
978
+ "default": "",
979
+ "description": "The name of the bucket.",
980
+ "routing": {
981
+ "send": {
982
+ "property": "name",
983
+ "propertyInDotNotation": false,
984
+ "type": "body",
985
+ "value": "={{ $value }}"
986
+ }
987
+ },
988
+ "displayOptions": {
989
+ "show": {
990
+ "resource": [
991
+ "Buckets"
992
+ ],
993
+ "operation": [
994
+ "Storage Buckets Insert"
995
+ ]
996
+ }
997
+ }
998
+ },
999
+ {
1000
+ "displayName": "Owner",
1001
+ "name": "owner",
1002
+ "type": "json",
1003
+ "default": "{}",
1004
+ "description": "The owner of the bucket. This is always the project team's owner group.",
1005
+ "routing": {
1006
+ "send": {
1007
+ "property": "owner",
1008
+ "propertyInDotNotation": false,
1009
+ "type": "body",
1010
+ "value": "={{ JSON.parse($value) }}"
1011
+ }
1012
+ },
1013
+ "displayOptions": {
1014
+ "show": {
1015
+ "resource": [
1016
+ "Buckets"
1017
+ ],
1018
+ "operation": [
1019
+ "Storage Buckets Insert"
1020
+ ]
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "displayName": "Project Number",
1026
+ "name": "projectNumber",
1027
+ "type": "string",
1028
+ "default": "",
1029
+ "description": "The project number of the project the bucket belongs to.",
1030
+ "routing": {
1031
+ "send": {
1032
+ "property": "projectNumber",
1033
+ "propertyInDotNotation": false,
1034
+ "type": "body",
1035
+ "value": "={{ $value }}"
1036
+ }
1037
+ },
1038
+ "displayOptions": {
1039
+ "show": {
1040
+ "resource": [
1041
+ "Buckets"
1042
+ ],
1043
+ "operation": [
1044
+ "Storage Buckets Insert"
1045
+ ]
1046
+ }
1047
+ }
1048
+ },
1049
+ {
1050
+ "displayName": "Retention Policy",
1051
+ "name": "retentionPolicy",
1052
+ "type": "json",
1053
+ "default": "{}",
1054
+ "description": "The bucket's retention policy. The retention policy enforces a minimum retention time for all objects contained in the bucket, based on their creation time. Any attempt to overwrite or delete objects younger than the retention period will result in a PERMISSION_DENIED error. An unlocked retention policy can be modified or removed from the bucket via a storage.buckets.update operation. A locked retention policy cannot be removed or shortened in duration for the lifetime of the bucket. Attempting to remove or decrease period of a locked retention policy will result in a PERMISSION_DENIED error.",
1055
+ "routing": {
1056
+ "send": {
1057
+ "property": "retentionPolicy",
1058
+ "propertyInDotNotation": false,
1059
+ "type": "body",
1060
+ "value": "={{ JSON.parse($value) }}"
1061
+ }
1062
+ },
1063
+ "displayOptions": {
1064
+ "show": {
1065
+ "resource": [
1066
+ "Buckets"
1067
+ ],
1068
+ "operation": [
1069
+ "Storage Buckets Insert"
1070
+ ]
1071
+ }
1072
+ }
1073
+ },
1074
+ {
1075
+ "displayName": "Rpo",
1076
+ "name": "rpo",
1077
+ "type": "string",
1078
+ "default": "",
1079
+ "description": "The Recovery Point Objective (RPO) of this bucket. Set to ASYNC_TURBO to turn on Turbo Replication on a bucket.",
1080
+ "routing": {
1081
+ "send": {
1082
+ "property": "rpo",
1083
+ "propertyInDotNotation": false,
1084
+ "type": "body",
1085
+ "value": "={{ $value }}"
1086
+ }
1087
+ },
1088
+ "displayOptions": {
1089
+ "show": {
1090
+ "resource": [
1091
+ "Buckets"
1092
+ ],
1093
+ "operation": [
1094
+ "Storage Buckets Insert"
1095
+ ]
1096
+ }
1097
+ }
1098
+ },
1099
+ {
1100
+ "displayName": "Satisfies PZS",
1101
+ "name": "satisfiesPZS",
1102
+ "type": "boolean",
1103
+ "default": true,
1104
+ "description": "Reserved for future use.",
1105
+ "routing": {
1106
+ "send": {
1107
+ "property": "satisfiesPZS",
1108
+ "propertyInDotNotation": false,
1109
+ "type": "body",
1110
+ "value": "={{ $value }}"
1111
+ }
1112
+ },
1113
+ "displayOptions": {
1114
+ "show": {
1115
+ "resource": [
1116
+ "Buckets"
1117
+ ],
1118
+ "operation": [
1119
+ "Storage Buckets Insert"
1120
+ ]
1121
+ }
1122
+ }
1123
+ },
1124
+ {
1125
+ "displayName": "Self Link",
1126
+ "name": "selfLink",
1127
+ "type": "string",
1128
+ "default": "",
1129
+ "description": "The URI of this bucket.",
1130
+ "routing": {
1131
+ "send": {
1132
+ "property": "selfLink",
1133
+ "propertyInDotNotation": false,
1134
+ "type": "body",
1135
+ "value": "={{ $value }}"
1136
+ }
1137
+ },
1138
+ "displayOptions": {
1139
+ "show": {
1140
+ "resource": [
1141
+ "Buckets"
1142
+ ],
1143
+ "operation": [
1144
+ "Storage Buckets Insert"
1145
+ ]
1146
+ }
1147
+ }
1148
+ },
1149
+ {
1150
+ "displayName": "Storage Class",
1151
+ "name": "storageClass",
1152
+ "type": "string",
1153
+ "default": "",
1154
+ "description": "The bucket's default storage class, used whenever no storageClass is specified for a newly-created object. This defines how objects in the bucket are stored and determines the SLA and the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE, ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is created, it will default to STANDARD. For more information, see storage classes.",
1155
+ "routing": {
1156
+ "send": {
1157
+ "property": "storageClass",
1158
+ "propertyInDotNotation": false,
1159
+ "type": "body",
1160
+ "value": "={{ $value }}"
1161
+ }
1162
+ },
1163
+ "displayOptions": {
1164
+ "show": {
1165
+ "resource": [
1166
+ "Buckets"
1167
+ ],
1168
+ "operation": [
1169
+ "Storage Buckets Insert"
1170
+ ]
1171
+ }
1172
+ }
1173
+ },
1174
+ {
1175
+ "displayName": "Time Created",
1176
+ "name": "timeCreated",
1177
+ "type": "string",
1178
+ "default": "",
1179
+ "description": "The creation time of the bucket in RFC 3339 format.",
1180
+ "routing": {
1181
+ "send": {
1182
+ "property": "timeCreated",
1183
+ "propertyInDotNotation": false,
1184
+ "type": "body",
1185
+ "value": "={{ $value }}"
1186
+ }
1187
+ },
1188
+ "displayOptions": {
1189
+ "show": {
1190
+ "resource": [
1191
+ "Buckets"
1192
+ ],
1193
+ "operation": [
1194
+ "Storage Buckets Insert"
1195
+ ]
1196
+ }
1197
+ }
1198
+ },
1199
+ {
1200
+ "displayName": "Updated",
1201
+ "name": "updated",
1202
+ "type": "string",
1203
+ "default": "",
1204
+ "description": "The modification time of the bucket in RFC 3339 format.",
1205
+ "routing": {
1206
+ "send": {
1207
+ "property": "updated",
1208
+ "propertyInDotNotation": false,
1209
+ "type": "body",
1210
+ "value": "={{ $value }}"
1211
+ }
1212
+ },
1213
+ "displayOptions": {
1214
+ "show": {
1215
+ "resource": [
1216
+ "Buckets"
1217
+ ],
1218
+ "operation": [
1219
+ "Storage Buckets Insert"
1220
+ ]
1221
+ }
1222
+ }
1223
+ },
1224
+ {
1225
+ "displayName": "Versioning",
1226
+ "name": "versioning",
1227
+ "type": "json",
1228
+ "default": "{}",
1229
+ "description": "The bucket's versioning configuration.",
1230
+ "routing": {
1231
+ "send": {
1232
+ "property": "versioning",
1233
+ "propertyInDotNotation": false,
1234
+ "type": "body",
1235
+ "value": "={{ JSON.parse($value) }}"
1236
+ }
1237
+ },
1238
+ "displayOptions": {
1239
+ "show": {
1240
+ "resource": [
1241
+ "Buckets"
1242
+ ],
1243
+ "operation": [
1244
+ "Storage Buckets Insert"
1245
+ ]
1246
+ }
1247
+ }
1248
+ },
1249
+ {
1250
+ "displayName": "Website",
1251
+ "name": "website",
1252
+ "type": "json",
1253
+ "default": "{}",
1254
+ "description": "The bucket's website configuration, controlling how the service behaves when accessing bucket contents as a web site. See the Static Website Examples for more information.",
1255
+ "routing": {
1256
+ "send": {
1257
+ "property": "website",
1258
+ "propertyInDotNotation": false,
1259
+ "type": "body",
1260
+ "value": "={{ JSON.parse($value) }}"
1261
+ }
1262
+ },
1263
+ "displayOptions": {
1264
+ "show": {
1265
+ "resource": [
1266
+ "Buckets"
1267
+ ],
1268
+ "operation": [
1269
+ "Storage Buckets Insert"
1270
+ ]
1271
+ }
1272
+ }
1273
+ },
1274
+ {
1275
+ "displayName": "DELETE /b/{bucket}",
1276
+ "name": "operation",
1277
+ "type": "notice",
1278
+ "typeOptions": {
1279
+ "theme": "info"
1280
+ },
1281
+ "default": "",
1282
+ "displayOptions": {
1283
+ "show": {
1284
+ "resource": [
1285
+ "Buckets"
1286
+ ],
1287
+ "operation": [
1288
+ "Storage Buckets Delete"
1289
+ ]
1290
+ }
1291
+ }
1292
+ },
1293
+ {
1294
+ "displayName": "Bucket",
1295
+ "name": "bucket",
1296
+ "required": true,
1297
+ "description": "Name of a bucket.",
1298
+ "default": "",
1299
+ "type": "string",
1300
+ "displayOptions": {
1301
+ "show": {
1302
+ "resource": [
1303
+ "Buckets"
1304
+ ],
1305
+ "operation": [
1306
+ "Storage Buckets Delete"
1307
+ ]
1308
+ }
1309
+ }
1310
+ },
1311
+ {
1312
+ "displayName": "If Metageneration Match",
1313
+ "name": "ifMetagenerationMatch",
1314
+ "description": "If set, only deletes the bucket if its metageneration matches this value.",
1315
+ "default": "",
1316
+ "type": "string",
1317
+ "routing": {
1318
+ "send": {
1319
+ "type": "query",
1320
+ "property": "ifMetagenerationMatch",
1321
+ "value": "={{ $value }}",
1322
+ "propertyInDotNotation": false
1323
+ }
1324
+ },
1325
+ "displayOptions": {
1326
+ "show": {
1327
+ "resource": [
1328
+ "Buckets"
1329
+ ],
1330
+ "operation": [
1331
+ "Storage Buckets Delete"
1332
+ ]
1333
+ }
1334
+ }
1335
+ },
1336
+ {
1337
+ "displayName": "If Metageneration Not Match",
1338
+ "name": "ifMetagenerationNotMatch",
1339
+ "description": "If set, only deletes the bucket if its metageneration does not match this value.",
1340
+ "default": "",
1341
+ "type": "string",
1342
+ "routing": {
1343
+ "send": {
1344
+ "type": "query",
1345
+ "property": "ifMetagenerationNotMatch",
1346
+ "value": "={{ $value }}",
1347
+ "propertyInDotNotation": false
1348
+ }
1349
+ },
1350
+ "displayOptions": {
1351
+ "show": {
1352
+ "resource": [
1353
+ "Buckets"
1354
+ ],
1355
+ "operation": [
1356
+ "Storage Buckets Delete"
1357
+ ]
1358
+ }
1359
+ }
1360
+ },
1361
+ {
1362
+ "displayName": "User Project",
1363
+ "name": "userProject",
1364
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
1365
+ "default": "",
1366
+ "type": "string",
1367
+ "routing": {
1368
+ "send": {
1369
+ "type": "query",
1370
+ "property": "userProject",
1371
+ "value": "={{ $value }}",
1372
+ "propertyInDotNotation": false
1373
+ }
1374
+ },
1375
+ "displayOptions": {
1376
+ "show": {
1377
+ "resource": [
1378
+ "Buckets"
1379
+ ],
1380
+ "operation": [
1381
+ "Storage Buckets Delete"
1382
+ ]
1383
+ }
1384
+ }
1385
+ },
1386
+ {
1387
+ "displayName": "GET /b/{bucket}",
1388
+ "name": "operation",
1389
+ "type": "notice",
1390
+ "typeOptions": {
1391
+ "theme": "info"
1392
+ },
1393
+ "default": "",
1394
+ "displayOptions": {
1395
+ "show": {
1396
+ "resource": [
1397
+ "Buckets"
1398
+ ],
1399
+ "operation": [
1400
+ "Storage Buckets Get"
1401
+ ]
1402
+ }
1403
+ }
1404
+ },
1405
+ {
1406
+ "displayName": "Bucket",
1407
+ "name": "bucket",
1408
+ "required": true,
1409
+ "description": "Name of a bucket.",
1410
+ "default": "",
1411
+ "type": "string",
1412
+ "displayOptions": {
1413
+ "show": {
1414
+ "resource": [
1415
+ "Buckets"
1416
+ ],
1417
+ "operation": [
1418
+ "Storage Buckets Get"
1419
+ ]
1420
+ }
1421
+ }
1422
+ },
1423
+ {
1424
+ "displayName": "If Metageneration Match",
1425
+ "name": "ifMetagenerationMatch",
1426
+ "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.",
1427
+ "default": "",
1428
+ "type": "string",
1429
+ "routing": {
1430
+ "send": {
1431
+ "type": "query",
1432
+ "property": "ifMetagenerationMatch",
1433
+ "value": "={{ $value }}",
1434
+ "propertyInDotNotation": false
1435
+ }
1436
+ },
1437
+ "displayOptions": {
1438
+ "show": {
1439
+ "resource": [
1440
+ "Buckets"
1441
+ ],
1442
+ "operation": [
1443
+ "Storage Buckets Get"
1444
+ ]
1445
+ }
1446
+ }
1447
+ },
1448
+ {
1449
+ "displayName": "If Metageneration Not Match",
1450
+ "name": "ifMetagenerationNotMatch",
1451
+ "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.",
1452
+ "default": "",
1453
+ "type": "string",
1454
+ "routing": {
1455
+ "send": {
1456
+ "type": "query",
1457
+ "property": "ifMetagenerationNotMatch",
1458
+ "value": "={{ $value }}",
1459
+ "propertyInDotNotation": false
1460
+ }
1461
+ },
1462
+ "displayOptions": {
1463
+ "show": {
1464
+ "resource": [
1465
+ "Buckets"
1466
+ ],
1467
+ "operation": [
1468
+ "Storage Buckets Get"
1469
+ ]
1470
+ }
1471
+ }
1472
+ },
1473
+ {
1474
+ "displayName": "Projection",
1475
+ "name": "projection",
1476
+ "description": "Set of properties to return. Defaults to noAcl.",
1477
+ "default": "full",
1478
+ "type": "options",
1479
+ "options": [
1480
+ {
1481
+ "name": "Full",
1482
+ "value": "full"
1483
+ },
1484
+ {
1485
+ "name": "No Acl",
1486
+ "value": "noAcl"
1487
+ }
1488
+ ],
1489
+ "routing": {
1490
+ "send": {
1491
+ "type": "query",
1492
+ "property": "projection",
1493
+ "value": "={{ $value }}",
1494
+ "propertyInDotNotation": false
1495
+ }
1496
+ },
1497
+ "displayOptions": {
1498
+ "show": {
1499
+ "resource": [
1500
+ "Buckets"
1501
+ ],
1502
+ "operation": [
1503
+ "Storage Buckets Get"
1504
+ ]
1505
+ }
1506
+ }
1507
+ },
1508
+ {
1509
+ "displayName": "User Project",
1510
+ "name": "userProject",
1511
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
1512
+ "default": "",
1513
+ "type": "string",
1514
+ "routing": {
1515
+ "send": {
1516
+ "type": "query",
1517
+ "property": "userProject",
1518
+ "value": "={{ $value }}",
1519
+ "propertyInDotNotation": false
1520
+ }
1521
+ },
1522
+ "displayOptions": {
1523
+ "show": {
1524
+ "resource": [
1525
+ "Buckets"
1526
+ ],
1527
+ "operation": [
1528
+ "Storage Buckets Get"
1529
+ ]
1530
+ }
1531
+ }
1532
+ },
1533
+ {
1534
+ "displayName": "PATCH /b/{bucket}",
1535
+ "name": "operation",
1536
+ "type": "notice",
1537
+ "typeOptions": {
1538
+ "theme": "info"
1539
+ },
1540
+ "default": "",
1541
+ "displayOptions": {
1542
+ "show": {
1543
+ "resource": [
1544
+ "Buckets"
1545
+ ],
1546
+ "operation": [
1547
+ "Storage Buckets Patch"
1548
+ ]
1549
+ }
1550
+ }
1551
+ },
1552
+ {
1553
+ "displayName": "Bucket",
1554
+ "name": "bucket",
1555
+ "required": true,
1556
+ "description": "Name of a bucket.",
1557
+ "default": "",
1558
+ "type": "string",
1559
+ "displayOptions": {
1560
+ "show": {
1561
+ "resource": [
1562
+ "Buckets"
1563
+ ],
1564
+ "operation": [
1565
+ "Storage Buckets Patch"
1566
+ ]
1567
+ }
1568
+ }
1569
+ },
1570
+ {
1571
+ "displayName": "If Metageneration Match",
1572
+ "name": "ifMetagenerationMatch",
1573
+ "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.",
1574
+ "default": "",
1575
+ "type": "string",
1576
+ "routing": {
1577
+ "send": {
1578
+ "type": "query",
1579
+ "property": "ifMetagenerationMatch",
1580
+ "value": "={{ $value }}",
1581
+ "propertyInDotNotation": false
1582
+ }
1583
+ },
1584
+ "displayOptions": {
1585
+ "show": {
1586
+ "resource": [
1587
+ "Buckets"
1588
+ ],
1589
+ "operation": [
1590
+ "Storage Buckets Patch"
1591
+ ]
1592
+ }
1593
+ }
1594
+ },
1595
+ {
1596
+ "displayName": "If Metageneration Not Match",
1597
+ "name": "ifMetagenerationNotMatch",
1598
+ "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.",
1599
+ "default": "",
1600
+ "type": "string",
1601
+ "routing": {
1602
+ "send": {
1603
+ "type": "query",
1604
+ "property": "ifMetagenerationNotMatch",
1605
+ "value": "={{ $value }}",
1606
+ "propertyInDotNotation": false
1607
+ }
1608
+ },
1609
+ "displayOptions": {
1610
+ "show": {
1611
+ "resource": [
1612
+ "Buckets"
1613
+ ],
1614
+ "operation": [
1615
+ "Storage Buckets Patch"
1616
+ ]
1617
+ }
1618
+ }
1619
+ },
1620
+ {
1621
+ "displayName": "Predefined Acl",
1622
+ "name": "predefinedAcl",
1623
+ "description": "Apply a predefined set of access controls to this bucket.",
1624
+ "default": "authenticatedRead",
1625
+ "type": "options",
1626
+ "options": [
1627
+ {
1628
+ "name": "Authenticated Read",
1629
+ "value": "authenticatedRead"
1630
+ },
1631
+ {
1632
+ "name": "Private",
1633
+ "value": "private"
1634
+ },
1635
+ {
1636
+ "name": "Project Private",
1637
+ "value": "projectPrivate"
1638
+ },
1639
+ {
1640
+ "name": "Public Read",
1641
+ "value": "publicRead"
1642
+ },
1643
+ {
1644
+ "name": "Public Read Write",
1645
+ "value": "publicReadWrite"
1646
+ }
1647
+ ],
1648
+ "routing": {
1649
+ "send": {
1650
+ "type": "query",
1651
+ "property": "predefinedAcl",
1652
+ "value": "={{ $value }}",
1653
+ "propertyInDotNotation": false
1654
+ }
1655
+ },
1656
+ "displayOptions": {
1657
+ "show": {
1658
+ "resource": [
1659
+ "Buckets"
1660
+ ],
1661
+ "operation": [
1662
+ "Storage Buckets Patch"
1663
+ ]
1664
+ }
1665
+ }
1666
+ },
1667
+ {
1668
+ "displayName": "Predefined Default Object Acl",
1669
+ "name": "predefinedDefaultObjectAcl",
1670
+ "description": "Apply a predefined set of default object access controls to this bucket.",
1671
+ "default": "authenticatedRead",
1672
+ "type": "options",
1673
+ "options": [
1674
+ {
1675
+ "name": "Authenticated Read",
1676
+ "value": "authenticatedRead"
1677
+ },
1678
+ {
1679
+ "name": "Bucket Owner Full Control",
1680
+ "value": "bucketOwnerFullControl"
1681
+ },
1682
+ {
1683
+ "name": "Bucket Owner Read",
1684
+ "value": "bucketOwnerRead"
1685
+ },
1686
+ {
1687
+ "name": "Private",
1688
+ "value": "private"
1689
+ },
1690
+ {
1691
+ "name": "Project Private",
1692
+ "value": "projectPrivate"
1693
+ },
1694
+ {
1695
+ "name": "Public Read",
1696
+ "value": "publicRead"
1697
+ }
1698
+ ],
1699
+ "routing": {
1700
+ "send": {
1701
+ "type": "query",
1702
+ "property": "predefinedDefaultObjectAcl",
1703
+ "value": "={{ $value }}",
1704
+ "propertyInDotNotation": false
1705
+ }
1706
+ },
1707
+ "displayOptions": {
1708
+ "show": {
1709
+ "resource": [
1710
+ "Buckets"
1711
+ ],
1712
+ "operation": [
1713
+ "Storage Buckets Patch"
1714
+ ]
1715
+ }
1716
+ }
1717
+ },
1718
+ {
1719
+ "displayName": "Projection",
1720
+ "name": "projection",
1721
+ "description": "Set of properties to return. Defaults to full.",
1722
+ "default": "full",
1723
+ "type": "options",
1724
+ "options": [
1725
+ {
1726
+ "name": "Full",
1727
+ "value": "full"
1728
+ },
1729
+ {
1730
+ "name": "No Acl",
1731
+ "value": "noAcl"
1732
+ }
1733
+ ],
1734
+ "routing": {
1735
+ "send": {
1736
+ "type": "query",
1737
+ "property": "projection",
1738
+ "value": "={{ $value }}",
1739
+ "propertyInDotNotation": false
1740
+ }
1741
+ },
1742
+ "displayOptions": {
1743
+ "show": {
1744
+ "resource": [
1745
+ "Buckets"
1746
+ ],
1747
+ "operation": [
1748
+ "Storage Buckets Patch"
1749
+ ]
1750
+ }
1751
+ }
1752
+ },
1753
+ {
1754
+ "displayName": "User Project",
1755
+ "name": "userProject",
1756
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
1757
+ "default": "",
1758
+ "type": "string",
1759
+ "routing": {
1760
+ "send": {
1761
+ "type": "query",
1762
+ "property": "userProject",
1763
+ "value": "={{ $value }}",
1764
+ "propertyInDotNotation": false
1765
+ }
1766
+ },
1767
+ "displayOptions": {
1768
+ "show": {
1769
+ "resource": [
1770
+ "Buckets"
1771
+ ],
1772
+ "operation": [
1773
+ "Storage Buckets Patch"
1774
+ ]
1775
+ }
1776
+ }
1777
+ },
1778
+ {
1779
+ "displayName": "Acl",
1780
+ "name": "acl",
1781
+ "type": "json",
1782
+ "default": "[\n {\n \"kind\": \"storage#bucketAccessControl\",\n \"projectTeam\": {}\n }\n]",
1783
+ "description": "Access controls on the bucket.",
1784
+ "routing": {
1785
+ "send": {
1786
+ "property": "acl",
1787
+ "propertyInDotNotation": false,
1788
+ "type": "body",
1789
+ "value": "={{ JSON.parse($value) }}"
1790
+ }
1791
+ },
1792
+ "displayOptions": {
1793
+ "show": {
1794
+ "resource": [
1795
+ "Buckets"
1796
+ ],
1797
+ "operation": [
1798
+ "Storage Buckets Patch"
1799
+ ]
1800
+ }
1801
+ }
1802
+ },
1803
+ {
1804
+ "displayName": "Autoclass",
1805
+ "name": "autoclass",
1806
+ "type": "json",
1807
+ "default": "{}",
1808
+ "description": "The bucket's Autoclass configuration.",
1809
+ "routing": {
1810
+ "send": {
1811
+ "property": "autoclass",
1812
+ "propertyInDotNotation": false,
1813
+ "type": "body",
1814
+ "value": "={{ JSON.parse($value) }}"
1815
+ }
1816
+ },
1817
+ "displayOptions": {
1818
+ "show": {
1819
+ "resource": [
1820
+ "Buckets"
1821
+ ],
1822
+ "operation": [
1823
+ "Storage Buckets Patch"
1824
+ ]
1825
+ }
1826
+ }
1827
+ },
1828
+ {
1829
+ "displayName": "Billing",
1830
+ "name": "billing",
1831
+ "type": "json",
1832
+ "default": "{}",
1833
+ "description": "The bucket's billing configuration.",
1834
+ "routing": {
1835
+ "send": {
1836
+ "property": "billing",
1837
+ "propertyInDotNotation": false,
1838
+ "type": "body",
1839
+ "value": "={{ JSON.parse($value) }}"
1840
+ }
1841
+ },
1842
+ "displayOptions": {
1843
+ "show": {
1844
+ "resource": [
1845
+ "Buckets"
1846
+ ],
1847
+ "operation": [
1848
+ "Storage Buckets Patch"
1849
+ ]
1850
+ }
1851
+ }
1852
+ },
1853
+ {
1854
+ "displayName": "CORS",
1855
+ "name": "cors",
1856
+ "type": "json",
1857
+ "default": "[\n {\n \"method\": [\n null\n ],\n \"origin\": [\n null\n ],\n \"responseHeader\": [\n null\n ]\n }\n]",
1858
+ "description": "The bucket's Cross-Origin Resource Sharing (CORS) configuration.",
1859
+ "routing": {
1860
+ "send": {
1861
+ "property": "cors",
1862
+ "propertyInDotNotation": false,
1863
+ "type": "body",
1864
+ "value": "={{ JSON.parse($value) }}"
1865
+ }
1866
+ },
1867
+ "displayOptions": {
1868
+ "show": {
1869
+ "resource": [
1870
+ "Buckets"
1871
+ ],
1872
+ "operation": [
1873
+ "Storage Buckets Patch"
1874
+ ]
1875
+ }
1876
+ }
1877
+ },
1878
+ {
1879
+ "displayName": "Custom Placement Config",
1880
+ "name": "customPlacementConfig",
1881
+ "type": "json",
1882
+ "default": "{\n \"dataLocations\": [\n null\n ]\n}",
1883
+ "description": "The bucket's custom placement configuration for Custom Dual Regions.",
1884
+ "routing": {
1885
+ "send": {
1886
+ "property": "customPlacementConfig",
1887
+ "propertyInDotNotation": false,
1888
+ "type": "body",
1889
+ "value": "={{ JSON.parse($value) }}"
1890
+ }
1891
+ },
1892
+ "displayOptions": {
1893
+ "show": {
1894
+ "resource": [
1895
+ "Buckets"
1896
+ ],
1897
+ "operation": [
1898
+ "Storage Buckets Patch"
1899
+ ]
1900
+ }
1901
+ }
1902
+ },
1903
+ {
1904
+ "displayName": "Default Event Based Hold",
1905
+ "name": "defaultEventBasedHold",
1906
+ "type": "boolean",
1907
+ "default": true,
1908
+ "description": "The default value for event-based hold on newly created objects in this bucket. Event-based hold is a way to retain objects indefinitely until an event occurs, signified by the hold's release. After being released, such objects will be subject to bucket-level retention (if any). One sample use case of this flag is for banks to hold loan documents for at least 3 years after loan is paid in full. Here, bucket-level retention is 3 years and the event is loan being paid in full. In this example, these objects will be held intact for any number of years until the event has occurred (event-based hold on the object is released) and then 3 more years after that. That means retention duration of the objects begins from the moment event-based hold transitioned from true to false. Objects under event-based hold cannot be deleted, overwritten or archived until the hold is removed.",
1909
+ "routing": {
1910
+ "send": {
1911
+ "property": "defaultEventBasedHold",
1912
+ "propertyInDotNotation": false,
1913
+ "type": "body",
1914
+ "value": "={{ $value }}"
1915
+ }
1916
+ },
1917
+ "displayOptions": {
1918
+ "show": {
1919
+ "resource": [
1920
+ "Buckets"
1921
+ ],
1922
+ "operation": [
1923
+ "Storage Buckets Patch"
1924
+ ]
1925
+ }
1926
+ }
1927
+ },
1928
+ {
1929
+ "displayName": "Default Object Acl",
1930
+ "name": "defaultObjectAcl",
1931
+ "type": "json",
1932
+ "default": "[\n {\n \"kind\": \"storage#objectAccessControl\",\n \"projectTeam\": {}\n }\n]",
1933
+ "description": "Default access controls to apply to new objects when no ACL is provided.",
1934
+ "routing": {
1935
+ "send": {
1936
+ "property": "defaultObjectAcl",
1937
+ "propertyInDotNotation": false,
1938
+ "type": "body",
1939
+ "value": "={{ JSON.parse($value) }}"
1940
+ }
1941
+ },
1942
+ "displayOptions": {
1943
+ "show": {
1944
+ "resource": [
1945
+ "Buckets"
1946
+ ],
1947
+ "operation": [
1948
+ "Storage Buckets Patch"
1949
+ ]
1950
+ }
1951
+ }
1952
+ },
1953
+ {
1954
+ "displayName": "Encryption",
1955
+ "name": "encryption",
1956
+ "type": "json",
1957
+ "default": "{}",
1958
+ "description": "Encryption configuration for a bucket.",
1959
+ "routing": {
1960
+ "send": {
1961
+ "property": "encryption",
1962
+ "propertyInDotNotation": false,
1963
+ "type": "body",
1964
+ "value": "={{ JSON.parse($value) }}"
1965
+ }
1966
+ },
1967
+ "displayOptions": {
1968
+ "show": {
1969
+ "resource": [
1970
+ "Buckets"
1971
+ ],
1972
+ "operation": [
1973
+ "Storage Buckets Patch"
1974
+ ]
1975
+ }
1976
+ }
1977
+ },
1978
+ {
1979
+ "displayName": "Etag",
1980
+ "name": "etag",
1981
+ "type": "string",
1982
+ "default": "",
1983
+ "description": "HTTP 1.1 Entity tag for the bucket.",
1984
+ "routing": {
1985
+ "send": {
1986
+ "property": "etag",
1987
+ "propertyInDotNotation": false,
1988
+ "type": "body",
1989
+ "value": "={{ $value }}"
1990
+ }
1991
+ },
1992
+ "displayOptions": {
1993
+ "show": {
1994
+ "resource": [
1995
+ "Buckets"
1996
+ ],
1997
+ "operation": [
1998
+ "Storage Buckets Patch"
1999
+ ]
2000
+ }
2001
+ }
2002
+ },
2003
+ {
2004
+ "displayName": "Iam Configuration",
2005
+ "name": "iamConfiguration",
2006
+ "type": "json",
2007
+ "default": "{\n \"bucketPolicyOnly\": {},\n \"uniformBucketLevelAccess\": {}\n}",
2008
+ "description": "The bucket's IAM configuration.",
2009
+ "routing": {
2010
+ "send": {
2011
+ "property": "iamConfiguration",
2012
+ "propertyInDotNotation": false,
2013
+ "type": "body",
2014
+ "value": "={{ JSON.parse($value) }}"
2015
+ }
2016
+ },
2017
+ "displayOptions": {
2018
+ "show": {
2019
+ "resource": [
2020
+ "Buckets"
2021
+ ],
2022
+ "operation": [
2023
+ "Storage Buckets Patch"
2024
+ ]
2025
+ }
2026
+ }
2027
+ },
2028
+ {
2029
+ "displayName": "ID",
2030
+ "name": "id",
2031
+ "type": "string",
2032
+ "default": "",
2033
+ "description": "The ID of the bucket. For buckets, the id and name properties are the same.",
2034
+ "routing": {
2035
+ "send": {
2036
+ "property": "id",
2037
+ "propertyInDotNotation": false,
2038
+ "type": "body",
2039
+ "value": "={{ $value }}"
2040
+ }
2041
+ },
2042
+ "displayOptions": {
2043
+ "show": {
2044
+ "resource": [
2045
+ "Buckets"
2046
+ ],
2047
+ "operation": [
2048
+ "Storage Buckets Patch"
2049
+ ]
2050
+ }
2051
+ }
2052
+ },
2053
+ {
2054
+ "displayName": "Kind",
2055
+ "name": "kind",
2056
+ "type": "string",
2057
+ "default": "storage#bucket",
2058
+ "description": "The kind of item this is. For buckets, this is always storage#bucket.",
2059
+ "routing": {
2060
+ "send": {
2061
+ "property": "kind",
2062
+ "propertyInDotNotation": false,
2063
+ "type": "body",
2064
+ "value": "={{ $value }}"
2065
+ }
2066
+ },
2067
+ "displayOptions": {
2068
+ "show": {
2069
+ "resource": [
2070
+ "Buckets"
2071
+ ],
2072
+ "operation": [
2073
+ "Storage Buckets Patch"
2074
+ ]
2075
+ }
2076
+ }
2077
+ },
2078
+ {
2079
+ "displayName": "Labels",
2080
+ "name": "labels",
2081
+ "type": "json",
2082
+ "default": "{}",
2083
+ "description": "User-provided labels, in key/value pairs.",
2084
+ "routing": {
2085
+ "send": {
2086
+ "property": "labels",
2087
+ "propertyInDotNotation": false,
2088
+ "type": "body",
2089
+ "value": "={{ JSON.parse($value) }}"
2090
+ }
2091
+ },
2092
+ "displayOptions": {
2093
+ "show": {
2094
+ "resource": [
2095
+ "Buckets"
2096
+ ],
2097
+ "operation": [
2098
+ "Storage Buckets Patch"
2099
+ ]
2100
+ }
2101
+ }
2102
+ },
2103
+ {
2104
+ "displayName": "Lifecycle",
2105
+ "name": "lifecycle",
2106
+ "type": "json",
2107
+ "default": "{\n \"rule\": [\n {\n \"action\": {},\n \"condition\": {\n \"matchesPrefix\": [\n null\n ],\n \"matchesStorageClass\": [\n null\n ],\n \"matchesSuffix\": [\n null\n ]\n }\n }\n ]\n}",
2108
+ "description": "The bucket's lifecycle configuration. See lifecycle management for more information.",
2109
+ "routing": {
2110
+ "send": {
2111
+ "property": "lifecycle",
2112
+ "propertyInDotNotation": false,
2113
+ "type": "body",
2114
+ "value": "={{ JSON.parse($value) }}"
2115
+ }
2116
+ },
2117
+ "displayOptions": {
2118
+ "show": {
2119
+ "resource": [
2120
+ "Buckets"
2121
+ ],
2122
+ "operation": [
2123
+ "Storage Buckets Patch"
2124
+ ]
2125
+ }
2126
+ }
2127
+ },
2128
+ {
2129
+ "displayName": "Location",
2130
+ "name": "location",
2131
+ "type": "string",
2132
+ "default": "",
2133
+ "description": "The location of the bucket. Object data for objects in the bucket resides in physical storage within this region. Defaults to US. See the developer's guide for the authoritative list.",
2134
+ "routing": {
2135
+ "send": {
2136
+ "property": "location",
2137
+ "propertyInDotNotation": false,
2138
+ "type": "body",
2139
+ "value": "={{ $value }}"
2140
+ }
2141
+ },
2142
+ "displayOptions": {
2143
+ "show": {
2144
+ "resource": [
2145
+ "Buckets"
2146
+ ],
2147
+ "operation": [
2148
+ "Storage Buckets Patch"
2149
+ ]
2150
+ }
2151
+ }
2152
+ },
2153
+ {
2154
+ "displayName": "Location Type",
2155
+ "name": "locationType",
2156
+ "type": "string",
2157
+ "default": "",
2158
+ "description": "The type of the bucket location.",
2159
+ "routing": {
2160
+ "send": {
2161
+ "property": "locationType",
2162
+ "propertyInDotNotation": false,
2163
+ "type": "body",
2164
+ "value": "={{ $value }}"
2165
+ }
2166
+ },
2167
+ "displayOptions": {
2168
+ "show": {
2169
+ "resource": [
2170
+ "Buckets"
2171
+ ],
2172
+ "operation": [
2173
+ "Storage Buckets Patch"
2174
+ ]
2175
+ }
2176
+ }
2177
+ },
2178
+ {
2179
+ "displayName": "Logging",
2180
+ "name": "logging",
2181
+ "type": "json",
2182
+ "default": "{}",
2183
+ "description": "The bucket's logging configuration, which defines the destination bucket and optional name prefix for the current bucket's logs.",
2184
+ "routing": {
2185
+ "send": {
2186
+ "property": "logging",
2187
+ "propertyInDotNotation": false,
2188
+ "type": "body",
2189
+ "value": "={{ JSON.parse($value) }}"
2190
+ }
2191
+ },
2192
+ "displayOptions": {
2193
+ "show": {
2194
+ "resource": [
2195
+ "Buckets"
2196
+ ],
2197
+ "operation": [
2198
+ "Storage Buckets Patch"
2199
+ ]
2200
+ }
2201
+ }
2202
+ },
2203
+ {
2204
+ "displayName": "Metageneration",
2205
+ "name": "metageneration",
2206
+ "type": "string",
2207
+ "default": "",
2208
+ "description": "The metadata generation of this bucket.",
2209
+ "routing": {
2210
+ "send": {
2211
+ "property": "metageneration",
2212
+ "propertyInDotNotation": false,
2213
+ "type": "body",
2214
+ "value": "={{ $value }}"
2215
+ }
2216
+ },
2217
+ "displayOptions": {
2218
+ "show": {
2219
+ "resource": [
2220
+ "Buckets"
2221
+ ],
2222
+ "operation": [
2223
+ "Storage Buckets Patch"
2224
+ ]
2225
+ }
2226
+ }
2227
+ },
2228
+ {
2229
+ "displayName": "Name",
2230
+ "name": "name",
2231
+ "type": "string",
2232
+ "default": "",
2233
+ "description": "The name of the bucket.",
2234
+ "routing": {
2235
+ "send": {
2236
+ "property": "name",
2237
+ "propertyInDotNotation": false,
2238
+ "type": "body",
2239
+ "value": "={{ $value }}"
2240
+ }
2241
+ },
2242
+ "displayOptions": {
2243
+ "show": {
2244
+ "resource": [
2245
+ "Buckets"
2246
+ ],
2247
+ "operation": [
2248
+ "Storage Buckets Patch"
2249
+ ]
2250
+ }
2251
+ }
2252
+ },
2253
+ {
2254
+ "displayName": "Owner",
2255
+ "name": "owner",
2256
+ "type": "json",
2257
+ "default": "{}",
2258
+ "description": "The owner of the bucket. This is always the project team's owner group.",
2259
+ "routing": {
2260
+ "send": {
2261
+ "property": "owner",
2262
+ "propertyInDotNotation": false,
2263
+ "type": "body",
2264
+ "value": "={{ JSON.parse($value) }}"
2265
+ }
2266
+ },
2267
+ "displayOptions": {
2268
+ "show": {
2269
+ "resource": [
2270
+ "Buckets"
2271
+ ],
2272
+ "operation": [
2273
+ "Storage Buckets Patch"
2274
+ ]
2275
+ }
2276
+ }
2277
+ },
2278
+ {
2279
+ "displayName": "Project Number",
2280
+ "name": "projectNumber",
2281
+ "type": "string",
2282
+ "default": "",
2283
+ "description": "The project number of the project the bucket belongs to.",
2284
+ "routing": {
2285
+ "send": {
2286
+ "property": "projectNumber",
2287
+ "propertyInDotNotation": false,
2288
+ "type": "body",
2289
+ "value": "={{ $value }}"
2290
+ }
2291
+ },
2292
+ "displayOptions": {
2293
+ "show": {
2294
+ "resource": [
2295
+ "Buckets"
2296
+ ],
2297
+ "operation": [
2298
+ "Storage Buckets Patch"
2299
+ ]
2300
+ }
2301
+ }
2302
+ },
2303
+ {
2304
+ "displayName": "Retention Policy",
2305
+ "name": "retentionPolicy",
2306
+ "type": "json",
2307
+ "default": "{}",
2308
+ "description": "The bucket's retention policy. The retention policy enforces a minimum retention time for all objects contained in the bucket, based on their creation time. Any attempt to overwrite or delete objects younger than the retention period will result in a PERMISSION_DENIED error. An unlocked retention policy can be modified or removed from the bucket via a storage.buckets.update operation. A locked retention policy cannot be removed or shortened in duration for the lifetime of the bucket. Attempting to remove or decrease period of a locked retention policy will result in a PERMISSION_DENIED error.",
2309
+ "routing": {
2310
+ "send": {
2311
+ "property": "retentionPolicy",
2312
+ "propertyInDotNotation": false,
2313
+ "type": "body",
2314
+ "value": "={{ JSON.parse($value) }}"
2315
+ }
2316
+ },
2317
+ "displayOptions": {
2318
+ "show": {
2319
+ "resource": [
2320
+ "Buckets"
2321
+ ],
2322
+ "operation": [
2323
+ "Storage Buckets Patch"
2324
+ ]
2325
+ }
2326
+ }
2327
+ },
2328
+ {
2329
+ "displayName": "Rpo",
2330
+ "name": "rpo",
2331
+ "type": "string",
2332
+ "default": "",
2333
+ "description": "The Recovery Point Objective (RPO) of this bucket. Set to ASYNC_TURBO to turn on Turbo Replication on a bucket.",
2334
+ "routing": {
2335
+ "send": {
2336
+ "property": "rpo",
2337
+ "propertyInDotNotation": false,
2338
+ "type": "body",
2339
+ "value": "={{ $value }}"
2340
+ }
2341
+ },
2342
+ "displayOptions": {
2343
+ "show": {
2344
+ "resource": [
2345
+ "Buckets"
2346
+ ],
2347
+ "operation": [
2348
+ "Storage Buckets Patch"
2349
+ ]
2350
+ }
2351
+ }
2352
+ },
2353
+ {
2354
+ "displayName": "Satisfies PZS",
2355
+ "name": "satisfiesPZS",
2356
+ "type": "boolean",
2357
+ "default": true,
2358
+ "description": "Reserved for future use.",
2359
+ "routing": {
2360
+ "send": {
2361
+ "property": "satisfiesPZS",
2362
+ "propertyInDotNotation": false,
2363
+ "type": "body",
2364
+ "value": "={{ $value }}"
2365
+ }
2366
+ },
2367
+ "displayOptions": {
2368
+ "show": {
2369
+ "resource": [
2370
+ "Buckets"
2371
+ ],
2372
+ "operation": [
2373
+ "Storage Buckets Patch"
2374
+ ]
2375
+ }
2376
+ }
2377
+ },
2378
+ {
2379
+ "displayName": "Self Link",
2380
+ "name": "selfLink",
2381
+ "type": "string",
2382
+ "default": "",
2383
+ "description": "The URI of this bucket.",
2384
+ "routing": {
2385
+ "send": {
2386
+ "property": "selfLink",
2387
+ "propertyInDotNotation": false,
2388
+ "type": "body",
2389
+ "value": "={{ $value }}"
2390
+ }
2391
+ },
2392
+ "displayOptions": {
2393
+ "show": {
2394
+ "resource": [
2395
+ "Buckets"
2396
+ ],
2397
+ "operation": [
2398
+ "Storage Buckets Patch"
2399
+ ]
2400
+ }
2401
+ }
2402
+ },
2403
+ {
2404
+ "displayName": "Storage Class",
2405
+ "name": "storageClass",
2406
+ "type": "string",
2407
+ "default": "",
2408
+ "description": "The bucket's default storage class, used whenever no storageClass is specified for a newly-created object. This defines how objects in the bucket are stored and determines the SLA and the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE, ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is created, it will default to STANDARD. For more information, see storage classes.",
2409
+ "routing": {
2410
+ "send": {
2411
+ "property": "storageClass",
2412
+ "propertyInDotNotation": false,
2413
+ "type": "body",
2414
+ "value": "={{ $value }}"
2415
+ }
2416
+ },
2417
+ "displayOptions": {
2418
+ "show": {
2419
+ "resource": [
2420
+ "Buckets"
2421
+ ],
2422
+ "operation": [
2423
+ "Storage Buckets Patch"
2424
+ ]
2425
+ }
2426
+ }
2427
+ },
2428
+ {
2429
+ "displayName": "Time Created",
2430
+ "name": "timeCreated",
2431
+ "type": "string",
2432
+ "default": "",
2433
+ "description": "The creation time of the bucket in RFC 3339 format.",
2434
+ "routing": {
2435
+ "send": {
2436
+ "property": "timeCreated",
2437
+ "propertyInDotNotation": false,
2438
+ "type": "body",
2439
+ "value": "={{ $value }}"
2440
+ }
2441
+ },
2442
+ "displayOptions": {
2443
+ "show": {
2444
+ "resource": [
2445
+ "Buckets"
2446
+ ],
2447
+ "operation": [
2448
+ "Storage Buckets Patch"
2449
+ ]
2450
+ }
2451
+ }
2452
+ },
2453
+ {
2454
+ "displayName": "Updated",
2455
+ "name": "updated",
2456
+ "type": "string",
2457
+ "default": "",
2458
+ "description": "The modification time of the bucket in RFC 3339 format.",
2459
+ "routing": {
2460
+ "send": {
2461
+ "property": "updated",
2462
+ "propertyInDotNotation": false,
2463
+ "type": "body",
2464
+ "value": "={{ $value }}"
2465
+ }
2466
+ },
2467
+ "displayOptions": {
2468
+ "show": {
2469
+ "resource": [
2470
+ "Buckets"
2471
+ ],
2472
+ "operation": [
2473
+ "Storage Buckets Patch"
2474
+ ]
2475
+ }
2476
+ }
2477
+ },
2478
+ {
2479
+ "displayName": "Versioning",
2480
+ "name": "versioning",
2481
+ "type": "json",
2482
+ "default": "{}",
2483
+ "description": "The bucket's versioning configuration.",
2484
+ "routing": {
2485
+ "send": {
2486
+ "property": "versioning",
2487
+ "propertyInDotNotation": false,
2488
+ "type": "body",
2489
+ "value": "={{ JSON.parse($value) }}"
2490
+ }
2491
+ },
2492
+ "displayOptions": {
2493
+ "show": {
2494
+ "resource": [
2495
+ "Buckets"
2496
+ ],
2497
+ "operation": [
2498
+ "Storage Buckets Patch"
2499
+ ]
2500
+ }
2501
+ }
2502
+ },
2503
+ {
2504
+ "displayName": "Website",
2505
+ "name": "website",
2506
+ "type": "json",
2507
+ "default": "{}",
2508
+ "description": "The bucket's website configuration, controlling how the service behaves when accessing bucket contents as a web site. See the Static Website Examples for more information.",
2509
+ "routing": {
2510
+ "send": {
2511
+ "property": "website",
2512
+ "propertyInDotNotation": false,
2513
+ "type": "body",
2514
+ "value": "={{ JSON.parse($value) }}"
2515
+ }
2516
+ },
2517
+ "displayOptions": {
2518
+ "show": {
2519
+ "resource": [
2520
+ "Buckets"
2521
+ ],
2522
+ "operation": [
2523
+ "Storage Buckets Patch"
2524
+ ]
2525
+ }
2526
+ }
2527
+ },
2528
+ {
2529
+ "displayName": "PUT /b/{bucket}",
2530
+ "name": "operation",
2531
+ "type": "notice",
2532
+ "typeOptions": {
2533
+ "theme": "info"
2534
+ },
2535
+ "default": "",
2536
+ "displayOptions": {
2537
+ "show": {
2538
+ "resource": [
2539
+ "Buckets"
2540
+ ],
2541
+ "operation": [
2542
+ "Storage Buckets Update"
2543
+ ]
2544
+ }
2545
+ }
2546
+ },
2547
+ {
2548
+ "displayName": "Bucket",
2549
+ "name": "bucket",
2550
+ "required": true,
2551
+ "description": "Name of a bucket.",
2552
+ "default": "",
2553
+ "type": "string",
2554
+ "displayOptions": {
2555
+ "show": {
2556
+ "resource": [
2557
+ "Buckets"
2558
+ ],
2559
+ "operation": [
2560
+ "Storage Buckets Update"
2561
+ ]
2562
+ }
2563
+ }
2564
+ },
2565
+ {
2566
+ "displayName": "If Metageneration Match",
2567
+ "name": "ifMetagenerationMatch",
2568
+ "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.",
2569
+ "default": "",
2570
+ "type": "string",
2571
+ "routing": {
2572
+ "send": {
2573
+ "type": "query",
2574
+ "property": "ifMetagenerationMatch",
2575
+ "value": "={{ $value }}",
2576
+ "propertyInDotNotation": false
2577
+ }
2578
+ },
2579
+ "displayOptions": {
2580
+ "show": {
2581
+ "resource": [
2582
+ "Buckets"
2583
+ ],
2584
+ "operation": [
2585
+ "Storage Buckets Update"
2586
+ ]
2587
+ }
2588
+ }
2589
+ },
2590
+ {
2591
+ "displayName": "If Metageneration Not Match",
2592
+ "name": "ifMetagenerationNotMatch",
2593
+ "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.",
2594
+ "default": "",
2595
+ "type": "string",
2596
+ "routing": {
2597
+ "send": {
2598
+ "type": "query",
2599
+ "property": "ifMetagenerationNotMatch",
2600
+ "value": "={{ $value }}",
2601
+ "propertyInDotNotation": false
2602
+ }
2603
+ },
2604
+ "displayOptions": {
2605
+ "show": {
2606
+ "resource": [
2607
+ "Buckets"
2608
+ ],
2609
+ "operation": [
2610
+ "Storage Buckets Update"
2611
+ ]
2612
+ }
2613
+ }
2614
+ },
2615
+ {
2616
+ "displayName": "Predefined Acl",
2617
+ "name": "predefinedAcl",
2618
+ "description": "Apply a predefined set of access controls to this bucket.",
2619
+ "default": "authenticatedRead",
2620
+ "type": "options",
2621
+ "options": [
2622
+ {
2623
+ "name": "Authenticated Read",
2624
+ "value": "authenticatedRead"
2625
+ },
2626
+ {
2627
+ "name": "Private",
2628
+ "value": "private"
2629
+ },
2630
+ {
2631
+ "name": "Project Private",
2632
+ "value": "projectPrivate"
2633
+ },
2634
+ {
2635
+ "name": "Public Read",
2636
+ "value": "publicRead"
2637
+ },
2638
+ {
2639
+ "name": "Public Read Write",
2640
+ "value": "publicReadWrite"
2641
+ }
2642
+ ],
2643
+ "routing": {
2644
+ "send": {
2645
+ "type": "query",
2646
+ "property": "predefinedAcl",
2647
+ "value": "={{ $value }}",
2648
+ "propertyInDotNotation": false
2649
+ }
2650
+ },
2651
+ "displayOptions": {
2652
+ "show": {
2653
+ "resource": [
2654
+ "Buckets"
2655
+ ],
2656
+ "operation": [
2657
+ "Storage Buckets Update"
2658
+ ]
2659
+ }
2660
+ }
2661
+ },
2662
+ {
2663
+ "displayName": "Predefined Default Object Acl",
2664
+ "name": "predefinedDefaultObjectAcl",
2665
+ "description": "Apply a predefined set of default object access controls to this bucket.",
2666
+ "default": "authenticatedRead",
2667
+ "type": "options",
2668
+ "options": [
2669
+ {
2670
+ "name": "Authenticated Read",
2671
+ "value": "authenticatedRead"
2672
+ },
2673
+ {
2674
+ "name": "Bucket Owner Full Control",
2675
+ "value": "bucketOwnerFullControl"
2676
+ },
2677
+ {
2678
+ "name": "Bucket Owner Read",
2679
+ "value": "bucketOwnerRead"
2680
+ },
2681
+ {
2682
+ "name": "Private",
2683
+ "value": "private"
2684
+ },
2685
+ {
2686
+ "name": "Project Private",
2687
+ "value": "projectPrivate"
2688
+ },
2689
+ {
2690
+ "name": "Public Read",
2691
+ "value": "publicRead"
2692
+ }
2693
+ ],
2694
+ "routing": {
2695
+ "send": {
2696
+ "type": "query",
2697
+ "property": "predefinedDefaultObjectAcl",
2698
+ "value": "={{ $value }}",
2699
+ "propertyInDotNotation": false
2700
+ }
2701
+ },
2702
+ "displayOptions": {
2703
+ "show": {
2704
+ "resource": [
2705
+ "Buckets"
2706
+ ],
2707
+ "operation": [
2708
+ "Storage Buckets Update"
2709
+ ]
2710
+ }
2711
+ }
2712
+ },
2713
+ {
2714
+ "displayName": "Projection",
2715
+ "name": "projection",
2716
+ "description": "Set of properties to return. Defaults to full.",
2717
+ "default": "full",
2718
+ "type": "options",
2719
+ "options": [
2720
+ {
2721
+ "name": "Full",
2722
+ "value": "full"
2723
+ },
2724
+ {
2725
+ "name": "No Acl",
2726
+ "value": "noAcl"
2727
+ }
2728
+ ],
2729
+ "routing": {
2730
+ "send": {
2731
+ "type": "query",
2732
+ "property": "projection",
2733
+ "value": "={{ $value }}",
2734
+ "propertyInDotNotation": false
2735
+ }
2736
+ },
2737
+ "displayOptions": {
2738
+ "show": {
2739
+ "resource": [
2740
+ "Buckets"
2741
+ ],
2742
+ "operation": [
2743
+ "Storage Buckets Update"
2744
+ ]
2745
+ }
2746
+ }
2747
+ },
2748
+ {
2749
+ "displayName": "User Project",
2750
+ "name": "userProject",
2751
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
2752
+ "default": "",
2753
+ "type": "string",
2754
+ "routing": {
2755
+ "send": {
2756
+ "type": "query",
2757
+ "property": "userProject",
2758
+ "value": "={{ $value }}",
2759
+ "propertyInDotNotation": false
2760
+ }
2761
+ },
2762
+ "displayOptions": {
2763
+ "show": {
2764
+ "resource": [
2765
+ "Buckets"
2766
+ ],
2767
+ "operation": [
2768
+ "Storage Buckets Update"
2769
+ ]
2770
+ }
2771
+ }
2772
+ },
2773
+ {
2774
+ "displayName": "Acl",
2775
+ "name": "acl",
2776
+ "type": "json",
2777
+ "default": "[\n {\n \"kind\": \"storage#bucketAccessControl\",\n \"projectTeam\": {}\n }\n]",
2778
+ "description": "Access controls on the bucket.",
2779
+ "routing": {
2780
+ "send": {
2781
+ "property": "acl",
2782
+ "propertyInDotNotation": false,
2783
+ "type": "body",
2784
+ "value": "={{ JSON.parse($value) }}"
2785
+ }
2786
+ },
2787
+ "displayOptions": {
2788
+ "show": {
2789
+ "resource": [
2790
+ "Buckets"
2791
+ ],
2792
+ "operation": [
2793
+ "Storage Buckets Update"
2794
+ ]
2795
+ }
2796
+ }
2797
+ },
2798
+ {
2799
+ "displayName": "Autoclass",
2800
+ "name": "autoclass",
2801
+ "type": "json",
2802
+ "default": "{}",
2803
+ "description": "The bucket's Autoclass configuration.",
2804
+ "routing": {
2805
+ "send": {
2806
+ "property": "autoclass",
2807
+ "propertyInDotNotation": false,
2808
+ "type": "body",
2809
+ "value": "={{ JSON.parse($value) }}"
2810
+ }
2811
+ },
2812
+ "displayOptions": {
2813
+ "show": {
2814
+ "resource": [
2815
+ "Buckets"
2816
+ ],
2817
+ "operation": [
2818
+ "Storage Buckets Update"
2819
+ ]
2820
+ }
2821
+ }
2822
+ },
2823
+ {
2824
+ "displayName": "Billing",
2825
+ "name": "billing",
2826
+ "type": "json",
2827
+ "default": "{}",
2828
+ "description": "The bucket's billing configuration.",
2829
+ "routing": {
2830
+ "send": {
2831
+ "property": "billing",
2832
+ "propertyInDotNotation": false,
2833
+ "type": "body",
2834
+ "value": "={{ JSON.parse($value) }}"
2835
+ }
2836
+ },
2837
+ "displayOptions": {
2838
+ "show": {
2839
+ "resource": [
2840
+ "Buckets"
2841
+ ],
2842
+ "operation": [
2843
+ "Storage Buckets Update"
2844
+ ]
2845
+ }
2846
+ }
2847
+ },
2848
+ {
2849
+ "displayName": "CORS",
2850
+ "name": "cors",
2851
+ "type": "json",
2852
+ "default": "[\n {\n \"method\": [\n null\n ],\n \"origin\": [\n null\n ],\n \"responseHeader\": [\n null\n ]\n }\n]",
2853
+ "description": "The bucket's Cross-Origin Resource Sharing (CORS) configuration.",
2854
+ "routing": {
2855
+ "send": {
2856
+ "property": "cors",
2857
+ "propertyInDotNotation": false,
2858
+ "type": "body",
2859
+ "value": "={{ JSON.parse($value) }}"
2860
+ }
2861
+ },
2862
+ "displayOptions": {
2863
+ "show": {
2864
+ "resource": [
2865
+ "Buckets"
2866
+ ],
2867
+ "operation": [
2868
+ "Storage Buckets Update"
2869
+ ]
2870
+ }
2871
+ }
2872
+ },
2873
+ {
2874
+ "displayName": "Custom Placement Config",
2875
+ "name": "customPlacementConfig",
2876
+ "type": "json",
2877
+ "default": "{\n \"dataLocations\": [\n null\n ]\n}",
2878
+ "description": "The bucket's custom placement configuration for Custom Dual Regions.",
2879
+ "routing": {
2880
+ "send": {
2881
+ "property": "customPlacementConfig",
2882
+ "propertyInDotNotation": false,
2883
+ "type": "body",
2884
+ "value": "={{ JSON.parse($value) }}"
2885
+ }
2886
+ },
2887
+ "displayOptions": {
2888
+ "show": {
2889
+ "resource": [
2890
+ "Buckets"
2891
+ ],
2892
+ "operation": [
2893
+ "Storage Buckets Update"
2894
+ ]
2895
+ }
2896
+ }
2897
+ },
2898
+ {
2899
+ "displayName": "Default Event Based Hold",
2900
+ "name": "defaultEventBasedHold",
2901
+ "type": "boolean",
2902
+ "default": true,
2903
+ "description": "The default value for event-based hold on newly created objects in this bucket. Event-based hold is a way to retain objects indefinitely until an event occurs, signified by the hold's release. After being released, such objects will be subject to bucket-level retention (if any). One sample use case of this flag is for banks to hold loan documents for at least 3 years after loan is paid in full. Here, bucket-level retention is 3 years and the event is loan being paid in full. In this example, these objects will be held intact for any number of years until the event has occurred (event-based hold on the object is released) and then 3 more years after that. That means retention duration of the objects begins from the moment event-based hold transitioned from true to false. Objects under event-based hold cannot be deleted, overwritten or archived until the hold is removed.",
2904
+ "routing": {
2905
+ "send": {
2906
+ "property": "defaultEventBasedHold",
2907
+ "propertyInDotNotation": false,
2908
+ "type": "body",
2909
+ "value": "={{ $value }}"
2910
+ }
2911
+ },
2912
+ "displayOptions": {
2913
+ "show": {
2914
+ "resource": [
2915
+ "Buckets"
2916
+ ],
2917
+ "operation": [
2918
+ "Storage Buckets Update"
2919
+ ]
2920
+ }
2921
+ }
2922
+ },
2923
+ {
2924
+ "displayName": "Default Object Acl",
2925
+ "name": "defaultObjectAcl",
2926
+ "type": "json",
2927
+ "default": "[\n {\n \"kind\": \"storage#objectAccessControl\",\n \"projectTeam\": {}\n }\n]",
2928
+ "description": "Default access controls to apply to new objects when no ACL is provided.",
2929
+ "routing": {
2930
+ "send": {
2931
+ "property": "defaultObjectAcl",
2932
+ "propertyInDotNotation": false,
2933
+ "type": "body",
2934
+ "value": "={{ JSON.parse($value) }}"
2935
+ }
2936
+ },
2937
+ "displayOptions": {
2938
+ "show": {
2939
+ "resource": [
2940
+ "Buckets"
2941
+ ],
2942
+ "operation": [
2943
+ "Storage Buckets Update"
2944
+ ]
2945
+ }
2946
+ }
2947
+ },
2948
+ {
2949
+ "displayName": "Encryption",
2950
+ "name": "encryption",
2951
+ "type": "json",
2952
+ "default": "{}",
2953
+ "description": "Encryption configuration for a bucket.",
2954
+ "routing": {
2955
+ "send": {
2956
+ "property": "encryption",
2957
+ "propertyInDotNotation": false,
2958
+ "type": "body",
2959
+ "value": "={{ JSON.parse($value) }}"
2960
+ }
2961
+ },
2962
+ "displayOptions": {
2963
+ "show": {
2964
+ "resource": [
2965
+ "Buckets"
2966
+ ],
2967
+ "operation": [
2968
+ "Storage Buckets Update"
2969
+ ]
2970
+ }
2971
+ }
2972
+ },
2973
+ {
2974
+ "displayName": "Etag",
2975
+ "name": "etag",
2976
+ "type": "string",
2977
+ "default": "",
2978
+ "description": "HTTP 1.1 Entity tag for the bucket.",
2979
+ "routing": {
2980
+ "send": {
2981
+ "property": "etag",
2982
+ "propertyInDotNotation": false,
2983
+ "type": "body",
2984
+ "value": "={{ $value }}"
2985
+ }
2986
+ },
2987
+ "displayOptions": {
2988
+ "show": {
2989
+ "resource": [
2990
+ "Buckets"
2991
+ ],
2992
+ "operation": [
2993
+ "Storage Buckets Update"
2994
+ ]
2995
+ }
2996
+ }
2997
+ },
2998
+ {
2999
+ "displayName": "Iam Configuration",
3000
+ "name": "iamConfiguration",
3001
+ "type": "json",
3002
+ "default": "{\n \"bucketPolicyOnly\": {},\n \"uniformBucketLevelAccess\": {}\n}",
3003
+ "description": "The bucket's IAM configuration.",
3004
+ "routing": {
3005
+ "send": {
3006
+ "property": "iamConfiguration",
3007
+ "propertyInDotNotation": false,
3008
+ "type": "body",
3009
+ "value": "={{ JSON.parse($value) }}"
3010
+ }
3011
+ },
3012
+ "displayOptions": {
3013
+ "show": {
3014
+ "resource": [
3015
+ "Buckets"
3016
+ ],
3017
+ "operation": [
3018
+ "Storage Buckets Update"
3019
+ ]
3020
+ }
3021
+ }
3022
+ },
3023
+ {
3024
+ "displayName": "ID",
3025
+ "name": "id",
3026
+ "type": "string",
3027
+ "default": "",
3028
+ "description": "The ID of the bucket. For buckets, the id and name properties are the same.",
3029
+ "routing": {
3030
+ "send": {
3031
+ "property": "id",
3032
+ "propertyInDotNotation": false,
3033
+ "type": "body",
3034
+ "value": "={{ $value }}"
3035
+ }
3036
+ },
3037
+ "displayOptions": {
3038
+ "show": {
3039
+ "resource": [
3040
+ "Buckets"
3041
+ ],
3042
+ "operation": [
3043
+ "Storage Buckets Update"
3044
+ ]
3045
+ }
3046
+ }
3047
+ },
3048
+ {
3049
+ "displayName": "Kind",
3050
+ "name": "kind",
3051
+ "type": "string",
3052
+ "default": "storage#bucket",
3053
+ "description": "The kind of item this is. For buckets, this is always storage#bucket.",
3054
+ "routing": {
3055
+ "send": {
3056
+ "property": "kind",
3057
+ "propertyInDotNotation": false,
3058
+ "type": "body",
3059
+ "value": "={{ $value }}"
3060
+ }
3061
+ },
3062
+ "displayOptions": {
3063
+ "show": {
3064
+ "resource": [
3065
+ "Buckets"
3066
+ ],
3067
+ "operation": [
3068
+ "Storage Buckets Update"
3069
+ ]
3070
+ }
3071
+ }
3072
+ },
3073
+ {
3074
+ "displayName": "Labels",
3075
+ "name": "labels",
3076
+ "type": "json",
3077
+ "default": "{}",
3078
+ "description": "User-provided labels, in key/value pairs.",
3079
+ "routing": {
3080
+ "send": {
3081
+ "property": "labels",
3082
+ "propertyInDotNotation": false,
3083
+ "type": "body",
3084
+ "value": "={{ JSON.parse($value) }}"
3085
+ }
3086
+ },
3087
+ "displayOptions": {
3088
+ "show": {
3089
+ "resource": [
3090
+ "Buckets"
3091
+ ],
3092
+ "operation": [
3093
+ "Storage Buckets Update"
3094
+ ]
3095
+ }
3096
+ }
3097
+ },
3098
+ {
3099
+ "displayName": "Lifecycle",
3100
+ "name": "lifecycle",
3101
+ "type": "json",
3102
+ "default": "{\n \"rule\": [\n {\n \"action\": {},\n \"condition\": {\n \"matchesPrefix\": [\n null\n ],\n \"matchesStorageClass\": [\n null\n ],\n \"matchesSuffix\": [\n null\n ]\n }\n }\n ]\n}",
3103
+ "description": "The bucket's lifecycle configuration. See lifecycle management for more information.",
3104
+ "routing": {
3105
+ "send": {
3106
+ "property": "lifecycle",
3107
+ "propertyInDotNotation": false,
3108
+ "type": "body",
3109
+ "value": "={{ JSON.parse($value) }}"
3110
+ }
3111
+ },
3112
+ "displayOptions": {
3113
+ "show": {
3114
+ "resource": [
3115
+ "Buckets"
3116
+ ],
3117
+ "operation": [
3118
+ "Storage Buckets Update"
3119
+ ]
3120
+ }
3121
+ }
3122
+ },
3123
+ {
3124
+ "displayName": "Location",
3125
+ "name": "location",
3126
+ "type": "string",
3127
+ "default": "",
3128
+ "description": "The location of the bucket. Object data for objects in the bucket resides in physical storage within this region. Defaults to US. See the developer's guide for the authoritative list.",
3129
+ "routing": {
3130
+ "send": {
3131
+ "property": "location",
3132
+ "propertyInDotNotation": false,
3133
+ "type": "body",
3134
+ "value": "={{ $value }}"
3135
+ }
3136
+ },
3137
+ "displayOptions": {
3138
+ "show": {
3139
+ "resource": [
3140
+ "Buckets"
3141
+ ],
3142
+ "operation": [
3143
+ "Storage Buckets Update"
3144
+ ]
3145
+ }
3146
+ }
3147
+ },
3148
+ {
3149
+ "displayName": "Location Type",
3150
+ "name": "locationType",
3151
+ "type": "string",
3152
+ "default": "",
3153
+ "description": "The type of the bucket location.",
3154
+ "routing": {
3155
+ "send": {
3156
+ "property": "locationType",
3157
+ "propertyInDotNotation": false,
3158
+ "type": "body",
3159
+ "value": "={{ $value }}"
3160
+ }
3161
+ },
3162
+ "displayOptions": {
3163
+ "show": {
3164
+ "resource": [
3165
+ "Buckets"
3166
+ ],
3167
+ "operation": [
3168
+ "Storage Buckets Update"
3169
+ ]
3170
+ }
3171
+ }
3172
+ },
3173
+ {
3174
+ "displayName": "Logging",
3175
+ "name": "logging",
3176
+ "type": "json",
3177
+ "default": "{}",
3178
+ "description": "The bucket's logging configuration, which defines the destination bucket and optional name prefix for the current bucket's logs.",
3179
+ "routing": {
3180
+ "send": {
3181
+ "property": "logging",
3182
+ "propertyInDotNotation": false,
3183
+ "type": "body",
3184
+ "value": "={{ JSON.parse($value) }}"
3185
+ }
3186
+ },
3187
+ "displayOptions": {
3188
+ "show": {
3189
+ "resource": [
3190
+ "Buckets"
3191
+ ],
3192
+ "operation": [
3193
+ "Storage Buckets Update"
3194
+ ]
3195
+ }
3196
+ }
3197
+ },
3198
+ {
3199
+ "displayName": "Metageneration",
3200
+ "name": "metageneration",
3201
+ "type": "string",
3202
+ "default": "",
3203
+ "description": "The metadata generation of this bucket.",
3204
+ "routing": {
3205
+ "send": {
3206
+ "property": "metageneration",
3207
+ "propertyInDotNotation": false,
3208
+ "type": "body",
3209
+ "value": "={{ $value }}"
3210
+ }
3211
+ },
3212
+ "displayOptions": {
3213
+ "show": {
3214
+ "resource": [
3215
+ "Buckets"
3216
+ ],
3217
+ "operation": [
3218
+ "Storage Buckets Update"
3219
+ ]
3220
+ }
3221
+ }
3222
+ },
3223
+ {
3224
+ "displayName": "Name",
3225
+ "name": "name",
3226
+ "type": "string",
3227
+ "default": "",
3228
+ "description": "The name of the bucket.",
3229
+ "routing": {
3230
+ "send": {
3231
+ "property": "name",
3232
+ "propertyInDotNotation": false,
3233
+ "type": "body",
3234
+ "value": "={{ $value }}"
3235
+ }
3236
+ },
3237
+ "displayOptions": {
3238
+ "show": {
3239
+ "resource": [
3240
+ "Buckets"
3241
+ ],
3242
+ "operation": [
3243
+ "Storage Buckets Update"
3244
+ ]
3245
+ }
3246
+ }
3247
+ },
3248
+ {
3249
+ "displayName": "Owner",
3250
+ "name": "owner",
3251
+ "type": "json",
3252
+ "default": "{}",
3253
+ "description": "The owner of the bucket. This is always the project team's owner group.",
3254
+ "routing": {
3255
+ "send": {
3256
+ "property": "owner",
3257
+ "propertyInDotNotation": false,
3258
+ "type": "body",
3259
+ "value": "={{ JSON.parse($value) }}"
3260
+ }
3261
+ },
3262
+ "displayOptions": {
3263
+ "show": {
3264
+ "resource": [
3265
+ "Buckets"
3266
+ ],
3267
+ "operation": [
3268
+ "Storage Buckets Update"
3269
+ ]
3270
+ }
3271
+ }
3272
+ },
3273
+ {
3274
+ "displayName": "Project Number",
3275
+ "name": "projectNumber",
3276
+ "type": "string",
3277
+ "default": "",
3278
+ "description": "The project number of the project the bucket belongs to.",
3279
+ "routing": {
3280
+ "send": {
3281
+ "property": "projectNumber",
3282
+ "propertyInDotNotation": false,
3283
+ "type": "body",
3284
+ "value": "={{ $value }}"
3285
+ }
3286
+ },
3287
+ "displayOptions": {
3288
+ "show": {
3289
+ "resource": [
3290
+ "Buckets"
3291
+ ],
3292
+ "operation": [
3293
+ "Storage Buckets Update"
3294
+ ]
3295
+ }
3296
+ }
3297
+ },
3298
+ {
3299
+ "displayName": "Retention Policy",
3300
+ "name": "retentionPolicy",
3301
+ "type": "json",
3302
+ "default": "{}",
3303
+ "description": "The bucket's retention policy. The retention policy enforces a minimum retention time for all objects contained in the bucket, based on their creation time. Any attempt to overwrite or delete objects younger than the retention period will result in a PERMISSION_DENIED error. An unlocked retention policy can be modified or removed from the bucket via a storage.buckets.update operation. A locked retention policy cannot be removed or shortened in duration for the lifetime of the bucket. Attempting to remove or decrease period of a locked retention policy will result in a PERMISSION_DENIED error.",
3304
+ "routing": {
3305
+ "send": {
3306
+ "property": "retentionPolicy",
3307
+ "propertyInDotNotation": false,
3308
+ "type": "body",
3309
+ "value": "={{ JSON.parse($value) }}"
3310
+ }
3311
+ },
3312
+ "displayOptions": {
3313
+ "show": {
3314
+ "resource": [
3315
+ "Buckets"
3316
+ ],
3317
+ "operation": [
3318
+ "Storage Buckets Update"
3319
+ ]
3320
+ }
3321
+ }
3322
+ },
3323
+ {
3324
+ "displayName": "Rpo",
3325
+ "name": "rpo",
3326
+ "type": "string",
3327
+ "default": "",
3328
+ "description": "The Recovery Point Objective (RPO) of this bucket. Set to ASYNC_TURBO to turn on Turbo Replication on a bucket.",
3329
+ "routing": {
3330
+ "send": {
3331
+ "property": "rpo",
3332
+ "propertyInDotNotation": false,
3333
+ "type": "body",
3334
+ "value": "={{ $value }}"
3335
+ }
3336
+ },
3337
+ "displayOptions": {
3338
+ "show": {
3339
+ "resource": [
3340
+ "Buckets"
3341
+ ],
3342
+ "operation": [
3343
+ "Storage Buckets Update"
3344
+ ]
3345
+ }
3346
+ }
3347
+ },
3348
+ {
3349
+ "displayName": "Satisfies PZS",
3350
+ "name": "satisfiesPZS",
3351
+ "type": "boolean",
3352
+ "default": true,
3353
+ "description": "Reserved for future use.",
3354
+ "routing": {
3355
+ "send": {
3356
+ "property": "satisfiesPZS",
3357
+ "propertyInDotNotation": false,
3358
+ "type": "body",
3359
+ "value": "={{ $value }}"
3360
+ }
3361
+ },
3362
+ "displayOptions": {
3363
+ "show": {
3364
+ "resource": [
3365
+ "Buckets"
3366
+ ],
3367
+ "operation": [
3368
+ "Storage Buckets Update"
3369
+ ]
3370
+ }
3371
+ }
3372
+ },
3373
+ {
3374
+ "displayName": "Self Link",
3375
+ "name": "selfLink",
3376
+ "type": "string",
3377
+ "default": "",
3378
+ "description": "The URI of this bucket.",
3379
+ "routing": {
3380
+ "send": {
3381
+ "property": "selfLink",
3382
+ "propertyInDotNotation": false,
3383
+ "type": "body",
3384
+ "value": "={{ $value }}"
3385
+ }
3386
+ },
3387
+ "displayOptions": {
3388
+ "show": {
3389
+ "resource": [
3390
+ "Buckets"
3391
+ ],
3392
+ "operation": [
3393
+ "Storage Buckets Update"
3394
+ ]
3395
+ }
3396
+ }
3397
+ },
3398
+ {
3399
+ "displayName": "Storage Class",
3400
+ "name": "storageClass",
3401
+ "type": "string",
3402
+ "default": "",
3403
+ "description": "The bucket's default storage class, used whenever no storageClass is specified for a newly-created object. This defines how objects in the bucket are stored and determines the SLA and the cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, NEARLINE, COLDLINE, ARCHIVE, and DURABLE_REDUCED_AVAILABILITY. If this value is not specified when the bucket is created, it will default to STANDARD. For more information, see storage classes.",
3404
+ "routing": {
3405
+ "send": {
3406
+ "property": "storageClass",
3407
+ "propertyInDotNotation": false,
3408
+ "type": "body",
3409
+ "value": "={{ $value }}"
3410
+ }
3411
+ },
3412
+ "displayOptions": {
3413
+ "show": {
3414
+ "resource": [
3415
+ "Buckets"
3416
+ ],
3417
+ "operation": [
3418
+ "Storage Buckets Update"
3419
+ ]
3420
+ }
3421
+ }
3422
+ },
3423
+ {
3424
+ "displayName": "Time Created",
3425
+ "name": "timeCreated",
3426
+ "type": "string",
3427
+ "default": "",
3428
+ "description": "The creation time of the bucket in RFC 3339 format.",
3429
+ "routing": {
3430
+ "send": {
3431
+ "property": "timeCreated",
3432
+ "propertyInDotNotation": false,
3433
+ "type": "body",
3434
+ "value": "={{ $value }}"
3435
+ }
3436
+ },
3437
+ "displayOptions": {
3438
+ "show": {
3439
+ "resource": [
3440
+ "Buckets"
3441
+ ],
3442
+ "operation": [
3443
+ "Storage Buckets Update"
3444
+ ]
3445
+ }
3446
+ }
3447
+ },
3448
+ {
3449
+ "displayName": "Updated",
3450
+ "name": "updated",
3451
+ "type": "string",
3452
+ "default": "",
3453
+ "description": "The modification time of the bucket in RFC 3339 format.",
3454
+ "routing": {
3455
+ "send": {
3456
+ "property": "updated",
3457
+ "propertyInDotNotation": false,
3458
+ "type": "body",
3459
+ "value": "={{ $value }}"
3460
+ }
3461
+ },
3462
+ "displayOptions": {
3463
+ "show": {
3464
+ "resource": [
3465
+ "Buckets"
3466
+ ],
3467
+ "operation": [
3468
+ "Storage Buckets Update"
3469
+ ]
3470
+ }
3471
+ }
3472
+ },
3473
+ {
3474
+ "displayName": "Versioning",
3475
+ "name": "versioning",
3476
+ "type": "json",
3477
+ "default": "{}",
3478
+ "description": "The bucket's versioning configuration.",
3479
+ "routing": {
3480
+ "send": {
3481
+ "property": "versioning",
3482
+ "propertyInDotNotation": false,
3483
+ "type": "body",
3484
+ "value": "={{ JSON.parse($value) }}"
3485
+ }
3486
+ },
3487
+ "displayOptions": {
3488
+ "show": {
3489
+ "resource": [
3490
+ "Buckets"
3491
+ ],
3492
+ "operation": [
3493
+ "Storage Buckets Update"
3494
+ ]
3495
+ }
3496
+ }
3497
+ },
3498
+ {
3499
+ "displayName": "Website",
3500
+ "name": "website",
3501
+ "type": "json",
3502
+ "default": "{}",
3503
+ "description": "The bucket's website configuration, controlling how the service behaves when accessing bucket contents as a web site. See the Static Website Examples for more information.",
3504
+ "routing": {
3505
+ "send": {
3506
+ "property": "website",
3507
+ "propertyInDotNotation": false,
3508
+ "type": "body",
3509
+ "value": "={{ JSON.parse($value) }}"
3510
+ }
3511
+ },
3512
+ "displayOptions": {
3513
+ "show": {
3514
+ "resource": [
3515
+ "Buckets"
3516
+ ],
3517
+ "operation": [
3518
+ "Storage Buckets Update"
3519
+ ]
3520
+ }
3521
+ }
3522
+ },
3523
+ {
3524
+ "displayName": "GET /b/{bucket}/iam",
3525
+ "name": "operation",
3526
+ "type": "notice",
3527
+ "typeOptions": {
3528
+ "theme": "info"
3529
+ },
3530
+ "default": "",
3531
+ "displayOptions": {
3532
+ "show": {
3533
+ "resource": [
3534
+ "Buckets"
3535
+ ],
3536
+ "operation": [
3537
+ "Storage Buckets Get Iam Policy"
3538
+ ]
3539
+ }
3540
+ }
3541
+ },
3542
+ {
3543
+ "displayName": "Bucket",
3544
+ "name": "bucket",
3545
+ "required": true,
3546
+ "description": "Name of a bucket.",
3547
+ "default": "",
3548
+ "type": "string",
3549
+ "displayOptions": {
3550
+ "show": {
3551
+ "resource": [
3552
+ "Buckets"
3553
+ ],
3554
+ "operation": [
3555
+ "Storage Buckets Get Iam Policy"
3556
+ ]
3557
+ }
3558
+ }
3559
+ },
3560
+ {
3561
+ "displayName": "Options Requested Policy Version",
3562
+ "name": "optionsRequestedPolicyVersion",
3563
+ "description": "The IAM policy format version to be returned. If the optionsRequestedPolicyVersion is for an older version that doesn't support part of the requested IAM policy, the request fails.",
3564
+ "default": 0,
3565
+ "type": "number",
3566
+ "routing": {
3567
+ "send": {
3568
+ "type": "query",
3569
+ "property": "optionsRequestedPolicyVersion",
3570
+ "value": "={{ $value }}",
3571
+ "propertyInDotNotation": false
3572
+ }
3573
+ },
3574
+ "displayOptions": {
3575
+ "show": {
3576
+ "resource": [
3577
+ "Buckets"
3578
+ ],
3579
+ "operation": [
3580
+ "Storage Buckets Get Iam Policy"
3581
+ ]
3582
+ }
3583
+ }
3584
+ },
3585
+ {
3586
+ "displayName": "User Project",
3587
+ "name": "userProject",
3588
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
3589
+ "default": "",
3590
+ "type": "string",
3591
+ "routing": {
3592
+ "send": {
3593
+ "type": "query",
3594
+ "property": "userProject",
3595
+ "value": "={{ $value }}",
3596
+ "propertyInDotNotation": false
3597
+ }
3598
+ },
3599
+ "displayOptions": {
3600
+ "show": {
3601
+ "resource": [
3602
+ "Buckets"
3603
+ ],
3604
+ "operation": [
3605
+ "Storage Buckets Get Iam Policy"
3606
+ ]
3607
+ }
3608
+ }
3609
+ },
3610
+ {
3611
+ "displayName": "PUT /b/{bucket}/iam",
3612
+ "name": "operation",
3613
+ "type": "notice",
3614
+ "typeOptions": {
3615
+ "theme": "info"
3616
+ },
3617
+ "default": "",
3618
+ "displayOptions": {
3619
+ "show": {
3620
+ "resource": [
3621
+ "Buckets"
3622
+ ],
3623
+ "operation": [
3624
+ "Storage Buckets Set Iam Policy"
3625
+ ]
3626
+ }
3627
+ }
3628
+ },
3629
+ {
3630
+ "displayName": "Bucket",
3631
+ "name": "bucket",
3632
+ "required": true,
3633
+ "description": "Name of a bucket.",
3634
+ "default": "",
3635
+ "type": "string",
3636
+ "displayOptions": {
3637
+ "show": {
3638
+ "resource": [
3639
+ "Buckets"
3640
+ ],
3641
+ "operation": [
3642
+ "Storage Buckets Set Iam Policy"
3643
+ ]
3644
+ }
3645
+ }
3646
+ },
3647
+ {
3648
+ "displayName": "User Project",
3649
+ "name": "userProject",
3650
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
3651
+ "default": "",
3652
+ "type": "string",
3653
+ "routing": {
3654
+ "send": {
3655
+ "type": "query",
3656
+ "property": "userProject",
3657
+ "value": "={{ $value }}",
3658
+ "propertyInDotNotation": false
3659
+ }
3660
+ },
3661
+ "displayOptions": {
3662
+ "show": {
3663
+ "resource": [
3664
+ "Buckets"
3665
+ ],
3666
+ "operation": [
3667
+ "Storage Buckets Set Iam Policy"
3668
+ ]
3669
+ }
3670
+ }
3671
+ },
3672
+ {
3673
+ "displayName": "Bindings",
3674
+ "name": "bindings",
3675
+ "type": "json",
3676
+ "default": "[\n {\n \"condition\": {},\n \"members\": [\n null\n ]\n }\n]",
3677
+ "description": "An association between a role, which comes with a set of permissions, and members who may assume that role.",
3678
+ "routing": {
3679
+ "send": {
3680
+ "property": "bindings",
3681
+ "propertyInDotNotation": false,
3682
+ "type": "body",
3683
+ "value": "={{ JSON.parse($value) }}"
3684
+ }
3685
+ },
3686
+ "displayOptions": {
3687
+ "show": {
3688
+ "resource": [
3689
+ "Buckets"
3690
+ ],
3691
+ "operation": [
3692
+ "Storage Buckets Set Iam Policy"
3693
+ ]
3694
+ }
3695
+ }
3696
+ },
3697
+ {
3698
+ "displayName": "Etag",
3699
+ "name": "etag",
3700
+ "type": "string",
3701
+ "default": "",
3702
+ "description": "HTTP 1.1 Entity tag for the policy.",
3703
+ "routing": {
3704
+ "send": {
3705
+ "property": "etag",
3706
+ "propertyInDotNotation": false,
3707
+ "type": "body",
3708
+ "value": "={{ $value }}"
3709
+ }
3710
+ },
3711
+ "displayOptions": {
3712
+ "show": {
3713
+ "resource": [
3714
+ "Buckets"
3715
+ ],
3716
+ "operation": [
3717
+ "Storage Buckets Set Iam Policy"
3718
+ ]
3719
+ }
3720
+ }
3721
+ },
3722
+ {
3723
+ "displayName": "Kind",
3724
+ "name": "kind",
3725
+ "type": "string",
3726
+ "default": "storage#policy",
3727
+ "description": "The kind of item this is. For policies, this is always storage#policy. This field is ignored on input.",
3728
+ "routing": {
3729
+ "send": {
3730
+ "property": "kind",
3731
+ "propertyInDotNotation": false,
3732
+ "type": "body",
3733
+ "value": "={{ $value }}"
3734
+ }
3735
+ },
3736
+ "displayOptions": {
3737
+ "show": {
3738
+ "resource": [
3739
+ "Buckets"
3740
+ ],
3741
+ "operation": [
3742
+ "Storage Buckets Set Iam Policy"
3743
+ ]
3744
+ }
3745
+ }
3746
+ },
3747
+ {
3748
+ "displayName": "Resource ID",
3749
+ "name": "resourceId",
3750
+ "type": "string",
3751
+ "default": "",
3752
+ "description": "The ID of the resource to which this policy belongs. Will be of the form projects/_/buckets/bucket for buckets, and projects/_/buckets/bucket/objects/object for objects. A specific generation may be specified by appending #generationNumber to the end of the object name, e.g. projects/_/buckets/my-bucket/objects/data.txt#17. The current generation can be denoted with #0. This field is ignored on input.",
3753
+ "routing": {
3754
+ "send": {
3755
+ "property": "resourceId",
3756
+ "propertyInDotNotation": false,
3757
+ "type": "body",
3758
+ "value": "={{ $value }}"
3759
+ }
3760
+ },
3761
+ "displayOptions": {
3762
+ "show": {
3763
+ "resource": [
3764
+ "Buckets"
3765
+ ],
3766
+ "operation": [
3767
+ "Storage Buckets Set Iam Policy"
3768
+ ]
3769
+ }
3770
+ }
3771
+ },
3772
+ {
3773
+ "displayName": "Version",
3774
+ "name": "version",
3775
+ "type": "number",
3776
+ "default": 0,
3777
+ "description": "The IAM policy format version.",
3778
+ "routing": {
3779
+ "send": {
3780
+ "property": "version",
3781
+ "propertyInDotNotation": false,
3782
+ "type": "body",
3783
+ "value": "={{ $value }}"
3784
+ }
3785
+ },
3786
+ "displayOptions": {
3787
+ "show": {
3788
+ "resource": [
3789
+ "Buckets"
3790
+ ],
3791
+ "operation": [
3792
+ "Storage Buckets Set Iam Policy"
3793
+ ]
3794
+ }
3795
+ }
3796
+ },
3797
+ {
3798
+ "displayName": "GET /b/{bucket}/iam/testPermissions",
3799
+ "name": "operation",
3800
+ "type": "notice",
3801
+ "typeOptions": {
3802
+ "theme": "info"
3803
+ },
3804
+ "default": "",
3805
+ "displayOptions": {
3806
+ "show": {
3807
+ "resource": [
3808
+ "Buckets"
3809
+ ],
3810
+ "operation": [
3811
+ "Storage Buckets Test Iam Permissions"
3812
+ ]
3813
+ }
3814
+ }
3815
+ },
3816
+ {
3817
+ "displayName": "Bucket",
3818
+ "name": "bucket",
3819
+ "required": true,
3820
+ "description": "Name of a bucket.",
3821
+ "default": "",
3822
+ "type": "string",
3823
+ "displayOptions": {
3824
+ "show": {
3825
+ "resource": [
3826
+ "Buckets"
3827
+ ],
3828
+ "operation": [
3829
+ "Storage Buckets Test Iam Permissions"
3830
+ ]
3831
+ }
3832
+ }
3833
+ },
3834
+ {
3835
+ "displayName": "Permissions",
3836
+ "name": "permissions",
3837
+ "required": true,
3838
+ "description": "Permissions to test.",
3839
+ "default": "[\n null\n]",
3840
+ "type": "json",
3841
+ "routing": {
3842
+ "send": {
3843
+ "type": "query",
3844
+ "property": "permissions",
3845
+ "value": "={{ $value }}",
3846
+ "propertyInDotNotation": false
3847
+ }
3848
+ },
3849
+ "displayOptions": {
3850
+ "show": {
3851
+ "resource": [
3852
+ "Buckets"
3853
+ ],
3854
+ "operation": [
3855
+ "Storage Buckets Test Iam Permissions"
3856
+ ]
3857
+ }
3858
+ }
3859
+ },
3860
+ {
3861
+ "displayName": "User Project",
3862
+ "name": "userProject",
3863
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
3864
+ "default": "",
3865
+ "type": "string",
3866
+ "routing": {
3867
+ "send": {
3868
+ "type": "query",
3869
+ "property": "userProject",
3870
+ "value": "={{ $value }}",
3871
+ "propertyInDotNotation": false
3872
+ }
3873
+ },
3874
+ "displayOptions": {
3875
+ "show": {
3876
+ "resource": [
3877
+ "Buckets"
3878
+ ],
3879
+ "operation": [
3880
+ "Storage Buckets Test Iam Permissions"
3881
+ ]
3882
+ }
3883
+ }
3884
+ },
3885
+ {
3886
+ "displayName": "POST /b/{bucket}/lockRetentionPolicy",
3887
+ "name": "operation",
3888
+ "type": "notice",
3889
+ "typeOptions": {
3890
+ "theme": "info"
3891
+ },
3892
+ "default": "",
3893
+ "displayOptions": {
3894
+ "show": {
3895
+ "resource": [
3896
+ "Buckets"
3897
+ ],
3898
+ "operation": [
3899
+ "Storage Buckets Lock Retention Policy"
3900
+ ]
3901
+ }
3902
+ }
3903
+ },
3904
+ {
3905
+ "displayName": "Bucket",
3906
+ "name": "bucket",
3907
+ "required": true,
3908
+ "description": "Name of a bucket.",
3909
+ "default": "",
3910
+ "type": "string",
3911
+ "displayOptions": {
3912
+ "show": {
3913
+ "resource": [
3914
+ "Buckets"
3915
+ ],
3916
+ "operation": [
3917
+ "Storage Buckets Lock Retention Policy"
3918
+ ]
3919
+ }
3920
+ }
3921
+ },
3922
+ {
3923
+ "displayName": "If Metageneration Match",
3924
+ "name": "ifMetagenerationMatch",
3925
+ "required": true,
3926
+ "description": "Makes the operation conditional on whether bucket's current metageneration matches the given value.",
3927
+ "default": "",
3928
+ "type": "string",
3929
+ "routing": {
3930
+ "send": {
3931
+ "type": "query",
3932
+ "property": "ifMetagenerationMatch",
3933
+ "value": "={{ $value }}",
3934
+ "propertyInDotNotation": false
3935
+ }
3936
+ },
3937
+ "displayOptions": {
3938
+ "show": {
3939
+ "resource": [
3940
+ "Buckets"
3941
+ ],
3942
+ "operation": [
3943
+ "Storage Buckets Lock Retention Policy"
3944
+ ]
3945
+ }
3946
+ }
3947
+ },
3948
+ {
3949
+ "displayName": "User Project",
3950
+ "name": "userProject",
3951
+ "description": "The project to be billed for this request. Required for Requester Pays buckets.",
3952
+ "default": "",
3953
+ "type": "string",
3954
+ "routing": {
3955
+ "send": {
3956
+ "type": "query",
3957
+ "property": "userProject",
3958
+ "value": "={{ $value }}",
3959
+ "propertyInDotNotation": false
3960
+ }
3961
+ },
3962
+ "displayOptions": {
3963
+ "show": {
3964
+ "resource": [
3965
+ "Buckets"
3966
+ ],
3967
+ "operation": [
3968
+ "Storage Buckets Lock Retention Policy"
3969
+ ]
3970
+ }
3971
+ }
3972
+ },
3973
+ ];
3974
+ //# sourceMappingURL=index.js.map