-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeSamples.yaml
1541 lines (1272 loc) · 49.6 KB
/
codeSamples.yaml
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
overlay: 1.0.0
info:
title: CodeSamples overlay for csharp target
version: 0.0.0
actions:
- target: $["paths"]["/v1/apis"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getApis
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using System.Collections.Generic;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetApisRequest req = new GetApisRequest() {};
var res = await sdk.Apis.GetApisAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getAllApiVersions
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using System.Collections.Generic;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetAllApiVersionsRequest req = new GetAllApiVersionsRequest() {
ApiID = "<value>",
};
var res = await sdk.Apis.GetAllApiVersionsAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}"]["put"]
update:
x-codeSamples:
- lang: csharp
label: upsertApi
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
using System.Collections.Generic;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
UpsertApiRequest req = new UpsertApiRequest() {
ApiID = "<value>",
Api = new ApiInput() {
ApiId = "<value>",
Description = "Synchronised 5th generation knowledge user",
VersionId = "<value>",
},
};
var res = await sdk.Apis.UpsertApiAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/api_endpoints"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getAllApiEndpoints
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetAllApiEndpointsRequest req = new GetAllApiEndpointsRequest() {
ApiID = "<value>",
};
var res = await sdk.ApiEndpoints.GetAllApiEndpointsAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}"]["delete"]
update:
x-codeSamples:
- lang: csharp
label: deleteApi
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
DeleteApiRequest req = new DeleteApiRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Apis.DeleteApiAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getAllForVersionApiEndpoints
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetAllForVersionApiEndpointsRequest req = new GetAllForVersionApiEndpointsRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.ApiEndpoints.GetAllForVersionApiEndpointsAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints/find/{displayName}"]["get"]
update:
x-codeSamples:
- lang: csharp
label: findApiEndpoint
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
FindApiEndpointRequest req = new FindApiEndpointRequest() {
ApiID = "<value>",
VersionID = "<value>",
DisplayName = "Don.Strosin",
};
var res = await sdk.ApiEndpoints.FindApiEndpointAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints/{apiEndpointID}"]["delete"]
update:
x-codeSamples:
- lang: csharp
label: deleteApiEndpoint
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
DeleteApiEndpointRequest req = new DeleteApiEndpointRequest() {
ApiID = "<value>",
VersionID = "<value>",
ApiEndpointID = "<value>",
};
var res = await sdk.ApiEndpoints.DeleteApiEndpointAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints/{apiEndpointID}"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getApiEndpoint
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetApiEndpointRequest req = new GetApiEndpointRequest() {
ApiID = "<value>",
VersionID = "<value>",
ApiEndpointID = "<value>",
};
var res = await sdk.ApiEndpoints.GetApiEndpointAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints/{apiEndpointID}"]["put"]
update:
x-codeSamples:
- lang: csharp
label: upsertApiEndpoint
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
UpsertApiEndpointRequest req = new UpsertApiEndpointRequest() {
ApiID = "<value>",
VersionID = "<value>",
ApiEndpointID = "<value>",
ApiEndpoint = new ApiEndpointInput() {
ApiEndpointId = "<value>",
Description = "Public-key systematic attitude",
DisplayName = "Camille.Schaefer11",
Method = "<value>",
Path = "/Library",
VersionId = "<value>",
},
};
var res = await sdk.ApiEndpoints.UpsertApiEndpointAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints/{apiEndpointID}/generate/openapi"]["get"]
update:
x-codeSamples:
- lang: csharp
label: generateOpenApiSpecForApiEndpoint
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GenerateOpenApiSpecForApiEndpointRequest req = new GenerateOpenApiSpecForApiEndpointRequest() {
ApiID = "<value>",
VersionID = "<value>",
ApiEndpointID = "<value>",
};
var res = await sdk.ApiEndpoints.GenerateOpenApiSpecForApiEndpointAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/api_endpoints/{apiEndpointID}/generate/postman"]["get"]
update:
x-codeSamples:
- lang: csharp
label: generatePostmanCollectionForApiEndpoint
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GeneratePostmanCollectionForApiEndpointRequest req = new GeneratePostmanCollectionForApiEndpointRequest() {
ApiID = "<value>",
VersionID = "<value>",
ApiEndpointID = "<value>",
};
var res = await sdk.ApiEndpoints.GeneratePostmanCollectionForApiEndpointAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/generate/openapi"]["get"]
update:
x-codeSamples:
- lang: csharp
label: generateOpenApiSpec
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GenerateOpenApiSpecRequest req = new GenerateOpenApiSpecRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Apis.GenerateOpenApiSpecAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/generate/postman"]["get"]
update:
x-codeSamples:
- lang: csharp
label: generatePostmanCollection
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GeneratePostmanCollectionRequest req = new GeneratePostmanCollectionRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Apis.GeneratePostmanCollectionAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/metadata"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getVersionMetadata
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetVersionMetadataRequest req = new GetVersionMetadataRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Metadata.GetVersionMetadataAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/metadata"]["post"]
update:
x-codeSamples:
- lang: csharp
label: insertVersionMetadata
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
InsertVersionMetadataRequest req = new InsertVersionMetadataRequest() {
ApiID = "<value>",
VersionID = "<value>",
VersionMetadata = new VersionMetadataInput() {
MetaKey = "<value>",
MetaValue = "<value>",
},
};
var res = await sdk.Metadata.InsertVersionMetadataAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/metadata/{metaKey}/{metaValue}"]["delete"]
update:
x-codeSamples:
- lang: csharp
label: deleteVersionMetadata
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
DeleteVersionMetadataRequest req = new DeleteVersionMetadataRequest() {
ApiID = "<value>",
VersionID = "<value>",
MetaKey = "<value>",
MetaValue = "<value>",
};
var res = await sdk.Metadata.DeleteVersionMetadataAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getSchema
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetSchemaRequest req = new GetSchemaRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Schemas.GetSchemaAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema"]["post"]
update:
x-codeSamples:
- lang: csharp
label: registerSchema
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
RegisterSchemaRequest req = new RegisterSchemaRequest() {
ApiID = "<value>",
VersionID = "<value>",
RequestBody = new RegisterSchemaRequestBody() {
File = new File() {
FileName = "example.file",
Content = System.Text.Encoding.UTF8.GetBytes("0xCAFCA03e0e"),
},
},
};
var res = await sdk.Schemas.RegisterSchemaAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema/download"]["get"]
update:
x-codeSamples:
- lang: csharp
label: downloadSchema
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
DownloadSchemaRequest req = new DownloadSchemaRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Schemas.DownloadSchemaAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema/{baseRevisionID}/diff/{targetRevisionID}"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getSchemaDiff
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetSchemaDiffRequest req = new GetSchemaDiffRequest() {
ApiID = "<value>",
VersionID = "<value>",
BaseRevisionID = "<value>",
TargetRevisionID = "<value>",
};
var res = await sdk.Schemas.GetSchemaDiffAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema/{revisionID}"]["delete"]
update:
x-codeSamples:
- lang: csharp
label: deleteSchema
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
DeleteSchemaRequest req = new DeleteSchemaRequest() {
ApiID = "<value>",
VersionID = "<value>",
RevisionID = "<value>",
};
var res = await sdk.Schemas.DeleteSchemaAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema/{revisionID}"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getSchemaRevision
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetSchemaRevisionRequest req = new GetSchemaRevisionRequest() {
ApiID = "<value>",
VersionID = "<value>",
RevisionID = "<value>",
};
var res = await sdk.Schemas.GetSchemaRevisionAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schema/{revisionID}/download"]["get"]
update:
x-codeSamples:
- lang: csharp
label: downloadSchemaRevision
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
DownloadSchemaRevisionRequest req = new DownloadSchemaRevisionRequest() {
ApiID = "<value>",
VersionID = "<value>",
RevisionID = "<value>",
};
var res = await sdk.Schemas.DownloadSchemaRevisionAsync(req);
// handle response
- target: $["paths"]["/v1/apis/{apiID}/version/{versionID}/schemas"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getSchemas
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetSchemasRequest req = new GetSchemasRequest() {
ApiID = "<value>",
VersionID = "<value>",
};
var res = await sdk.Schemas.GetSchemasAsync(req);
// handle response
- target: $["paths"]["/v1/artifacts/namespaces"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getNamespaces
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
var res = await sdk.Artifacts.GetNamespacesAsync();
// handle response
- target: $["paths"]["/v1/artifacts/namespaces/{namespace_name}/revisions"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getRevisions
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetRevisionsRequest req = new GetRevisionsRequest() {
NamespaceName = "<value>",
};
var res = await sdk.Artifacts.GetRevisionsAsync(req);
// handle response
- target: $["paths"]["/v1/artifacts/namespaces/{namespace_name}/revisions/{revision_reference}/summary"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getOASSummary
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetOASSummaryRequest req = new GetOASSummaryRequest() {
NamespaceName = "<value>",
RevisionReference = "<value>",
};
var res = await sdk.Artifacts.GetOASSummaryAsync(req);
// handle response
- target: $["paths"]["/v1/artifacts/namespaces/{namespace_name}/tags"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getTags
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetTagsRequest req = new GetTagsRequest() {
NamespaceName = "<value>",
};
var res = await sdk.Artifacts.GetTagsAsync(req);
// handle response
- target: $["paths"]["/v1/artifacts/namespaces/{namespace_name}/tags"]["post"]
update:
x-codeSamples:
- lang: csharp
label: postTags
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
using System.Collections.Generic;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
PostTagsRequest req = new PostTagsRequest() {
NamespaceName = "<value>",
};
var res = await sdk.Artifacts.PostTagsAsync(req);
// handle response
- target: $["paths"]["/v1/artifacts/preflight"]["post"]
update:
x-codeSamples:
- lang: csharp
label: preflight
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
PreflightRequest req = new PreflightRequest() {
NamespaceName = "<value>",
};
var res = await sdk.Artifacts.PreflightAsync(req);
// handle response
- target: $["paths"]["/v1/auth/access_token"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getAccessToken
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK();
GetAccessTokenRequest req = new GetAccessTokenRequest() {
WorkspaceId = "<value>",
};
var res = await sdk.Auth.GetAccessTokenAsync(req);
// handle response
- target: $["paths"]["/v1/auth/validate"]["get"]
update:
x-codeSamples:
- lang: csharp
label: validateApiKey
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
var res = await sdk.Auth.ValidateApiKeyAsync();
// handle response
- target: $["paths"]["/v1/eventlog/query"]["get"]
update:
x-codeSamples:
- lang: csharp
label: queryEventLog
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
using System.Collections.Generic;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
QueryEventLogRequest req = new QueryEventLogRequest() {};
var res = await sdk.Requests.QueryEventLogAsync(req);
// handle response
- target: $["paths"]["/v1/eventlog/{requestID}"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getRequestFromEventLog
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetRequestFromEventLogRequest req = new GetRequestFromEventLogRequest() {
RequestID = "<value>",
};
var res = await sdk.Requests.GetRequestFromEventLogAsync(req);
// handle response
- target: $["paths"]["/v1/eventlog/{requestID}/generate/postman"]["get"]
update:
x-codeSamples:
- lang: csharp
label: generateRequestPostmanCollection
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GenerateRequestPostmanCollectionRequest req = new GenerateRequestPostmanCollectionRequest() {
RequestID = "<value>",
};
var res = await sdk.Requests.GenerateRequestPostmanCollectionAsync(req);
// handle response
- target: $["paths"]["/v1/github/action"]["get"]
update:
x-codeSamples:
- lang: csharp
label: getAction
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GetActionRequest req = new GetActionRequest() {
Org = "<value>",
Repo = "<value>",
};
var res = await sdk.Github.GetActionAsync(req);
// handle response
- target: $["paths"]["/v1/github/check_access"]["get"]
update:
x-codeSamples:
- lang: csharp
label: checkAccess
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
CheckAccessRequest req = new CheckAccessRequest() {
Org = "<value>",
Repo = "<value>",
};
var res = await sdk.Github.CheckAccessAsync(req);
// handle response
- target: $["paths"]["/v1/github/configure_code_samples"]["post"]
update:
x-codeSamples:
- lang: csharp
label: configureCodeSamples
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GithubConfigureCodeSamplesRequest req = new GithubConfigureCodeSamplesRequest() {
Org = "<value>",
Repo = "<value>",
TargetName = "<value>",
};
var res = await sdk.Github.ConfigureCodeSamplesAsync(req);
// handle response
- target: $["paths"]["/v1/github/configure_mintlify_repo"]["post"]
update:
x-codeSamples:
- lang: csharp
label: configureMintlifyRepo
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
using System.Collections.Generic;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GithubConfigureMintlifyRepoRequest req = new GithubConfigureMintlifyRepoRequest() {
Org = "<value>",
Repo = "<value>",
Input = "<value>",
Overlays = new List<string>() {
"<value>",
},
};
var res = await sdk.Github.ConfigureMintlifyRepoAsync(req);
// handle response
- target: $["paths"]["/v1/github/configure_target"]["post"]
update:
x-codeSamples:
- lang: csharp
label: configureTarget
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GithubConfigureTargetRequest req = new GithubConfigureTargetRequest() {
Org = "<value>",
RepoName = "<value>",
};
var res = await sdk.Github.ConfigureTargetAsync(req);
// handle response
- target: $["paths"]["/v1/github/publishing_prs"]["get"]
update:
x-codeSamples:
- lang: csharp
label: fetchPublishingPRs
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
FetchPublishingPRsRequest req = new FetchPublishingPRsRequest() {
GenerateGenLockId = "<value>",
Org = "<value>",
Repo = "<value>",
};
var res = await sdk.Github.FetchPublishingPRsAsync(req);
// handle response
- target: $["paths"]["/v1/github/publishing_secrets"]["get"]
update:
x-codeSamples:
- lang: csharp
label: githubCheckPublishingSecrets
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GithubCheckPublishingSecretsRequest req = new GithubCheckPublishingSecretsRequest() {
GenerateGenLockId = "<value>",
};
var res = await sdk.Github.GithubCheckPublishingSecretsAsync(req);
// handle response
- target: $["paths"]["/v1/github/publishing_secrets"]["post"]
update:
x-codeSamples:
- lang: csharp
label: githubStorePublishingSecrets
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
using System.Collections.Generic;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GithubStorePublishingSecretsRequest req = new GithubStorePublishingSecretsRequest() {
GenerateGenLockId = "<value>",
};
var res = await sdk.Github.GithubStorePublishingSecretsAsync(req);
// handle response
- target: $["paths"]["/v1/github/trigger_action"]["post"]
update:
x-codeSamples:
- lang: csharp
label: triggerAction
source: |-
using SpeakeasySDK;
using SpeakeasySDK.Models.Shared;
var sdk = new SDK(security: new Security() {
APIKey = "<YOUR_API_KEY_HERE>",
});
GithubTriggerActionRequest req = new GithubTriggerActionRequest() {
Org = "<value>",