forked from scaleway/scaleway-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedge_services_cli.go
More file actions
2289 lines (2145 loc) · 67.5 KB
/
edge_services_cli.go
File metadata and controls
2289 lines (2145 loc) · 67.5 KB
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file was automatically generated. DO NOT EDIT.
// If you have any remark or suggestion do not hesitate to open an issue.
package edge_services
import (
"context"
"reflect"
"github.com/scaleway/scaleway-cli/v2/core"
edge_services "github.com/scaleway/scaleway-sdk-go/api/edge_services/v1beta1"
"github.com/scaleway/scaleway-sdk-go/scw"
)
// always import dependencies
var (
_ = scw.RegionFrPar
)
func GetGeneratedCommands() *core.Commands {
return core.NewCommands(
edgeServicesRoot(),
edgeServicesPipeline(),
edgeServicesDNSStage(),
edgeServicesTLSStage(),
edgeServicesCacheStage(),
edgeServicesWafStage(),
edgeServicesRouteStage(),
edgeServicesRouteRules(),
edgeServicesBackendStage(),
edgeServicesPurgeRequest(),
edgeServicesPipelineList(),
edgeServicesPipelineCreate(),
edgeServicesPipelineGet(),
edgeServicesPipelineUpdate(),
edgeServicesPipelineDelete(),
edgeServicesPipelineListHead(),
edgeServicesPipelineSetHead(),
edgeServicesDNSStageList(),
edgeServicesDNSStageCreate(),
edgeServicesDNSStageGet(),
edgeServicesDNSStageUpdate(),
edgeServicesDNSStageDelete(),
edgeServicesTLSStageList(),
edgeServicesTLSStageCreate(),
edgeServicesTLSStageGet(),
edgeServicesTLSStageUpdate(),
edgeServicesTLSStageDelete(),
edgeServicesCacheStageList(),
edgeServicesCacheStageCreate(),
edgeServicesCacheStageGet(),
edgeServicesCacheStageUpdate(),
edgeServicesCacheStageDelete(),
edgeServicesBackendStageList(),
edgeServicesBackendStageCreate(),
edgeServicesBackendStageGet(),
edgeServicesBackendStageUpdate(),
edgeServicesBackendStageDelete(),
edgeServicesWafStageList(),
edgeServicesWafStageCreate(),
edgeServicesWafStageGet(),
edgeServicesWafStageUpdate(),
edgeServicesWafStageDelete(),
edgeServicesRouteStageList(),
edgeServicesRouteStageCreate(),
edgeServicesRouteStageGet(),
edgeServicesRouteStageUpdate(),
edgeServicesRouteStageDelete(),
edgeServicesRouteRulesList(),
edgeServicesRouteRulesSet(),
edgeServicesRouteRulesAdd(),
edgeServicesPurgeRequestList(),
edgeServicesPurgeRequestCreate(),
edgeServicesPurgeRequestGet(),
)
}
func edgeServicesRoot() *core.Command {
return &core.Command{
Short: `Edge Services API`,
Long: ``,
Namespace: "edge-services",
}
}
func edgeServicesPipeline() *core.Command {
return &core.Command{
Short: `Pipeline management commands`,
Long: `Pipeline management commands.`,
Namespace: "edge-services",
Resource: "pipeline",
}
}
func edgeServicesDNSStage() *core.Command {
return &core.Command{
Short: `DNS-stage management commands`,
Long: `DNS-stage management commands.`,
Namespace: "edge-services",
Resource: "dns-stage",
}
}
func edgeServicesTLSStage() *core.Command {
return &core.Command{
Short: `TLS-stage management commands`,
Long: `TLS-stage management commands.`,
Namespace: "edge-services",
Resource: "tls-stage",
}
}
func edgeServicesCacheStage() *core.Command {
return &core.Command{
Short: `Cache-stage management commands`,
Long: `Cache-stage management commands.`,
Namespace: "edge-services",
Resource: "cache-stage",
}
}
func edgeServicesWafStage() *core.Command {
return &core.Command{
Short: `WAF-stage management commands`,
Long: `WAF-stage management commands.`,
Namespace: "edge-services",
Resource: "waf-stage",
}
}
func edgeServicesRouteStage() *core.Command {
return &core.Command{
Short: `Route-stage management commands`,
Long: `Route-stage management commands.`,
Namespace: "edge-services",
Resource: "route-stage",
}
}
func edgeServicesRouteRules() *core.Command {
return &core.Command{
Short: `Route-rules management commands`,
Long: `Route-rules management commands.`,
Namespace: "edge-services",
Resource: "route-rules",
}
}
func edgeServicesBackendStage() *core.Command {
return &core.Command{
Short: `Backend-stage management commands`,
Long: `Backend-stage management commands.`,
Namespace: "edge-services",
Resource: "backend-stage",
}
}
func edgeServicesPurgeRequest() *core.Command {
return &core.Command{
Short: `Purge-request management commands`,
Long: `Purge-request management commands.`,
Namespace: "edge-services",
Resource: "purge-request",
}
}
func edgeServicesPipelineList() *core.Command {
return &core.Command{
Short: `List pipelines`,
Long: `List all pipelines, for a Scaleway Organization or Scaleway Project. By default, the pipelines returned in the list are ordered by creation date in ascending order, though this can be modified via the ` + "`" + `order_by` + "`" + ` field.`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "list",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.ListPipelinesRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "order-by",
Short: `Sort order of pipelines in the response`,
Required: false,
Deprecated: false,
Positional: false,
EnumValues: []string{
"created_at_asc",
"created_at_desc",
"name_asc",
"name_desc",
},
},
{
Name: "name",
Short: `Pipeline name to filter for. Only pipelines with this string within their name will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "project-id",
Short: `Project ID to filter for. Only pipelines from this Project will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "has-backend-stage-lb",
Short: `Filter on backend stage. Only pipelines with a Load Balancer origin will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "organization-id",
Short: `Organization ID to filter for. Only pipelines from this Organization will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.ListPipelinesRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
opts := []scw.RequestOption{scw.WithAllPages()}
resp, err := api.ListPipelines(request, opts...)
if err != nil {
return nil, err
}
return resp.Pipelines, nil
},
}
}
func edgeServicesPipelineCreate() *core.Command {
return &core.Command{
Short: `Create pipeline`,
Long: `Create a new pipeline. You must specify a ` + "`" + `dns_stage_id` + "`" + ` to form a stage-chain that goes all the way to the backend stage (origin), so the HTTP request will be processed according to the stages you created.`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "create",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.CreatePipelineRequest{}),
ArgSpecs: core.ArgSpecs{
core.ProjectIDArgSpec(),
{
Name: "name",
Short: `Name of the pipeline`,
Required: true,
Deprecated: false,
Positional: false,
},
{
Name: "description",
Short: `Description of the pipeline`,
Required: true,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.CreatePipelineRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.CreatePipeline(request)
},
}
}
func edgeServicesPipelineGet() *core.Command {
return &core.Command{
Short: `Get pipeline`,
Long: `Retrieve information about an existing pipeline, specified by its ` + "`" + `pipeline_id` + "`" + `. Its full details, including errors, are returned in the response object.`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "get",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.GetPipelineRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "pipeline-id",
Short: `ID of the requested pipeline`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.GetPipelineRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.GetPipeline(request)
},
}
}
func edgeServicesPipelineUpdate() *core.Command {
return &core.Command{
Short: `Update pipeline`,
Long: `Update the parameters of an existing pipeline, specified by its ` + "`" + `pipeline_id` + "`" + `. Parameters which can be updated include the ` + "`" + `name` + "`" + `, ` + "`" + `description` + "`" + ` and ` + "`" + `dns_stage_id` + "`" + `.`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "update",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.UpdatePipelineRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "pipeline-id",
Short: `ID of the pipeline to update`,
Required: true,
Deprecated: false,
Positional: true,
},
{
Name: "name",
Short: `Name of the pipeline`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "description",
Short: `Description of the pipeline`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.UpdatePipelineRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.UpdatePipeline(request)
},
}
}
func edgeServicesPipelineDelete() *core.Command {
return &core.Command{
Short: `Delete pipeline`,
Long: `Delete an existing pipeline, specified by its ` + "`" + `pipeline_id` + "`" + `. Deleting a pipeline is permanent, and cannot be undone. Note that all stages linked to the pipeline are also deleted.`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "delete",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.DeletePipelineRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "pipeline-id",
Short: `ID of the pipeline to delete`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.DeletePipelineRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
e = api.DeletePipeline(request)
if e != nil {
return nil, e
}
return &core.SuccessResult{
Resource: "pipeline",
Verb: "delete",
}, nil
},
}
}
func edgeServicesPipelineListHead() *core.Command {
return &core.Command{
Short: `List Head stage for your pipeline.`,
Long: `List Head stage for your pipeline.`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "list-head",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.ListHeadStagesRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "pipeline-id",
Short: `ID of the pipeline to update`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.ListHeadStagesRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
opts := []scw.RequestOption{scw.WithAllPages()}
resp, err := api.ListHeadStages(request, opts...)
if err != nil {
return nil, err
}
return resp.HeadStages, nil
},
}
}
func edgeServicesPipelineSetHead() *core.Command {
return &core.Command{
Short: `Configure a entry point to your pipeline. You must specify a ` + "`" + `head stage` + "`" + ` to form a stage-chain that goes all the way to the backend stage (origin), so the HTTP request will be processed according to the stages you created.`,
Long: `You must specify either a ` + "`" + `add_new_head_stage` + "`" + ` (to add a new head stage), ` + "`" + `remove_head_stage` + "`" + ` (to remove a head stage) or ` + "`" + `swap_head_stage` + "`" + ` (to replace a head stage).`,
Namespace: "edge-services",
Resource: "pipeline",
Verb: "set-head",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.SetHeadStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "pipeline-id",
Short: `ID of the pipeline to update`,
Required: true,
Deprecated: false,
Positional: true,
},
{
Name: "add-new-head-stage.new-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "remove-head-stage.remove-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "swap-head-stage.new-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "swap-head-stage.current-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.SetHeadStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.SetHeadStage(request)
},
}
}
func edgeServicesDNSStageList() *core.Command {
return &core.Command{
Short: `List DNS stages`,
Long: `List all DNS stages, for a Scaleway Organization or Scaleway Project. By default, the DNS stages returned in the list are ordered by creation date in ascending order, though this can be modified via the ` + "`" + `order_by` + "`" + ` field.`,
Namespace: "edge-services",
Resource: "dns-stage",
Verb: "list",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.ListDNSStagesRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "order-by",
Short: `Sort order of DNS stages in the response`,
Required: false,
Deprecated: false,
Positional: false,
EnumValues: []string{
"created_at_asc",
"created_at_desc",
},
},
{
Name: "pipeline-id",
Short: `Pipeline ID to filter for. Only DNS stages from this pipeline will be returned`,
Required: true,
Deprecated: false,
Positional: false,
},
{
Name: "fqdn",
Short: `Fully Qualified Domain Name to filter for (in the format subdomain.example.com). Only DNS stages with this FQDN will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.ListDNSStagesRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
opts := []scw.RequestOption{scw.WithAllPages()}
resp, err := api.ListDNSStages(request, opts...)
if err != nil {
return nil, err
}
return resp.Stages, nil
},
}
}
func edgeServicesDNSStageCreate() *core.Command {
return &core.Command{
Short: `Create DNS stage`,
Long: `Create a new DNS stage. You must specify the ` + "`" + `fqdns` + "`" + ` field to customize the domain endpoint, using a domain you already own.`,
Namespace: "edge-services",
Resource: "dns-stage",
Verb: "create",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.CreateDNSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "fqdns.{index}",
Short: `Fully Qualified Domain Name (in the format subdomain.example.com) to attach to the stage`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "tls-stage-id",
Short: `TLS stage ID the DNS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "cache-stage-id",
Short: `Cache stage ID the DNS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "backend-stage-id",
Short: `Backend stage ID the DNS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "pipeline-id",
Short: `Pipeline ID the DNS stage belongs to`,
Required: true,
Deprecated: false,
Positional: false,
},
{
Name: "wildcard-domain",
Short: `Support of wildcard (subdomains) for the given domain (a wildcard certificate is required to make it work)`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.CreateDNSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.CreateDNSStage(request)
},
}
}
func edgeServicesDNSStageGet() *core.Command {
return &core.Command{
Short: `Get DNS stage`,
Long: `Retrieve information about an existing DNS stage, specified by its ` + "`" + `dns_stage_id` + "`" + `. Its full details, including FQDNs, are returned in the response object.`,
Namespace: "edge-services",
Resource: "dns-stage",
Verb: "get",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.GetDNSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "dns-stage-id",
Short: `ID of the requested DNS stage`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.GetDNSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.GetDNSStage(request)
},
}
}
func edgeServicesDNSStageUpdate() *core.Command {
return &core.Command{
Short: `Update DNS stage`,
Long: `Update the parameters of an existing DNS stage, specified by its ` + "`" + `dns_stage_id` + "`" + `.`,
Namespace: "edge-services",
Resource: "dns-stage",
Verb: "update",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.UpdateDNSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "dns-stage-id",
Short: `ID of the DNS stage to update`,
Required: true,
Deprecated: false,
Positional: true,
},
{
Name: "fqdns.{index}",
Short: `Fully Qualified Domain Name (in the format subdomain.example.com) attached to the stage`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "tls-stage-id",
Short: `TLS stage ID the DNS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "cache-stage-id",
Short: `Cache stage ID the DNS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "backend-stage-id",
Short: `Backend stage ID the DNS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "wildcard-domain",
Short: `Support of wildcard (subdomains) for the given domain (a wildcard certificate is required to make it work)`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.UpdateDNSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.UpdateDNSStage(request)
},
}
}
func edgeServicesDNSStageDelete() *core.Command {
return &core.Command{
Short: `Delete DNS stage`,
Long: `Delete an existing DNS stage, specified by its ` + "`" + `dns_stage_id` + "`" + `. Deleting a DNS stage is permanent, and cannot be undone.`,
Namespace: "edge-services",
Resource: "dns-stage",
Verb: "delete",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.DeleteDNSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "dns-stage-id",
Short: `ID of the DNS stage to delete`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.DeleteDNSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
e = api.DeleteDNSStage(request)
if e != nil {
return nil, e
}
return &core.SuccessResult{
Resource: "dns-stage",
Verb: "delete",
}, nil
},
}
}
func edgeServicesTLSStageList() *core.Command {
return &core.Command{
Short: `List TLS stages`,
Long: `List all TLS stages, for a Scaleway Organization or Scaleway Project. By default, the TLS stages returned in the list are ordered by creation date in ascending order, though this can be modified via the ` + "`" + `order_by` + "`" + ` field.`,
Namespace: "edge-services",
Resource: "tls-stage",
Verb: "list",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.ListTLSStagesRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "order-by",
Short: `Sort order of TLS stages in the response`,
Required: false,
Deprecated: false,
Positional: false,
EnumValues: []string{
"created_at_asc",
"created_at_desc",
},
},
{
Name: "pipeline-id",
Short: `Pipeline ID to filter for. Only TLS stages from this pipeline will be returned`,
Required: true,
Deprecated: false,
Positional: false,
},
{
Name: "secret-id",
Short: `Secret ID to filter for. Only TLS stages with this Secret ID will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "secret-region",
Short: `Secret region to filter for. Only TLS stages with a Secret in this region will be returned`,
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.ListTLSStagesRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
opts := []scw.RequestOption{scw.WithAllPages()}
resp, err := api.ListTLSStages(request, opts...)
if err != nil {
return nil, err
}
return resp.Stages, nil
},
}
}
func edgeServicesTLSStageCreate() *core.Command {
return &core.Command{
Short: `Create TLS stage`,
Long: `Create a new TLS stage. You must specify either the ` + "`" + `secrets` + "`" + ` or ` + "`" + `managed_certificate` + "`" + ` fields to customize the SSL/TLS certificate of your endpoint. Choose ` + "`" + `secrets` + "`" + ` if you are using a pre-existing certificate held in Scaleway Secret Manager, or ` + "`" + `managed_certificate` + "`" + ` to let Scaleway generate and manage a Let's Encrypt certificate for your customized endpoint.`,
Namespace: "edge-services",
Resource: "tls-stage",
Verb: "create",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.CreateTLSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "secrets.{index}.secret-id",
Short: `ID of the Secret`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "secrets.{index}.region",
Short: `Region of the Secret`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "managed-certificate",
Short: `True when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "cache-stage-id",
Short: `Cache stage ID the TLS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "backend-stage-id",
Short: `Backend stage ID the TLS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "pipeline-id",
Short: `Pipeline ID the TLS stage belongs to`,
Required: true,
Deprecated: false,
Positional: false,
},
{
Name: "route-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "waf-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.CreateTLSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.CreateTLSStage(request)
},
}
}
func edgeServicesTLSStageGet() *core.Command {
return &core.Command{
Short: `Get TLS stage`,
Long: `Retrieve information about an existing TLS stage, specified by its ` + "`" + `tls_stage_id` + "`" + `. Its full details, including secrets and certificate expiration date are returned in the response object.`,
Namespace: "edge-services",
Resource: "tls-stage",
Verb: "get",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.GetTLSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "tls-stage-id",
Short: `ID of the requested TLS stage`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.GetTLSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.GetTLSStage(request)
},
}
}
func edgeServicesTLSStageUpdate() *core.Command {
return &core.Command{
Short: `Update TLS stage`,
Long: `Update the parameters of an existing TLS stage, specified by its ` + "`" + `tls_stage_id` + "`" + `. Both ` + "`" + `tls_secrets_config` + "`" + ` and ` + "`" + `managed_certificate` + "`" + ` parameters can be updated.`,
Namespace: "edge-services",
Resource: "tls-stage",
Verb: "update",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.UpdateTLSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "tls-stage-id",
Short: `ID of the TLS stage to update`,
Required: true,
Deprecated: false,
Positional: true,
},
{
Name: "tls-secrets-config.tls-secrets.{index}.secret-id",
Short: `ID of the Secret`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "tls-secrets-config.tls-secrets.{index}.region",
Short: `Region of the Secret`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "managed-certificate",
Short: `True when Scaleway generates and manages a Let's Encrypt certificate for the TLS stage/custom endpoint`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "cache-stage-id",
Short: `Cache stage ID the TLS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "backend-stage-id",
Short: `Backend stage ID the TLS stage will be linked to`,
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "route-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
{
Name: "waf-stage-id",
Required: false,
Deprecated: false,
Positional: false,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.UpdateTLSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
return api.UpdateTLSStage(request)
},
}
}
func edgeServicesTLSStageDelete() *core.Command {
return &core.Command{
Short: `Delete TLS stage`,
Long: `Delete an existing TLS stage, specified by its ` + "`" + `tls_stage_id` + "`" + `. Deleting a TLS stage is permanent, and cannot be undone.`,
Namespace: "edge-services",
Resource: "tls-stage",
Verb: "delete",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.DeleteTLSStageRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "tls-stage-id",
Short: `ID of the TLS stage to delete`,
Required: true,
Deprecated: false,
Positional: true,
},
},
Run: func(ctx context.Context, args any) (i any, e error) {
request := args.(*edge_services.DeleteTLSStageRequest)
client := core.ExtractClient(ctx)
api := edge_services.NewAPI(client)
e = api.DeleteTLSStage(request)
if e != nil {
return nil, e
}
return &core.SuccessResult{
Resource: "tls-stage",
Verb: "delete",
}, nil
},
}
}
func edgeServicesCacheStageList() *core.Command {
return &core.Command{
Short: `List cache stages`,
Long: `List all cache stages, for a Scaleway Organization or Scaleway Project. By default, the cache stages returned in the list are ordered by creation date in ascending order, though this can be modified via the ` + "`" + `order_by` + "`" + ` field.`,
Namespace: "edge-services",
Resource: "cache-stage",
Verb: "list",
// Deprecated: false,
ArgsType: reflect.TypeOf(edge_services.ListCacheStagesRequest{}),
ArgSpecs: core.ArgSpecs{
{
Name: "order-by",
Short: `Sort order of cache stages in the response`,