@meshery/schemas 1.2.20 → 1.2.22
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.
- package/dist/cloudApi.d.mts +9 -9
- package/dist/cloudApi.d.ts +9 -9
- package/dist/constructs/v1beta1/academy/Academy.d.ts +65 -65
- package/dist/constructs/v1beta1/academy/AcademySchema.js +1 -1
- package/dist/constructs/v1beta1/academy/AcademySchema.mjs +1 -1
- package/dist/constructs/v1beta1/role/Role.d.ts +1 -1
- package/dist/constructs/v1beta1/role/RoleSchema.js +1 -1
- package/dist/constructs/v1beta1/role/RoleSchema.mjs +1 -1
- package/dist/constructs/v1beta1/user/User.d.ts +8 -8
- package/dist/constructs/v1beta1/user/UserSchema.js +1 -1
- package/dist/constructs/v1beta1/user/UserSchema.mjs +1 -1
- package/dist/constructs/v1beta2/academy/Academy.d.ts +65 -65
- package/dist/constructs/v1beta2/academy/AcademySchema.js +1 -1
- package/dist/constructs/v1beta2/academy/AcademySchema.mjs +1 -1
- package/dist/constructs/v1beta2/badge/BadgeSchema.js +1 -1
- package/dist/constructs/v1beta2/badge/BadgeSchema.mjs +1 -1
- package/dist/constructs/v1beta2/role/Role.d.ts +1 -1
- package/dist/constructs/v1beta2/role/RoleSchema.js +1 -1
- package/dist/constructs/v1beta2/role/RoleSchema.mjs +1 -1
- package/dist/constructs/v1beta2/user/User.d.ts +8 -8
- package/dist/constructs/v1beta2/user/UserSchema.js +1 -1
- package/dist/constructs/v1beta2/user/UserSchema.mjs +1 -1
- package/dist/constructs/v1beta3/academy/Academy.d.ts +65 -65
- package/dist/constructs/v1beta3/academy/AcademySchema.js +1 -1
- package/dist/constructs/v1beta3/academy/AcademySchema.mjs +1 -1
- package/dist/constructs/v1beta3/design/Design.d.ts +8 -8
- package/dist/constructs/v1beta3/design/DesignSchema.js +8 -8
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +8 -8
- package/dist/index.d.mts +41 -41
- package/dist/index.d.ts +41 -41
- package/dist/mesheryApi.d.mts +4 -4
- package/dist/mesheryApi.d.ts +4 -4
- package/dist/permissions.d.mts +1 -1
- package/dist/permissions.d.ts +1 -1
- package/package.json +1 -1
|
@@ -40,7 +40,7 @@ export interface paths {
|
|
|
40
40
|
type: "learning-path" | "challenge" | "certification";
|
|
41
41
|
/**
|
|
42
42
|
* @description Organization ID that owns this learning path
|
|
43
|
-
* @example
|
|
43
|
+
* @example meshery
|
|
44
44
|
*/
|
|
45
45
|
orgId: string;
|
|
46
46
|
/**
|
|
@@ -104,7 +104,7 @@ export interface paths {
|
|
|
104
104
|
/**
|
|
105
105
|
* Format: uri
|
|
106
106
|
* @description Canonical URL for the learning path
|
|
107
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
107
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
108
108
|
*/
|
|
109
109
|
permalink: string;
|
|
110
110
|
certificate?: {
|
|
@@ -192,7 +192,7 @@ export interface paths {
|
|
|
192
192
|
/**
|
|
193
193
|
* Format: uri
|
|
194
194
|
* @description URL to the course content
|
|
195
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
195
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
196
196
|
*/
|
|
197
197
|
permalink: string;
|
|
198
198
|
/**
|
|
@@ -440,7 +440,7 @@ export interface components {
|
|
|
440
440
|
schemas: {
|
|
441
441
|
/**
|
|
442
442
|
* @description Organization ID that owns this learning path
|
|
443
|
-
* @example
|
|
443
|
+
* @example meshery
|
|
444
444
|
*/
|
|
445
445
|
AcademyCurriculaOrgId: string;
|
|
446
446
|
/** @description ID of the badge to be awarded on completion of this curricula */
|
|
@@ -480,7 +480,7 @@ export interface components {
|
|
|
480
480
|
/**
|
|
481
481
|
* Format: uri
|
|
482
482
|
* @description Canonical URL for the learning path
|
|
483
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
483
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
484
484
|
*/
|
|
485
485
|
permalink: string;
|
|
486
486
|
certificate?: {
|
|
@@ -568,7 +568,7 @@ export interface components {
|
|
|
568
568
|
/**
|
|
569
569
|
* Format: uri
|
|
570
570
|
* @description URL to the course content
|
|
571
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
571
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
572
572
|
*/
|
|
573
573
|
permalink: string;
|
|
574
574
|
/**
|
|
@@ -624,7 +624,7 @@ export interface components {
|
|
|
624
624
|
type: "learning-path" | "challenge" | "certification";
|
|
625
625
|
/**
|
|
626
626
|
* @description Organization ID that owns this learning path
|
|
627
|
-
* @example
|
|
627
|
+
* @example meshery
|
|
628
628
|
*/
|
|
629
629
|
orgId: string;
|
|
630
630
|
/**
|
|
@@ -688,7 +688,7 @@ export interface components {
|
|
|
688
688
|
/**
|
|
689
689
|
* Format: uri
|
|
690
690
|
* @description Canonical URL for the learning path
|
|
691
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
691
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
692
692
|
*/
|
|
693
693
|
permalink: string;
|
|
694
694
|
certificate?: {
|
|
@@ -776,7 +776,7 @@ export interface components {
|
|
|
776
776
|
/**
|
|
777
777
|
* Format: uri
|
|
778
778
|
* @description URL to the course content
|
|
779
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
779
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
780
780
|
*/
|
|
781
781
|
permalink: string;
|
|
782
782
|
/**
|
|
@@ -815,7 +815,7 @@ export interface components {
|
|
|
815
815
|
type: "learning-path" | "challenge" | "certification";
|
|
816
816
|
/**
|
|
817
817
|
* @description Organization ID that owns this learning path
|
|
818
|
-
* @example
|
|
818
|
+
* @example meshery
|
|
819
819
|
*/
|
|
820
820
|
orgId: string;
|
|
821
821
|
/**
|
|
@@ -879,7 +879,7 @@ export interface components {
|
|
|
879
879
|
/**
|
|
880
880
|
* Format: uri
|
|
881
881
|
* @description Canonical URL for the learning path
|
|
882
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
882
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
883
883
|
*/
|
|
884
884
|
permalink: string;
|
|
885
885
|
certificate?: {
|
|
@@ -967,7 +967,7 @@ export interface components {
|
|
|
967
967
|
/**
|
|
968
968
|
* Format: uri
|
|
969
969
|
* @description URL to the course content
|
|
970
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
970
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
971
971
|
*/
|
|
972
972
|
permalink: string;
|
|
973
973
|
/**
|
|
@@ -1063,7 +1063,7 @@ export interface components {
|
|
|
1063
1063
|
title: string;
|
|
1064
1064
|
/**
|
|
1065
1065
|
* @description Organization ID that owns this learning path
|
|
1066
|
-
* @example
|
|
1066
|
+
* @example meshery
|
|
1067
1067
|
*/
|
|
1068
1068
|
orgId: string;
|
|
1069
1069
|
/** @description ID of the workspace to which this Curricula belongs */
|
|
@@ -1111,7 +1111,7 @@ export interface components {
|
|
|
1111
1111
|
/**
|
|
1112
1112
|
* Format: uri
|
|
1113
1113
|
* @description Canonical URL for the learning path
|
|
1114
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1114
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
1115
1115
|
*/
|
|
1116
1116
|
permalink: string;
|
|
1117
1117
|
certificate?: {
|
|
@@ -1199,7 +1199,7 @@ export interface components {
|
|
|
1199
1199
|
/**
|
|
1200
1200
|
* Format: uri
|
|
1201
1201
|
* @description URL to the course content
|
|
1202
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1202
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
1203
1203
|
*/
|
|
1204
1204
|
permalink: string;
|
|
1205
1205
|
/**
|
|
@@ -1238,7 +1238,7 @@ export interface components {
|
|
|
1238
1238
|
type: "learning-path" | "challenge" | "certification";
|
|
1239
1239
|
/**
|
|
1240
1240
|
* @description Organization ID that owns this learning path
|
|
1241
|
-
* @example
|
|
1241
|
+
* @example meshery
|
|
1242
1242
|
*/
|
|
1243
1243
|
orgId: string;
|
|
1244
1244
|
/**
|
|
@@ -1302,7 +1302,7 @@ export interface components {
|
|
|
1302
1302
|
/**
|
|
1303
1303
|
* Format: uri
|
|
1304
1304
|
* @description Canonical URL for the learning path
|
|
1305
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1305
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
1306
1306
|
*/
|
|
1307
1307
|
permalink: string;
|
|
1308
1308
|
certificate?: {
|
|
@@ -1390,7 +1390,7 @@ export interface components {
|
|
|
1390
1390
|
/**
|
|
1391
1391
|
* Format: uri
|
|
1392
1392
|
* @description URL to the course content
|
|
1393
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1393
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
1394
1394
|
*/
|
|
1395
1395
|
permalink: string;
|
|
1396
1396
|
/**
|
|
@@ -1437,7 +1437,7 @@ export interface components {
|
|
|
1437
1437
|
type: "learning-path" | "challenge" | "certification";
|
|
1438
1438
|
/**
|
|
1439
1439
|
* @description Organization ID that owns this learning path
|
|
1440
|
-
* @example
|
|
1440
|
+
* @example meshery
|
|
1441
1441
|
*/
|
|
1442
1442
|
orgId: string;
|
|
1443
1443
|
/**
|
|
@@ -1501,7 +1501,7 @@ export interface components {
|
|
|
1501
1501
|
/**
|
|
1502
1502
|
* Format: uri
|
|
1503
1503
|
* @description Canonical URL for the learning path
|
|
1504
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1504
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
1505
1505
|
*/
|
|
1506
1506
|
permalink: string;
|
|
1507
1507
|
certificate?: {
|
|
@@ -1589,7 +1589,7 @@ export interface components {
|
|
|
1589
1589
|
/**
|
|
1590
1590
|
* Format: uri
|
|
1591
1591
|
* @description URL to the course content
|
|
1592
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1592
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
1593
1593
|
*/
|
|
1594
1594
|
permalink: string;
|
|
1595
1595
|
/**
|
|
@@ -1635,7 +1635,7 @@ export interface components {
|
|
|
1635
1635
|
type: "learning-path" | "challenge" | "certification";
|
|
1636
1636
|
/**
|
|
1637
1637
|
* @description Organization ID that owns this learning path
|
|
1638
|
-
* @example
|
|
1638
|
+
* @example meshery
|
|
1639
1639
|
*/
|
|
1640
1640
|
orgId: string;
|
|
1641
1641
|
/**
|
|
@@ -1699,7 +1699,7 @@ export interface components {
|
|
|
1699
1699
|
/**
|
|
1700
1700
|
* Format: uri
|
|
1701
1701
|
* @description Canonical URL for the learning path
|
|
1702
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1702
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
1703
1703
|
*/
|
|
1704
1704
|
permalink: string;
|
|
1705
1705
|
certificate?: {
|
|
@@ -1787,7 +1787,7 @@ export interface components {
|
|
|
1787
1787
|
/**
|
|
1788
1788
|
* Format: uri
|
|
1789
1789
|
* @description URL to the course content
|
|
1790
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1790
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
1791
1791
|
*/
|
|
1792
1792
|
permalink: string;
|
|
1793
1793
|
/**
|
|
@@ -1844,7 +1844,7 @@ export interface components {
|
|
|
1844
1844
|
/**
|
|
1845
1845
|
* Format: uri
|
|
1846
1846
|
* @description Canonical URL for the learning path
|
|
1847
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1847
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
1848
1848
|
*/
|
|
1849
1849
|
permalink: string;
|
|
1850
1850
|
certificate?: {
|
|
@@ -1932,7 +1932,7 @@ export interface components {
|
|
|
1932
1932
|
/**
|
|
1933
1933
|
* Format: uri
|
|
1934
1934
|
* @description URL to the course content
|
|
1935
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1935
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
1936
1936
|
*/
|
|
1937
1937
|
permalink: string;
|
|
1938
1938
|
/**
|
|
@@ -1985,7 +1985,7 @@ export interface components {
|
|
|
1985
1985
|
/**
|
|
1986
1986
|
* Format: uri
|
|
1987
1987
|
* @description Canonical URL for the learning path
|
|
1988
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
1988
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
1989
1989
|
*/
|
|
1990
1990
|
permalink: string;
|
|
1991
1991
|
certificate?: {
|
|
@@ -2073,7 +2073,7 @@ export interface components {
|
|
|
2073
2073
|
/**
|
|
2074
2074
|
* Format: uri
|
|
2075
2075
|
* @description URL to the course content
|
|
2076
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
2076
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
2077
2077
|
*/
|
|
2078
2078
|
permalink: string;
|
|
2079
2079
|
/**
|
|
@@ -2216,7 +2216,7 @@ export interface components {
|
|
|
2216
2216
|
/**
|
|
2217
2217
|
* Format: uri
|
|
2218
2218
|
* @description Canonical URL for the learning path
|
|
2219
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
2219
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
2220
2220
|
*/
|
|
2221
2221
|
permalink: string;
|
|
2222
2222
|
certificate?: {
|
|
@@ -2304,7 +2304,7 @@ export interface components {
|
|
|
2304
2304
|
/**
|
|
2305
2305
|
* Format: uri
|
|
2306
2306
|
* @description URL to the course content
|
|
2307
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
2307
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
2308
2308
|
*/
|
|
2309
2309
|
permalink: string;
|
|
2310
2310
|
/**
|
|
@@ -2470,7 +2470,7 @@ export interface components {
|
|
|
2470
2470
|
id: string;
|
|
2471
2471
|
/**
|
|
2472
2472
|
* @description Organization ID that owns this quiz
|
|
2473
|
-
* @example
|
|
2473
|
+
* @example meshery
|
|
2474
2474
|
*/
|
|
2475
2475
|
org_id: string;
|
|
2476
2476
|
/**
|
|
@@ -2558,7 +2558,7 @@ export interface components {
|
|
|
2558
2558
|
id: string;
|
|
2559
2559
|
/**
|
|
2560
2560
|
* @description Organization ID that owns this quiz
|
|
2561
|
-
* @example
|
|
2561
|
+
* @example meshery
|
|
2562
2562
|
*/
|
|
2563
2563
|
org_id: string;
|
|
2564
2564
|
/**
|
|
@@ -2641,7 +2641,7 @@ export interface components {
|
|
|
2641
2641
|
/**
|
|
2642
2642
|
* Format: uri
|
|
2643
2643
|
* @description URL to the course content
|
|
2644
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
2644
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
2645
2645
|
*/
|
|
2646
2646
|
permalink: string;
|
|
2647
2647
|
/**
|
|
@@ -2820,7 +2820,7 @@ export interface components {
|
|
|
2820
2820
|
id: string;
|
|
2821
2821
|
/**
|
|
2822
2822
|
* @description Organization ID that owns this quiz
|
|
2823
|
-
* @example
|
|
2823
|
+
* @example meshery
|
|
2824
2824
|
*/
|
|
2825
2825
|
org_id: string;
|
|
2826
2826
|
/**
|
|
@@ -2947,7 +2947,7 @@ export interface components {
|
|
|
2947
2947
|
id: string;
|
|
2948
2948
|
/**
|
|
2949
2949
|
* @description Organization ID that owns this quiz
|
|
2950
|
-
* @example
|
|
2950
|
+
* @example meshery
|
|
2951
2951
|
*/
|
|
2952
2952
|
org_id: string;
|
|
2953
2953
|
/**
|
|
@@ -3138,7 +3138,7 @@ export interface components {
|
|
|
3138
3138
|
id: string;
|
|
3139
3139
|
/**
|
|
3140
3140
|
* @description Organization ID that owns this quiz
|
|
3141
|
-
* @example
|
|
3141
|
+
* @example meshery
|
|
3142
3142
|
*/
|
|
3143
3143
|
org_id: string;
|
|
3144
3144
|
/**
|
|
@@ -3215,7 +3215,7 @@ export interface components {
|
|
|
3215
3215
|
id: string;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* @description Organization ID that owns this quiz
|
|
3218
|
-
* @example
|
|
3218
|
+
* @example meshery
|
|
3219
3219
|
*/
|
|
3220
3220
|
org_id: string;
|
|
3221
3221
|
/**
|
|
@@ -3294,7 +3294,7 @@ export interface components {
|
|
|
3294
3294
|
id: string;
|
|
3295
3295
|
/**
|
|
3296
3296
|
* @description Organization ID that owns this quiz
|
|
3297
|
-
* @example
|
|
3297
|
+
* @example meshery
|
|
3298
3298
|
*/
|
|
3299
3299
|
org_id: string;
|
|
3300
3300
|
/**
|
|
@@ -3501,7 +3501,7 @@ export interface components {
|
|
|
3501
3501
|
id: string;
|
|
3502
3502
|
/**
|
|
3503
3503
|
* @description Organization ID that owns this quiz
|
|
3504
|
-
* @example
|
|
3504
|
+
* @example meshery
|
|
3505
3505
|
*/
|
|
3506
3506
|
org_id: string;
|
|
3507
3507
|
/**
|
|
@@ -3671,7 +3671,7 @@ export interface operations {
|
|
|
3671
3671
|
type: "learning-path" | "challenge" | "certification";
|
|
3672
3672
|
/**
|
|
3673
3673
|
* @description Organization ID that owns this learning path
|
|
3674
|
-
* @example
|
|
3674
|
+
* @example meshery
|
|
3675
3675
|
*/
|
|
3676
3676
|
orgId: string;
|
|
3677
3677
|
/**
|
|
@@ -3735,7 +3735,7 @@ export interface operations {
|
|
|
3735
3735
|
/**
|
|
3736
3736
|
* Format: uri
|
|
3737
3737
|
* @description Canonical URL for the learning path
|
|
3738
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
3738
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
3739
3739
|
*/
|
|
3740
3740
|
permalink: string;
|
|
3741
3741
|
certificate?: {
|
|
@@ -3823,7 +3823,7 @@ export interface operations {
|
|
|
3823
3823
|
/**
|
|
3824
3824
|
* Format: uri
|
|
3825
3825
|
* @description URL to the course content
|
|
3826
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
3826
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
3827
3827
|
*/
|
|
3828
3828
|
permalink: string;
|
|
3829
3829
|
/**
|
|
@@ -3883,7 +3883,7 @@ export interface operations {
|
|
|
3883
3883
|
type: "learning-path" | "challenge" | "certification";
|
|
3884
3884
|
/**
|
|
3885
3885
|
* @description Organization ID that owns this learning path
|
|
3886
|
-
* @example
|
|
3886
|
+
* @example meshery
|
|
3887
3887
|
*/
|
|
3888
3888
|
orgId: string;
|
|
3889
3889
|
/**
|
|
@@ -3947,7 +3947,7 @@ export interface operations {
|
|
|
3947
3947
|
/**
|
|
3948
3948
|
* Format: uri
|
|
3949
3949
|
* @description Canonical URL for the learning path
|
|
3950
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
3950
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
3951
3951
|
*/
|
|
3952
3952
|
permalink: string;
|
|
3953
3953
|
certificate?: {
|
|
@@ -4035,7 +4035,7 @@ export interface operations {
|
|
|
4035
4035
|
/**
|
|
4036
4036
|
* Format: uri
|
|
4037
4037
|
* @description URL to the course content
|
|
4038
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4038
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
4039
4039
|
*/
|
|
4040
4040
|
permalink: string;
|
|
4041
4041
|
/**
|
|
@@ -4092,7 +4092,7 @@ export interface operations {
|
|
|
4092
4092
|
title: string;
|
|
4093
4093
|
/**
|
|
4094
4094
|
* @description Organization ID that owns this learning path
|
|
4095
|
-
* @example
|
|
4095
|
+
* @example meshery
|
|
4096
4096
|
*/
|
|
4097
4097
|
orgId: string;
|
|
4098
4098
|
/** @description ID of the workspace to which this Curricula belongs */
|
|
@@ -4140,7 +4140,7 @@ export interface operations {
|
|
|
4140
4140
|
/**
|
|
4141
4141
|
* Format: uri
|
|
4142
4142
|
* @description Canonical URL for the learning path
|
|
4143
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4143
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
4144
4144
|
*/
|
|
4145
4145
|
permalink: string;
|
|
4146
4146
|
certificate?: {
|
|
@@ -4228,7 +4228,7 @@ export interface operations {
|
|
|
4228
4228
|
/**
|
|
4229
4229
|
* Format: uri
|
|
4230
4230
|
* @description URL to the course content
|
|
4231
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4231
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
4232
4232
|
*/
|
|
4233
4233
|
permalink: string;
|
|
4234
4234
|
/**
|
|
@@ -4308,7 +4308,7 @@ export interface operations {
|
|
|
4308
4308
|
type: "learning-path" | "challenge" | "certification";
|
|
4309
4309
|
/**
|
|
4310
4310
|
* @description Organization ID that owns this learning path
|
|
4311
|
-
* @example
|
|
4311
|
+
* @example meshery
|
|
4312
4312
|
*/
|
|
4313
4313
|
orgId: string;
|
|
4314
4314
|
/**
|
|
@@ -4372,7 +4372,7 @@ export interface operations {
|
|
|
4372
4372
|
/**
|
|
4373
4373
|
* Format: uri
|
|
4374
4374
|
* @description Canonical URL for the learning path
|
|
4375
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4375
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
4376
4376
|
*/
|
|
4377
4377
|
permalink: string;
|
|
4378
4378
|
certificate?: {
|
|
@@ -4460,7 +4460,7 @@ export interface operations {
|
|
|
4460
4460
|
/**
|
|
4461
4461
|
* Format: uri
|
|
4462
4462
|
* @description URL to the course content
|
|
4463
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4463
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
4464
4464
|
*/
|
|
4465
4465
|
permalink: string;
|
|
4466
4466
|
/**
|
|
@@ -4818,7 +4818,7 @@ export interface operations {
|
|
|
4818
4818
|
type: "learning-path" | "challenge" | "certification";
|
|
4819
4819
|
/**
|
|
4820
4820
|
* @description Organization ID that owns this learning path
|
|
4821
|
-
* @example
|
|
4821
|
+
* @example meshery
|
|
4822
4822
|
*/
|
|
4823
4823
|
orgId: string;
|
|
4824
4824
|
/**
|
|
@@ -4882,7 +4882,7 @@ export interface operations {
|
|
|
4882
4882
|
/**
|
|
4883
4883
|
* Format: uri
|
|
4884
4884
|
* @description Canonical URL for the learning path
|
|
4885
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4885
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
4886
4886
|
*/
|
|
4887
4887
|
permalink: string;
|
|
4888
4888
|
certificate?: {
|
|
@@ -4970,7 +4970,7 @@ export interface operations {
|
|
|
4970
4970
|
/**
|
|
4971
4971
|
* Format: uri
|
|
4972
4972
|
* @description URL to the course content
|
|
4973
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
4973
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
4974
4974
|
*/
|
|
4975
4975
|
permalink: string;
|
|
4976
4976
|
/**
|
|
@@ -5091,7 +5091,7 @@ export interface operations {
|
|
|
5091
5091
|
type: "learning-path" | "challenge" | "certification";
|
|
5092
5092
|
/**
|
|
5093
5093
|
* @description Organization ID that owns this learning path
|
|
5094
|
-
* @example
|
|
5094
|
+
* @example meshery
|
|
5095
5095
|
*/
|
|
5096
5096
|
orgId: string;
|
|
5097
5097
|
/**
|
|
@@ -5155,7 +5155,7 @@ export interface operations {
|
|
|
5155
5155
|
/**
|
|
5156
5156
|
* Format: uri
|
|
5157
5157
|
* @description Canonical URL for the learning path
|
|
5158
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
5158
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
5159
5159
|
*/
|
|
5160
5160
|
permalink: string;
|
|
5161
5161
|
certificate?: {
|
|
@@ -5243,7 +5243,7 @@ export interface operations {
|
|
|
5243
5243
|
/**
|
|
5244
5244
|
* Format: uri
|
|
5245
5245
|
* @description URL to the course content
|
|
5246
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
5246
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
5247
5247
|
*/
|
|
5248
5248
|
permalink: string;
|
|
5249
5249
|
/**
|
|
@@ -5356,7 +5356,7 @@ export interface operations {
|
|
|
5356
5356
|
title: string;
|
|
5357
5357
|
/**
|
|
5358
5358
|
* @description Organization ID that owns this learning path
|
|
5359
|
-
* @example
|
|
5359
|
+
* @example meshery
|
|
5360
5360
|
*/
|
|
5361
5361
|
orgId: string;
|
|
5362
5362
|
/** @description ID of the workspace to which this Curricula belongs */
|
|
@@ -5404,7 +5404,7 @@ export interface operations {
|
|
|
5404
5404
|
/**
|
|
5405
5405
|
* Format: uri
|
|
5406
5406
|
* @description Canonical URL for the learning path
|
|
5407
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
5407
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/mastering-kubernetes-for-engineers/
|
|
5408
5408
|
*/
|
|
5409
5409
|
permalink: string;
|
|
5410
5410
|
certificate?: {
|
|
@@ -5492,7 +5492,7 @@ export interface operations {
|
|
|
5492
5492
|
/**
|
|
5493
5493
|
* Format: uri
|
|
5494
5494
|
* @description URL to the course content
|
|
5495
|
-
* @example http://localhost:9876/academy/learning-paths/
|
|
5495
|
+
* @example http://localhost:9876/academy/learning-paths/meshery/intro-kubernetes-course/kubernetes/
|
|
5496
5496
|
*/
|
|
5497
5497
|
permalink: string;
|
|
5498
5498
|
/**
|
|
@@ -5586,7 +5586,7 @@ export interface operations {
|
|
|
5586
5586
|
id: string;
|
|
5587
5587
|
/**
|
|
5588
5588
|
* @description Organization ID that owns this quiz
|
|
5589
|
-
* @example
|
|
5589
|
+
* @example meshery
|
|
5590
5590
|
*/
|
|
5591
5591
|
org_id: string;
|
|
5592
5592
|
/**
|
|
@@ -5757,7 +5757,7 @@ export interface operations {
|
|
|
5757
5757
|
id: string;
|
|
5758
5758
|
/**
|
|
5759
5759
|
* @description Organization ID that owns this quiz
|
|
5760
|
-
* @example
|
|
5760
|
+
* @example meshery
|
|
5761
5761
|
*/
|
|
5762
5762
|
org_id: string;
|
|
5763
5763
|
/**
|
|
@@ -5852,7 +5852,7 @@ export interface operations {
|
|
|
5852
5852
|
id: string;
|
|
5853
5853
|
/**
|
|
5854
5854
|
* @description Organization ID that owns this quiz
|
|
5855
|
-
* @example
|
|
5855
|
+
* @example meshery
|
|
5856
5856
|
*/
|
|
5857
5857
|
org_id: string;
|
|
5858
5858
|
/**
|
|
@@ -5978,7 +5978,7 @@ export interface operations {
|
|
|
5978
5978
|
id: string;
|
|
5979
5979
|
/**
|
|
5980
5980
|
* @description Organization ID that owns this quiz
|
|
5981
|
-
* @example
|
|
5981
|
+
* @example meshery
|
|
5982
5982
|
*/
|
|
5983
5983
|
org_id: string;
|
|
5984
5984
|
/**
|
|
@@ -6085,7 +6085,7 @@ export interface operations {
|
|
|
6085
6085
|
id: string;
|
|
6086
6086
|
/**
|
|
6087
6087
|
* @description Organization ID that owns this quiz
|
|
6088
|
-
* @example
|
|
6088
|
+
* @example meshery
|
|
6089
6089
|
*/
|
|
6090
6090
|
org_id: string;
|
|
6091
6091
|
/**
|