@halo-dev/api-client 0.0.39 → 0.0.41
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/index.cjs +48 -428
- package/dist/index.d.ts +155 -782
- package/dist/index.mjs +49 -421
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -69,7 +69,7 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
69
69
|
|
|
70
70
|
const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
71
71
|
return {
|
|
72
|
-
searchAttachments: async (policy, displayName,
|
|
72
|
+
searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
73
73
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
74
74
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
75
75
|
let baseOptions;
|
|
@@ -87,12 +87,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
87
87
|
if (displayName !== void 0) {
|
|
88
88
|
localVarQueryParameter["displayName"] = displayName;
|
|
89
89
|
}
|
|
90
|
-
if (uploadedBy !== void 0) {
|
|
91
|
-
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
92
|
-
}
|
|
93
90
|
if (group !== void 0) {
|
|
94
91
|
localVarQueryParameter["group"] = group;
|
|
95
92
|
}
|
|
93
|
+
if (uploadedBy !== void 0) {
|
|
94
|
+
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
95
|
+
}
|
|
96
96
|
if (size !== void 0) {
|
|
97
97
|
localVarQueryParameter["size"] = size;
|
|
98
98
|
}
|
|
@@ -131,12 +131,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
131
131
|
if (file !== void 0) {
|
|
132
132
|
localVarFormParams.append("file", file);
|
|
133
133
|
}
|
|
134
|
-
if (groupName !== void 0) {
|
|
135
|
-
localVarFormParams.append("groupName", groupName);
|
|
136
|
-
}
|
|
137
134
|
if (policyName !== void 0) {
|
|
138
135
|
localVarFormParams.append("policyName", policyName);
|
|
139
136
|
}
|
|
137
|
+
if (groupName !== void 0) {
|
|
138
|
+
localVarFormParams.append("groupName", groupName);
|
|
139
|
+
}
|
|
140
140
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
141
141
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
142
142
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -152,8 +152,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
152
152
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
153
153
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
154
154
|
return {
|
|
155
|
-
async searchAttachments(policy, displayName,
|
|
156
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName,
|
|
155
|
+
async searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
156
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options);
|
|
157
157
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
158
158
|
},
|
|
159
159
|
async uploadAttachment(file, policyName, groupName, options) {
|
|
@@ -165,8 +165,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
165
165
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
166
166
|
const localVarFp = ApiConsoleHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
167
167
|
return {
|
|
168
|
-
searchAttachments(policy, displayName,
|
|
169
|
-
return localVarFp.searchAttachments(policy, displayName,
|
|
168
|
+
searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
169
|
+
return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
170
170
|
},
|
|
171
171
|
uploadAttachment(file, policyName, groupName, options) {
|
|
172
172
|
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
@@ -175,7 +175,7 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, ba
|
|
|
175
175
|
};
|
|
176
176
|
class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
177
177
|
searchAttachments(requestParameters = {}, options) {
|
|
178
|
-
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.
|
|
178
|
+
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.group, requestParameters.uploadedBy, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
179
179
|
}
|
|
180
180
|
uploadAttachment(requestParameters, options) {
|
|
181
181
|
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -519,7 +519,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
519
519
|
options: localVarRequestOptions
|
|
520
520
|
};
|
|
521
521
|
},
|
|
522
|
-
listPlugins: async (sort,
|
|
522
|
+
listPlugins: async (sort, keyword, enabled, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
523
523
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
524
524
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
525
525
|
let baseOptions;
|
|
@@ -534,12 +534,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
534
534
|
if (sort) {
|
|
535
535
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
536
536
|
}
|
|
537
|
-
if (enabled !== void 0) {
|
|
538
|
-
localVarQueryParameter["enabled"] = enabled;
|
|
539
|
-
}
|
|
540
537
|
if (keyword !== void 0) {
|
|
541
538
|
localVarQueryParameter["keyword"] = keyword;
|
|
542
539
|
}
|
|
540
|
+
if (enabled !== void 0) {
|
|
541
|
+
localVarQueryParameter["enabled"] = enabled;
|
|
542
|
+
}
|
|
543
543
|
if (size !== void 0) {
|
|
544
544
|
localVarQueryParameter["size"] = size;
|
|
545
545
|
}
|
|
@@ -597,8 +597,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
597
597
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
598
598
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
599
599
|
},
|
|
600
|
-
async listPlugins(sort,
|
|
601
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
600
|
+
async listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
|
|
601
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options);
|
|
602
602
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
603
603
|
},
|
|
604
604
|
async upgradePlugin(name, file, options) {
|
|
@@ -613,8 +613,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
613
613
|
installPlugin(file, options) {
|
|
614
614
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
615
615
|
},
|
|
616
|
-
listPlugins(sort,
|
|
617
|
-
return localVarFp.listPlugins(sort,
|
|
616
|
+
listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
|
|
617
|
+
return localVarFp.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
618
618
|
},
|
|
619
619
|
upgradePlugin(name, file, options) {
|
|
620
620
|
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
@@ -626,7 +626,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
626
626
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
627
627
|
}
|
|
628
628
|
listPlugins(requestParameters = {}, options) {
|
|
629
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
629
|
+
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.keyword, requestParameters.enabled, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
630
630
|
}
|
|
631
631
|
upgradePlugin(requestParameters, options) {
|
|
632
632
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -658,7 +658,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
658
658
|
options: localVarRequestOptions
|
|
659
659
|
};
|
|
660
660
|
},
|
|
661
|
-
listPosts: async (sort,
|
|
661
|
+
listPosts: async (sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
662
662
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
663
663
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
664
664
|
let baseOptions;
|
|
@@ -673,17 +673,14 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
673
673
|
if (sort !== void 0) {
|
|
674
674
|
localVarQueryParameter["sort"] = sort;
|
|
675
675
|
}
|
|
676
|
-
if (
|
|
677
|
-
localVarQueryParameter["
|
|
676
|
+
if (keyword !== void 0) {
|
|
677
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
678
678
|
}
|
|
679
679
|
if (visible !== void 0) {
|
|
680
680
|
localVarQueryParameter["visible"] = visible;
|
|
681
681
|
}
|
|
682
|
-
if (
|
|
683
|
-
localVarQueryParameter["
|
|
684
|
-
}
|
|
685
|
-
if (contributor) {
|
|
686
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
682
|
+
if (tag) {
|
|
683
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
687
684
|
}
|
|
688
685
|
if (sortOrder !== void 0) {
|
|
689
686
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -694,6 +691,9 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
694
691
|
if (category) {
|
|
695
692
|
localVarQueryParameter["category"] = Array.from(category);
|
|
696
693
|
}
|
|
694
|
+
if (contributor) {
|
|
695
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
696
|
+
}
|
|
697
697
|
if (size !== void 0) {
|
|
698
698
|
localVarQueryParameter["size"] = size;
|
|
699
699
|
}
|
|
@@ -768,8 +768,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
768
768
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
769
769
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
770
770
|
},
|
|
771
|
-
async listPosts(sort,
|
|
772
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
771
|
+
async listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
772
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options);
|
|
773
773
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
774
774
|
},
|
|
775
775
|
async publishPost(name, options) {
|
|
@@ -788,8 +788,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
788
788
|
draftPost(postRequest, options) {
|
|
789
789
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
790
790
|
},
|
|
791
|
-
listPosts(sort,
|
|
792
|
-
return localVarFp.listPosts(sort,
|
|
791
|
+
listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
792
|
+
return localVarFp.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
793
793
|
},
|
|
794
794
|
publishPost(name, options) {
|
|
795
795
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -804,7 +804,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
804
804
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
805
805
|
}
|
|
806
806
|
listPosts(requestParameters = {}, options) {
|
|
807
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
807
|
+
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.tag, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.category, requestParameters.contributor, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
808
808
|
}
|
|
809
809
|
publishPost(requestParameters, options) {
|
|
810
810
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -901,7 +901,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
901
901
|
options: localVarRequestOptions
|
|
902
902
|
};
|
|
903
903
|
},
|
|
904
|
-
listSinglePages: async (sort,
|
|
904
|
+
listSinglePages: async (sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
905
905
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
906
906
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
907
907
|
let baseOptions;
|
|
@@ -916,14 +916,11 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
916
916
|
if (sort !== void 0) {
|
|
917
917
|
localVarQueryParameter["sort"] = sort;
|
|
918
918
|
}
|
|
919
|
-
if (visible !== void 0) {
|
|
920
|
-
localVarQueryParameter["visible"] = visible;
|
|
921
|
-
}
|
|
922
919
|
if (keyword !== void 0) {
|
|
923
920
|
localVarQueryParameter["keyword"] = keyword;
|
|
924
921
|
}
|
|
925
|
-
if (
|
|
926
|
-
localVarQueryParameter["
|
|
922
|
+
if (visible !== void 0) {
|
|
923
|
+
localVarQueryParameter["visible"] = visible;
|
|
927
924
|
}
|
|
928
925
|
if (sortOrder !== void 0) {
|
|
929
926
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -931,6 +928,9 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
931
928
|
if (publishPhase !== void 0) {
|
|
932
929
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
933
930
|
}
|
|
931
|
+
if (contributor) {
|
|
932
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
933
|
+
}
|
|
934
934
|
if (size !== void 0) {
|
|
935
935
|
localVarQueryParameter["size"] = size;
|
|
936
936
|
}
|
|
@@ -1005,8 +1005,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1005
1005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1006
1006
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1007
1007
|
},
|
|
1008
|
-
async listSinglePages(sort,
|
|
1009
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
1008
|
+
async listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
1009
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options);
|
|
1010
1010
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1011
1011
|
},
|
|
1012
1012
|
async publishSinglePage(name, options) {
|
|
@@ -1025,8 +1025,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1025
1025
|
draftSinglePage(singlePageRequest, options) {
|
|
1026
1026
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1027
1027
|
},
|
|
1028
|
-
listSinglePages(sort,
|
|
1029
|
-
return localVarFp.listSinglePages(sort,
|
|
1028
|
+
listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
1029
|
+
return localVarFp.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1030
1030
|
},
|
|
1031
1031
|
publishSinglePage(name, options) {
|
|
1032
1032
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1041,7 +1041,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1041
1041
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1042
1042
|
}
|
|
1043
1043
|
listSinglePages(requestParameters = {}, options) {
|
|
1044
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1044
|
+
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.keyword, requestParameters.visible, requestParameters.sortOrder, requestParameters.publishPhase, requestParameters.contributor, requestParameters.size, requestParameters.page, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
1045
1045
|
}
|
|
1046
1046
|
publishSinglePage(requestParameters, options) {
|
|
1047
1047
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1531,12 +1531,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1531
1531
|
if (version !== void 0) {
|
|
1532
1532
|
localVarQueryParameter["version"] = version;
|
|
1533
1533
|
}
|
|
1534
|
-
if (kind !== void 0) {
|
|
1535
|
-
localVarQueryParameter["kind"] = kind;
|
|
1536
|
-
}
|
|
1537
1534
|
if (group !== void 0) {
|
|
1538
1535
|
localVarQueryParameter["group"] = group;
|
|
1539
1536
|
}
|
|
1537
|
+
if (kind !== void 0) {
|
|
1538
|
+
localVarQueryParameter["kind"] = kind;
|
|
1539
|
+
}
|
|
1540
1540
|
if (size !== void 0) {
|
|
1541
1541
|
localVarQueryParameter["size"] = size;
|
|
1542
1542
|
}
|
|
@@ -3034,378 +3034,6 @@ class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
3034
3034
|
}
|
|
3035
3035
|
}
|
|
3036
3036
|
|
|
3037
|
-
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
3038
|
-
return {
|
|
3039
|
-
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
3040
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
3041
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3042
|
-
let baseOptions;
|
|
3043
|
-
if (configuration) {
|
|
3044
|
-
baseOptions = configuration.baseOptions;
|
|
3045
|
-
}
|
|
3046
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3047
|
-
const localVarHeaderParameter = {};
|
|
3048
|
-
const localVarQueryParameter = {};
|
|
3049
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3050
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3051
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3052
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3053
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3054
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3055
|
-
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
3056
|
-
return {
|
|
3057
|
-
url: toPathString(localVarUrlObj),
|
|
3058
|
-
options: localVarRequestOptions
|
|
3059
|
-
};
|
|
3060
|
-
},
|
|
3061
|
-
deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
3062
|
-
assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
|
|
3063
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3064
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3065
|
-
let baseOptions;
|
|
3066
|
-
if (configuration) {
|
|
3067
|
-
baseOptions = configuration.baseOptions;
|
|
3068
|
-
}
|
|
3069
|
-
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
3070
|
-
const localVarHeaderParameter = {};
|
|
3071
|
-
const localVarQueryParameter = {};
|
|
3072
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3073
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3074
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3075
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3076
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3077
|
-
return {
|
|
3078
|
-
url: toPathString(localVarUrlObj),
|
|
3079
|
-
options: localVarRequestOptions
|
|
3080
|
-
};
|
|
3081
|
-
},
|
|
3082
|
-
getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
3083
|
-
assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
|
|
3084
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3085
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3086
|
-
let baseOptions;
|
|
3087
|
-
if (configuration) {
|
|
3088
|
-
baseOptions = configuration.baseOptions;
|
|
3089
|
-
}
|
|
3090
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3091
|
-
const localVarHeaderParameter = {};
|
|
3092
|
-
const localVarQueryParameter = {};
|
|
3093
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3094
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3095
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3096
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3097
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3098
|
-
return {
|
|
3099
|
-
url: toPathString(localVarUrlObj),
|
|
3100
|
-
options: localVarRequestOptions
|
|
3101
|
-
};
|
|
3102
|
-
},
|
|
3103
|
-
listcoreHaloRunV1alpha1Link: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
3104
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
3105
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3106
|
-
let baseOptions;
|
|
3107
|
-
if (configuration) {
|
|
3108
|
-
baseOptions = configuration.baseOptions;
|
|
3109
|
-
}
|
|
3110
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3111
|
-
const localVarHeaderParameter = {};
|
|
3112
|
-
const localVarQueryParameter = {};
|
|
3113
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3114
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3115
|
-
if (page !== void 0) {
|
|
3116
|
-
localVarQueryParameter["page"] = page;
|
|
3117
|
-
}
|
|
3118
|
-
if (size !== void 0) {
|
|
3119
|
-
localVarQueryParameter["size"] = size;
|
|
3120
|
-
}
|
|
3121
|
-
if (labelSelector) {
|
|
3122
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3123
|
-
}
|
|
3124
|
-
if (fieldSelector) {
|
|
3125
|
-
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3126
|
-
}
|
|
3127
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3128
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3129
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3130
|
-
return {
|
|
3131
|
-
url: toPathString(localVarUrlObj),
|
|
3132
|
-
options: localVarRequestOptions
|
|
3133
|
-
};
|
|
3134
|
-
},
|
|
3135
|
-
updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
|
|
3136
|
-
assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
|
|
3137
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3138
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3139
|
-
let baseOptions;
|
|
3140
|
-
if (configuration) {
|
|
3141
|
-
baseOptions = configuration.baseOptions;
|
|
3142
|
-
}
|
|
3143
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
3144
|
-
const localVarHeaderParameter = {};
|
|
3145
|
-
const localVarQueryParameter = {};
|
|
3146
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3147
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3148
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3149
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3150
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3151
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3152
|
-
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
3153
|
-
return {
|
|
3154
|
-
url: toPathString(localVarUrlObj),
|
|
3155
|
-
options: localVarRequestOptions
|
|
3156
|
-
};
|
|
3157
|
-
}
|
|
3158
|
-
};
|
|
3159
|
-
};
|
|
3160
|
-
const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
|
|
3161
|
-
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
|
|
3162
|
-
return {
|
|
3163
|
-
async createcoreHaloRunV1alpha1Link(link, options) {
|
|
3164
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
|
|
3165
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3166
|
-
},
|
|
3167
|
-
async deletecoreHaloRunV1alpha1Link(name, options) {
|
|
3168
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
|
|
3169
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3170
|
-
},
|
|
3171
|
-
async getcoreHaloRunV1alpha1Link(name, options) {
|
|
3172
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
|
|
3173
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3174
|
-
},
|
|
3175
|
-
async listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
3176
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options);
|
|
3177
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3178
|
-
},
|
|
3179
|
-
async updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
3180
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
|
|
3181
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3182
|
-
}
|
|
3183
|
-
};
|
|
3184
|
-
};
|
|
3185
|
-
const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
|
|
3186
|
-
const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
|
|
3187
|
-
return {
|
|
3188
|
-
createcoreHaloRunV1alpha1Link(link, options) {
|
|
3189
|
-
return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
|
|
3190
|
-
},
|
|
3191
|
-
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
3192
|
-
return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
3193
|
-
},
|
|
3194
|
-
getcoreHaloRunV1alpha1Link(name, options) {
|
|
3195
|
-
return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
3196
|
-
},
|
|
3197
|
-
listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
3198
|
-
return localVarFp.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
3199
|
-
},
|
|
3200
|
-
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
3201
|
-
return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
|
|
3202
|
-
}
|
|
3203
|
-
};
|
|
3204
|
-
};
|
|
3205
|
-
class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
3206
|
-
createcoreHaloRunV1alpha1Link(requestParameters = {}, options) {
|
|
3207
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(requestParameters.link, options).then((request) => request(this.axios, this.basePath));
|
|
3208
|
-
}
|
|
3209
|
-
deletecoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
3210
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3211
|
-
}
|
|
3212
|
-
getcoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
3213
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3214
|
-
}
|
|
3215
|
-
listcoreHaloRunV1alpha1Link(requestParameters = {}, options) {
|
|
3216
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3217
|
-
}
|
|
3218
|
-
updatecoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
3219
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(requestParameters.name, requestParameters.link, options).then((request) => request(this.axios, this.basePath));
|
|
3220
|
-
}
|
|
3221
|
-
}
|
|
3222
|
-
|
|
3223
|
-
const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
|
|
3224
|
-
return {
|
|
3225
|
-
createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
|
|
3226
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
3227
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3228
|
-
let baseOptions;
|
|
3229
|
-
if (configuration) {
|
|
3230
|
-
baseOptions = configuration.baseOptions;
|
|
3231
|
-
}
|
|
3232
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3233
|
-
const localVarHeaderParameter = {};
|
|
3234
|
-
const localVarQueryParameter = {};
|
|
3235
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3236
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3237
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3238
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3239
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3240
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3241
|
-
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
3242
|
-
return {
|
|
3243
|
-
url: toPathString(localVarUrlObj),
|
|
3244
|
-
options: localVarRequestOptions
|
|
3245
|
-
};
|
|
3246
|
-
},
|
|
3247
|
-
deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
3248
|
-
assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
3249
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3250
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3251
|
-
let baseOptions;
|
|
3252
|
-
if (configuration) {
|
|
3253
|
-
baseOptions = configuration.baseOptions;
|
|
3254
|
-
}
|
|
3255
|
-
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
3256
|
-
const localVarHeaderParameter = {};
|
|
3257
|
-
const localVarQueryParameter = {};
|
|
3258
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3259
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3260
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3261
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3262
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3263
|
-
return {
|
|
3264
|
-
url: toPathString(localVarUrlObj),
|
|
3265
|
-
options: localVarRequestOptions
|
|
3266
|
-
};
|
|
3267
|
-
},
|
|
3268
|
-
getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
3269
|
-
assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
3270
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3271
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3272
|
-
let baseOptions;
|
|
3273
|
-
if (configuration) {
|
|
3274
|
-
baseOptions = configuration.baseOptions;
|
|
3275
|
-
}
|
|
3276
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3277
|
-
const localVarHeaderParameter = {};
|
|
3278
|
-
const localVarQueryParameter = {};
|
|
3279
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3280
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3281
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3282
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3283
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3284
|
-
return {
|
|
3285
|
-
url: toPathString(localVarUrlObj),
|
|
3286
|
-
options: localVarRequestOptions
|
|
3287
|
-
};
|
|
3288
|
-
},
|
|
3289
|
-
listcoreHaloRunV1alpha1LinkGroup: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
3290
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
3291
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3292
|
-
let baseOptions;
|
|
3293
|
-
if (configuration) {
|
|
3294
|
-
baseOptions = configuration.baseOptions;
|
|
3295
|
-
}
|
|
3296
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3297
|
-
const localVarHeaderParameter = {};
|
|
3298
|
-
const localVarQueryParameter = {};
|
|
3299
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3300
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3301
|
-
if (page !== void 0) {
|
|
3302
|
-
localVarQueryParameter["page"] = page;
|
|
3303
|
-
}
|
|
3304
|
-
if (size !== void 0) {
|
|
3305
|
-
localVarQueryParameter["size"] = size;
|
|
3306
|
-
}
|
|
3307
|
-
if (labelSelector) {
|
|
3308
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3309
|
-
}
|
|
3310
|
-
if (fieldSelector) {
|
|
3311
|
-
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3312
|
-
}
|
|
3313
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3314
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3315
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3316
|
-
return {
|
|
3317
|
-
url: toPathString(localVarUrlObj),
|
|
3318
|
-
options: localVarRequestOptions
|
|
3319
|
-
};
|
|
3320
|
-
},
|
|
3321
|
-
updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
|
|
3322
|
-
assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
3323
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3324
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3325
|
-
let baseOptions;
|
|
3326
|
-
if (configuration) {
|
|
3327
|
-
baseOptions = configuration.baseOptions;
|
|
3328
|
-
}
|
|
3329
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
3330
|
-
const localVarHeaderParameter = {};
|
|
3331
|
-
const localVarQueryParameter = {};
|
|
3332
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3333
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3334
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3335
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3336
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3337
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3338
|
-
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
3339
|
-
return {
|
|
3340
|
-
url: toPathString(localVarUrlObj),
|
|
3341
|
-
options: localVarRequestOptions
|
|
3342
|
-
};
|
|
3343
|
-
}
|
|
3344
|
-
};
|
|
3345
|
-
};
|
|
3346
|
-
const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
|
|
3347
|
-
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
|
|
3348
|
-
return {
|
|
3349
|
-
async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
3350
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
|
|
3351
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3352
|
-
},
|
|
3353
|
-
async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3354
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
|
|
3355
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3356
|
-
},
|
|
3357
|
-
async getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3358
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
|
|
3359
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3360
|
-
},
|
|
3361
|
-
async listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
3362
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options);
|
|
3363
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3364
|
-
},
|
|
3365
|
-
async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
3366
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
|
|
3367
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3368
|
-
}
|
|
3369
|
-
};
|
|
3370
|
-
};
|
|
3371
|
-
const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
|
|
3372
|
-
const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
|
|
3373
|
-
return {
|
|
3374
|
-
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
3375
|
-
return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
|
|
3376
|
-
},
|
|
3377
|
-
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3378
|
-
return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
3379
|
-
},
|
|
3380
|
-
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3381
|
-
return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
3382
|
-
},
|
|
3383
|
-
listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
3384
|
-
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
3385
|
-
},
|
|
3386
|
-
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
3387
|
-
return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
|
|
3388
|
-
}
|
|
3389
|
-
};
|
|
3390
|
-
};
|
|
3391
|
-
class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
3392
|
-
createcoreHaloRunV1alpha1LinkGroup(requestParameters = {}, options) {
|
|
3393
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(requestParameters.linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
3394
|
-
}
|
|
3395
|
-
deletecoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
3396
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3397
|
-
}
|
|
3398
|
-
getcoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
3399
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3400
|
-
}
|
|
3401
|
-
listcoreHaloRunV1alpha1LinkGroup(requestParameters = {}, options) {
|
|
3402
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3403
|
-
}
|
|
3404
|
-
updatecoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
3405
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(requestParameters.name, requestParameters.linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
3406
|
-
}
|
|
3407
|
-
}
|
|
3408
|
-
|
|
3409
3037
|
const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator = function(configuration) {
|
|
3410
3038
|
return {
|
|
3411
3039
|
createmetricsHaloRunV1alpha1Counter: async (counter, options = {}) => {
|
|
@@ -6425,4 +6053,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
6425
6053
|
Private: "PRIVATE"
|
|
6426
6054
|
};
|
|
6427
6055
|
|
|
6428
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp,
|
|
6056
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ConditionStatusEnum, Configuration, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiFactory, V1alpha1UserApiFp };
|