@n8n-dev/n8n-nodes-googleapis-sqladmin 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 (49) hide show
  1. package/README.md +206 -0
  2. package/dist/banner.svg +111 -0
  3. package/dist/credentials/GoogleapisSqladminApi.credentials.d.ts +9 -0
  4. package/dist/credentials/GoogleapisSqladminApi.credentials.js +49 -0
  5. package/dist/credentials/GoogleapisSqladminApi.credentials.js.map +1 -0
  6. package/dist/icons/googleapis-sqladmin.dark.svg +21 -0
  7. package/dist/icons/googleapis-sqladmin.svg +21 -0
  8. package/dist/nodes/GoogleapisSqladmin/GoogleapisSqladmin.node.d.ts +4 -0
  9. package/dist/nodes/GoogleapisSqladmin/GoogleapisSqladmin.node.js +117 -0
  10. package/dist/nodes/GoogleapisSqladmin/GoogleapisSqladmin.node.js.map +1 -0
  11. package/dist/nodes/GoogleapisSqladmin/GoogleapisSqladmin.node.json +20 -0
  12. package/dist/nodes/GoogleapisSqladmin/googleapis-sqladmin.dark.svg +21 -0
  13. package/dist/nodes/GoogleapisSqladmin/googleapis-sqladmin.svg +21 -0
  14. package/dist/nodes/GoogleapisSqladmin/resources/backup-runs/index.d.ts +2 -0
  15. package/dist/nodes/GoogleapisSqladmin/resources/backup-runs/index.js +871 -0
  16. package/dist/nodes/GoogleapisSqladmin/resources/backup-runs/index.js.map +1 -0
  17. package/dist/nodes/GoogleapisSqladmin/resources/connect/index.d.ts +2 -0
  18. package/dist/nodes/GoogleapisSqladmin/resources/connect/index.js +281 -0
  19. package/dist/nodes/GoogleapisSqladmin/resources/connect/index.js.map +1 -0
  20. package/dist/nodes/GoogleapisSqladmin/resources/databases/index.d.ts +2 -0
  21. package/dist/nodes/GoogleapisSqladmin/resources/databases/index.js +1171 -0
  22. package/dist/nodes/GoogleapisSqladmin/resources/databases/index.js.map +1 -0
  23. package/dist/nodes/GoogleapisSqladmin/resources/flags/index.d.ts +2 -0
  24. package/dist/nodes/GoogleapisSqladmin/resources/flags/index.js +78 -0
  25. package/dist/nodes/GoogleapisSqladmin/resources/flags/index.js.map +1 -0
  26. package/dist/nodes/GoogleapisSqladmin/resources/index.d.ts +10 -0
  27. package/dist/nodes/GoogleapisSqladmin/resources/index.js +24 -0
  28. package/dist/nodes/GoogleapisSqladmin/resources/index.js.map +1 -0
  29. package/dist/nodes/GoogleapisSqladmin/resources/instances/index.d.ts +2 -0
  30. package/dist/nodes/GoogleapisSqladmin/resources/instances/index.js +4968 -0
  31. package/dist/nodes/GoogleapisSqladmin/resources/instances/index.js.map +1 -0
  32. package/dist/nodes/GoogleapisSqladmin/resources/operations/index.d.ts +2 -0
  33. package/dist/nodes/GoogleapisSqladmin/resources/operations/index.js +213 -0
  34. package/dist/nodes/GoogleapisSqladmin/resources/operations/index.js.map +1 -0
  35. package/dist/nodes/GoogleapisSqladmin/resources/projects/index.d.ts +2 -0
  36. package/dist/nodes/GoogleapisSqladmin/resources/projects/index.js +677 -0
  37. package/dist/nodes/GoogleapisSqladmin/resources/projects/index.js.map +1 -0
  38. package/dist/nodes/GoogleapisSqladmin/resources/ssl-certs/index.d.ts +2 -0
  39. package/dist/nodes/GoogleapisSqladmin/resources/ssl-certs/index.js +468 -0
  40. package/dist/nodes/GoogleapisSqladmin/resources/ssl-certs/index.js.map +1 -0
  41. package/dist/nodes/GoogleapisSqladmin/resources/tiers/index.d.ts +2 -0
  42. package/dist/nodes/GoogleapisSqladmin/resources/tiers/index.js +71 -0
  43. package/dist/nodes/GoogleapisSqladmin/resources/tiers/index.js.map +1 -0
  44. package/dist/nodes/GoogleapisSqladmin/resources/users/index.d.ts +2 -0
  45. package/dist/nodes/GoogleapisSqladmin/resources/users/index.js +1114 -0
  46. package/dist/nodes/GoogleapisSqladmin/resources/users/index.js.map +1 -0
  47. package/dist/package.json +62 -0
  48. package/dist/tsconfig.tsbuildinfo +1 -0
  49. package/package.json +62 -0
@@ -0,0 +1,871 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.backupRunsDescription = void 0;
4
+ exports.backupRunsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Backup Runs"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "SQL Backup Runs List",
20
+ "value": "SQL Backup Runs List",
21
+ "action": "SQL Backup Runs List",
22
+ "description": "Lists all backup runs associated with the project or a given instance and configuration in the reverse chronological order of the backup initiation time.",
23
+ "routing": {
24
+ "request": {
25
+ "method": "GET",
26
+ "url": "=/v1/projects/{{$parameter[\"project\"]}}/instances/{{$parameter[\"instance\"]}}/backupRuns"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "SQL Backup Runs Insert",
32
+ "value": "SQL Backup Runs Insert",
33
+ "action": "SQL Backup Runs Insert",
34
+ "description": "Creates a new backup run on demand.",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/v1/projects/{{$parameter[\"project\"]}}/instances/{{$parameter[\"instance\"]}}/backupRuns"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "SQL Backup Runs Delete",
44
+ "value": "SQL Backup Runs Delete",
45
+ "action": "SQL Backup Runs Delete",
46
+ "description": "Deletes the backup taken by a backup run.",
47
+ "routing": {
48
+ "request": {
49
+ "method": "DELETE",
50
+ "url": "=/v1/projects/{{$parameter[\"project\"]}}/instances/{{$parameter[\"instance\"]}}/backupRuns/{{$parameter[\"id\"]}}"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "SQL Backup Runs Get",
56
+ "value": "SQL Backup Runs Get",
57
+ "action": "SQL Backup Runs Get",
58
+ "description": "Retrieves a resource containing information about a backup run.",
59
+ "routing": {
60
+ "request": {
61
+ "method": "GET",
62
+ "url": "=/v1/projects/{{$parameter[\"project\"]}}/instances/{{$parameter[\"instance\"]}}/backupRuns/{{$parameter[\"id\"]}}"
63
+ }
64
+ }
65
+ }
66
+ ],
67
+ "default": ""
68
+ },
69
+ {
70
+ "displayName": "GET /v1/projects/{project}/instances/{instance}/backupRuns",
71
+ "name": "operation",
72
+ "type": "notice",
73
+ "typeOptions": {
74
+ "theme": "info"
75
+ },
76
+ "default": "",
77
+ "displayOptions": {
78
+ "show": {
79
+ "resource": [
80
+ "Backup Runs"
81
+ ],
82
+ "operation": [
83
+ "SQL Backup Runs List"
84
+ ]
85
+ }
86
+ }
87
+ },
88
+ {
89
+ "displayName": "Project",
90
+ "name": "project",
91
+ "required": true,
92
+ "description": "Project ID of the project that contains the instance.",
93
+ "default": "",
94
+ "type": "string",
95
+ "displayOptions": {
96
+ "show": {
97
+ "resource": [
98
+ "Backup Runs"
99
+ ],
100
+ "operation": [
101
+ "SQL Backup Runs List"
102
+ ]
103
+ }
104
+ }
105
+ },
106
+ {
107
+ "displayName": "Instance",
108
+ "name": "instance",
109
+ "required": true,
110
+ "description": "Cloud SQL instance ID, or \"-\" for all instances. This does not include the project ID.",
111
+ "default": "",
112
+ "type": "string",
113
+ "displayOptions": {
114
+ "show": {
115
+ "resource": [
116
+ "Backup Runs"
117
+ ],
118
+ "operation": [
119
+ "SQL Backup Runs List"
120
+ ]
121
+ }
122
+ }
123
+ },
124
+ {
125
+ "displayName": "Max Results",
126
+ "name": "maxResults",
127
+ "description": "Maximum number of backup runs per response.",
128
+ "default": 0,
129
+ "type": "number",
130
+ "routing": {
131
+ "send": {
132
+ "type": "query",
133
+ "property": "maxResults",
134
+ "value": "={{ $value }}",
135
+ "propertyInDotNotation": false
136
+ }
137
+ },
138
+ "displayOptions": {
139
+ "show": {
140
+ "resource": [
141
+ "Backup Runs"
142
+ ],
143
+ "operation": [
144
+ "SQL Backup Runs List"
145
+ ]
146
+ }
147
+ }
148
+ },
149
+ {
150
+ "displayName": "Page Token",
151
+ "name": "pageToken",
152
+ "description": "A previously-returned page token representing part of the larger set of results to view.",
153
+ "default": "",
154
+ "type": "string",
155
+ "routing": {
156
+ "send": {
157
+ "type": "query",
158
+ "property": "pageToken",
159
+ "value": "={{ $value }}",
160
+ "propertyInDotNotation": false
161
+ }
162
+ },
163
+ "displayOptions": {
164
+ "show": {
165
+ "resource": [
166
+ "Backup Runs"
167
+ ],
168
+ "operation": [
169
+ "SQL Backup Runs List"
170
+ ]
171
+ }
172
+ }
173
+ },
174
+ {
175
+ "displayName": "POST /v1/projects/{project}/instances/{instance}/backupRuns",
176
+ "name": "operation",
177
+ "type": "notice",
178
+ "typeOptions": {
179
+ "theme": "info"
180
+ },
181
+ "default": "",
182
+ "displayOptions": {
183
+ "show": {
184
+ "resource": [
185
+ "Backup Runs"
186
+ ],
187
+ "operation": [
188
+ "SQL Backup Runs Insert"
189
+ ]
190
+ }
191
+ }
192
+ },
193
+ {
194
+ "displayName": "Project",
195
+ "name": "project",
196
+ "required": true,
197
+ "description": "Project ID of the project that contains the instance.",
198
+ "default": "",
199
+ "type": "string",
200
+ "displayOptions": {
201
+ "show": {
202
+ "resource": [
203
+ "Backup Runs"
204
+ ],
205
+ "operation": [
206
+ "SQL Backup Runs Insert"
207
+ ]
208
+ }
209
+ }
210
+ },
211
+ {
212
+ "displayName": "Instance",
213
+ "name": "instance",
214
+ "required": true,
215
+ "description": "Cloud SQL instance ID. This does not include the project ID.",
216
+ "default": "",
217
+ "type": "string",
218
+ "displayOptions": {
219
+ "show": {
220
+ "resource": [
221
+ "Backup Runs"
222
+ ],
223
+ "operation": [
224
+ "SQL Backup Runs Insert"
225
+ ]
226
+ }
227
+ }
228
+ },
229
+ {
230
+ "displayName": "Backup Kind",
231
+ "name": "backupKind",
232
+ "type": "options",
233
+ "default": "SQL_BACKUP_KIND_UNSPECIFIED",
234
+ "description": "Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT.",
235
+ "options": [
236
+ {
237
+ "name": "SQL BACKUP KIND UNSPECIFIED",
238
+ "value": "SQL_BACKUP_KIND_UNSPECIFIED"
239
+ },
240
+ {
241
+ "name": "SNAPSHOT",
242
+ "value": "SNAPSHOT"
243
+ },
244
+ {
245
+ "name": "PHYSICAL",
246
+ "value": "PHYSICAL"
247
+ }
248
+ ],
249
+ "routing": {
250
+ "send": {
251
+ "property": "backupKind",
252
+ "propertyInDotNotation": false,
253
+ "type": "body",
254
+ "value": "={{ $value }}"
255
+ }
256
+ },
257
+ "displayOptions": {
258
+ "show": {
259
+ "resource": [
260
+ "Backup Runs"
261
+ ],
262
+ "operation": [
263
+ "SQL Backup Runs Insert"
264
+ ]
265
+ }
266
+ }
267
+ },
268
+ {
269
+ "displayName": "Description",
270
+ "name": "description",
271
+ "type": "string",
272
+ "default": "",
273
+ "description": "The description of this run, only applicable to on-demand backups.",
274
+ "routing": {
275
+ "send": {
276
+ "property": "description",
277
+ "propertyInDotNotation": false,
278
+ "type": "body",
279
+ "value": "={{ $value }}"
280
+ }
281
+ },
282
+ "displayOptions": {
283
+ "show": {
284
+ "resource": [
285
+ "Backup Runs"
286
+ ],
287
+ "operation": [
288
+ "SQL Backup Runs Insert"
289
+ ]
290
+ }
291
+ }
292
+ },
293
+ {
294
+ "displayName": "Disk Encryption Configuration",
295
+ "name": "diskEncryptionConfiguration",
296
+ "type": "json",
297
+ "default": "{}",
298
+ "description": "Disk encryption configuration for an instance.",
299
+ "routing": {
300
+ "send": {
301
+ "property": "diskEncryptionConfiguration",
302
+ "propertyInDotNotation": false,
303
+ "type": "body",
304
+ "value": "={{ JSON.parse($value) }}"
305
+ }
306
+ },
307
+ "displayOptions": {
308
+ "show": {
309
+ "resource": [
310
+ "Backup Runs"
311
+ ],
312
+ "operation": [
313
+ "SQL Backup Runs Insert"
314
+ ]
315
+ }
316
+ }
317
+ },
318
+ {
319
+ "displayName": "Disk Encryption Status",
320
+ "name": "diskEncryptionStatus",
321
+ "type": "json",
322
+ "default": "{}",
323
+ "description": "Disk encryption status for an instance.",
324
+ "routing": {
325
+ "send": {
326
+ "property": "diskEncryptionStatus",
327
+ "propertyInDotNotation": false,
328
+ "type": "body",
329
+ "value": "={{ JSON.parse($value) }}"
330
+ }
331
+ },
332
+ "displayOptions": {
333
+ "show": {
334
+ "resource": [
335
+ "Backup Runs"
336
+ ],
337
+ "operation": [
338
+ "SQL Backup Runs Insert"
339
+ ]
340
+ }
341
+ }
342
+ },
343
+ {
344
+ "displayName": "End Time",
345
+ "name": "endTime",
346
+ "type": "string",
347
+ "default": "",
348
+ "description": "The time the backup operation completed in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.",
349
+ "routing": {
350
+ "send": {
351
+ "property": "endTime",
352
+ "propertyInDotNotation": false,
353
+ "type": "body",
354
+ "value": "={{ $value }}"
355
+ }
356
+ },
357
+ "displayOptions": {
358
+ "show": {
359
+ "resource": [
360
+ "Backup Runs"
361
+ ],
362
+ "operation": [
363
+ "SQL Backup Runs Insert"
364
+ ]
365
+ }
366
+ }
367
+ },
368
+ {
369
+ "displayName": "Enqueued Time",
370
+ "name": "enqueuedTime",
371
+ "type": "string",
372
+ "default": "",
373
+ "description": "The time the run was enqueued in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.",
374
+ "routing": {
375
+ "send": {
376
+ "property": "enqueuedTime",
377
+ "propertyInDotNotation": false,
378
+ "type": "body",
379
+ "value": "={{ $value }}"
380
+ }
381
+ },
382
+ "displayOptions": {
383
+ "show": {
384
+ "resource": [
385
+ "Backup Runs"
386
+ ],
387
+ "operation": [
388
+ "SQL Backup Runs Insert"
389
+ ]
390
+ }
391
+ }
392
+ },
393
+ {
394
+ "displayName": "Error",
395
+ "name": "error",
396
+ "type": "json",
397
+ "default": "{}",
398
+ "description": "Database instance operation error.",
399
+ "routing": {
400
+ "send": {
401
+ "property": "error",
402
+ "propertyInDotNotation": false,
403
+ "type": "body",
404
+ "value": "={{ JSON.parse($value) }}"
405
+ }
406
+ },
407
+ "displayOptions": {
408
+ "show": {
409
+ "resource": [
410
+ "Backup Runs"
411
+ ],
412
+ "operation": [
413
+ "SQL Backup Runs Insert"
414
+ ]
415
+ }
416
+ }
417
+ },
418
+ {
419
+ "displayName": "ID",
420
+ "name": "id",
421
+ "type": "string",
422
+ "default": "",
423
+ "description": "The identifier for this backup run. Unique only for a specific Cloud SQL instance.",
424
+ "routing": {
425
+ "send": {
426
+ "property": "id",
427
+ "propertyInDotNotation": false,
428
+ "type": "body",
429
+ "value": "={{ $value }}"
430
+ }
431
+ },
432
+ "displayOptions": {
433
+ "show": {
434
+ "resource": [
435
+ "Backup Runs"
436
+ ],
437
+ "operation": [
438
+ "SQL Backup Runs Insert"
439
+ ]
440
+ }
441
+ }
442
+ },
443
+ {
444
+ "displayName": "Instance",
445
+ "name": "instance",
446
+ "type": "string",
447
+ "default": "",
448
+ "description": "Name of the database instance.",
449
+ "routing": {
450
+ "send": {
451
+ "property": "instance",
452
+ "propertyInDotNotation": false,
453
+ "type": "body",
454
+ "value": "={{ $value }}"
455
+ }
456
+ },
457
+ "displayOptions": {
458
+ "show": {
459
+ "resource": [
460
+ "Backup Runs"
461
+ ],
462
+ "operation": [
463
+ "SQL Backup Runs Insert"
464
+ ]
465
+ }
466
+ }
467
+ },
468
+ {
469
+ "displayName": "Kind",
470
+ "name": "kind",
471
+ "type": "string",
472
+ "default": "",
473
+ "description": "This is always `sql#backupRun`.",
474
+ "routing": {
475
+ "send": {
476
+ "property": "kind",
477
+ "propertyInDotNotation": false,
478
+ "type": "body",
479
+ "value": "={{ $value }}"
480
+ }
481
+ },
482
+ "displayOptions": {
483
+ "show": {
484
+ "resource": [
485
+ "Backup Runs"
486
+ ],
487
+ "operation": [
488
+ "SQL Backup Runs Insert"
489
+ ]
490
+ }
491
+ }
492
+ },
493
+ {
494
+ "displayName": "Location",
495
+ "name": "location",
496
+ "type": "string",
497
+ "default": "",
498
+ "description": "Location of the backups.",
499
+ "routing": {
500
+ "send": {
501
+ "property": "location",
502
+ "propertyInDotNotation": false,
503
+ "type": "body",
504
+ "value": "={{ $value }}"
505
+ }
506
+ },
507
+ "displayOptions": {
508
+ "show": {
509
+ "resource": [
510
+ "Backup Runs"
511
+ ],
512
+ "operation": [
513
+ "SQL Backup Runs Insert"
514
+ ]
515
+ }
516
+ }
517
+ },
518
+ {
519
+ "displayName": "Self Link",
520
+ "name": "selfLink",
521
+ "type": "string",
522
+ "default": "",
523
+ "description": "The URI of this resource.",
524
+ "routing": {
525
+ "send": {
526
+ "property": "selfLink",
527
+ "propertyInDotNotation": false,
528
+ "type": "body",
529
+ "value": "={{ $value }}"
530
+ }
531
+ },
532
+ "displayOptions": {
533
+ "show": {
534
+ "resource": [
535
+ "Backup Runs"
536
+ ],
537
+ "operation": [
538
+ "SQL Backup Runs Insert"
539
+ ]
540
+ }
541
+ }
542
+ },
543
+ {
544
+ "displayName": "Start Time",
545
+ "name": "startTime",
546
+ "type": "string",
547
+ "default": "",
548
+ "description": "The time the backup operation actually started in UTC timezone in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.",
549
+ "routing": {
550
+ "send": {
551
+ "property": "startTime",
552
+ "propertyInDotNotation": false,
553
+ "type": "body",
554
+ "value": "={{ $value }}"
555
+ }
556
+ },
557
+ "displayOptions": {
558
+ "show": {
559
+ "resource": [
560
+ "Backup Runs"
561
+ ],
562
+ "operation": [
563
+ "SQL Backup Runs Insert"
564
+ ]
565
+ }
566
+ }
567
+ },
568
+ {
569
+ "displayName": "Status",
570
+ "name": "status",
571
+ "type": "options",
572
+ "default": "SQL_BACKUP_RUN_STATUS_UNSPECIFIED",
573
+ "description": "The status of this run.",
574
+ "options": [
575
+ {
576
+ "name": "SQL BACKUP RUN STATUS UNSPECIFIED",
577
+ "value": "SQL_BACKUP_RUN_STATUS_UNSPECIFIED"
578
+ },
579
+ {
580
+ "name": "ENQUEUED",
581
+ "value": "ENQUEUED"
582
+ },
583
+ {
584
+ "name": "OVERDUE",
585
+ "value": "OVERDUE"
586
+ },
587
+ {
588
+ "name": "RUNNING",
589
+ "value": "RUNNING"
590
+ },
591
+ {
592
+ "name": "FAILED",
593
+ "value": "FAILED"
594
+ },
595
+ {
596
+ "name": "SUCCESSFUL",
597
+ "value": "SUCCESSFUL"
598
+ },
599
+ {
600
+ "name": "SKIPPED",
601
+ "value": "SKIPPED"
602
+ },
603
+ {
604
+ "name": "DELETION PENDING",
605
+ "value": "DELETION_PENDING"
606
+ },
607
+ {
608
+ "name": "DELETION FAILED",
609
+ "value": "DELETION_FAILED"
610
+ },
611
+ {
612
+ "name": "DELETED",
613
+ "value": "DELETED"
614
+ }
615
+ ],
616
+ "routing": {
617
+ "send": {
618
+ "property": "status",
619
+ "propertyInDotNotation": false,
620
+ "type": "body",
621
+ "value": "={{ $value }}"
622
+ }
623
+ },
624
+ "displayOptions": {
625
+ "show": {
626
+ "resource": [
627
+ "Backup Runs"
628
+ ],
629
+ "operation": [
630
+ "SQL Backup Runs Insert"
631
+ ]
632
+ }
633
+ }
634
+ },
635
+ {
636
+ "displayName": "Time Zone",
637
+ "name": "timeZone",
638
+ "type": "string",
639
+ "default": "",
640
+ "description": "Backup time zone to prevent restores to an instance with a different time zone. Now relevant only for SQL Server.",
641
+ "routing": {
642
+ "send": {
643
+ "property": "timeZone",
644
+ "propertyInDotNotation": false,
645
+ "type": "body",
646
+ "value": "={{ $value }}"
647
+ }
648
+ },
649
+ "displayOptions": {
650
+ "show": {
651
+ "resource": [
652
+ "Backup Runs"
653
+ ],
654
+ "operation": [
655
+ "SQL Backup Runs Insert"
656
+ ]
657
+ }
658
+ }
659
+ },
660
+ {
661
+ "displayName": "Type",
662
+ "name": "type",
663
+ "type": "options",
664
+ "default": "SQL_BACKUP_RUN_TYPE_UNSPECIFIED",
665
+ "description": "The type of this run; can be either \"AUTOMATED\" or \"ON_DEMAND\" or \"FINAL\". This field defaults to \"ON_DEMAND\" and is ignored, when specified for insert requests.",
666
+ "options": [
667
+ {
668
+ "name": "SQL BACKUP RUN TYPE UNSPECIFIED",
669
+ "value": "SQL_BACKUP_RUN_TYPE_UNSPECIFIED"
670
+ },
671
+ {
672
+ "name": "AUTOMATED",
673
+ "value": "AUTOMATED"
674
+ },
675
+ {
676
+ "name": "ON DEMAND",
677
+ "value": "ON_DEMAND"
678
+ }
679
+ ],
680
+ "routing": {
681
+ "send": {
682
+ "property": "type",
683
+ "propertyInDotNotation": false,
684
+ "type": "body",
685
+ "value": "={{ $value }}"
686
+ }
687
+ },
688
+ "displayOptions": {
689
+ "show": {
690
+ "resource": [
691
+ "Backup Runs"
692
+ ],
693
+ "operation": [
694
+ "SQL Backup Runs Insert"
695
+ ]
696
+ }
697
+ }
698
+ },
699
+ {
700
+ "displayName": "Window Start Time",
701
+ "name": "windowStartTime",
702
+ "type": "string",
703
+ "default": "",
704
+ "description": "The start time of the backup window during which this the backup was attempted in [RFC 3339](https://tools.ietf.org/html/rfc3339) format, for example `2012-11-15T16:19:00.094Z`.",
705
+ "routing": {
706
+ "send": {
707
+ "property": "windowStartTime",
708
+ "propertyInDotNotation": false,
709
+ "type": "body",
710
+ "value": "={{ $value }}"
711
+ }
712
+ },
713
+ "displayOptions": {
714
+ "show": {
715
+ "resource": [
716
+ "Backup Runs"
717
+ ],
718
+ "operation": [
719
+ "SQL Backup Runs Insert"
720
+ ]
721
+ }
722
+ }
723
+ },
724
+ {
725
+ "displayName": "DELETE /v1/projects/{project}/instances/{instance}/backupRuns/{id}",
726
+ "name": "operation",
727
+ "type": "notice",
728
+ "typeOptions": {
729
+ "theme": "info"
730
+ },
731
+ "default": "",
732
+ "displayOptions": {
733
+ "show": {
734
+ "resource": [
735
+ "Backup Runs"
736
+ ],
737
+ "operation": [
738
+ "SQL Backup Runs Delete"
739
+ ]
740
+ }
741
+ }
742
+ },
743
+ {
744
+ "displayName": "Project",
745
+ "name": "project",
746
+ "required": true,
747
+ "description": "Project ID of the project that contains the instance.",
748
+ "default": "",
749
+ "type": "string",
750
+ "displayOptions": {
751
+ "show": {
752
+ "resource": [
753
+ "Backup Runs"
754
+ ],
755
+ "operation": [
756
+ "SQL Backup Runs Delete"
757
+ ]
758
+ }
759
+ }
760
+ },
761
+ {
762
+ "displayName": "Instance",
763
+ "name": "instance",
764
+ "required": true,
765
+ "description": "Cloud SQL instance ID. This does not include the project ID.",
766
+ "default": "",
767
+ "type": "string",
768
+ "displayOptions": {
769
+ "show": {
770
+ "resource": [
771
+ "Backup Runs"
772
+ ],
773
+ "operation": [
774
+ "SQL Backup Runs Delete"
775
+ ]
776
+ }
777
+ }
778
+ },
779
+ {
780
+ "displayName": "ID",
781
+ "name": "id",
782
+ "required": true,
783
+ "description": "The ID of the backup run to delete. To find a backup run ID, use the [list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/backupRuns/list) method.",
784
+ "default": "",
785
+ "type": "string",
786
+ "displayOptions": {
787
+ "show": {
788
+ "resource": [
789
+ "Backup Runs"
790
+ ],
791
+ "operation": [
792
+ "SQL Backup Runs Delete"
793
+ ]
794
+ }
795
+ }
796
+ },
797
+ {
798
+ "displayName": "GET /v1/projects/{project}/instances/{instance}/backupRuns/{id}",
799
+ "name": "operation",
800
+ "type": "notice",
801
+ "typeOptions": {
802
+ "theme": "info"
803
+ },
804
+ "default": "",
805
+ "displayOptions": {
806
+ "show": {
807
+ "resource": [
808
+ "Backup Runs"
809
+ ],
810
+ "operation": [
811
+ "SQL Backup Runs Get"
812
+ ]
813
+ }
814
+ }
815
+ },
816
+ {
817
+ "displayName": "Project",
818
+ "name": "project",
819
+ "required": true,
820
+ "description": "Project ID of the project that contains the instance.",
821
+ "default": "",
822
+ "type": "string",
823
+ "displayOptions": {
824
+ "show": {
825
+ "resource": [
826
+ "Backup Runs"
827
+ ],
828
+ "operation": [
829
+ "SQL Backup Runs Get"
830
+ ]
831
+ }
832
+ }
833
+ },
834
+ {
835
+ "displayName": "Instance",
836
+ "name": "instance",
837
+ "required": true,
838
+ "description": "Cloud SQL instance ID. This does not include the project ID.",
839
+ "default": "",
840
+ "type": "string",
841
+ "displayOptions": {
842
+ "show": {
843
+ "resource": [
844
+ "Backup Runs"
845
+ ],
846
+ "operation": [
847
+ "SQL Backup Runs Get"
848
+ ]
849
+ }
850
+ }
851
+ },
852
+ {
853
+ "displayName": "ID",
854
+ "name": "id",
855
+ "required": true,
856
+ "description": "The ID of this backup run.",
857
+ "default": "",
858
+ "type": "string",
859
+ "displayOptions": {
860
+ "show": {
861
+ "resource": [
862
+ "Backup Runs"
863
+ ],
864
+ "operation": [
865
+ "SQL Backup Runs Get"
866
+ ]
867
+ }
868
+ }
869
+ },
870
+ ];
871
+ //# sourceMappingURL=index.js.map