-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathdoctl.ts
516 lines (515 loc) · 13.3 KB
/
doctl.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
const DigitalOceanCTLCompletionSpec: Fig.Spec = {
name: "doctl",
description: "The official DigitalOcean command line interface (CLI)",
subcommands: [
{
name: "completion",
description:
"Configure your terminal's shell so that doctl commands autocomplete when you press the TAB key",
args: {
name: "shell",
suggestions: ["bash", "zsh", "fish"],
},
},
{
name: "help",
description: "Display help about commands",
args: {
name: "command",
},
},
{
name: "1-click",
description:
"The commands under `doctl 1-click` are for interacting with DigitalOcean 1-Click applications",
subcommands: [
{
name: "list",
},
],
},
{
name: "account",
description:
"The subcommands of `doctl account` retrieve information about DigitalOcean accounts",
subcommands: [
{
name: "get",
description: "Retrieve account profile details",
},
{
name: "ratelimit",
description: "Retrieve your API usage and the remaining quota",
},
],
},
{
name: "apps",
description: "Display commands for working with apps",
subcommands: [
{
name: "create",
description: "Create an app",
},
{
name: "create-deployment",
description: "Create a deployment",
},
{
name: "delete",
description: "Deletes an app",
},
{
name: "get",
description: "Get an app",
},
{
name: "get-deployment",
description: "Get a deployment",
},
{
name: "list",
description: "List all apps",
},
{
name: "list-alerts",
description: "List alerts on an app",
},
{
name: "list-deployments",
description: "List all deployments",
},
{
name: "list-regions",
description: "List App Platform regions",
},
{
name: "logs",
description: "Get logs",
},
{
name: "propose",
description: "Propose an app spec",
},
{
name: "spec",
description: "Display commands for working with app specs",
},
{
name: "tier",
description: "Display commands for working with app tiers",
},
{
name: "update",
description: "Update an app",
},
{
name: "update-alert-destinations",
description: "Update alert destinations",
},
],
},
{
name: "auth",
description: "Display commands for authenticating doctl with an account",
subcommands: [
{
name: "init",
description: "Initialize doctl to use a specific account",
},
{
name: "list",
description: "List available authentication contexts",
},
{
name: "remove",
description: "Remove authentication contexts",
},
{
name: "switch",
description: "Switches between authentication contexts",
},
],
},
{
name: "balance",
description: "Display commands for retrieving your account balance",
subcommands: [
{
name: "get",
description: "Retrieve your account balance",
},
],
},
{
name: "billing-history",
description: "Display commands for retrieving your billing history",
subcommands: [
{
name: "list",
description: "Retrieve a paginated billing history for a user",
},
],
},
{
name: "compute",
description: "Display commands that manage infrastructure",
subcommands: [
{
name: "action",
description:
"Display commands for retrieving resource action history",
},
{
name: "cdn",
description: "Display commands that manage CDNs",
},
{
name: "certificate",
description:
"Display commands that manage SSL certificates and private keys",
},
{
name: "domain",
description: "Display commands that manage domains",
},
{
name: "droplet",
description: "Manage virtual machines (Droplets)",
},
{
name: "droplet-action",
description: "Display Droplet action commands",
},
{
name: "firewall",
description: "Display commands to manage cloud firewalls",
},
{
name: "floating-ip",
description: "Display commands to manage floating IP addresses",
},
{
name: "floating-ip-action",
description:
"Display commands to associate floating IP addresses with Droplets",
},
{
name: "image",
description: "Display commands to manage images",
},
{
name: "image-action",
description: "Display commands to perform actions on images",
},
{
name: "load-balancer",
description: "Display commands to manage load balancers",
},
{
name: "region",
description: "Display commands to list datacenter regions",
},
{
name: "size",
description: "List available Droplet sizes",
},
{
name: "snapshot",
description: "Access and manage snapshots",
},
{
name: "ssh",
description: "Access a Droplet using SSH",
},
{
name: "ssh-key",
description: "Display commands to manage SSH keys on your account",
},
{
name: "tag",
description: "Display commands to manage tags",
},
{
name: "volume",
description: "Display commands to manage block storage volumes",
},
{
name: "volume-action",
description: "Display commands to perform actions on a volume",
},
],
},
{
name: "databases",
description: "Display commands that manage databases",
subcommands: [
{
name: "backups",
description: "List database cluster backups",
},
{
name: "connection",
description: "Retrieve connection details for a database cluster",
},
{
name: "create",
description: "Create a database cluster",
},
{
name: "db",
description:
"Display commands for managing individual databases within a cluster",
},
{
name: "delete",
description: "Delete a database cluster",
},
{
name: "firewalls",
description:
"Display commands to manage firewall rules (called `trusted sources` in the control panel) for database clusters",
},
{
name: "get",
description: "Get details for a database cluster",
},
{
name: "list",
description: "List your database clusters",
},
{
name: "maintenance-window",
description:
"Display commands for scheduling automatic maintenance on your database cluster",
},
{
name: "migrate",
description: "Migrate a database cluster to a new region",
},
{
name: "pool",
description: "Display commands for managing connection pools",
},
{
name: "replica",
description: "Display commands to manage read-only database replicas",
},
{
name: "resize",
description: "Resize a database cluster",
},
{
name: "sql-mode",
description:
"Display commands to configure a MySQL database cluster's SQL modes",
},
{
name: "user",
description: "Display commands for managing database users",
},
],
},
{
name: "invoice",
description: "Display commands for retrieving invoices for your account",
subcommands: [
{
name: "csv",
description: "Download a CSV file of an invoice",
},
{
name: "get",
description: "Retrieve a list of all the items on an invoice",
},
{
name: "list",
description: "List all of the invoices for your account",
},
{
name: "pdf",
description: "Download a PDF file of an invoice",
},
{
name: "summary",
description: "Get a summary of an invoice",
},
],
},
{
name: "kubernetes",
description:
"Displays commands to manage Kubernetes clusters and configurations",
subcommands: [
{
name: "1-click",
description:
"Display commands that pertain to kubernetes 1-click applications",
},
{
name: "cluster",
description: "Display commands for managing Kubernetes clusters",
},
{
name: "options",
description:
"List possible option values for use inside Kubernetes commands",
},
],
},
{
name: "monitoring",
description: "[Beta] Display commands to manage monitoring",
subcommands: [
{
name: "alert",
description: "Display commands for managing alert policies",
},
],
},
{
name: "projects",
description: "Manage projects and assign resources to them",
subcommands: [
{
name: "create",
description: "Create a new project",
},
{
name: "delete",
description: "Delete the specified project",
},
{
name: "get",
description: "Retrieve details for a specific project",
},
{
name: "list",
description: "List existing projects",
},
{
name: "resources",
description: "Manage resources assigned to a project",
},
{
name: "update",
description: "Update an existing project",
},
],
},
{
name: "registry",
description: "Display commands for working with container registries",
subcommands: [
{
name: "create",
description: "Create a private container registry",
},
{
name: "delete",
description: "Delete a container registry",
},
{
name: "docker-config",
description: "Generate a docker auth configuration for a registry",
},
{
name: "garbage-collection",
description:
"Display commands for garbage collection for a container registry",
},
{
name: "get",
description: "Retrieve details about a container registry",
},
{
name: "kubernetes-manifest",
description: "Generate a Kubernetes secret manifest for a registry",
},
{
name: "login",
description: "Log in Docker to a container registry",
},
{
name: "logout",
description: "Log out Docker from a container registry",
},
{
name: "options",
description: "List available container registry options",
},
{
name: "repository",
description:
"Display commands for working with repositories in a container registry",
},
],
},
{
name: "vpcs",
description: "Display commands that manage VPCs",
subcommands: [
{
name: "create",
description: "Create a new VPC",
},
{
name: "delete",
description: "Permanently delete a VPC",
},
{
name: "get",
description: "Retrieve a VPC",
},
{
name: "list",
description: "List VPCs",
},
{
name: "update",
description: "Update a VPC's configuration",
},
],
},
],
options: [
{
name: ["-h", "--help"],
description: "Help for doctl",
},
{
name: ["-v", "--verbose"],
description: "Enable verbose output",
},
{
name: ["-o", "--output"],
args: {
name: "format",
suggestions: ["text", "json"],
default: "text",
},
description: "Desired output format",
},
{
name: "--trace",
description: "Show a log of network activity while performing a command",
},
{
name: ["-c", "--config"],
description: 'Specify a custom config file (default "$HOME/config.yaml")',
},
{
name: ["-u", "--api-url"],
description: "Override default API endpoint",
},
{
name: ["-t", "--access-token"],
description: "API V2 access token",
},
{
name: "version",
description: "Show the current version",
},
],
};
export default DigitalOceanCTLCompletionSpec;