@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,896 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.projectsDescription = void 0;
4
+ exports.projectsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Projects"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Storage Projects Hmac Keys List",
20
+ "value": "Storage Projects Hmac Keys List",
21
+ "action": "Storage Projects Hmac Keys List",
22
+ "description": "Retrieves a list of HMAC keys matching the criteria.",
23
+ "routing": {
24
+ "request": {
25
+ "method": "GET",
26
+ "url": "=/projects/{{$parameter[\"projectId\"]}}/hmacKeys"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Storage Projects Hmac Keys Create",
32
+ "value": "Storage Projects Hmac Keys Create",
33
+ "action": "Storage Projects Hmac Keys Create",
34
+ "description": "Creates a new HMAC key for the specified service account.",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/projects/{{$parameter[\"projectId\"]}}/hmacKeys"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Storage Projects Hmac Keys Delete",
44
+ "value": "Storage Projects Hmac Keys Delete",
45
+ "action": "Storage Projects Hmac Keys Delete",
46
+ "description": "Deletes an HMAC key.",
47
+ "routing": {
48
+ "request": {
49
+ "method": "DELETE",
50
+ "url": "=/projects/{{$parameter[\"projectId\"]}}/hmacKeys/{{$parameter[\"accessId\"]}}"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Storage Projects Hmac Keys Get",
56
+ "value": "Storage Projects Hmac Keys Get",
57
+ "action": "Storage Projects Hmac Keys Get",
58
+ "description": "Retrieves an HMAC key's metadata",
59
+ "routing": {
60
+ "request": {
61
+ "method": "GET",
62
+ "url": "=/projects/{{$parameter[\"projectId\"]}}/hmacKeys/{{$parameter[\"accessId\"]}}"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "name": "Storage Projects Hmac Keys Update",
68
+ "value": "Storage Projects Hmac Keys Update",
69
+ "action": "Storage Projects Hmac Keys Update",
70
+ "description": "Updates the state of an HMAC key. See the HMAC Key resource descriptor for valid states.",
71
+ "routing": {
72
+ "request": {
73
+ "method": "PUT",
74
+ "url": "=/projects/{{$parameter[\"projectId\"]}}/hmacKeys/{{$parameter[\"accessId\"]}}"
75
+ }
76
+ }
77
+ },
78
+ {
79
+ "name": "Storage Projects Service Account Get",
80
+ "value": "Storage Projects Service Account Get",
81
+ "action": "Storage Projects Service Account Get",
82
+ "description": "Get the email address of this project's Google Cloud Storage service account.",
83
+ "routing": {
84
+ "request": {
85
+ "method": "GET",
86
+ "url": "=/projects/{{$parameter[\"projectId\"]}}/serviceAccount"
87
+ }
88
+ }
89
+ }
90
+ ],
91
+ "default": ""
92
+ },
93
+ {
94
+ "displayName": "GET /projects/{projectId}/hmacKeys",
95
+ "name": "operation",
96
+ "type": "notice",
97
+ "typeOptions": {
98
+ "theme": "info"
99
+ },
100
+ "default": "",
101
+ "displayOptions": {
102
+ "show": {
103
+ "resource": [
104
+ "Projects"
105
+ ],
106
+ "operation": [
107
+ "Storage Projects Hmac Keys List"
108
+ ]
109
+ }
110
+ }
111
+ },
112
+ {
113
+ "displayName": "Project ID",
114
+ "name": "projectId",
115
+ "required": true,
116
+ "description": "Name of the project in which to look for HMAC keys.",
117
+ "default": "",
118
+ "type": "string",
119
+ "displayOptions": {
120
+ "show": {
121
+ "resource": [
122
+ "Projects"
123
+ ],
124
+ "operation": [
125
+ "Storage Projects Hmac Keys List"
126
+ ]
127
+ }
128
+ }
129
+ },
130
+ {
131
+ "displayName": "Max Results",
132
+ "name": "maxResults",
133
+ "description": "Maximum number of items to return in a single page of responses. The service uses this parameter or 250 items, whichever is smaller. The max number of items per page will also be limited by the number of distinct service accounts in the response. If the number of service accounts in a single response is too high, the page will truncated and a next page token will be returned.",
134
+ "default": 0,
135
+ "type": "number",
136
+ "routing": {
137
+ "send": {
138
+ "type": "query",
139
+ "property": "maxResults",
140
+ "value": "={{ $value }}",
141
+ "propertyInDotNotation": false
142
+ }
143
+ },
144
+ "displayOptions": {
145
+ "show": {
146
+ "resource": [
147
+ "Projects"
148
+ ],
149
+ "operation": [
150
+ "Storage Projects Hmac Keys List"
151
+ ]
152
+ }
153
+ }
154
+ },
155
+ {
156
+ "displayName": "Page Token",
157
+ "name": "pageToken",
158
+ "description": "A previously-returned page token representing part of the larger set of results to view.",
159
+ "default": "",
160
+ "type": "string",
161
+ "routing": {
162
+ "send": {
163
+ "type": "query",
164
+ "property": "pageToken",
165
+ "value": "={{ $value }}",
166
+ "propertyInDotNotation": false
167
+ }
168
+ },
169
+ "displayOptions": {
170
+ "show": {
171
+ "resource": [
172
+ "Projects"
173
+ ],
174
+ "operation": [
175
+ "Storage Projects Hmac Keys List"
176
+ ]
177
+ }
178
+ }
179
+ },
180
+ {
181
+ "displayName": "Service Account Email",
182
+ "name": "serviceAccountEmail",
183
+ "description": "If present, only keys for the given service account are returned.",
184
+ "default": "",
185
+ "type": "string",
186
+ "routing": {
187
+ "send": {
188
+ "type": "query",
189
+ "property": "serviceAccountEmail",
190
+ "value": "={{ $value }}",
191
+ "propertyInDotNotation": false
192
+ }
193
+ },
194
+ "displayOptions": {
195
+ "show": {
196
+ "resource": [
197
+ "Projects"
198
+ ],
199
+ "operation": [
200
+ "Storage Projects Hmac Keys List"
201
+ ]
202
+ }
203
+ }
204
+ },
205
+ {
206
+ "displayName": "Show Deleted Keys",
207
+ "name": "showDeletedKeys",
208
+ "description": "Whether or not to show keys in the DELETED state.",
209
+ "default": true,
210
+ "type": "boolean",
211
+ "routing": {
212
+ "send": {
213
+ "type": "query",
214
+ "property": "showDeletedKeys",
215
+ "value": "={{ $value }}",
216
+ "propertyInDotNotation": false
217
+ }
218
+ },
219
+ "displayOptions": {
220
+ "show": {
221
+ "resource": [
222
+ "Projects"
223
+ ],
224
+ "operation": [
225
+ "Storage Projects Hmac Keys List"
226
+ ]
227
+ }
228
+ }
229
+ },
230
+ {
231
+ "displayName": "User Project",
232
+ "name": "userProject",
233
+ "description": "The project to be billed for this request.",
234
+ "default": "",
235
+ "type": "string",
236
+ "routing": {
237
+ "send": {
238
+ "type": "query",
239
+ "property": "userProject",
240
+ "value": "={{ $value }}",
241
+ "propertyInDotNotation": false
242
+ }
243
+ },
244
+ "displayOptions": {
245
+ "show": {
246
+ "resource": [
247
+ "Projects"
248
+ ],
249
+ "operation": [
250
+ "Storage Projects Hmac Keys List"
251
+ ]
252
+ }
253
+ }
254
+ },
255
+ {
256
+ "displayName": "POST /projects/{projectId}/hmacKeys",
257
+ "name": "operation",
258
+ "type": "notice",
259
+ "typeOptions": {
260
+ "theme": "info"
261
+ },
262
+ "default": "",
263
+ "displayOptions": {
264
+ "show": {
265
+ "resource": [
266
+ "Projects"
267
+ ],
268
+ "operation": [
269
+ "Storage Projects Hmac Keys Create"
270
+ ]
271
+ }
272
+ }
273
+ },
274
+ {
275
+ "displayName": "Project ID",
276
+ "name": "projectId",
277
+ "required": true,
278
+ "description": "Project ID owning the service account.",
279
+ "default": "",
280
+ "type": "string",
281
+ "displayOptions": {
282
+ "show": {
283
+ "resource": [
284
+ "Projects"
285
+ ],
286
+ "operation": [
287
+ "Storage Projects Hmac Keys Create"
288
+ ]
289
+ }
290
+ }
291
+ },
292
+ {
293
+ "displayName": "Service Account Email",
294
+ "name": "serviceAccountEmail",
295
+ "required": true,
296
+ "description": "Email address of the service account.",
297
+ "default": "",
298
+ "type": "string",
299
+ "routing": {
300
+ "send": {
301
+ "type": "query",
302
+ "property": "serviceAccountEmail",
303
+ "value": "={{ $value }}",
304
+ "propertyInDotNotation": false
305
+ }
306
+ },
307
+ "displayOptions": {
308
+ "show": {
309
+ "resource": [
310
+ "Projects"
311
+ ],
312
+ "operation": [
313
+ "Storage Projects Hmac Keys Create"
314
+ ]
315
+ }
316
+ }
317
+ },
318
+ {
319
+ "displayName": "User Project",
320
+ "name": "userProject",
321
+ "description": "The project to be billed for this request.",
322
+ "default": "",
323
+ "type": "string",
324
+ "routing": {
325
+ "send": {
326
+ "type": "query",
327
+ "property": "userProject",
328
+ "value": "={{ $value }}",
329
+ "propertyInDotNotation": false
330
+ }
331
+ },
332
+ "displayOptions": {
333
+ "show": {
334
+ "resource": [
335
+ "Projects"
336
+ ],
337
+ "operation": [
338
+ "Storage Projects Hmac Keys Create"
339
+ ]
340
+ }
341
+ }
342
+ },
343
+ {
344
+ "displayName": "DELETE /projects/{projectId}/hmacKeys/{accessId}",
345
+ "name": "operation",
346
+ "type": "notice",
347
+ "typeOptions": {
348
+ "theme": "info"
349
+ },
350
+ "default": "",
351
+ "displayOptions": {
352
+ "show": {
353
+ "resource": [
354
+ "Projects"
355
+ ],
356
+ "operation": [
357
+ "Storage Projects Hmac Keys Delete"
358
+ ]
359
+ }
360
+ }
361
+ },
362
+ {
363
+ "displayName": "Project ID",
364
+ "name": "projectId",
365
+ "required": true,
366
+ "description": "Project ID owning the requested key",
367
+ "default": "",
368
+ "type": "string",
369
+ "displayOptions": {
370
+ "show": {
371
+ "resource": [
372
+ "Projects"
373
+ ],
374
+ "operation": [
375
+ "Storage Projects Hmac Keys Delete"
376
+ ]
377
+ }
378
+ }
379
+ },
380
+ {
381
+ "displayName": "Access ID",
382
+ "name": "accessId",
383
+ "required": true,
384
+ "description": "Name of the HMAC key to be deleted.",
385
+ "default": "",
386
+ "type": "string",
387
+ "displayOptions": {
388
+ "show": {
389
+ "resource": [
390
+ "Projects"
391
+ ],
392
+ "operation": [
393
+ "Storage Projects Hmac Keys Delete"
394
+ ]
395
+ }
396
+ }
397
+ },
398
+ {
399
+ "displayName": "User Project",
400
+ "name": "userProject",
401
+ "description": "The project to be billed for this request.",
402
+ "default": "",
403
+ "type": "string",
404
+ "routing": {
405
+ "send": {
406
+ "type": "query",
407
+ "property": "userProject",
408
+ "value": "={{ $value }}",
409
+ "propertyInDotNotation": false
410
+ }
411
+ },
412
+ "displayOptions": {
413
+ "show": {
414
+ "resource": [
415
+ "Projects"
416
+ ],
417
+ "operation": [
418
+ "Storage Projects Hmac Keys Delete"
419
+ ]
420
+ }
421
+ }
422
+ },
423
+ {
424
+ "displayName": "GET /projects/{projectId}/hmacKeys/{accessId}",
425
+ "name": "operation",
426
+ "type": "notice",
427
+ "typeOptions": {
428
+ "theme": "info"
429
+ },
430
+ "default": "",
431
+ "displayOptions": {
432
+ "show": {
433
+ "resource": [
434
+ "Projects"
435
+ ],
436
+ "operation": [
437
+ "Storage Projects Hmac Keys Get"
438
+ ]
439
+ }
440
+ }
441
+ },
442
+ {
443
+ "displayName": "Project ID",
444
+ "name": "projectId",
445
+ "required": true,
446
+ "description": "Project ID owning the service account of the requested key.",
447
+ "default": "",
448
+ "type": "string",
449
+ "displayOptions": {
450
+ "show": {
451
+ "resource": [
452
+ "Projects"
453
+ ],
454
+ "operation": [
455
+ "Storage Projects Hmac Keys Get"
456
+ ]
457
+ }
458
+ }
459
+ },
460
+ {
461
+ "displayName": "Access ID",
462
+ "name": "accessId",
463
+ "required": true,
464
+ "description": "Name of the HMAC key.",
465
+ "default": "",
466
+ "type": "string",
467
+ "displayOptions": {
468
+ "show": {
469
+ "resource": [
470
+ "Projects"
471
+ ],
472
+ "operation": [
473
+ "Storage Projects Hmac Keys Get"
474
+ ]
475
+ }
476
+ }
477
+ },
478
+ {
479
+ "displayName": "User Project",
480
+ "name": "userProject",
481
+ "description": "The project to be billed for this request.",
482
+ "default": "",
483
+ "type": "string",
484
+ "routing": {
485
+ "send": {
486
+ "type": "query",
487
+ "property": "userProject",
488
+ "value": "={{ $value }}",
489
+ "propertyInDotNotation": false
490
+ }
491
+ },
492
+ "displayOptions": {
493
+ "show": {
494
+ "resource": [
495
+ "Projects"
496
+ ],
497
+ "operation": [
498
+ "Storage Projects Hmac Keys Get"
499
+ ]
500
+ }
501
+ }
502
+ },
503
+ {
504
+ "displayName": "PUT /projects/{projectId}/hmacKeys/{accessId}",
505
+ "name": "operation",
506
+ "type": "notice",
507
+ "typeOptions": {
508
+ "theme": "info"
509
+ },
510
+ "default": "",
511
+ "displayOptions": {
512
+ "show": {
513
+ "resource": [
514
+ "Projects"
515
+ ],
516
+ "operation": [
517
+ "Storage Projects Hmac Keys Update"
518
+ ]
519
+ }
520
+ }
521
+ },
522
+ {
523
+ "displayName": "Project ID",
524
+ "name": "projectId",
525
+ "required": true,
526
+ "description": "Project ID owning the service account of the updated key.",
527
+ "default": "",
528
+ "type": "string",
529
+ "displayOptions": {
530
+ "show": {
531
+ "resource": [
532
+ "Projects"
533
+ ],
534
+ "operation": [
535
+ "Storage Projects Hmac Keys Update"
536
+ ]
537
+ }
538
+ }
539
+ },
540
+ {
541
+ "displayName": "Access ID",
542
+ "name": "accessId",
543
+ "required": true,
544
+ "description": "Name of the HMAC key being updated.",
545
+ "default": "",
546
+ "type": "string",
547
+ "displayOptions": {
548
+ "show": {
549
+ "resource": [
550
+ "Projects"
551
+ ],
552
+ "operation": [
553
+ "Storage Projects Hmac Keys Update"
554
+ ]
555
+ }
556
+ }
557
+ },
558
+ {
559
+ "displayName": "User Project",
560
+ "name": "userProject",
561
+ "description": "The project to be billed for this request.",
562
+ "default": "",
563
+ "type": "string",
564
+ "routing": {
565
+ "send": {
566
+ "type": "query",
567
+ "property": "userProject",
568
+ "value": "={{ $value }}",
569
+ "propertyInDotNotation": false
570
+ }
571
+ },
572
+ "displayOptions": {
573
+ "show": {
574
+ "resource": [
575
+ "Projects"
576
+ ],
577
+ "operation": [
578
+ "Storage Projects Hmac Keys Update"
579
+ ]
580
+ }
581
+ }
582
+ },
583
+ {
584
+ "displayName": "Access ID",
585
+ "name": "accessId",
586
+ "type": "string",
587
+ "default": "",
588
+ "description": "The ID of the HMAC Key.",
589
+ "routing": {
590
+ "send": {
591
+ "property": "accessId",
592
+ "propertyInDotNotation": false,
593
+ "type": "body",
594
+ "value": "={{ $value }}"
595
+ }
596
+ },
597
+ "displayOptions": {
598
+ "show": {
599
+ "resource": [
600
+ "Projects"
601
+ ],
602
+ "operation": [
603
+ "Storage Projects Hmac Keys Update"
604
+ ]
605
+ }
606
+ }
607
+ },
608
+ {
609
+ "displayName": "Etag",
610
+ "name": "etag",
611
+ "type": "string",
612
+ "default": "",
613
+ "description": "HTTP 1.1 Entity tag for the HMAC key.",
614
+ "routing": {
615
+ "send": {
616
+ "property": "etag",
617
+ "propertyInDotNotation": false,
618
+ "type": "body",
619
+ "value": "={{ $value }}"
620
+ }
621
+ },
622
+ "displayOptions": {
623
+ "show": {
624
+ "resource": [
625
+ "Projects"
626
+ ],
627
+ "operation": [
628
+ "Storage Projects Hmac Keys Update"
629
+ ]
630
+ }
631
+ }
632
+ },
633
+ {
634
+ "displayName": "ID",
635
+ "name": "id",
636
+ "type": "string",
637
+ "default": "",
638
+ "description": "The ID of the HMAC key, including the Project ID and the Access ID.",
639
+ "routing": {
640
+ "send": {
641
+ "property": "id",
642
+ "propertyInDotNotation": false,
643
+ "type": "body",
644
+ "value": "={{ $value }}"
645
+ }
646
+ },
647
+ "displayOptions": {
648
+ "show": {
649
+ "resource": [
650
+ "Projects"
651
+ ],
652
+ "operation": [
653
+ "Storage Projects Hmac Keys Update"
654
+ ]
655
+ }
656
+ }
657
+ },
658
+ {
659
+ "displayName": "Kind",
660
+ "name": "kind",
661
+ "type": "string",
662
+ "default": "storage#hmacKeyMetadata",
663
+ "description": "The kind of item this is. For HMAC Key metadata, this is always storage#hmacKeyMetadata.",
664
+ "routing": {
665
+ "send": {
666
+ "property": "kind",
667
+ "propertyInDotNotation": false,
668
+ "type": "body",
669
+ "value": "={{ $value }}"
670
+ }
671
+ },
672
+ "displayOptions": {
673
+ "show": {
674
+ "resource": [
675
+ "Projects"
676
+ ],
677
+ "operation": [
678
+ "Storage Projects Hmac Keys Update"
679
+ ]
680
+ }
681
+ }
682
+ },
683
+ {
684
+ "displayName": "Project ID",
685
+ "name": "projectId",
686
+ "type": "string",
687
+ "default": "",
688
+ "description": "Project ID owning the service account to which the key authenticates.",
689
+ "routing": {
690
+ "send": {
691
+ "property": "projectId",
692
+ "propertyInDotNotation": false,
693
+ "type": "body",
694
+ "value": "={{ $value }}"
695
+ }
696
+ },
697
+ "displayOptions": {
698
+ "show": {
699
+ "resource": [
700
+ "Projects"
701
+ ],
702
+ "operation": [
703
+ "Storage Projects Hmac Keys Update"
704
+ ]
705
+ }
706
+ }
707
+ },
708
+ {
709
+ "displayName": "Self Link",
710
+ "name": "selfLink",
711
+ "type": "string",
712
+ "default": "",
713
+ "description": "The link to this resource.",
714
+ "routing": {
715
+ "send": {
716
+ "property": "selfLink",
717
+ "propertyInDotNotation": false,
718
+ "type": "body",
719
+ "value": "={{ $value }}"
720
+ }
721
+ },
722
+ "displayOptions": {
723
+ "show": {
724
+ "resource": [
725
+ "Projects"
726
+ ],
727
+ "operation": [
728
+ "Storage Projects Hmac Keys Update"
729
+ ]
730
+ }
731
+ }
732
+ },
733
+ {
734
+ "displayName": "Service Account Email",
735
+ "name": "serviceAccountEmail",
736
+ "type": "string",
737
+ "default": "",
738
+ "description": "The email address of the key's associated service account.",
739
+ "routing": {
740
+ "send": {
741
+ "property": "serviceAccountEmail",
742
+ "propertyInDotNotation": false,
743
+ "type": "body",
744
+ "value": "={{ $value }}"
745
+ }
746
+ },
747
+ "displayOptions": {
748
+ "show": {
749
+ "resource": [
750
+ "Projects"
751
+ ],
752
+ "operation": [
753
+ "Storage Projects Hmac Keys Update"
754
+ ]
755
+ }
756
+ }
757
+ },
758
+ {
759
+ "displayName": "State",
760
+ "name": "state",
761
+ "type": "string",
762
+ "default": "",
763
+ "description": "The state of the key. Can be one of ACTIVE, INACTIVE, or DELETED.",
764
+ "routing": {
765
+ "send": {
766
+ "property": "state",
767
+ "propertyInDotNotation": false,
768
+ "type": "body",
769
+ "value": "={{ $value }}"
770
+ }
771
+ },
772
+ "displayOptions": {
773
+ "show": {
774
+ "resource": [
775
+ "Projects"
776
+ ],
777
+ "operation": [
778
+ "Storage Projects Hmac Keys Update"
779
+ ]
780
+ }
781
+ }
782
+ },
783
+ {
784
+ "displayName": "Time Created",
785
+ "name": "timeCreated",
786
+ "type": "string",
787
+ "default": "",
788
+ "description": "The creation time of the HMAC key in RFC 3339 format.",
789
+ "routing": {
790
+ "send": {
791
+ "property": "timeCreated",
792
+ "propertyInDotNotation": false,
793
+ "type": "body",
794
+ "value": "={{ $value }}"
795
+ }
796
+ },
797
+ "displayOptions": {
798
+ "show": {
799
+ "resource": [
800
+ "Projects"
801
+ ],
802
+ "operation": [
803
+ "Storage Projects Hmac Keys Update"
804
+ ]
805
+ }
806
+ }
807
+ },
808
+ {
809
+ "displayName": "Updated",
810
+ "name": "updated",
811
+ "type": "string",
812
+ "default": "",
813
+ "description": "The last modification time of the HMAC key metadata in RFC 3339 format.",
814
+ "routing": {
815
+ "send": {
816
+ "property": "updated",
817
+ "propertyInDotNotation": false,
818
+ "type": "body",
819
+ "value": "={{ $value }}"
820
+ }
821
+ },
822
+ "displayOptions": {
823
+ "show": {
824
+ "resource": [
825
+ "Projects"
826
+ ],
827
+ "operation": [
828
+ "Storage Projects Hmac Keys Update"
829
+ ]
830
+ }
831
+ }
832
+ },
833
+ {
834
+ "displayName": "GET /projects/{projectId}/serviceAccount",
835
+ "name": "operation",
836
+ "type": "notice",
837
+ "typeOptions": {
838
+ "theme": "info"
839
+ },
840
+ "default": "",
841
+ "displayOptions": {
842
+ "show": {
843
+ "resource": [
844
+ "Projects"
845
+ ],
846
+ "operation": [
847
+ "Storage Projects Service Account Get"
848
+ ]
849
+ }
850
+ }
851
+ },
852
+ {
853
+ "displayName": "Project ID",
854
+ "name": "projectId",
855
+ "required": true,
856
+ "description": "Project ID",
857
+ "default": "",
858
+ "type": "string",
859
+ "displayOptions": {
860
+ "show": {
861
+ "resource": [
862
+ "Projects"
863
+ ],
864
+ "operation": [
865
+ "Storage Projects Service Account Get"
866
+ ]
867
+ }
868
+ }
869
+ },
870
+ {
871
+ "displayName": "User Project",
872
+ "name": "userProject",
873
+ "description": "The project to be billed for this request.",
874
+ "default": "",
875
+ "type": "string",
876
+ "routing": {
877
+ "send": {
878
+ "type": "query",
879
+ "property": "userProject",
880
+ "value": "={{ $value }}",
881
+ "propertyInDotNotation": false
882
+ }
883
+ },
884
+ "displayOptions": {
885
+ "show": {
886
+ "resource": [
887
+ "Projects"
888
+ ],
889
+ "operation": [
890
+ "Storage Projects Service Account Get"
891
+ ]
892
+ }
893
+ }
894
+ },
895
+ ];
896
+ //# sourceMappingURL=index.js.map