@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.cjs
CHANGED
|
@@ -77,7 +77,7 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
77
77
|
|
|
78
78
|
const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configuration) {
|
|
79
79
|
return {
|
|
80
|
-
searchAttachments: async (policy, displayName,
|
|
80
|
+
searchAttachments: async (policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
81
81
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/attachments`;
|
|
82
82
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
83
83
|
let baseOptions;
|
|
@@ -95,12 +95,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
95
95
|
if (displayName !== void 0) {
|
|
96
96
|
localVarQueryParameter["displayName"] = displayName;
|
|
97
97
|
}
|
|
98
|
-
if (uploadedBy !== void 0) {
|
|
99
|
-
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
100
|
-
}
|
|
101
98
|
if (group !== void 0) {
|
|
102
99
|
localVarQueryParameter["group"] = group;
|
|
103
100
|
}
|
|
101
|
+
if (uploadedBy !== void 0) {
|
|
102
|
+
localVarQueryParameter["uploadedBy"] = uploadedBy;
|
|
103
|
+
}
|
|
104
104
|
if (size !== void 0) {
|
|
105
105
|
localVarQueryParameter["size"] = size;
|
|
106
106
|
}
|
|
@@ -139,12 +139,12 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
139
139
|
if (file !== void 0) {
|
|
140
140
|
localVarFormParams.append("file", file);
|
|
141
141
|
}
|
|
142
|
-
if (groupName !== void 0) {
|
|
143
|
-
localVarFormParams.append("groupName", groupName);
|
|
144
|
-
}
|
|
145
142
|
if (policyName !== void 0) {
|
|
146
143
|
localVarFormParams.append("policyName", policyName);
|
|
147
144
|
}
|
|
145
|
+
if (groupName !== void 0) {
|
|
146
|
+
localVarFormParams.append("groupName", groupName);
|
|
147
|
+
}
|
|
148
148
|
localVarHeaderParameter["Content-Type"] = "multipart/form-data";
|
|
149
149
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
150
150
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -160,8 +160,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator = function(configu
|
|
|
160
160
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
161
161
|
const localVarAxiosParamCreator = ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator(configuration);
|
|
162
162
|
return {
|
|
163
|
-
async searchAttachments(policy, displayName,
|
|
164
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName,
|
|
163
|
+
async searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
164
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options);
|
|
165
165
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
166
166
|
},
|
|
167
167
|
async uploadAttachment(file, policyName, groupName, options) {
|
|
@@ -173,8 +173,8 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFp = function(configuration) {
|
|
|
173
173
|
const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, basePath, axios) {
|
|
174
174
|
const localVarFp = ApiConsoleHaloRunV1alpha1AttachmentApiFp(configuration);
|
|
175
175
|
return {
|
|
176
|
-
searchAttachments(policy, displayName,
|
|
177
|
-
return localVarFp.searchAttachments(policy, displayName,
|
|
176
|
+
searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options) {
|
|
177
|
+
return localVarFp.searchAttachments(policy, displayName, group, uploadedBy, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
178
178
|
},
|
|
179
179
|
uploadAttachment(file, policyName, groupName, options) {
|
|
180
180
|
return localVarFp.uploadAttachment(file, policyName, groupName, options).then((request) => request(axios, basePath));
|
|
@@ -183,7 +183,7 @@ const ApiConsoleHaloRunV1alpha1AttachmentApiFactory = function(configuration, ba
|
|
|
183
183
|
};
|
|
184
184
|
class ApiConsoleHaloRunV1alpha1AttachmentApi extends BaseAPI {
|
|
185
185
|
searchAttachments(requestParameters = {}, options) {
|
|
186
|
-
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).searchAttachments(requestParameters.policy, requestParameters.displayName, requestParameters.
|
|
186
|
+
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));
|
|
187
187
|
}
|
|
188
188
|
uploadAttachment(requestParameters, options) {
|
|
189
189
|
return ApiConsoleHaloRunV1alpha1AttachmentApiFp(this.configuration).uploadAttachment(requestParameters.file, requestParameters.policyName, requestParameters.groupName, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -527,7 +527,7 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
527
527
|
options: localVarRequestOptions
|
|
528
528
|
};
|
|
529
529
|
},
|
|
530
|
-
listPlugins: async (sort,
|
|
530
|
+
listPlugins: async (sort, keyword, enabled, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
531
531
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/plugins`;
|
|
532
532
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
533
533
|
let baseOptions;
|
|
@@ -542,12 +542,12 @@ const ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator = function(configurati
|
|
|
542
542
|
if (sort) {
|
|
543
543
|
localVarQueryParameter["sort"] = Array.from(sort);
|
|
544
544
|
}
|
|
545
|
-
if (enabled !== void 0) {
|
|
546
|
-
localVarQueryParameter["enabled"] = enabled;
|
|
547
|
-
}
|
|
548
545
|
if (keyword !== void 0) {
|
|
549
546
|
localVarQueryParameter["keyword"] = keyword;
|
|
550
547
|
}
|
|
548
|
+
if (enabled !== void 0) {
|
|
549
|
+
localVarQueryParameter["enabled"] = enabled;
|
|
550
|
+
}
|
|
551
551
|
if (size !== void 0) {
|
|
552
552
|
localVarQueryParameter["size"] = size;
|
|
553
553
|
}
|
|
@@ -605,8 +605,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFp = function(configuration) {
|
|
|
605
605
|
const localVarAxiosArgs = await localVarAxiosParamCreator.installPlugin(file, options);
|
|
606
606
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
607
607
|
},
|
|
608
|
-
async listPlugins(sort,
|
|
609
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort,
|
|
608
|
+
async listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
|
|
609
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options);
|
|
610
610
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
611
611
|
},
|
|
612
612
|
async upgradePlugin(name, file, options) {
|
|
@@ -621,8 +621,8 @@ const ApiConsoleHaloRunV1alpha1PluginApiFactory = function(configuration, basePa
|
|
|
621
621
|
installPlugin(file, options) {
|
|
622
622
|
return localVarFp.installPlugin(file, options).then((request) => request(axios, basePath));
|
|
623
623
|
},
|
|
624
|
-
listPlugins(sort,
|
|
625
|
-
return localVarFp.listPlugins(sort,
|
|
624
|
+
listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options) {
|
|
625
|
+
return localVarFp.listPlugins(sort, keyword, enabled, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
626
626
|
},
|
|
627
627
|
upgradePlugin(name, file, options) {
|
|
628
628
|
return localVarFp.upgradePlugin(name, file, options).then((request) => request(axios, basePath));
|
|
@@ -634,7 +634,7 @@ class ApiConsoleHaloRunV1alpha1PluginApi extends BaseAPI {
|
|
|
634
634
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).installPlugin(requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
635
635
|
}
|
|
636
636
|
listPlugins(requestParameters = {}, options) {
|
|
637
|
-
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).listPlugins(requestParameters.sort, requestParameters.
|
|
637
|
+
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));
|
|
638
638
|
}
|
|
639
639
|
upgradePlugin(requestParameters, options) {
|
|
640
640
|
return ApiConsoleHaloRunV1alpha1PluginApiFp(this.configuration).upgradePlugin(requestParameters.name, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -666,7 +666,7 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
666
666
|
options: localVarRequestOptions
|
|
667
667
|
};
|
|
668
668
|
},
|
|
669
|
-
listPosts: async (sort,
|
|
669
|
+
listPosts: async (sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
670
670
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/posts`;
|
|
671
671
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
672
672
|
let baseOptions;
|
|
@@ -681,17 +681,14 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
681
681
|
if (sort !== void 0) {
|
|
682
682
|
localVarQueryParameter["sort"] = sort;
|
|
683
683
|
}
|
|
684
|
-
if (
|
|
685
|
-
localVarQueryParameter["
|
|
684
|
+
if (keyword !== void 0) {
|
|
685
|
+
localVarQueryParameter["keyword"] = keyword;
|
|
686
686
|
}
|
|
687
687
|
if (visible !== void 0) {
|
|
688
688
|
localVarQueryParameter["visible"] = visible;
|
|
689
689
|
}
|
|
690
|
-
if (
|
|
691
|
-
localVarQueryParameter["
|
|
692
|
-
}
|
|
693
|
-
if (contributor) {
|
|
694
|
-
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
690
|
+
if (tag) {
|
|
691
|
+
localVarQueryParameter["tag"] = Array.from(tag);
|
|
695
692
|
}
|
|
696
693
|
if (sortOrder !== void 0) {
|
|
697
694
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -702,6 +699,9 @@ const ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator = function(configuration
|
|
|
702
699
|
if (category) {
|
|
703
700
|
localVarQueryParameter["category"] = Array.from(category);
|
|
704
701
|
}
|
|
702
|
+
if (contributor) {
|
|
703
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
704
|
+
}
|
|
705
705
|
if (size !== void 0) {
|
|
706
706
|
localVarQueryParameter["size"] = size;
|
|
707
707
|
}
|
|
@@ -776,8 +776,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFp = function(configuration) {
|
|
|
776
776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftPost(postRequest, options);
|
|
777
777
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
778
778
|
},
|
|
779
|
-
async listPosts(sort,
|
|
780
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort,
|
|
779
|
+
async listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
780
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options);
|
|
781
781
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
782
782
|
},
|
|
783
783
|
async publishPost(name, options) {
|
|
@@ -796,8 +796,8 @@ const ApiConsoleHaloRunV1alpha1PostApiFactory = function(configuration, basePath
|
|
|
796
796
|
draftPost(postRequest, options) {
|
|
797
797
|
return localVarFp.draftPost(postRequest, options).then((request) => request(axios, basePath));
|
|
798
798
|
},
|
|
799
|
-
listPosts(sort,
|
|
800
|
-
return localVarFp.listPosts(sort,
|
|
799
|
+
listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
800
|
+
return localVarFp.listPosts(sort, keyword, visible, tag, sortOrder, publishPhase, category, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
801
801
|
},
|
|
802
802
|
publishPost(name, options) {
|
|
803
803
|
return localVarFp.publishPost(name, options).then((request) => request(axios, basePath));
|
|
@@ -812,7 +812,7 @@ class ApiConsoleHaloRunV1alpha1PostApi extends BaseAPI {
|
|
|
812
812
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).draftPost(requestParameters.postRequest, options).then((request) => request(this.axios, this.basePath));
|
|
813
813
|
}
|
|
814
814
|
listPosts(requestParameters = {}, options) {
|
|
815
|
-
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).listPosts(requestParameters.sort, requestParameters.
|
|
815
|
+
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));
|
|
816
816
|
}
|
|
817
817
|
publishPost(requestParameters, options) {
|
|
818
818
|
return ApiConsoleHaloRunV1alpha1PostApiFp(this.configuration).publishPost(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -909,7 +909,7 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
909
909
|
options: localVarRequestOptions
|
|
910
910
|
};
|
|
911
911
|
},
|
|
912
|
-
listSinglePages: async (sort,
|
|
912
|
+
listSinglePages: async (sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options = {}) => {
|
|
913
913
|
const localVarPath = `/apis/api.console.halo.run/v1alpha1/singlepages`;
|
|
914
914
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
915
915
|
let baseOptions;
|
|
@@ -924,14 +924,11 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
924
924
|
if (sort !== void 0) {
|
|
925
925
|
localVarQueryParameter["sort"] = sort;
|
|
926
926
|
}
|
|
927
|
-
if (visible !== void 0) {
|
|
928
|
-
localVarQueryParameter["visible"] = visible;
|
|
929
|
-
}
|
|
930
927
|
if (keyword !== void 0) {
|
|
931
928
|
localVarQueryParameter["keyword"] = keyword;
|
|
932
929
|
}
|
|
933
|
-
if (
|
|
934
|
-
localVarQueryParameter["
|
|
930
|
+
if (visible !== void 0) {
|
|
931
|
+
localVarQueryParameter["visible"] = visible;
|
|
935
932
|
}
|
|
936
933
|
if (sortOrder !== void 0) {
|
|
937
934
|
localVarQueryParameter["sortOrder"] = sortOrder;
|
|
@@ -939,6 +936,9 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator = function(configu
|
|
|
939
936
|
if (publishPhase !== void 0) {
|
|
940
937
|
localVarQueryParameter["publishPhase"] = publishPhase;
|
|
941
938
|
}
|
|
939
|
+
if (contributor) {
|
|
940
|
+
localVarQueryParameter["contributor"] = Array.from(contributor);
|
|
941
|
+
}
|
|
942
942
|
if (size !== void 0) {
|
|
943
943
|
localVarQueryParameter["size"] = size;
|
|
944
944
|
}
|
|
@@ -1013,8 +1013,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFp = function(configuration) {
|
|
|
1013
1013
|
const localVarAxiosArgs = await localVarAxiosParamCreator.draftSinglePage(singlePageRequest, options);
|
|
1014
1014
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1015
1015
|
},
|
|
1016
|
-
async listSinglePages(sort,
|
|
1017
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort,
|
|
1016
|
+
async listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
1017
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options);
|
|
1018
1018
|
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
1019
1019
|
},
|
|
1020
1020
|
async publishSinglePage(name, options) {
|
|
@@ -1033,8 +1033,8 @@ const ApiConsoleHaloRunV1alpha1SinglePageApiFactory = function(configuration, ba
|
|
|
1033
1033
|
draftSinglePage(singlePageRequest, options) {
|
|
1034
1034
|
return localVarFp.draftSinglePage(singlePageRequest, options).then((request) => request(axios, basePath));
|
|
1035
1035
|
},
|
|
1036
|
-
listSinglePages(sort,
|
|
1037
|
-
return localVarFp.listSinglePages(sort,
|
|
1036
|
+
listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options) {
|
|
1037
|
+
return localVarFp.listSinglePages(sort, keyword, visible, sortOrder, publishPhase, contributor, size, page, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
1038
1038
|
},
|
|
1039
1039
|
publishSinglePage(name, options) {
|
|
1040
1040
|
return localVarFp.publishSinglePage(name, options).then((request) => request(axios, basePath));
|
|
@@ -1049,7 +1049,7 @@ class ApiConsoleHaloRunV1alpha1SinglePageApi extends BaseAPI {
|
|
|
1049
1049
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).draftSinglePage(requestParameters.singlePageRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1050
1050
|
}
|
|
1051
1051
|
listSinglePages(requestParameters = {}, options) {
|
|
1052
|
-
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).listSinglePages(requestParameters.sort, requestParameters.
|
|
1052
|
+
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));
|
|
1053
1053
|
}
|
|
1054
1054
|
publishSinglePage(requestParameters, options) {
|
|
1055
1055
|
return ApiConsoleHaloRunV1alpha1SinglePageApiFp(this.configuration).publishSinglePage(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1539,12 +1539,12 @@ const ApiHaloRunV1alpha1CommentApiAxiosParamCreator = function(configuration) {
|
|
|
1539
1539
|
if (version !== void 0) {
|
|
1540
1540
|
localVarQueryParameter["version"] = version;
|
|
1541
1541
|
}
|
|
1542
|
-
if (kind !== void 0) {
|
|
1543
|
-
localVarQueryParameter["kind"] = kind;
|
|
1544
|
-
}
|
|
1545
1542
|
if (group !== void 0) {
|
|
1546
1543
|
localVarQueryParameter["group"] = group;
|
|
1547
1544
|
}
|
|
1545
|
+
if (kind !== void 0) {
|
|
1546
|
+
localVarQueryParameter["kind"] = kind;
|
|
1547
|
+
}
|
|
1548
1548
|
if (size !== void 0) {
|
|
1549
1549
|
localVarQueryParameter["size"] = size;
|
|
1550
1550
|
}
|
|
@@ -3042,378 +3042,6 @@ class ContentHaloRunV1alpha1TagApi extends BaseAPI {
|
|
|
3042
3042
|
}
|
|
3043
3043
|
}
|
|
3044
3044
|
|
|
3045
|
-
const CoreHaloRunV1alpha1LinkApiAxiosParamCreator = function(configuration) {
|
|
3046
|
-
return {
|
|
3047
|
-
createcoreHaloRunV1alpha1Link: async (link, options = {}) => {
|
|
3048
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
3049
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3050
|
-
let baseOptions;
|
|
3051
|
-
if (configuration) {
|
|
3052
|
-
baseOptions = configuration.baseOptions;
|
|
3053
|
-
}
|
|
3054
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3055
|
-
const localVarHeaderParameter = {};
|
|
3056
|
-
const localVarQueryParameter = {};
|
|
3057
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3058
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3059
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3060
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3061
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3062
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3063
|
-
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
3064
|
-
return {
|
|
3065
|
-
url: toPathString(localVarUrlObj),
|
|
3066
|
-
options: localVarRequestOptions
|
|
3067
|
-
};
|
|
3068
|
-
},
|
|
3069
|
-
deletecoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
3070
|
-
assertParamExists("deletecoreHaloRunV1alpha1Link", "name", name);
|
|
3071
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3072
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3073
|
-
let baseOptions;
|
|
3074
|
-
if (configuration) {
|
|
3075
|
-
baseOptions = configuration.baseOptions;
|
|
3076
|
-
}
|
|
3077
|
-
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
3078
|
-
const localVarHeaderParameter = {};
|
|
3079
|
-
const localVarQueryParameter = {};
|
|
3080
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3081
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3082
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3083
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3084
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3085
|
-
return {
|
|
3086
|
-
url: toPathString(localVarUrlObj),
|
|
3087
|
-
options: localVarRequestOptions
|
|
3088
|
-
};
|
|
3089
|
-
},
|
|
3090
|
-
getcoreHaloRunV1alpha1Link: async (name, options = {}) => {
|
|
3091
|
-
assertParamExists("getcoreHaloRunV1alpha1Link", "name", name);
|
|
3092
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3093
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3094
|
-
let baseOptions;
|
|
3095
|
-
if (configuration) {
|
|
3096
|
-
baseOptions = configuration.baseOptions;
|
|
3097
|
-
}
|
|
3098
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3099
|
-
const localVarHeaderParameter = {};
|
|
3100
|
-
const localVarQueryParameter = {};
|
|
3101
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3102
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3103
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3104
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3105
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3106
|
-
return {
|
|
3107
|
-
url: toPathString(localVarUrlObj),
|
|
3108
|
-
options: localVarRequestOptions
|
|
3109
|
-
};
|
|
3110
|
-
},
|
|
3111
|
-
listcoreHaloRunV1alpha1Link: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
3112
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links`;
|
|
3113
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3114
|
-
let baseOptions;
|
|
3115
|
-
if (configuration) {
|
|
3116
|
-
baseOptions = configuration.baseOptions;
|
|
3117
|
-
}
|
|
3118
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3119
|
-
const localVarHeaderParameter = {};
|
|
3120
|
-
const localVarQueryParameter = {};
|
|
3121
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3122
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3123
|
-
if (page !== void 0) {
|
|
3124
|
-
localVarQueryParameter["page"] = page;
|
|
3125
|
-
}
|
|
3126
|
-
if (size !== void 0) {
|
|
3127
|
-
localVarQueryParameter["size"] = size;
|
|
3128
|
-
}
|
|
3129
|
-
if (labelSelector) {
|
|
3130
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3131
|
-
}
|
|
3132
|
-
if (fieldSelector) {
|
|
3133
|
-
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3134
|
-
}
|
|
3135
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3136
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3137
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3138
|
-
return {
|
|
3139
|
-
url: toPathString(localVarUrlObj),
|
|
3140
|
-
options: localVarRequestOptions
|
|
3141
|
-
};
|
|
3142
|
-
},
|
|
3143
|
-
updatecoreHaloRunV1alpha1Link: async (name, link, options = {}) => {
|
|
3144
|
-
assertParamExists("updatecoreHaloRunV1alpha1Link", "name", name);
|
|
3145
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/links/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3146
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3147
|
-
let baseOptions;
|
|
3148
|
-
if (configuration) {
|
|
3149
|
-
baseOptions = configuration.baseOptions;
|
|
3150
|
-
}
|
|
3151
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
3152
|
-
const localVarHeaderParameter = {};
|
|
3153
|
-
const localVarQueryParameter = {};
|
|
3154
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3155
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3156
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3157
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3158
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3159
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3160
|
-
localVarRequestOptions.data = serializeDataIfNeeded(link, localVarRequestOptions, configuration);
|
|
3161
|
-
return {
|
|
3162
|
-
url: toPathString(localVarUrlObj),
|
|
3163
|
-
options: localVarRequestOptions
|
|
3164
|
-
};
|
|
3165
|
-
}
|
|
3166
|
-
};
|
|
3167
|
-
};
|
|
3168
|
-
const CoreHaloRunV1alpha1LinkApiFp = function(configuration) {
|
|
3169
|
-
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator(configuration);
|
|
3170
|
-
return {
|
|
3171
|
-
async createcoreHaloRunV1alpha1Link(link, options) {
|
|
3172
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1Link(link, options);
|
|
3173
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3174
|
-
},
|
|
3175
|
-
async deletecoreHaloRunV1alpha1Link(name, options) {
|
|
3176
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1Link(name, options);
|
|
3177
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3178
|
-
},
|
|
3179
|
-
async getcoreHaloRunV1alpha1Link(name, options) {
|
|
3180
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1Link(name, options);
|
|
3181
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3182
|
-
},
|
|
3183
|
-
async listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
3184
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options);
|
|
3185
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3186
|
-
},
|
|
3187
|
-
async updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
3188
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1Link(name, link, options);
|
|
3189
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3190
|
-
}
|
|
3191
|
-
};
|
|
3192
|
-
};
|
|
3193
|
-
const CoreHaloRunV1alpha1LinkApiFactory = function(configuration, basePath, axios) {
|
|
3194
|
-
const localVarFp = CoreHaloRunV1alpha1LinkApiFp(configuration);
|
|
3195
|
-
return {
|
|
3196
|
-
createcoreHaloRunV1alpha1Link(link, options) {
|
|
3197
|
-
return localVarFp.createcoreHaloRunV1alpha1Link(link, options).then((request) => request(axios, basePath));
|
|
3198
|
-
},
|
|
3199
|
-
deletecoreHaloRunV1alpha1Link(name, options) {
|
|
3200
|
-
return localVarFp.deletecoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
3201
|
-
},
|
|
3202
|
-
getcoreHaloRunV1alpha1Link(name, options) {
|
|
3203
|
-
return localVarFp.getcoreHaloRunV1alpha1Link(name, options).then((request) => request(axios, basePath));
|
|
3204
|
-
},
|
|
3205
|
-
listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options) {
|
|
3206
|
-
return localVarFp.listcoreHaloRunV1alpha1Link(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
3207
|
-
},
|
|
3208
|
-
updatecoreHaloRunV1alpha1Link(name, link, options) {
|
|
3209
|
-
return localVarFp.updatecoreHaloRunV1alpha1Link(name, link, options).then((request) => request(axios, basePath));
|
|
3210
|
-
}
|
|
3211
|
-
};
|
|
3212
|
-
};
|
|
3213
|
-
class CoreHaloRunV1alpha1LinkApi extends BaseAPI {
|
|
3214
|
-
createcoreHaloRunV1alpha1Link(requestParameters = {}, options) {
|
|
3215
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).createcoreHaloRunV1alpha1Link(requestParameters.link, options).then((request) => request(this.axios, this.basePath));
|
|
3216
|
-
}
|
|
3217
|
-
deletecoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
3218
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).deletecoreHaloRunV1alpha1Link(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3219
|
-
}
|
|
3220
|
-
getcoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
3221
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).getcoreHaloRunV1alpha1Link(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3222
|
-
}
|
|
3223
|
-
listcoreHaloRunV1alpha1Link(requestParameters = {}, options) {
|
|
3224
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).listcoreHaloRunV1alpha1Link(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3225
|
-
}
|
|
3226
|
-
updatecoreHaloRunV1alpha1Link(requestParameters, options) {
|
|
3227
|
-
return CoreHaloRunV1alpha1LinkApiFp(this.configuration).updatecoreHaloRunV1alpha1Link(requestParameters.name, requestParameters.link, options).then((request) => request(this.axios, this.basePath));
|
|
3228
|
-
}
|
|
3229
|
-
}
|
|
3230
|
-
|
|
3231
|
-
const CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = function(configuration) {
|
|
3232
|
-
return {
|
|
3233
|
-
createcoreHaloRunV1alpha1LinkGroup: async (linkGroup, options = {}) => {
|
|
3234
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
3235
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3236
|
-
let baseOptions;
|
|
3237
|
-
if (configuration) {
|
|
3238
|
-
baseOptions = configuration.baseOptions;
|
|
3239
|
-
}
|
|
3240
|
-
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
3241
|
-
const localVarHeaderParameter = {};
|
|
3242
|
-
const localVarQueryParameter = {};
|
|
3243
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3244
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3245
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3246
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3247
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3248
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3249
|
-
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
3250
|
-
return {
|
|
3251
|
-
url: toPathString(localVarUrlObj),
|
|
3252
|
-
options: localVarRequestOptions
|
|
3253
|
-
};
|
|
3254
|
-
},
|
|
3255
|
-
deletecoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
3256
|
-
assertParamExists("deletecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
3257
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3258
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3259
|
-
let baseOptions;
|
|
3260
|
-
if (configuration) {
|
|
3261
|
-
baseOptions = configuration.baseOptions;
|
|
3262
|
-
}
|
|
3263
|
-
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
3264
|
-
const localVarHeaderParameter = {};
|
|
3265
|
-
const localVarQueryParameter = {};
|
|
3266
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3267
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3268
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3269
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3270
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3271
|
-
return {
|
|
3272
|
-
url: toPathString(localVarUrlObj),
|
|
3273
|
-
options: localVarRequestOptions
|
|
3274
|
-
};
|
|
3275
|
-
},
|
|
3276
|
-
getcoreHaloRunV1alpha1LinkGroup: async (name, options = {}) => {
|
|
3277
|
-
assertParamExists("getcoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
3278
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3279
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3280
|
-
let baseOptions;
|
|
3281
|
-
if (configuration) {
|
|
3282
|
-
baseOptions = configuration.baseOptions;
|
|
3283
|
-
}
|
|
3284
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3285
|
-
const localVarHeaderParameter = {};
|
|
3286
|
-
const localVarQueryParameter = {};
|
|
3287
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3288
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3289
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3290
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3291
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3292
|
-
return {
|
|
3293
|
-
url: toPathString(localVarUrlObj),
|
|
3294
|
-
options: localVarRequestOptions
|
|
3295
|
-
};
|
|
3296
|
-
},
|
|
3297
|
-
listcoreHaloRunV1alpha1LinkGroup: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
3298
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups`;
|
|
3299
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3300
|
-
let baseOptions;
|
|
3301
|
-
if (configuration) {
|
|
3302
|
-
baseOptions = configuration.baseOptions;
|
|
3303
|
-
}
|
|
3304
|
-
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
3305
|
-
const localVarHeaderParameter = {};
|
|
3306
|
-
const localVarQueryParameter = {};
|
|
3307
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3308
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3309
|
-
if (page !== void 0) {
|
|
3310
|
-
localVarQueryParameter["page"] = page;
|
|
3311
|
-
}
|
|
3312
|
-
if (size !== void 0) {
|
|
3313
|
-
localVarQueryParameter["size"] = size;
|
|
3314
|
-
}
|
|
3315
|
-
if (labelSelector) {
|
|
3316
|
-
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
3317
|
-
}
|
|
3318
|
-
if (fieldSelector) {
|
|
3319
|
-
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
3320
|
-
}
|
|
3321
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3322
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3323
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3324
|
-
return {
|
|
3325
|
-
url: toPathString(localVarUrlObj),
|
|
3326
|
-
options: localVarRequestOptions
|
|
3327
|
-
};
|
|
3328
|
-
},
|
|
3329
|
-
updatecoreHaloRunV1alpha1LinkGroup: async (name, linkGroup, options = {}) => {
|
|
3330
|
-
assertParamExists("updatecoreHaloRunV1alpha1LinkGroup", "name", name);
|
|
3331
|
-
const localVarPath = `/apis/core.halo.run/v1alpha1/linkgroups/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
3332
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3333
|
-
let baseOptions;
|
|
3334
|
-
if (configuration) {
|
|
3335
|
-
baseOptions = configuration.baseOptions;
|
|
3336
|
-
}
|
|
3337
|
-
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
3338
|
-
const localVarHeaderParameter = {};
|
|
3339
|
-
const localVarQueryParameter = {};
|
|
3340
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
3341
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3342
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3343
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3344
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3345
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3346
|
-
localVarRequestOptions.data = serializeDataIfNeeded(linkGroup, localVarRequestOptions, configuration);
|
|
3347
|
-
return {
|
|
3348
|
-
url: toPathString(localVarUrlObj),
|
|
3349
|
-
options: localVarRequestOptions
|
|
3350
|
-
};
|
|
3351
|
-
}
|
|
3352
|
-
};
|
|
3353
|
-
};
|
|
3354
|
-
const CoreHaloRunV1alpha1LinkGroupApiFp = function(configuration) {
|
|
3355
|
-
const localVarAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator(configuration);
|
|
3356
|
-
return {
|
|
3357
|
-
async createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
3358
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options);
|
|
3359
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3360
|
-
},
|
|
3361
|
-
async deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3362
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deletecoreHaloRunV1alpha1LinkGroup(name, options);
|
|
3363
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3364
|
-
},
|
|
3365
|
-
async getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3366
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getcoreHaloRunV1alpha1LinkGroup(name, options);
|
|
3367
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3368
|
-
},
|
|
3369
|
-
async listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
3370
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options);
|
|
3371
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3372
|
-
},
|
|
3373
|
-
async updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
3374
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options);
|
|
3375
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
3376
|
-
}
|
|
3377
|
-
};
|
|
3378
|
-
};
|
|
3379
|
-
const CoreHaloRunV1alpha1LinkGroupApiFactory = function(configuration, basePath, axios) {
|
|
3380
|
-
const localVarFp = CoreHaloRunV1alpha1LinkGroupApiFp(configuration);
|
|
3381
|
-
return {
|
|
3382
|
-
createcoreHaloRunV1alpha1LinkGroup(linkGroup, options) {
|
|
3383
|
-
return localVarFp.createcoreHaloRunV1alpha1LinkGroup(linkGroup, options).then((request) => request(axios, basePath));
|
|
3384
|
-
},
|
|
3385
|
-
deletecoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3386
|
-
return localVarFp.deletecoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
3387
|
-
},
|
|
3388
|
-
getcoreHaloRunV1alpha1LinkGroup(name, options) {
|
|
3389
|
-
return localVarFp.getcoreHaloRunV1alpha1LinkGroup(name, options).then((request) => request(axios, basePath));
|
|
3390
|
-
},
|
|
3391
|
-
listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options) {
|
|
3392
|
-
return localVarFp.listcoreHaloRunV1alpha1LinkGroup(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
3393
|
-
},
|
|
3394
|
-
updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options) {
|
|
3395
|
-
return localVarFp.updatecoreHaloRunV1alpha1LinkGroup(name, linkGroup, options).then((request) => request(axios, basePath));
|
|
3396
|
-
}
|
|
3397
|
-
};
|
|
3398
|
-
};
|
|
3399
|
-
class CoreHaloRunV1alpha1LinkGroupApi extends BaseAPI {
|
|
3400
|
-
createcoreHaloRunV1alpha1LinkGroup(requestParameters = {}, options) {
|
|
3401
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).createcoreHaloRunV1alpha1LinkGroup(requestParameters.linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
3402
|
-
}
|
|
3403
|
-
deletecoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
3404
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).deletecoreHaloRunV1alpha1LinkGroup(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3405
|
-
}
|
|
3406
|
-
getcoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
3407
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).getcoreHaloRunV1alpha1LinkGroup(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
3408
|
-
}
|
|
3409
|
-
listcoreHaloRunV1alpha1LinkGroup(requestParameters = {}, options) {
|
|
3410
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).listcoreHaloRunV1alpha1LinkGroup(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
3411
|
-
}
|
|
3412
|
-
updatecoreHaloRunV1alpha1LinkGroup(requestParameters, options) {
|
|
3413
|
-
return CoreHaloRunV1alpha1LinkGroupApiFp(this.configuration).updatecoreHaloRunV1alpha1LinkGroup(requestParameters.name, requestParameters.linkGroup, options).then((request) => request(this.axios, this.basePath));
|
|
3414
|
-
}
|
|
3415
|
-
}
|
|
3416
|
-
|
|
3417
3045
|
const MetricsHaloRunV1alpha1CounterApiAxiosParamCreator = function(configuration) {
|
|
3418
3046
|
return {
|
|
3419
3047
|
createmetricsHaloRunV1alpha1Counter: async (counter, options = {}) => {
|
|
@@ -6511,14 +6139,6 @@ exports.ContentHaloRunV1alpha1TagApi = ContentHaloRunV1alpha1TagApi;
|
|
|
6511
6139
|
exports.ContentHaloRunV1alpha1TagApiAxiosParamCreator = ContentHaloRunV1alpha1TagApiAxiosParamCreator;
|
|
6512
6140
|
exports.ContentHaloRunV1alpha1TagApiFactory = ContentHaloRunV1alpha1TagApiFactory;
|
|
6513
6141
|
exports.ContentHaloRunV1alpha1TagApiFp = ContentHaloRunV1alpha1TagApiFp;
|
|
6514
|
-
exports.CoreHaloRunV1alpha1LinkApi = CoreHaloRunV1alpha1LinkApi;
|
|
6515
|
-
exports.CoreHaloRunV1alpha1LinkApiAxiosParamCreator = CoreHaloRunV1alpha1LinkApiAxiosParamCreator;
|
|
6516
|
-
exports.CoreHaloRunV1alpha1LinkApiFactory = CoreHaloRunV1alpha1LinkApiFactory;
|
|
6517
|
-
exports.CoreHaloRunV1alpha1LinkApiFp = CoreHaloRunV1alpha1LinkApiFp;
|
|
6518
|
-
exports.CoreHaloRunV1alpha1LinkGroupApi = CoreHaloRunV1alpha1LinkGroupApi;
|
|
6519
|
-
exports.CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator = CoreHaloRunV1alpha1LinkGroupApiAxiosParamCreator;
|
|
6520
|
-
exports.CoreHaloRunV1alpha1LinkGroupApiFactory = CoreHaloRunV1alpha1LinkGroupApiFactory;
|
|
6521
|
-
exports.CoreHaloRunV1alpha1LinkGroupApiFp = CoreHaloRunV1alpha1LinkGroupApiFp;
|
|
6522
6142
|
exports.MetricsHaloRunV1alpha1CounterApi = MetricsHaloRunV1alpha1CounterApi;
|
|
6523
6143
|
exports.MetricsHaloRunV1alpha1CounterApiAxiosParamCreator = MetricsHaloRunV1alpha1CounterApiAxiosParamCreator;
|
|
6524
6144
|
exports.MetricsHaloRunV1alpha1CounterApiFactory = MetricsHaloRunV1alpha1CounterApiFactory;
|