@halo-dev/api-client 0.0.62 → 0.0.63-beta.0
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 +190 -0
- package/dist/index.d.ts +499 -45
- package/dist/index.mjs +187 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4990,6 +4990,192 @@ class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
4990
4990
|
}
|
|
4991
4991
|
}
|
|
4992
4992
|
|
|
4993
|
+
const V1alpha1AnnotationSettingApiAxiosParamCreator = function(configuration) {
|
|
4994
|
+
return {
|
|
4995
|
+
createv1alpha1AnnotationSetting: async (annotationSetting, options = {}) => {
|
|
4996
|
+
const localVarPath = `/api/v1alpha1/annotationsettings`;
|
|
4997
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4998
|
+
let baseOptions;
|
|
4999
|
+
if (configuration) {
|
|
5000
|
+
baseOptions = configuration.baseOptions;
|
|
5001
|
+
}
|
|
5002
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
5003
|
+
const localVarHeaderParameter = {};
|
|
5004
|
+
const localVarQueryParameter = {};
|
|
5005
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5006
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5007
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5008
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5009
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5010
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5011
|
+
localVarRequestOptions.data = serializeDataIfNeeded(annotationSetting, localVarRequestOptions, configuration);
|
|
5012
|
+
return {
|
|
5013
|
+
url: toPathString(localVarUrlObj),
|
|
5014
|
+
options: localVarRequestOptions
|
|
5015
|
+
};
|
|
5016
|
+
},
|
|
5017
|
+
deletev1alpha1AnnotationSetting: async (name, options = {}) => {
|
|
5018
|
+
assertParamExists("deletev1alpha1AnnotationSetting", "name", name);
|
|
5019
|
+
const localVarPath = `/api/v1alpha1/annotationsettings/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
5020
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5021
|
+
let baseOptions;
|
|
5022
|
+
if (configuration) {
|
|
5023
|
+
baseOptions = configuration.baseOptions;
|
|
5024
|
+
}
|
|
5025
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
5026
|
+
const localVarHeaderParameter = {};
|
|
5027
|
+
const localVarQueryParameter = {};
|
|
5028
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5029
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5030
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5031
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5032
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5033
|
+
return {
|
|
5034
|
+
url: toPathString(localVarUrlObj),
|
|
5035
|
+
options: localVarRequestOptions
|
|
5036
|
+
};
|
|
5037
|
+
},
|
|
5038
|
+
getv1alpha1AnnotationSetting: async (name, options = {}) => {
|
|
5039
|
+
assertParamExists("getv1alpha1AnnotationSetting", "name", name);
|
|
5040
|
+
const localVarPath = `/api/v1alpha1/annotationsettings/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
5041
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5042
|
+
let baseOptions;
|
|
5043
|
+
if (configuration) {
|
|
5044
|
+
baseOptions = configuration.baseOptions;
|
|
5045
|
+
}
|
|
5046
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
5047
|
+
const localVarHeaderParameter = {};
|
|
5048
|
+
const localVarQueryParameter = {};
|
|
5049
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5050
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5051
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5052
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5053
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5054
|
+
return {
|
|
5055
|
+
url: toPathString(localVarUrlObj),
|
|
5056
|
+
options: localVarRequestOptions
|
|
5057
|
+
};
|
|
5058
|
+
},
|
|
5059
|
+
listv1alpha1AnnotationSetting: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
5060
|
+
const localVarPath = `/api/v1alpha1/annotationsettings`;
|
|
5061
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5062
|
+
let baseOptions;
|
|
5063
|
+
if (configuration) {
|
|
5064
|
+
baseOptions = configuration.baseOptions;
|
|
5065
|
+
}
|
|
5066
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
5067
|
+
const localVarHeaderParameter = {};
|
|
5068
|
+
const localVarQueryParameter = {};
|
|
5069
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5070
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5071
|
+
if (page !== void 0) {
|
|
5072
|
+
localVarQueryParameter["page"] = page;
|
|
5073
|
+
}
|
|
5074
|
+
if (size !== void 0) {
|
|
5075
|
+
localVarQueryParameter["size"] = size;
|
|
5076
|
+
}
|
|
5077
|
+
if (labelSelector) {
|
|
5078
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
5079
|
+
}
|
|
5080
|
+
if (fieldSelector) {
|
|
5081
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
5082
|
+
}
|
|
5083
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5084
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5085
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5086
|
+
return {
|
|
5087
|
+
url: toPathString(localVarUrlObj),
|
|
5088
|
+
options: localVarRequestOptions
|
|
5089
|
+
};
|
|
5090
|
+
},
|
|
5091
|
+
updatev1alpha1AnnotationSetting: async (name, annotationSetting, options = {}) => {
|
|
5092
|
+
assertParamExists("updatev1alpha1AnnotationSetting", "name", name);
|
|
5093
|
+
const localVarPath = `/api/v1alpha1/annotationsettings/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
5094
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5095
|
+
let baseOptions;
|
|
5096
|
+
if (configuration) {
|
|
5097
|
+
baseOptions = configuration.baseOptions;
|
|
5098
|
+
}
|
|
5099
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
5100
|
+
const localVarHeaderParameter = {};
|
|
5101
|
+
const localVarQueryParameter = {};
|
|
5102
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5103
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5104
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5105
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5106
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5107
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5108
|
+
localVarRequestOptions.data = serializeDataIfNeeded(annotationSetting, localVarRequestOptions, configuration);
|
|
5109
|
+
return {
|
|
5110
|
+
url: toPathString(localVarUrlObj),
|
|
5111
|
+
options: localVarRequestOptions
|
|
5112
|
+
};
|
|
5113
|
+
}
|
|
5114
|
+
};
|
|
5115
|
+
};
|
|
5116
|
+
const V1alpha1AnnotationSettingApiFp = function(configuration) {
|
|
5117
|
+
const localVarAxiosParamCreator = V1alpha1AnnotationSettingApiAxiosParamCreator(configuration);
|
|
5118
|
+
return {
|
|
5119
|
+
async createv1alpha1AnnotationSetting(annotationSetting, options) {
|
|
5120
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createv1alpha1AnnotationSetting(annotationSetting, options);
|
|
5121
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
5122
|
+
},
|
|
5123
|
+
async deletev1alpha1AnnotationSetting(name, options) {
|
|
5124
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletev1alpha1AnnotationSetting(name, options);
|
|
5125
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
5126
|
+
},
|
|
5127
|
+
async getv1alpha1AnnotationSetting(name, options) {
|
|
5128
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1AnnotationSetting(name, options);
|
|
5129
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
5130
|
+
},
|
|
5131
|
+
async listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options) {
|
|
5132
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options);
|
|
5133
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
5134
|
+
},
|
|
5135
|
+
async updatev1alpha1AnnotationSetting(name, annotationSetting, options) {
|
|
5136
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatev1alpha1AnnotationSetting(name, annotationSetting, options);
|
|
5137
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios__default, BASE_PATH, configuration);
|
|
5138
|
+
}
|
|
5139
|
+
};
|
|
5140
|
+
};
|
|
5141
|
+
const V1alpha1AnnotationSettingApiFactory = function(configuration, basePath, axios) {
|
|
5142
|
+
const localVarFp = V1alpha1AnnotationSettingApiFp(configuration);
|
|
5143
|
+
return {
|
|
5144
|
+
createv1alpha1AnnotationSetting(annotationSetting, options) {
|
|
5145
|
+
return localVarFp.createv1alpha1AnnotationSetting(annotationSetting, options).then((request) => request(axios, basePath));
|
|
5146
|
+
},
|
|
5147
|
+
deletev1alpha1AnnotationSetting(name, options) {
|
|
5148
|
+
return localVarFp.deletev1alpha1AnnotationSetting(name, options).then((request) => request(axios, basePath));
|
|
5149
|
+
},
|
|
5150
|
+
getv1alpha1AnnotationSetting(name, options) {
|
|
5151
|
+
return localVarFp.getv1alpha1AnnotationSetting(name, options).then((request) => request(axios, basePath));
|
|
5152
|
+
},
|
|
5153
|
+
listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options) {
|
|
5154
|
+
return localVarFp.listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
5155
|
+
},
|
|
5156
|
+
updatev1alpha1AnnotationSetting(name, annotationSetting, options) {
|
|
5157
|
+
return localVarFp.updatev1alpha1AnnotationSetting(name, annotationSetting, options).then((request) => request(axios, basePath));
|
|
5158
|
+
}
|
|
5159
|
+
};
|
|
5160
|
+
};
|
|
5161
|
+
class V1alpha1AnnotationSettingApi extends BaseAPI {
|
|
5162
|
+
createv1alpha1AnnotationSetting(requestParameters = {}, options) {
|
|
5163
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).createv1alpha1AnnotationSetting(requestParameters.annotationSetting, options).then((request) => request(this.axios, this.basePath));
|
|
5164
|
+
}
|
|
5165
|
+
deletev1alpha1AnnotationSetting(requestParameters, options) {
|
|
5166
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).deletev1alpha1AnnotationSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
5167
|
+
}
|
|
5168
|
+
getv1alpha1AnnotationSetting(requestParameters, options) {
|
|
5169
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).getv1alpha1AnnotationSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
5170
|
+
}
|
|
5171
|
+
listv1alpha1AnnotationSetting(requestParameters = {}, options) {
|
|
5172
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).listv1alpha1AnnotationSetting(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
5173
|
+
}
|
|
5174
|
+
updatev1alpha1AnnotationSetting(requestParameters, options) {
|
|
5175
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).updatev1alpha1AnnotationSetting(requestParameters.name, requestParameters.annotationSetting, options).then((request) => request(this.axios, this.basePath));
|
|
5176
|
+
}
|
|
5177
|
+
}
|
|
5178
|
+
|
|
4993
5179
|
const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
4994
5180
|
return {
|
|
4995
5181
|
createv1alpha1ConfigMap: async (configMap, options = {}) => {
|
|
@@ -6646,6 +6832,10 @@ exports.ThemeHaloRunV1alpha1ThemeApi = ThemeHaloRunV1alpha1ThemeApi;
|
|
|
6646
6832
|
exports.ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator = ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator;
|
|
6647
6833
|
exports.ThemeHaloRunV1alpha1ThemeApiFactory = ThemeHaloRunV1alpha1ThemeApiFactory;
|
|
6648
6834
|
exports.ThemeHaloRunV1alpha1ThemeApiFp = ThemeHaloRunV1alpha1ThemeApiFp;
|
|
6835
|
+
exports.V1alpha1AnnotationSettingApi = V1alpha1AnnotationSettingApi;
|
|
6836
|
+
exports.V1alpha1AnnotationSettingApiAxiosParamCreator = V1alpha1AnnotationSettingApiAxiosParamCreator;
|
|
6837
|
+
exports.V1alpha1AnnotationSettingApiFactory = V1alpha1AnnotationSettingApiFactory;
|
|
6838
|
+
exports.V1alpha1AnnotationSettingApiFp = V1alpha1AnnotationSettingApiFp;
|
|
6649
6839
|
exports.V1alpha1ConfigMapApi = V1alpha1ConfigMapApi;
|
|
6650
6840
|
exports.V1alpha1ConfigMapApiAxiosParamCreator = V1alpha1ConfigMapApiAxiosParamCreator;
|
|
6651
6841
|
exports.V1alpha1ConfigMapApiFactory = V1alpha1ConfigMapApiFactory;
|
package/dist/index.d.ts
CHANGED
|
@@ -132,51 +132,21 @@ declare class BaseAPI {
|
|
|
132
132
|
/**
|
|
133
133
|
*
|
|
134
134
|
* @export
|
|
135
|
-
* @interface
|
|
135
|
+
* @interface GroupKind
|
|
136
136
|
*/
|
|
137
|
-
interface
|
|
138
|
-
/**
|
|
139
|
-
* Display name of attachment
|
|
140
|
-
* @type {string}
|
|
141
|
-
* @memberof AttachmentSpec
|
|
142
|
-
*/
|
|
143
|
-
displayName?: string;
|
|
144
|
-
/**
|
|
145
|
-
* Group name
|
|
146
|
-
* @type {string}
|
|
147
|
-
* @memberof AttachmentSpec
|
|
148
|
-
*/
|
|
149
|
-
groupName?: string;
|
|
150
|
-
/**
|
|
151
|
-
* Policy name
|
|
152
|
-
* @type {string}
|
|
153
|
-
* @memberof AttachmentSpec
|
|
154
|
-
*/
|
|
155
|
-
policyName?: string;
|
|
137
|
+
interface GroupKind {
|
|
156
138
|
/**
|
|
157
|
-
*
|
|
139
|
+
*
|
|
158
140
|
* @type {string}
|
|
159
|
-
* @memberof
|
|
141
|
+
* @memberof GroupKind
|
|
160
142
|
*/
|
|
161
|
-
|
|
143
|
+
group?: string;
|
|
162
144
|
/**
|
|
163
|
-
*
|
|
145
|
+
*
|
|
164
146
|
* @type {string}
|
|
165
|
-
* @memberof
|
|
147
|
+
* @memberof GroupKind
|
|
166
148
|
*/
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* Size of attachment. Unit is Byte
|
|
170
|
-
* @type {number}
|
|
171
|
-
* @memberof AttachmentSpec
|
|
172
|
-
*/
|
|
173
|
-
size?: number;
|
|
174
|
-
/**
|
|
175
|
-
* Tags of attachment
|
|
176
|
-
* @type {Array<string>}
|
|
177
|
-
* @memberof AttachmentSpec
|
|
178
|
-
*/
|
|
179
|
-
tags?: Array<string>;
|
|
149
|
+
kind?: string;
|
|
180
150
|
}
|
|
181
151
|
|
|
182
152
|
/**
|
|
@@ -190,18 +160,25 @@ interface AttachmentSpec {
|
|
|
190
160
|
* https://openapi-generator.tech
|
|
191
161
|
* Do not edit the class manually.
|
|
192
162
|
*/
|
|
163
|
+
|
|
193
164
|
/**
|
|
194
165
|
*
|
|
195
166
|
* @export
|
|
196
|
-
* @interface
|
|
167
|
+
* @interface AnnotationSettingSpec
|
|
197
168
|
*/
|
|
198
|
-
interface
|
|
169
|
+
interface AnnotationSettingSpec {
|
|
199
170
|
/**
|
|
200
|
-
*
|
|
201
|
-
* @type {
|
|
202
|
-
* @memberof
|
|
171
|
+
*
|
|
172
|
+
* @type {GroupKind}
|
|
173
|
+
* @memberof AnnotationSettingSpec
|
|
203
174
|
*/
|
|
204
|
-
|
|
175
|
+
targetRef?: GroupKind;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {Array<object>}
|
|
179
|
+
* @memberof AnnotationSettingSpec
|
|
180
|
+
*/
|
|
181
|
+
formSchema?: Array<object>;
|
|
205
182
|
}
|
|
206
183
|
|
|
207
184
|
/**
|
|
@@ -275,6 +252,210 @@ interface Metadata {
|
|
|
275
252
|
deletionTimestamp?: string | null;
|
|
276
253
|
}
|
|
277
254
|
|
|
255
|
+
/**
|
|
256
|
+
* Halo Next API
|
|
257
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
258
|
+
*
|
|
259
|
+
* The version of the OpenAPI document: 2.0.0
|
|
260
|
+
*
|
|
261
|
+
*
|
|
262
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
263
|
+
* https://openapi-generator.tech
|
|
264
|
+
* Do not edit the class manually.
|
|
265
|
+
*/
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @export
|
|
270
|
+
* @interface AnnotationSetting
|
|
271
|
+
*/
|
|
272
|
+
interface AnnotationSetting {
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @type {AnnotationSettingSpec}
|
|
276
|
+
* @memberof AnnotationSetting
|
|
277
|
+
*/
|
|
278
|
+
spec?: AnnotationSettingSpec;
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof AnnotationSetting
|
|
283
|
+
*/
|
|
284
|
+
apiVersion: string;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof AnnotationSetting
|
|
289
|
+
*/
|
|
290
|
+
kind: string;
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {Metadata}
|
|
294
|
+
* @memberof AnnotationSetting
|
|
295
|
+
*/
|
|
296
|
+
metadata: Metadata;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/**
|
|
300
|
+
* Halo Next API
|
|
301
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
302
|
+
*
|
|
303
|
+
* The version of the OpenAPI document: 2.0.0
|
|
304
|
+
*
|
|
305
|
+
*
|
|
306
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
307
|
+
* https://openapi-generator.tech
|
|
308
|
+
* Do not edit the class manually.
|
|
309
|
+
*/
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @export
|
|
314
|
+
* @interface AnnotationSettingList
|
|
315
|
+
*/
|
|
316
|
+
interface AnnotationSettingList {
|
|
317
|
+
/**
|
|
318
|
+
* Page number, starts from 1. If not set or equal to 0, it means no pagination.
|
|
319
|
+
* @type {number}
|
|
320
|
+
* @memberof AnnotationSettingList
|
|
321
|
+
*/
|
|
322
|
+
page: number;
|
|
323
|
+
/**
|
|
324
|
+
* Size of each page. If not set or equal to 0, it means no pagination.
|
|
325
|
+
* @type {number}
|
|
326
|
+
* @memberof AnnotationSettingList
|
|
327
|
+
*/
|
|
328
|
+
size: number;
|
|
329
|
+
/**
|
|
330
|
+
* Total elements.
|
|
331
|
+
* @type {number}
|
|
332
|
+
* @memberof AnnotationSettingList
|
|
333
|
+
*/
|
|
334
|
+
total: number;
|
|
335
|
+
/**
|
|
336
|
+
* A chunk of items.
|
|
337
|
+
* @type {Array<AnnotationSetting>}
|
|
338
|
+
* @memberof AnnotationSettingList
|
|
339
|
+
*/
|
|
340
|
+
items: Array<AnnotationSetting>;
|
|
341
|
+
/**
|
|
342
|
+
* Indicates whether current page is the first page.
|
|
343
|
+
* @type {boolean}
|
|
344
|
+
* @memberof AnnotationSettingList
|
|
345
|
+
*/
|
|
346
|
+
first: boolean;
|
|
347
|
+
/**
|
|
348
|
+
* Indicates whether current page is the last page.
|
|
349
|
+
* @type {boolean}
|
|
350
|
+
* @memberof AnnotationSettingList
|
|
351
|
+
*/
|
|
352
|
+
last: boolean;
|
|
353
|
+
/**
|
|
354
|
+
* Indicates whether current page has previous page.
|
|
355
|
+
* @type {boolean}
|
|
356
|
+
* @memberof AnnotationSettingList
|
|
357
|
+
*/
|
|
358
|
+
hasNext: boolean;
|
|
359
|
+
/**
|
|
360
|
+
* Indicates whether current page has previous page.
|
|
361
|
+
* @type {boolean}
|
|
362
|
+
* @memberof AnnotationSettingList
|
|
363
|
+
*/
|
|
364
|
+
hasPrevious: boolean;
|
|
365
|
+
/**
|
|
366
|
+
* Indicates total pages.
|
|
367
|
+
* @type {number}
|
|
368
|
+
* @memberof AnnotationSettingList
|
|
369
|
+
*/
|
|
370
|
+
totalPages: number;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Halo Next API
|
|
375
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
376
|
+
*
|
|
377
|
+
* The version of the OpenAPI document: 2.0.0
|
|
378
|
+
*
|
|
379
|
+
*
|
|
380
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
381
|
+
* https://openapi-generator.tech
|
|
382
|
+
* Do not edit the class manually.
|
|
383
|
+
*/
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @export
|
|
387
|
+
* @interface AttachmentSpec
|
|
388
|
+
*/
|
|
389
|
+
interface AttachmentSpec {
|
|
390
|
+
/**
|
|
391
|
+
* Display name of attachment
|
|
392
|
+
* @type {string}
|
|
393
|
+
* @memberof AttachmentSpec
|
|
394
|
+
*/
|
|
395
|
+
displayName?: string;
|
|
396
|
+
/**
|
|
397
|
+
* Group name
|
|
398
|
+
* @type {string}
|
|
399
|
+
* @memberof AttachmentSpec
|
|
400
|
+
*/
|
|
401
|
+
groupName?: string;
|
|
402
|
+
/**
|
|
403
|
+
* Policy name
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof AttachmentSpec
|
|
406
|
+
*/
|
|
407
|
+
policyName?: string;
|
|
408
|
+
/**
|
|
409
|
+
* Name of User who uploads the attachment
|
|
410
|
+
* @type {string}
|
|
411
|
+
* @memberof AttachmentSpec
|
|
412
|
+
*/
|
|
413
|
+
ownerName?: string;
|
|
414
|
+
/**
|
|
415
|
+
* Media type of attachment
|
|
416
|
+
* @type {string}
|
|
417
|
+
* @memberof AttachmentSpec
|
|
418
|
+
*/
|
|
419
|
+
mediaType?: string;
|
|
420
|
+
/**
|
|
421
|
+
* Size of attachment. Unit is Byte
|
|
422
|
+
* @type {number}
|
|
423
|
+
* @memberof AttachmentSpec
|
|
424
|
+
*/
|
|
425
|
+
size?: number;
|
|
426
|
+
/**
|
|
427
|
+
* Tags of attachment
|
|
428
|
+
* @type {Array<string>}
|
|
429
|
+
* @memberof AttachmentSpec
|
|
430
|
+
*/
|
|
431
|
+
tags?: Array<string>;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Halo Next API
|
|
436
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
437
|
+
*
|
|
438
|
+
* The version of the OpenAPI document: 2.0.0
|
|
439
|
+
*
|
|
440
|
+
*
|
|
441
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
442
|
+
* https://openapi-generator.tech
|
|
443
|
+
* Do not edit the class manually.
|
|
444
|
+
*/
|
|
445
|
+
/**
|
|
446
|
+
*
|
|
447
|
+
* @export
|
|
448
|
+
* @interface AttachmentStatus
|
|
449
|
+
*/
|
|
450
|
+
interface AttachmentStatus {
|
|
451
|
+
/**
|
|
452
|
+
* Permalink of attachment
|
|
453
|
+
* @type {string}
|
|
454
|
+
* @memberof AttachmentStatus
|
|
455
|
+
*/
|
|
456
|
+
permalink?: string;
|
|
457
|
+
}
|
|
458
|
+
|
|
278
459
|
/**
|
|
279
460
|
* Halo Next API
|
|
280
461
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -14332,6 +14513,279 @@ declare class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
14332
14513
|
updatethemeHaloRunV1alpha1Theme(requestParameters: ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<Theme, any>>;
|
|
14333
14514
|
}
|
|
14334
14515
|
|
|
14516
|
+
/**
|
|
14517
|
+
* V1alpha1AnnotationSettingApi - axios parameter creator
|
|
14518
|
+
* @export
|
|
14519
|
+
*/
|
|
14520
|
+
declare const V1alpha1AnnotationSettingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14521
|
+
/**
|
|
14522
|
+
* Create v1alpha1/AnnotationSetting
|
|
14523
|
+
* @param {AnnotationSetting} [annotationSetting] Fresh annotationsetting
|
|
14524
|
+
* @param {*} [options] Override http request option.
|
|
14525
|
+
* @throws {RequiredError}
|
|
14526
|
+
*/
|
|
14527
|
+
createv1alpha1AnnotationSetting: (annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14528
|
+
/**
|
|
14529
|
+
* Delete v1alpha1/AnnotationSetting
|
|
14530
|
+
* @param {string} name Name of annotationsetting
|
|
14531
|
+
* @param {*} [options] Override http request option.
|
|
14532
|
+
* @throws {RequiredError}
|
|
14533
|
+
*/
|
|
14534
|
+
deletev1alpha1AnnotationSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14535
|
+
/**
|
|
14536
|
+
* Get v1alpha1/AnnotationSetting
|
|
14537
|
+
* @param {string} name Name of annotationsetting
|
|
14538
|
+
* @param {*} [options] Override http request option.
|
|
14539
|
+
* @throws {RequiredError}
|
|
14540
|
+
*/
|
|
14541
|
+
getv1alpha1AnnotationSetting: (name: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14542
|
+
/**
|
|
14543
|
+
* List v1alpha1/AnnotationSetting
|
|
14544
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
14545
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14546
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14547
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14548
|
+
* @param {*} [options] Override http request option.
|
|
14549
|
+
* @throws {RequiredError}
|
|
14550
|
+
*/
|
|
14551
|
+
listv1alpha1AnnotationSetting: (page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14552
|
+
/**
|
|
14553
|
+
* Update v1alpha1/AnnotationSetting
|
|
14554
|
+
* @param {string} name Name of annotationsetting
|
|
14555
|
+
* @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
|
|
14556
|
+
* @param {*} [options] Override http request option.
|
|
14557
|
+
* @throws {RequiredError}
|
|
14558
|
+
*/
|
|
14559
|
+
updatev1alpha1AnnotationSetting: (name: string, annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14560
|
+
};
|
|
14561
|
+
/**
|
|
14562
|
+
* V1alpha1AnnotationSettingApi - functional programming interface
|
|
14563
|
+
* @export
|
|
14564
|
+
*/
|
|
14565
|
+
declare const V1alpha1AnnotationSettingApiFp: (configuration?: Configuration) => {
|
|
14566
|
+
/**
|
|
14567
|
+
* Create v1alpha1/AnnotationSetting
|
|
14568
|
+
* @param {AnnotationSetting} [annotationSetting] Fresh annotationsetting
|
|
14569
|
+
* @param {*} [options] Override http request option.
|
|
14570
|
+
* @throws {RequiredError}
|
|
14571
|
+
*/
|
|
14572
|
+
createv1alpha1AnnotationSetting(annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSetting>>;
|
|
14573
|
+
/**
|
|
14574
|
+
* Delete v1alpha1/AnnotationSetting
|
|
14575
|
+
* @param {string} name Name of annotationsetting
|
|
14576
|
+
* @param {*} [options] Override http request option.
|
|
14577
|
+
* @throws {RequiredError}
|
|
14578
|
+
*/
|
|
14579
|
+
deletev1alpha1AnnotationSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14580
|
+
/**
|
|
14581
|
+
* Get v1alpha1/AnnotationSetting
|
|
14582
|
+
* @param {string} name Name of annotationsetting
|
|
14583
|
+
* @param {*} [options] Override http request option.
|
|
14584
|
+
* @throws {RequiredError}
|
|
14585
|
+
*/
|
|
14586
|
+
getv1alpha1AnnotationSetting(name: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSetting>>;
|
|
14587
|
+
/**
|
|
14588
|
+
* List v1alpha1/AnnotationSetting
|
|
14589
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
14590
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14591
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14592
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14593
|
+
* @param {*} [options] Override http request option.
|
|
14594
|
+
* @throws {RequiredError}
|
|
14595
|
+
*/
|
|
14596
|
+
listv1alpha1AnnotationSetting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSettingList>>;
|
|
14597
|
+
/**
|
|
14598
|
+
* Update v1alpha1/AnnotationSetting
|
|
14599
|
+
* @param {string} name Name of annotationsetting
|
|
14600
|
+
* @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
|
|
14601
|
+
* @param {*} [options] Override http request option.
|
|
14602
|
+
* @throws {RequiredError}
|
|
14603
|
+
*/
|
|
14604
|
+
updatev1alpha1AnnotationSetting(name: string, annotationSetting?: AnnotationSetting, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnnotationSetting>>;
|
|
14605
|
+
};
|
|
14606
|
+
/**
|
|
14607
|
+
* V1alpha1AnnotationSettingApi - factory interface
|
|
14608
|
+
* @export
|
|
14609
|
+
*/
|
|
14610
|
+
declare const V1alpha1AnnotationSettingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14611
|
+
/**
|
|
14612
|
+
* Create v1alpha1/AnnotationSetting
|
|
14613
|
+
* @param {AnnotationSetting} [annotationSetting] Fresh annotationsetting
|
|
14614
|
+
* @param {*} [options] Override http request option.
|
|
14615
|
+
* @throws {RequiredError}
|
|
14616
|
+
*/
|
|
14617
|
+
createv1alpha1AnnotationSetting(annotationSetting?: AnnotationSetting, options?: any): AxiosPromise<AnnotationSetting>;
|
|
14618
|
+
/**
|
|
14619
|
+
* Delete v1alpha1/AnnotationSetting
|
|
14620
|
+
* @param {string} name Name of annotationsetting
|
|
14621
|
+
* @param {*} [options] Override http request option.
|
|
14622
|
+
* @throws {RequiredError}
|
|
14623
|
+
*/
|
|
14624
|
+
deletev1alpha1AnnotationSetting(name: string, options?: any): AxiosPromise<void>;
|
|
14625
|
+
/**
|
|
14626
|
+
* Get v1alpha1/AnnotationSetting
|
|
14627
|
+
* @param {string} name Name of annotationsetting
|
|
14628
|
+
* @param {*} [options] Override http request option.
|
|
14629
|
+
* @throws {RequiredError}
|
|
14630
|
+
*/
|
|
14631
|
+
getv1alpha1AnnotationSetting(name: string, options?: any): AxiosPromise<AnnotationSetting>;
|
|
14632
|
+
/**
|
|
14633
|
+
* List v1alpha1/AnnotationSetting
|
|
14634
|
+
* @param {number} [page] The page number. Zero indicates no page.
|
|
14635
|
+
* @param {number} [size] Size of one page. Zero indicates no limit.
|
|
14636
|
+
* @param {Array<string>} [labelSelector] Label selector for filtering.
|
|
14637
|
+
* @param {Array<string>} [fieldSelector] Field selector for filtering.
|
|
14638
|
+
* @param {*} [options] Override http request option.
|
|
14639
|
+
* @throws {RequiredError}
|
|
14640
|
+
*/
|
|
14641
|
+
listv1alpha1AnnotationSetting(page?: number, size?: number, labelSelector?: Array<string>, fieldSelector?: Array<string>, options?: any): AxiosPromise<AnnotationSettingList>;
|
|
14642
|
+
/**
|
|
14643
|
+
* Update v1alpha1/AnnotationSetting
|
|
14644
|
+
* @param {string} name Name of annotationsetting
|
|
14645
|
+
* @param {AnnotationSetting} [annotationSetting] Updated annotationsetting
|
|
14646
|
+
* @param {*} [options] Override http request option.
|
|
14647
|
+
* @throws {RequiredError}
|
|
14648
|
+
*/
|
|
14649
|
+
updatev1alpha1AnnotationSetting(name: string, annotationSetting?: AnnotationSetting, options?: any): AxiosPromise<AnnotationSetting>;
|
|
14650
|
+
};
|
|
14651
|
+
/**
|
|
14652
|
+
* Request parameters for createv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
14653
|
+
* @export
|
|
14654
|
+
* @interface V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest
|
|
14655
|
+
*/
|
|
14656
|
+
interface V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest {
|
|
14657
|
+
/**
|
|
14658
|
+
* Fresh annotationsetting
|
|
14659
|
+
* @type {AnnotationSetting}
|
|
14660
|
+
* @memberof V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSetting
|
|
14661
|
+
*/
|
|
14662
|
+
readonly annotationSetting?: AnnotationSetting;
|
|
14663
|
+
}
|
|
14664
|
+
/**
|
|
14665
|
+
* Request parameters for deletev1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
14666
|
+
* @export
|
|
14667
|
+
* @interface V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest
|
|
14668
|
+
*/
|
|
14669
|
+
interface V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest {
|
|
14670
|
+
/**
|
|
14671
|
+
* Name of annotationsetting
|
|
14672
|
+
* @type {string}
|
|
14673
|
+
* @memberof V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSetting
|
|
14674
|
+
*/
|
|
14675
|
+
readonly name: string;
|
|
14676
|
+
}
|
|
14677
|
+
/**
|
|
14678
|
+
* Request parameters for getv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
14679
|
+
* @export
|
|
14680
|
+
* @interface V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest
|
|
14681
|
+
*/
|
|
14682
|
+
interface V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest {
|
|
14683
|
+
/**
|
|
14684
|
+
* Name of annotationsetting
|
|
14685
|
+
* @type {string}
|
|
14686
|
+
* @memberof V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSetting
|
|
14687
|
+
*/
|
|
14688
|
+
readonly name: string;
|
|
14689
|
+
}
|
|
14690
|
+
/**
|
|
14691
|
+
* Request parameters for listv1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
14692
|
+
* @export
|
|
14693
|
+
* @interface V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest
|
|
14694
|
+
*/
|
|
14695
|
+
interface V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest {
|
|
14696
|
+
/**
|
|
14697
|
+
* The page number. Zero indicates no page.
|
|
14698
|
+
* @type {number}
|
|
14699
|
+
* @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
|
|
14700
|
+
*/
|
|
14701
|
+
readonly page?: number;
|
|
14702
|
+
/**
|
|
14703
|
+
* Size of one page. Zero indicates no limit.
|
|
14704
|
+
* @type {number}
|
|
14705
|
+
* @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
|
|
14706
|
+
*/
|
|
14707
|
+
readonly size?: number;
|
|
14708
|
+
/**
|
|
14709
|
+
* Label selector for filtering.
|
|
14710
|
+
* @type {Array<string>}
|
|
14711
|
+
* @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
|
|
14712
|
+
*/
|
|
14713
|
+
readonly labelSelector?: Array<string>;
|
|
14714
|
+
/**
|
|
14715
|
+
* Field selector for filtering.
|
|
14716
|
+
* @type {Array<string>}
|
|
14717
|
+
* @memberof V1alpha1AnnotationSettingApiListv1alpha1AnnotationSetting
|
|
14718
|
+
*/
|
|
14719
|
+
readonly fieldSelector?: Array<string>;
|
|
14720
|
+
}
|
|
14721
|
+
/**
|
|
14722
|
+
* Request parameters for updatev1alpha1AnnotationSetting operation in V1alpha1AnnotationSettingApi.
|
|
14723
|
+
* @export
|
|
14724
|
+
* @interface V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest
|
|
14725
|
+
*/
|
|
14726
|
+
interface V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest {
|
|
14727
|
+
/**
|
|
14728
|
+
* Name of annotationsetting
|
|
14729
|
+
* @type {string}
|
|
14730
|
+
* @memberof V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSetting
|
|
14731
|
+
*/
|
|
14732
|
+
readonly name: string;
|
|
14733
|
+
/**
|
|
14734
|
+
* Updated annotationsetting
|
|
14735
|
+
* @type {AnnotationSetting}
|
|
14736
|
+
* @memberof V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSetting
|
|
14737
|
+
*/
|
|
14738
|
+
readonly annotationSetting?: AnnotationSetting;
|
|
14739
|
+
}
|
|
14740
|
+
/**
|
|
14741
|
+
* V1alpha1AnnotationSettingApi - object-oriented interface
|
|
14742
|
+
* @export
|
|
14743
|
+
* @class V1alpha1AnnotationSettingApi
|
|
14744
|
+
* @extends {BaseAPI}
|
|
14745
|
+
*/
|
|
14746
|
+
declare class V1alpha1AnnotationSettingApi extends BaseAPI {
|
|
14747
|
+
/**
|
|
14748
|
+
* Create v1alpha1/AnnotationSetting
|
|
14749
|
+
* @param {V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
14750
|
+
* @param {*} [options] Override http request option.
|
|
14751
|
+
* @throws {RequiredError}
|
|
14752
|
+
* @memberof V1alpha1AnnotationSettingApi
|
|
14753
|
+
*/
|
|
14754
|
+
createv1alpha1AnnotationSetting(requestParameters?: V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
|
|
14755
|
+
/**
|
|
14756
|
+
* Delete v1alpha1/AnnotationSetting
|
|
14757
|
+
* @param {V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
14758
|
+
* @param {*} [options] Override http request option.
|
|
14759
|
+
* @throws {RequiredError}
|
|
14760
|
+
* @memberof V1alpha1AnnotationSettingApi
|
|
14761
|
+
*/
|
|
14762
|
+
deletev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
14763
|
+
/**
|
|
14764
|
+
* Get v1alpha1/AnnotationSetting
|
|
14765
|
+
* @param {V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
14766
|
+
* @param {*} [options] Override http request option.
|
|
14767
|
+
* @throws {RequiredError}
|
|
14768
|
+
* @memberof V1alpha1AnnotationSettingApi
|
|
14769
|
+
*/
|
|
14770
|
+
getv1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
|
|
14771
|
+
/**
|
|
14772
|
+
* List v1alpha1/AnnotationSetting
|
|
14773
|
+
* @param {V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
14774
|
+
* @param {*} [options] Override http request option.
|
|
14775
|
+
* @throws {RequiredError}
|
|
14776
|
+
* @memberof V1alpha1AnnotationSettingApi
|
|
14777
|
+
*/
|
|
14778
|
+
listv1alpha1AnnotationSetting(requestParameters?: V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSettingList, any>>;
|
|
14779
|
+
/**
|
|
14780
|
+
* Update v1alpha1/AnnotationSetting
|
|
14781
|
+
* @param {V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest} requestParameters Request parameters.
|
|
14782
|
+
* @param {*} [options] Override http request option.
|
|
14783
|
+
* @throws {RequiredError}
|
|
14784
|
+
* @memberof V1alpha1AnnotationSettingApi
|
|
14785
|
+
*/
|
|
14786
|
+
updatev1alpha1AnnotationSetting(requestParameters: V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<AnnotationSetting, any>>;
|
|
14787
|
+
}
|
|
14788
|
+
|
|
14335
14789
|
/**
|
|
14336
14790
|
* V1alpha1ConfigMapApi - axios parameter creator
|
|
14337
14791
|
* @export
|
|
@@ -16516,4 +16970,4 @@ declare class V1alpha1UserApi extends BaseAPI {
|
|
|
16516
16970
|
updatev1alpha1User(requestParameters: V1alpha1UserApiUpdatev1alpha1UserRequest, options?: AxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
16517
16971
|
}
|
|
16518
16972
|
|
|
16519
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
|
16973
|
+
export { AnnotationSetting, AnnotationSettingList, AnnotationSettingSpec, ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1AttachmentApiSearchAttachmentsRequest, ApiConsoleHaloRunV1alpha1AttachmentApiUploadAttachmentRequest, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiCreateCommentRequest, ApiConsoleHaloRunV1alpha1CommentApiCreateReplyRequest, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1CommentApiListCommentsRequest, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiDraftSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1ContentApiObtainSnapshotContentRequest, ApiConsoleHaloRunV1alpha1ContentApiUpdateSnapshotContentRequest, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, ApiConsoleHaloRunV1alpha1PluginApi, ApiConsoleHaloRunV1alpha1PluginApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PluginApiFactory, ApiConsoleHaloRunV1alpha1PluginApiFp, ApiConsoleHaloRunV1alpha1PluginApiInstallPluginRequest, ApiConsoleHaloRunV1alpha1PluginApiListPluginsRequest, ApiConsoleHaloRunV1alpha1PluginApiResetPluginConfigRequest, ApiConsoleHaloRunV1alpha1PluginApiUpgradePluginRequest, ApiConsoleHaloRunV1alpha1PostApi, ApiConsoleHaloRunV1alpha1PostApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1PostApiDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiFactory, ApiConsoleHaloRunV1alpha1PostApiFp, ApiConsoleHaloRunV1alpha1PostApiListPostsRequest, ApiConsoleHaloRunV1alpha1PostApiPublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiRecyclePostRequest, ApiConsoleHaloRunV1alpha1PostApiUnpublishPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdateDraftPostRequest, ApiConsoleHaloRunV1alpha1PostApiUpdatePostContentRequest, ApiConsoleHaloRunV1alpha1ReplyApi, ApiConsoleHaloRunV1alpha1ReplyApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ReplyApiFactory, ApiConsoleHaloRunV1alpha1ReplyApiFp, ApiConsoleHaloRunV1alpha1ReplyApiListRepliesRequest, ApiConsoleHaloRunV1alpha1SinglePageApi, ApiConsoleHaloRunV1alpha1SinglePageApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1SinglePageApiDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiFactory, ApiConsoleHaloRunV1alpha1SinglePageApiFp, ApiConsoleHaloRunV1alpha1SinglePageApiListSinglePagesRequest, ApiConsoleHaloRunV1alpha1SinglePageApiPublishSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateDraftSinglePageRequest, ApiConsoleHaloRunV1alpha1SinglePageApiUpdateSinglePageContentRequest, ApiConsoleHaloRunV1alpha1StatsApi, ApiConsoleHaloRunV1alpha1StatsApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1StatsApiFactory, ApiConsoleHaloRunV1alpha1StatsApiFp, ApiConsoleHaloRunV1alpha1ThemeApi, ApiConsoleHaloRunV1alpha1ThemeApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ThemeApiFactory, ApiConsoleHaloRunV1alpha1ThemeApiFp, ApiConsoleHaloRunV1alpha1ThemeApiInstallThemeRequest, ApiConsoleHaloRunV1alpha1ThemeApiListThemesRequest, ApiConsoleHaloRunV1alpha1ThemeApiReloadRequest, ApiConsoleHaloRunV1alpha1ThemeApiResetThemeConfigRequest, ApiConsoleHaloRunV1alpha1ThemeApiUpgradeThemeRequest, ApiConsoleHaloRunV1alpha1UserApi, ApiConsoleHaloRunV1alpha1UserApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1UserApiChangePasswordRequest, ApiConsoleHaloRunV1alpha1UserApiFactory, ApiConsoleHaloRunV1alpha1UserApiFp, ApiConsoleHaloRunV1alpha1UserApiGetPermissionsRequest, ApiConsoleHaloRunV1alpha1UserApiGrantPermissionRequest, ApiHaloRunV1alpha1CommentApi, ApiHaloRunV1alpha1CommentApiAxiosParamCreator, ApiHaloRunV1alpha1CommentApiCreateComment1Request, ApiHaloRunV1alpha1CommentApiCreateReply1Request, ApiHaloRunV1alpha1CommentApiFactory, ApiHaloRunV1alpha1CommentApiFp, ApiHaloRunV1alpha1CommentApiGetCommentRequest, ApiHaloRunV1alpha1CommentApiListCommentRepliesRequest, ApiHaloRunV1alpha1CommentApiListComments1Request, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, ApiHaloRunV1alpha1PostApiSearchPostRequest, ApiHaloRunV1alpha1TrackerApi, ApiHaloRunV1alpha1TrackerApiAxiosParamCreator, ApiHaloRunV1alpha1TrackerApiCountRequest, ApiHaloRunV1alpha1TrackerApiDownvoteRequest, ApiHaloRunV1alpha1TrackerApiFactory, ApiHaloRunV1alpha1TrackerApiFp, ApiHaloRunV1alpha1TrackerApiUpvoteRequest, Attachment, AttachmentList, AttachmentSpec, AttachmentStatus, Author, Category, CategoryList, CategorySpec, CategoryStatus, ChangePasswordRequest, Comment, CommentEmailOwner, CommentList, CommentOwner, CommentRequest, CommentSpec, CommentStatus, CommentVo, CommentVoList, Condition, ConditionStatusEnum, ConfigMap, ConfigMapList, Configuration, ConfigurationParameters, Content, ContentHaloRunV1alpha1CategoryApi, ContentHaloRunV1alpha1CategoryApiAxiosParamCreator, ContentHaloRunV1alpha1CategoryApiCreatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiDeletecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiFactory, ContentHaloRunV1alpha1CategoryApiFp, ContentHaloRunV1alpha1CategoryApiGetcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiListcontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CategoryApiUpdatecontentHaloRunV1alpha1CategoryRequest, ContentHaloRunV1alpha1CommentApi, ContentHaloRunV1alpha1CommentApiAxiosParamCreator, ContentHaloRunV1alpha1CommentApiCreatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiDeletecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiFactory, ContentHaloRunV1alpha1CommentApiFp, ContentHaloRunV1alpha1CommentApiGetcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiListcontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1CommentApiUpdatecontentHaloRunV1alpha1CommentRequest, ContentHaloRunV1alpha1PostApi, ContentHaloRunV1alpha1PostApiAxiosParamCreator, ContentHaloRunV1alpha1PostApiCreatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiDeletecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiFactory, ContentHaloRunV1alpha1PostApiFp, ContentHaloRunV1alpha1PostApiGetcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiListcontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1PostApiUpdatecontentHaloRunV1alpha1PostRequest, ContentHaloRunV1alpha1ReplyApi, ContentHaloRunV1alpha1ReplyApiAxiosParamCreator, ContentHaloRunV1alpha1ReplyApiCreatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiDeletecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiFactory, ContentHaloRunV1alpha1ReplyApiFp, ContentHaloRunV1alpha1ReplyApiGetcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiListcontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1ReplyApiUpdatecontentHaloRunV1alpha1ReplyRequest, ContentHaloRunV1alpha1SinglePageApi, ContentHaloRunV1alpha1SinglePageApiAxiosParamCreator, ContentHaloRunV1alpha1SinglePageApiCreatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiDeletecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiFactory, ContentHaloRunV1alpha1SinglePageApiFp, ContentHaloRunV1alpha1SinglePageApiGetcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiListcontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SinglePageApiUpdatecontentHaloRunV1alpha1SinglePageRequest, ContentHaloRunV1alpha1SnapshotApi, ContentHaloRunV1alpha1SnapshotApiAxiosParamCreator, ContentHaloRunV1alpha1SnapshotApiCreatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiDeletecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiFactory, ContentHaloRunV1alpha1SnapshotApiFp, ContentHaloRunV1alpha1SnapshotApiGetcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiListcontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1SnapshotApiUpdatecontentHaloRunV1alpha1SnapshotRequest, ContentHaloRunV1alpha1TagApi, ContentHaloRunV1alpha1TagApiAxiosParamCreator, ContentHaloRunV1alpha1TagApiCreatecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiDeletecontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiFactory, ContentHaloRunV1alpha1TagApiFp, ContentHaloRunV1alpha1TagApiGetcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiListcontentHaloRunV1alpha1TagRequest, ContentHaloRunV1alpha1TagApiUpdatecontentHaloRunV1alpha1TagRequest, ContentRequest, ContentResponse, Contributor, Counter, CounterList, CounterRequest, CustomTemplates, DashboardStats, Excerpt, Extension, FileReverseProxyProvider, GrantRequest, Group, GroupKind, GroupList, GroupSpec, GroupStatus, License, ListedComment, ListedCommentList, ListedPost, ListedPostList, ListedReply, ListedReplyList, ListedSinglePage, ListedSinglePageList, LoginHistory, Menu, MenuItem, MenuItemList, MenuItemSpec, MenuItemStatus, MenuList, MenuSpec, Metadata, MetricsHaloRunV1alpha1CounterApi, MetricsHaloRunV1alpha1CounterApiAxiosParamCreator, MetricsHaloRunV1alpha1CounterApiCreatemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiDeletemetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiFactory, MetricsHaloRunV1alpha1CounterApiFp, MetricsHaloRunV1alpha1CounterApiGetmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiListmetricsHaloRunV1alpha1CounterRequest, MetricsHaloRunV1alpha1CounterApiUpdatemetricsHaloRunV1alpha1CounterRequest, OwnerInfo, PersonalAccessToken, PersonalAccessTokenList, PersonalAccessTokenSpec, Plugin, PluginAuthor, PluginHaloRunV1alpha1PluginApi, PluginHaloRunV1alpha1PluginApiAxiosParamCreator, PluginHaloRunV1alpha1PluginApiCreatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiDeletepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiFactory, PluginHaloRunV1alpha1PluginApiFp, PluginHaloRunV1alpha1PluginApiGetpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiListpluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1PluginApiUpdatepluginHaloRunV1alpha1PluginRequest, PluginHaloRunV1alpha1ReverseProxyApi, PluginHaloRunV1alpha1ReverseProxyApiAxiosParamCreator, PluginHaloRunV1alpha1ReverseProxyApiCreatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiDeletepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiFactory, PluginHaloRunV1alpha1ReverseProxyApiFp, PluginHaloRunV1alpha1ReverseProxyApiGetpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiListpluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1ReverseProxyApiUpdatepluginHaloRunV1alpha1ReverseProxyRequest, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiCreatepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiDeletepluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginHaloRunV1alpha1SearchEngineApiGetpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiListpluginHaloRunV1alpha1SearchEngineRequest, PluginHaloRunV1alpha1SearchEngineApiUpdatepluginHaloRunV1alpha1SearchEngineRequest, PluginList, PluginSpec, PluginStatus, PluginStatusPhaseEnum, Policy, PolicyList, PolicyRule, PolicySpec, PolicyTemplate, PolicyTemplateList, PolicyTemplateSpec, Post, PostHit, PostHits, PostList, PostRequest, PostSpec, PostSpecVisibleEnum, PostStatus, Ref, Reply, ReplyList, ReplyRequest, ReplySpec, ReplyVo, ReplyVoList, ReverseProxy, ReverseProxyList, ReverseProxyRule, Role, RoleBinding, RoleBindingList, RoleList, RoleRef, SearchEngine, SearchEngineList, SearchEngineSpec, Setting, SettingForm, SettingList, SettingSpec, SinglePage, SinglePageList, SinglePageRequest, SinglePageSpec, SinglePageSpecVisibleEnum, SinglePageStatus, SnapShotSpec, Snapshot, SnapshotList, Stats, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiCreatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiDeletestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1AttachmentApiGetstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiListstorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1AttachmentApiUpdatestorageHaloRunV1alpha1AttachmentRequest, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiCreatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiDeletestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1GroupApiGetstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiListstorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1GroupApiUpdatestorageHaloRunV1alpha1GroupRequest, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiCreatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiDeletestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyApiGetstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiListstorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyApiUpdatestorageHaloRunV1alpha1PolicyRequest, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiCreatestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiDeletestorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, StorageHaloRunV1alpha1PolicyTemplateApiGetstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiListstorageHaloRunV1alpha1PolicyTemplateRequest, StorageHaloRunV1alpha1PolicyTemplateApiUpdatestorageHaloRunV1alpha1PolicyTemplateRequest, Subject, Tag, TagList, TagSpec, TagStatus, TemplateDescriptor, Theme, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiCreatethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiDeletethemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, ThemeHaloRunV1alpha1ThemeApiGetthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiListthemeHaloRunV1alpha1ThemeRequest, ThemeHaloRunV1alpha1ThemeApiUpdatethemeHaloRunV1alpha1ThemeRequest, ThemeList, ThemeSpec, ThemeStatus, User, UserList, UserPermission, UserSpec, UserStatus, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiCreatev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiDeletev1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, V1alpha1AnnotationSettingApiGetv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiListv1alpha1AnnotationSettingRequest, V1alpha1AnnotationSettingApiUpdatev1alpha1AnnotationSettingRequest, V1alpha1ConfigMapApi, V1alpha1ConfigMapApiAxiosParamCreator, V1alpha1ConfigMapApiCreatev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiDeletev1alpha1ConfigMapRequest, V1alpha1ConfigMapApiFactory, V1alpha1ConfigMapApiFp, V1alpha1ConfigMapApiGetv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiListv1alpha1ConfigMapRequest, V1alpha1ConfigMapApiUpdatev1alpha1ConfigMapRequest, V1alpha1MenuApi, V1alpha1MenuApiAxiosParamCreator, V1alpha1MenuApiCreatev1alpha1MenuRequest, V1alpha1MenuApiDeletev1alpha1MenuRequest, V1alpha1MenuApiFactory, V1alpha1MenuApiFp, V1alpha1MenuApiGetv1alpha1MenuRequest, V1alpha1MenuApiListv1alpha1MenuRequest, V1alpha1MenuApiUpdatev1alpha1MenuRequest, V1alpha1MenuItemApi, V1alpha1MenuItemApiAxiosParamCreator, V1alpha1MenuItemApiCreatev1alpha1MenuItemRequest, V1alpha1MenuItemApiDeletev1alpha1MenuItemRequest, V1alpha1MenuItemApiFactory, V1alpha1MenuItemApiFp, V1alpha1MenuItemApiGetv1alpha1MenuItemRequest, V1alpha1MenuItemApiListv1alpha1MenuItemRequest, V1alpha1MenuItemApiUpdatev1alpha1MenuItemRequest, V1alpha1PersonalAccessTokenApi, V1alpha1PersonalAccessTokenApiAxiosParamCreator, V1alpha1PersonalAccessTokenApiCreatev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiDeletev1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiFactory, V1alpha1PersonalAccessTokenApiFp, V1alpha1PersonalAccessTokenApiGetv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiListv1alpha1PersonalAccessTokenRequest, V1alpha1PersonalAccessTokenApiUpdatev1alpha1PersonalAccessTokenRequest, V1alpha1RoleApi, V1alpha1RoleApiAxiosParamCreator, V1alpha1RoleApiCreatev1alpha1RoleRequest, V1alpha1RoleApiDeletev1alpha1RoleRequest, V1alpha1RoleApiFactory, V1alpha1RoleApiFp, V1alpha1RoleApiGetv1alpha1RoleRequest, V1alpha1RoleApiListv1alpha1RoleRequest, V1alpha1RoleApiUpdatev1alpha1RoleRequest, V1alpha1RoleBindingApi, V1alpha1RoleBindingApiAxiosParamCreator, V1alpha1RoleBindingApiCreatev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiDeletev1alpha1RoleBindingRequest, V1alpha1RoleBindingApiFactory, V1alpha1RoleBindingApiFp, V1alpha1RoleBindingApiGetv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiListv1alpha1RoleBindingRequest, V1alpha1RoleBindingApiUpdatev1alpha1RoleBindingRequest, V1alpha1SettingApi, V1alpha1SettingApiAxiosParamCreator, V1alpha1SettingApiCreatev1alpha1SettingRequest, V1alpha1SettingApiDeletev1alpha1SettingRequest, V1alpha1SettingApiFactory, V1alpha1SettingApiFp, V1alpha1SettingApiGetv1alpha1SettingRequest, V1alpha1SettingApiListv1alpha1SettingRequest, V1alpha1SettingApiUpdatev1alpha1SettingRequest, V1alpha1UserApi, V1alpha1UserApiAxiosParamCreator, V1alpha1UserApiCreatev1alpha1UserRequest, V1alpha1UserApiDeletev1alpha1UserRequest, V1alpha1UserApiFactory, V1alpha1UserApiFp, V1alpha1UserApiGetv1alpha1UserRequest, V1alpha1UserApiListv1alpha1UserRequest, V1alpha1UserApiUpdatev1alpha1UserRequest, VoteRequest };
|
package/dist/index.mjs
CHANGED
|
@@ -4982,6 +4982,192 @@ class ThemeHaloRunV1alpha1ThemeApi extends BaseAPI {
|
|
|
4982
4982
|
}
|
|
4983
4983
|
}
|
|
4984
4984
|
|
|
4985
|
+
const V1alpha1AnnotationSettingApiAxiosParamCreator = function(configuration) {
|
|
4986
|
+
return {
|
|
4987
|
+
createv1alpha1AnnotationSetting: async (annotationSetting, options = {}) => {
|
|
4988
|
+
const localVarPath = `/api/v1alpha1/annotationsettings`;
|
|
4989
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
4990
|
+
let baseOptions;
|
|
4991
|
+
if (configuration) {
|
|
4992
|
+
baseOptions = configuration.baseOptions;
|
|
4993
|
+
}
|
|
4994
|
+
const localVarRequestOptions = { method: "POST", ...baseOptions, ...options };
|
|
4995
|
+
const localVarHeaderParameter = {};
|
|
4996
|
+
const localVarQueryParameter = {};
|
|
4997
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
4998
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
4999
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5000
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5001
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5002
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5003
|
+
localVarRequestOptions.data = serializeDataIfNeeded(annotationSetting, localVarRequestOptions, configuration);
|
|
5004
|
+
return {
|
|
5005
|
+
url: toPathString(localVarUrlObj),
|
|
5006
|
+
options: localVarRequestOptions
|
|
5007
|
+
};
|
|
5008
|
+
},
|
|
5009
|
+
deletev1alpha1AnnotationSetting: async (name, options = {}) => {
|
|
5010
|
+
assertParamExists("deletev1alpha1AnnotationSetting", "name", name);
|
|
5011
|
+
const localVarPath = `/api/v1alpha1/annotationsettings/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
5012
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5013
|
+
let baseOptions;
|
|
5014
|
+
if (configuration) {
|
|
5015
|
+
baseOptions = configuration.baseOptions;
|
|
5016
|
+
}
|
|
5017
|
+
const localVarRequestOptions = { method: "DELETE", ...baseOptions, ...options };
|
|
5018
|
+
const localVarHeaderParameter = {};
|
|
5019
|
+
const localVarQueryParameter = {};
|
|
5020
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5021
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5022
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5023
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5024
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5025
|
+
return {
|
|
5026
|
+
url: toPathString(localVarUrlObj),
|
|
5027
|
+
options: localVarRequestOptions
|
|
5028
|
+
};
|
|
5029
|
+
},
|
|
5030
|
+
getv1alpha1AnnotationSetting: async (name, options = {}) => {
|
|
5031
|
+
assertParamExists("getv1alpha1AnnotationSetting", "name", name);
|
|
5032
|
+
const localVarPath = `/api/v1alpha1/annotationsettings/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
5033
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5034
|
+
let baseOptions;
|
|
5035
|
+
if (configuration) {
|
|
5036
|
+
baseOptions = configuration.baseOptions;
|
|
5037
|
+
}
|
|
5038
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
5039
|
+
const localVarHeaderParameter = {};
|
|
5040
|
+
const localVarQueryParameter = {};
|
|
5041
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5042
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5043
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5044
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5045
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5046
|
+
return {
|
|
5047
|
+
url: toPathString(localVarUrlObj),
|
|
5048
|
+
options: localVarRequestOptions
|
|
5049
|
+
};
|
|
5050
|
+
},
|
|
5051
|
+
listv1alpha1AnnotationSetting: async (page, size, labelSelector, fieldSelector, options = {}) => {
|
|
5052
|
+
const localVarPath = `/api/v1alpha1/annotationsettings`;
|
|
5053
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5054
|
+
let baseOptions;
|
|
5055
|
+
if (configuration) {
|
|
5056
|
+
baseOptions = configuration.baseOptions;
|
|
5057
|
+
}
|
|
5058
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
5059
|
+
const localVarHeaderParameter = {};
|
|
5060
|
+
const localVarQueryParameter = {};
|
|
5061
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5062
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5063
|
+
if (page !== void 0) {
|
|
5064
|
+
localVarQueryParameter["page"] = page;
|
|
5065
|
+
}
|
|
5066
|
+
if (size !== void 0) {
|
|
5067
|
+
localVarQueryParameter["size"] = size;
|
|
5068
|
+
}
|
|
5069
|
+
if (labelSelector) {
|
|
5070
|
+
localVarQueryParameter["labelSelector"] = labelSelector;
|
|
5071
|
+
}
|
|
5072
|
+
if (fieldSelector) {
|
|
5073
|
+
localVarQueryParameter["fieldSelector"] = fieldSelector;
|
|
5074
|
+
}
|
|
5075
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5076
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5077
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5078
|
+
return {
|
|
5079
|
+
url: toPathString(localVarUrlObj),
|
|
5080
|
+
options: localVarRequestOptions
|
|
5081
|
+
};
|
|
5082
|
+
},
|
|
5083
|
+
updatev1alpha1AnnotationSetting: async (name, annotationSetting, options = {}) => {
|
|
5084
|
+
assertParamExists("updatev1alpha1AnnotationSetting", "name", name);
|
|
5085
|
+
const localVarPath = `/api/v1alpha1/annotationsettings/{name}`.replace(`{${"name"}}`, encodeURIComponent(String(name)));
|
|
5086
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
5087
|
+
let baseOptions;
|
|
5088
|
+
if (configuration) {
|
|
5089
|
+
baseOptions = configuration.baseOptions;
|
|
5090
|
+
}
|
|
5091
|
+
const localVarRequestOptions = { method: "PUT", ...baseOptions, ...options };
|
|
5092
|
+
const localVarHeaderParameter = {};
|
|
5093
|
+
const localVarQueryParameter = {};
|
|
5094
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
5095
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
5096
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
5097
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5098
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5099
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
5100
|
+
localVarRequestOptions.data = serializeDataIfNeeded(annotationSetting, localVarRequestOptions, configuration);
|
|
5101
|
+
return {
|
|
5102
|
+
url: toPathString(localVarUrlObj),
|
|
5103
|
+
options: localVarRequestOptions
|
|
5104
|
+
};
|
|
5105
|
+
}
|
|
5106
|
+
};
|
|
5107
|
+
};
|
|
5108
|
+
const V1alpha1AnnotationSettingApiFp = function(configuration) {
|
|
5109
|
+
const localVarAxiosParamCreator = V1alpha1AnnotationSettingApiAxiosParamCreator(configuration);
|
|
5110
|
+
return {
|
|
5111
|
+
async createv1alpha1AnnotationSetting(annotationSetting, options) {
|
|
5112
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createv1alpha1AnnotationSetting(annotationSetting, options);
|
|
5113
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5114
|
+
},
|
|
5115
|
+
async deletev1alpha1AnnotationSetting(name, options) {
|
|
5116
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deletev1alpha1AnnotationSetting(name, options);
|
|
5117
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5118
|
+
},
|
|
5119
|
+
async getv1alpha1AnnotationSetting(name, options) {
|
|
5120
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getv1alpha1AnnotationSetting(name, options);
|
|
5121
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5122
|
+
},
|
|
5123
|
+
async listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options) {
|
|
5124
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options);
|
|
5125
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5126
|
+
},
|
|
5127
|
+
async updatev1alpha1AnnotationSetting(name, annotationSetting, options) {
|
|
5128
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updatev1alpha1AnnotationSetting(name, annotationSetting, options);
|
|
5129
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5130
|
+
}
|
|
5131
|
+
};
|
|
5132
|
+
};
|
|
5133
|
+
const V1alpha1AnnotationSettingApiFactory = function(configuration, basePath, axios) {
|
|
5134
|
+
const localVarFp = V1alpha1AnnotationSettingApiFp(configuration);
|
|
5135
|
+
return {
|
|
5136
|
+
createv1alpha1AnnotationSetting(annotationSetting, options) {
|
|
5137
|
+
return localVarFp.createv1alpha1AnnotationSetting(annotationSetting, options).then((request) => request(axios, basePath));
|
|
5138
|
+
},
|
|
5139
|
+
deletev1alpha1AnnotationSetting(name, options) {
|
|
5140
|
+
return localVarFp.deletev1alpha1AnnotationSetting(name, options).then((request) => request(axios, basePath));
|
|
5141
|
+
},
|
|
5142
|
+
getv1alpha1AnnotationSetting(name, options) {
|
|
5143
|
+
return localVarFp.getv1alpha1AnnotationSetting(name, options).then((request) => request(axios, basePath));
|
|
5144
|
+
},
|
|
5145
|
+
listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options) {
|
|
5146
|
+
return localVarFp.listv1alpha1AnnotationSetting(page, size, labelSelector, fieldSelector, options).then((request) => request(axios, basePath));
|
|
5147
|
+
},
|
|
5148
|
+
updatev1alpha1AnnotationSetting(name, annotationSetting, options) {
|
|
5149
|
+
return localVarFp.updatev1alpha1AnnotationSetting(name, annotationSetting, options).then((request) => request(axios, basePath));
|
|
5150
|
+
}
|
|
5151
|
+
};
|
|
5152
|
+
};
|
|
5153
|
+
class V1alpha1AnnotationSettingApi extends BaseAPI {
|
|
5154
|
+
createv1alpha1AnnotationSetting(requestParameters = {}, options) {
|
|
5155
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).createv1alpha1AnnotationSetting(requestParameters.annotationSetting, options).then((request) => request(this.axios, this.basePath));
|
|
5156
|
+
}
|
|
5157
|
+
deletev1alpha1AnnotationSetting(requestParameters, options) {
|
|
5158
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).deletev1alpha1AnnotationSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
5159
|
+
}
|
|
5160
|
+
getv1alpha1AnnotationSetting(requestParameters, options) {
|
|
5161
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).getv1alpha1AnnotationSetting(requestParameters.name, options).then((request) => request(this.axios, this.basePath));
|
|
5162
|
+
}
|
|
5163
|
+
listv1alpha1AnnotationSetting(requestParameters = {}, options) {
|
|
5164
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).listv1alpha1AnnotationSetting(requestParameters.page, requestParameters.size, requestParameters.labelSelector, requestParameters.fieldSelector, options).then((request) => request(this.axios, this.basePath));
|
|
5165
|
+
}
|
|
5166
|
+
updatev1alpha1AnnotationSetting(requestParameters, options) {
|
|
5167
|
+
return V1alpha1AnnotationSettingApiFp(this.configuration).updatev1alpha1AnnotationSetting(requestParameters.name, requestParameters.annotationSetting, options).then((request) => request(this.axios, this.basePath));
|
|
5168
|
+
}
|
|
5169
|
+
}
|
|
5170
|
+
|
|
4985
5171
|
const V1alpha1ConfigMapApiAxiosParamCreator = function(configuration) {
|
|
4986
5172
|
return {
|
|
4987
5173
|
createv1alpha1ConfigMap: async (configMap, options = {}) => {
|
|
@@ -6513,4 +6699,4 @@ const SinglePageSpecVisibleEnum = {
|
|
|
6513
6699
|
Private: "PRIVATE"
|
|
6514
6700
|
};
|
|
6515
6701
|
|
|
6516
|
-
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, 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, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, 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, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, 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 };
|
|
6702
|
+
export { ApiConsoleHaloRunV1alpha1AttachmentApi, ApiConsoleHaloRunV1alpha1AttachmentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1AttachmentApiFactory, ApiConsoleHaloRunV1alpha1AttachmentApiFp, ApiConsoleHaloRunV1alpha1CommentApi, ApiConsoleHaloRunV1alpha1CommentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1CommentApiFactory, ApiConsoleHaloRunV1alpha1CommentApiFp, ApiConsoleHaloRunV1alpha1ContentApi, ApiConsoleHaloRunV1alpha1ContentApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1ContentApiFactory, ApiConsoleHaloRunV1alpha1ContentApiFp, ApiConsoleHaloRunV1alpha1IndicesApi, ApiConsoleHaloRunV1alpha1IndicesApiAxiosParamCreator, ApiConsoleHaloRunV1alpha1IndicesApiFactory, ApiConsoleHaloRunV1alpha1IndicesApiFp, 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, ApiHaloRunV1alpha1PostApi, ApiHaloRunV1alpha1PostApiAxiosParamCreator, ApiHaloRunV1alpha1PostApiFactory, ApiHaloRunV1alpha1PostApiFp, 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, PluginHaloRunV1alpha1SearchEngineApi, PluginHaloRunV1alpha1SearchEngineApiAxiosParamCreator, PluginHaloRunV1alpha1SearchEngineApiFactory, PluginHaloRunV1alpha1SearchEngineApiFp, PluginStatusPhaseEnum, PostSpecVisibleEnum, SinglePageSpecVisibleEnum, StorageHaloRunV1alpha1AttachmentApi, StorageHaloRunV1alpha1AttachmentApiAxiosParamCreator, StorageHaloRunV1alpha1AttachmentApiFactory, StorageHaloRunV1alpha1AttachmentApiFp, StorageHaloRunV1alpha1GroupApi, StorageHaloRunV1alpha1GroupApiAxiosParamCreator, StorageHaloRunV1alpha1GroupApiFactory, StorageHaloRunV1alpha1GroupApiFp, StorageHaloRunV1alpha1PolicyApi, StorageHaloRunV1alpha1PolicyApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyApiFactory, StorageHaloRunV1alpha1PolicyApiFp, StorageHaloRunV1alpha1PolicyTemplateApi, StorageHaloRunV1alpha1PolicyTemplateApiAxiosParamCreator, StorageHaloRunV1alpha1PolicyTemplateApiFactory, StorageHaloRunV1alpha1PolicyTemplateApiFp, ThemeHaloRunV1alpha1ThemeApi, ThemeHaloRunV1alpha1ThemeApiAxiosParamCreator, ThemeHaloRunV1alpha1ThemeApiFactory, ThemeHaloRunV1alpha1ThemeApiFp, V1alpha1AnnotationSettingApi, V1alpha1AnnotationSettingApiAxiosParamCreator, V1alpha1AnnotationSettingApiFactory, V1alpha1AnnotationSettingApiFp, 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 };
|