kb-cloud-client-typescript 2.2.96 → 2.2.97
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/openapi/apis/account-api.d.ts +406 -0
- package/dist/openapi/apis/account-api.d.ts.map +1 -1
- package/dist/openapi/apis/account-api.js +427 -0
- package/dist/openapi/apis/account-api.js.map +1 -1
- package/dist/openapi/apis/rdbms-api.d.ts +406 -0
- package/dist/openapi/apis/rdbms-api.d.ts.map +1 -1
- package/dist/openapi/apis/rdbms-api.js +427 -0
- package/dist/openapi/apis/rdbms-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +406 -0
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +427 -0
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/dms-service-account-create-request.d.ts +55 -0
- package/dist/openapi/models/dms-service-account-create-request.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account-create-request.js +16 -0
- package/dist/openapi/models/dms-service-account-create-request.js.map +1 -0
- package/dist/openapi/models/dms-service-account-status.d.ts +22 -0
- package/dist/openapi/models/dms-service-account-status.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account-status.js +26 -0
- package/dist/openapi/models/dms-service-account-status.js.map +1 -0
- package/dist/openapi/models/dms-service-account-update-request.d.ts +32 -0
- package/dist/openapi/models/dms-service-account-update-request.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account-update-request.js +16 -0
- package/dist/openapi/models/dms-service-account-update-request.js.map +1 -0
- package/dist/openapi/models/dms-service-account.d.ts +73 -0
- package/dist/openapi/models/dms-service-account.d.ts.map +1 -0
- package/dist/openapi/models/dms-service-account.js +16 -0
- package/dist/openapi/models/dms-service-account.js.map +1 -0
- package/dist/openapi/models/index.d.ts +4 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +4 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/openapi/.openapi-generator/FILES +4 -0
- package/src/openapi/apis/account-api.ts +703 -0
- package/src/openapi/apis/rdbms-api.ts +703 -0
- package/src/openapi/apis/shared-api.ts +703 -0
- package/src/openapi/models/dms-service-account-create-request.ts +60 -0
- package/src/openapi/models/dms-service-account-status.ts +31 -0
- package/src/openapi/models/dms-service-account-update-request.ts +41 -0
- package/src/openapi/models/dms-service-account.ts +78 -0
- package/src/openapi/models/index.ts +4 -0
- package/src/openapi.yaml +330 -0
|
@@ -123,6 +123,53 @@ const RdbmsApiAxiosParamCreator = function (configuration) {
|
|
|
123
123
|
options: localVarRequestOptions,
|
|
124
124
|
};
|
|
125
125
|
},
|
|
126
|
+
/**
|
|
127
|
+
* create a MinIO service account access key
|
|
128
|
+
* @summary Create MinIO access key
|
|
129
|
+
* @param {string} engineName name of the engine
|
|
130
|
+
* @param {string} orgName name of the organization
|
|
131
|
+
* @param {string} clusterName name of the cluster
|
|
132
|
+
* @param {DmsServiceAccountCreateRequest} body
|
|
133
|
+
* @param {*} [options] Override http request option.
|
|
134
|
+
* @throws {RequiredError}
|
|
135
|
+
*/
|
|
136
|
+
createServiceAccount: async (engineName, orgName, clusterName, body, options = {}) => {
|
|
137
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
138
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'engineName', engineName);
|
|
139
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
140
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'orgName', orgName);
|
|
141
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
142
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'clusterName', clusterName);
|
|
143
|
+
// verify required parameter 'body' is not null or undefined
|
|
144
|
+
(0, common_1.assertParamExists)('createServiceAccount', 'body', body);
|
|
145
|
+
const localVarPath = `/api/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys`
|
|
146
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
147
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
148
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)));
|
|
149
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
150
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
151
|
+
let baseOptions;
|
|
152
|
+
if (configuration) {
|
|
153
|
+
baseOptions = configuration.baseOptions;
|
|
154
|
+
}
|
|
155
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
156
|
+
const localVarHeaderParameter = {};
|
|
157
|
+
const localVarQueryParameter = {};
|
|
158
|
+
// authentication BearerToken required
|
|
159
|
+
// http bearer authentication required
|
|
160
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
161
|
+
// authentication DigestAuth required
|
|
162
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
163
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
164
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
165
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
166
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
167
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
|
|
168
|
+
return {
|
|
169
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
170
|
+
options: localVarRequestOptions,
|
|
171
|
+
};
|
|
172
|
+
},
|
|
126
173
|
/**
|
|
127
174
|
* delete an account in cluster
|
|
128
175
|
* @summary Delete cluster account
|
|
@@ -215,6 +262,52 @@ const RdbmsApiAxiosParamCreator = function (configuration) {
|
|
|
215
262
|
options: localVarRequestOptions,
|
|
216
263
|
};
|
|
217
264
|
},
|
|
265
|
+
/**
|
|
266
|
+
* delete a MinIO service account access key
|
|
267
|
+
* @summary Delete MinIO access key
|
|
268
|
+
* @param {string} engineName name of the engine
|
|
269
|
+
* @param {string} orgName name of the organization
|
|
270
|
+
* @param {string} clusterName name of the cluster
|
|
271
|
+
* @param {string} accessKey MinIO access key
|
|
272
|
+
* @param {*} [options] Override http request option.
|
|
273
|
+
* @throws {RequiredError}
|
|
274
|
+
*/
|
|
275
|
+
deleteServiceAccount: async (engineName, orgName, clusterName, accessKey, options = {}) => {
|
|
276
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
277
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'engineName', engineName);
|
|
278
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
279
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'orgName', orgName);
|
|
280
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
281
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'clusterName', clusterName);
|
|
282
|
+
// verify required parameter 'accessKey' is not null or undefined
|
|
283
|
+
(0, common_1.assertParamExists)('deleteServiceAccount', 'accessKey', accessKey);
|
|
284
|
+
const localVarPath = `/api/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys/{accessKey}`
|
|
285
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
286
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
287
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
288
|
+
.replace(`{${"accessKey"}}`, encodeURIComponent(String(accessKey)));
|
|
289
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
290
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
291
|
+
let baseOptions;
|
|
292
|
+
if (configuration) {
|
|
293
|
+
baseOptions = configuration.baseOptions;
|
|
294
|
+
}
|
|
295
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
296
|
+
const localVarHeaderParameter = {};
|
|
297
|
+
const localVarQueryParameter = {};
|
|
298
|
+
// authentication BearerToken required
|
|
299
|
+
// http bearer authentication required
|
|
300
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
301
|
+
// authentication DigestAuth required
|
|
302
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
303
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
304
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
305
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
306
|
+
return {
|
|
307
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
308
|
+
options: localVarRequestOptions,
|
|
309
|
+
};
|
|
310
|
+
},
|
|
218
311
|
/**
|
|
219
312
|
* generate demo data
|
|
220
313
|
* @summary generate demo data
|
|
@@ -364,6 +457,52 @@ const RdbmsApiAxiosParamCreator = function (configuration) {
|
|
|
364
457
|
options: localVarRequestOptions,
|
|
365
458
|
};
|
|
366
459
|
},
|
|
460
|
+
/**
|
|
461
|
+
* get a MinIO service account access key
|
|
462
|
+
* @summary Get MinIO access key
|
|
463
|
+
* @param {string} engineName name of the engine
|
|
464
|
+
* @param {string} orgName name of the organization
|
|
465
|
+
* @param {string} clusterName name of the cluster
|
|
466
|
+
* @param {string} accessKey MinIO access key
|
|
467
|
+
* @param {*} [options] Override http request option.
|
|
468
|
+
* @throws {RequiredError}
|
|
469
|
+
*/
|
|
470
|
+
getServiceAccount: async (engineName, orgName, clusterName, accessKey, options = {}) => {
|
|
471
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
472
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'engineName', engineName);
|
|
473
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
474
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'orgName', orgName);
|
|
475
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
476
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'clusterName', clusterName);
|
|
477
|
+
// verify required parameter 'accessKey' is not null or undefined
|
|
478
|
+
(0, common_1.assertParamExists)('getServiceAccount', 'accessKey', accessKey);
|
|
479
|
+
const localVarPath = `/api/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys/{accessKey}`
|
|
480
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
481
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
482
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
483
|
+
.replace(`{${"accessKey"}}`, encodeURIComponent(String(accessKey)));
|
|
484
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
485
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
486
|
+
let baseOptions;
|
|
487
|
+
if (configuration) {
|
|
488
|
+
baseOptions = configuration.baseOptions;
|
|
489
|
+
}
|
|
490
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
491
|
+
const localVarHeaderParameter = {};
|
|
492
|
+
const localVarQueryParameter = {};
|
|
493
|
+
// authentication BearerToken required
|
|
494
|
+
// http bearer authentication required
|
|
495
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
496
|
+
// authentication DigestAuth required
|
|
497
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
498
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
499
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
500
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
501
|
+
return {
|
|
502
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
503
|
+
options: localVarRequestOptions,
|
|
504
|
+
};
|
|
505
|
+
},
|
|
367
506
|
/**
|
|
368
507
|
* kill a session in cluster
|
|
369
508
|
* @summary Kill cluster session
|
|
@@ -498,6 +637,52 @@ const RdbmsApiAxiosParamCreator = function (configuration) {
|
|
|
498
637
|
options: localVarRequestOptions,
|
|
499
638
|
};
|
|
500
639
|
},
|
|
640
|
+
/**
|
|
641
|
+
* list MinIO service account access keys
|
|
642
|
+
* @summary List MinIO access keys
|
|
643
|
+
* @param {string} engineName name of the engine
|
|
644
|
+
* @param {string} orgName name of the organization
|
|
645
|
+
* @param {string} clusterName name of the cluster
|
|
646
|
+
* @param {string} [userName] MinIO user that owns the service accounts
|
|
647
|
+
* @param {*} [options] Override http request option.
|
|
648
|
+
* @throws {RequiredError}
|
|
649
|
+
*/
|
|
650
|
+
listServiceAccounts: async (engineName, orgName, clusterName, userName, options = {}) => {
|
|
651
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
652
|
+
(0, common_1.assertParamExists)('listServiceAccounts', 'engineName', engineName);
|
|
653
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
654
|
+
(0, common_1.assertParamExists)('listServiceAccounts', 'orgName', orgName);
|
|
655
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
656
|
+
(0, common_1.assertParamExists)('listServiceAccounts', 'clusterName', clusterName);
|
|
657
|
+
const localVarPath = `/api/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys`
|
|
658
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
659
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
660
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)));
|
|
661
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
662
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
663
|
+
let baseOptions;
|
|
664
|
+
if (configuration) {
|
|
665
|
+
baseOptions = configuration.baseOptions;
|
|
666
|
+
}
|
|
667
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
668
|
+
const localVarHeaderParameter = {};
|
|
669
|
+
const localVarQueryParameter = {};
|
|
670
|
+
// authentication BearerToken required
|
|
671
|
+
// http bearer authentication required
|
|
672
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
673
|
+
// authentication DigestAuth required
|
|
674
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
675
|
+
if (userName !== undefined) {
|
|
676
|
+
localVarQueryParameter['userName'] = userName;
|
|
677
|
+
}
|
|
678
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
679
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
680
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
681
|
+
return {
|
|
682
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
683
|
+
options: localVarRequestOptions,
|
|
684
|
+
};
|
|
685
|
+
},
|
|
501
686
|
/**
|
|
502
687
|
* list sessions in cluster
|
|
503
688
|
* @summary List cluster sessions
|
|
@@ -695,6 +880,57 @@ const RdbmsApiAxiosParamCreator = function (configuration) {
|
|
|
695
880
|
options: localVarRequestOptions,
|
|
696
881
|
};
|
|
697
882
|
},
|
|
883
|
+
/**
|
|
884
|
+
* update a MinIO service account access key
|
|
885
|
+
* @summary Update MinIO access key
|
|
886
|
+
* @param {string} engineName name of the engine
|
|
887
|
+
* @param {string} orgName name of the organization
|
|
888
|
+
* @param {string} clusterName name of the cluster
|
|
889
|
+
* @param {string} accessKey MinIO access key
|
|
890
|
+
* @param {DmsServiceAccountUpdateRequest} body
|
|
891
|
+
* @param {*} [options] Override http request option.
|
|
892
|
+
* @throws {RequiredError}
|
|
893
|
+
*/
|
|
894
|
+
updateServiceAccount: async (engineName, orgName, clusterName, accessKey, body, options = {}) => {
|
|
895
|
+
// verify required parameter 'engineName' is not null or undefined
|
|
896
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'engineName', engineName);
|
|
897
|
+
// verify required parameter 'orgName' is not null or undefined
|
|
898
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'orgName', orgName);
|
|
899
|
+
// verify required parameter 'clusterName' is not null or undefined
|
|
900
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'clusterName', clusterName);
|
|
901
|
+
// verify required parameter 'accessKey' is not null or undefined
|
|
902
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'accessKey', accessKey);
|
|
903
|
+
// verify required parameter 'body' is not null or undefined
|
|
904
|
+
(0, common_1.assertParamExists)('updateServiceAccount', 'body', body);
|
|
905
|
+
const localVarPath = `/api/v1/data/{engineName}/organizations/{orgName}/clusters/{clusterName}/access-keys/{accessKey}`
|
|
906
|
+
.replace(`{${"engineName"}}`, encodeURIComponent(String(engineName)))
|
|
907
|
+
.replace(`{${"orgName"}}`, encodeURIComponent(String(orgName)))
|
|
908
|
+
.replace(`{${"clusterName"}}`, encodeURIComponent(String(clusterName)))
|
|
909
|
+
.replace(`{${"accessKey"}}`, encodeURIComponent(String(accessKey)));
|
|
910
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
911
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
912
|
+
let baseOptions;
|
|
913
|
+
if (configuration) {
|
|
914
|
+
baseOptions = configuration.baseOptions;
|
|
915
|
+
}
|
|
916
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
|
|
917
|
+
const localVarHeaderParameter = {};
|
|
918
|
+
const localVarQueryParameter = {};
|
|
919
|
+
// authentication BearerToken required
|
|
920
|
+
// http bearer authentication required
|
|
921
|
+
await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
922
|
+
// authentication DigestAuth required
|
|
923
|
+
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
924
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
925
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
926
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
927
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
928
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
|
|
929
|
+
return {
|
|
930
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
931
|
+
options: localVarRequestOptions,
|
|
932
|
+
};
|
|
933
|
+
},
|
|
698
934
|
};
|
|
699
935
|
};
|
|
700
936
|
exports.RdbmsApiAxiosParamCreator = RdbmsApiAxiosParamCreator;
|
|
@@ -739,6 +975,23 @@ const RdbmsApiFp = function (configuration) {
|
|
|
739
975
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.createDatabase']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
740
976
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
741
977
|
},
|
|
978
|
+
/**
|
|
979
|
+
* create a MinIO service account access key
|
|
980
|
+
* @summary Create MinIO access key
|
|
981
|
+
* @param {string} engineName name of the engine
|
|
982
|
+
* @param {string} orgName name of the organization
|
|
983
|
+
* @param {string} clusterName name of the cluster
|
|
984
|
+
* @param {DmsServiceAccountCreateRequest} body
|
|
985
|
+
* @param {*} [options] Override http request option.
|
|
986
|
+
* @throws {RequiredError}
|
|
987
|
+
*/
|
|
988
|
+
async createServiceAccount(engineName, orgName, clusterName, body, options) {
|
|
989
|
+
var _a, _b, _c;
|
|
990
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createServiceAccount(engineName, orgName, clusterName, body, options);
|
|
991
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
992
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.createServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
993
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
994
|
+
},
|
|
742
995
|
/**
|
|
743
996
|
* delete an account in cluster
|
|
744
997
|
* @summary Delete cluster account
|
|
@@ -773,6 +1026,23 @@ const RdbmsApiFp = function (configuration) {
|
|
|
773
1026
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.deleteDatabase']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
774
1027
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
775
1028
|
},
|
|
1029
|
+
/**
|
|
1030
|
+
* delete a MinIO service account access key
|
|
1031
|
+
* @summary Delete MinIO access key
|
|
1032
|
+
* @param {string} engineName name of the engine
|
|
1033
|
+
* @param {string} orgName name of the organization
|
|
1034
|
+
* @param {string} clusterName name of the cluster
|
|
1035
|
+
* @param {string} accessKey MinIO access key
|
|
1036
|
+
* @param {*} [options] Override http request option.
|
|
1037
|
+
* @throws {RequiredError}
|
|
1038
|
+
*/
|
|
1039
|
+
async deleteServiceAccount(engineName, orgName, clusterName, accessKey, options) {
|
|
1040
|
+
var _a, _b, _c;
|
|
1041
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteServiceAccount(engineName, orgName, clusterName, accessKey, options);
|
|
1042
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1043
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.deleteServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1044
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1045
|
+
},
|
|
776
1046
|
/**
|
|
777
1047
|
* generate demo data
|
|
778
1048
|
* @summary generate demo data
|
|
@@ -825,6 +1095,23 @@ const RdbmsApiFp = function (configuration) {
|
|
|
825
1095
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.getDatabaseOptions']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
826
1096
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
827
1097
|
},
|
|
1098
|
+
/**
|
|
1099
|
+
* get a MinIO service account access key
|
|
1100
|
+
* @summary Get MinIO access key
|
|
1101
|
+
* @param {string} engineName name of the engine
|
|
1102
|
+
* @param {string} orgName name of the organization
|
|
1103
|
+
* @param {string} clusterName name of the cluster
|
|
1104
|
+
* @param {string} accessKey MinIO access key
|
|
1105
|
+
* @param {*} [options] Override http request option.
|
|
1106
|
+
* @throws {RequiredError}
|
|
1107
|
+
*/
|
|
1108
|
+
async getServiceAccount(engineName, orgName, clusterName, accessKey, options) {
|
|
1109
|
+
var _a, _b, _c;
|
|
1110
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getServiceAccount(engineName, orgName, clusterName, accessKey, options);
|
|
1111
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1112
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.getServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1113
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1114
|
+
},
|
|
828
1115
|
/**
|
|
829
1116
|
* kill a session in cluster
|
|
830
1117
|
* @summary Kill cluster session
|
|
@@ -875,6 +1162,23 @@ const RdbmsApiFp = function (configuration) {
|
|
|
875
1162
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.listDatabases']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
876
1163
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
877
1164
|
},
|
|
1165
|
+
/**
|
|
1166
|
+
* list MinIO service account access keys
|
|
1167
|
+
* @summary List MinIO access keys
|
|
1168
|
+
* @param {string} engineName name of the engine
|
|
1169
|
+
* @param {string} orgName name of the organization
|
|
1170
|
+
* @param {string} clusterName name of the cluster
|
|
1171
|
+
* @param {string} [userName] MinIO user that owns the service accounts
|
|
1172
|
+
* @param {*} [options] Override http request option.
|
|
1173
|
+
* @throws {RequiredError}
|
|
1174
|
+
*/
|
|
1175
|
+
async listServiceAccounts(engineName, orgName, clusterName, userName, options) {
|
|
1176
|
+
var _a, _b, _c;
|
|
1177
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listServiceAccounts(engineName, orgName, clusterName, userName, options);
|
|
1178
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1179
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.listServiceAccounts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1180
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1181
|
+
},
|
|
878
1182
|
/**
|
|
879
1183
|
* list sessions in cluster
|
|
880
1184
|
* @summary List cluster sessions
|
|
@@ -946,6 +1250,24 @@ const RdbmsApiFp = function (configuration) {
|
|
|
946
1250
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.updateDatabaseConfig']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
947
1251
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
948
1252
|
},
|
|
1253
|
+
/**
|
|
1254
|
+
* update a MinIO service account access key
|
|
1255
|
+
* @summary Update MinIO access key
|
|
1256
|
+
* @param {string} engineName name of the engine
|
|
1257
|
+
* @param {string} orgName name of the organization
|
|
1258
|
+
* @param {string} clusterName name of the cluster
|
|
1259
|
+
* @param {string} accessKey MinIO access key
|
|
1260
|
+
* @param {DmsServiceAccountUpdateRequest} body
|
|
1261
|
+
* @param {*} [options] Override http request option.
|
|
1262
|
+
* @throws {RequiredError}
|
|
1263
|
+
*/
|
|
1264
|
+
async updateServiceAccount(engineName, orgName, clusterName, accessKey, body, options) {
|
|
1265
|
+
var _a, _b, _c;
|
|
1266
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateServiceAccount(engineName, orgName, clusterName, accessKey, body, options);
|
|
1267
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1268
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['RdbmsApi.updateServiceAccount']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1269
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1270
|
+
},
|
|
949
1271
|
};
|
|
950
1272
|
};
|
|
951
1273
|
exports.RdbmsApiFp = RdbmsApiFp;
|
|
@@ -976,6 +1298,16 @@ const RdbmsApiFactory = function (configuration, basePath, axios) {
|
|
|
976
1298
|
createDatabase(requestParameters, options) {
|
|
977
1299
|
return localVarFp.createDatabase(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(axios, basePath));
|
|
978
1300
|
},
|
|
1301
|
+
/**
|
|
1302
|
+
* create a MinIO service account access key
|
|
1303
|
+
* @summary Create MinIO access key
|
|
1304
|
+
* @param {RdbmsApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
1305
|
+
* @param {*} [options] Override http request option.
|
|
1306
|
+
* @throws {RequiredError}
|
|
1307
|
+
*/
|
|
1308
|
+
createServiceAccount(requestParameters, options) {
|
|
1309
|
+
return localVarFp.createServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(axios, basePath));
|
|
1310
|
+
},
|
|
979
1311
|
/**
|
|
980
1312
|
* delete an account in cluster
|
|
981
1313
|
* @summary Delete cluster account
|
|
@@ -996,6 +1328,16 @@ const RdbmsApiFactory = function (configuration, basePath, axios) {
|
|
|
996
1328
|
deleteDatabase(requestParameters, options) {
|
|
997
1329
|
return localVarFp.deleteDatabase(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.databaseName, options).then((request) => request(axios, basePath));
|
|
998
1330
|
},
|
|
1331
|
+
/**
|
|
1332
|
+
* delete a MinIO service account access key
|
|
1333
|
+
* @summary Delete MinIO access key
|
|
1334
|
+
* @param {RdbmsApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
1335
|
+
* @param {*} [options] Override http request option.
|
|
1336
|
+
* @throws {RequiredError}
|
|
1337
|
+
*/
|
|
1338
|
+
deleteServiceAccount(requestParameters, options) {
|
|
1339
|
+
return localVarFp.deleteServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(axios, basePath));
|
|
1340
|
+
},
|
|
999
1341
|
/**
|
|
1000
1342
|
* generate demo data
|
|
1001
1343
|
* @summary generate demo data
|
|
@@ -1025,6 +1367,16 @@ const RdbmsApiFactory = function (configuration, basePath, axios) {
|
|
|
1025
1367
|
getDatabaseOptions(requestParameters, options) {
|
|
1026
1368
|
return localVarFp.getDatabaseOptions(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.type, requestParameters.charset, requestParameters.filter, options).then((request) => request(axios, basePath));
|
|
1027
1369
|
},
|
|
1370
|
+
/**
|
|
1371
|
+
* get a MinIO service account access key
|
|
1372
|
+
* @summary Get MinIO access key
|
|
1373
|
+
* @param {RdbmsApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
1374
|
+
* @param {*} [options] Override http request option.
|
|
1375
|
+
* @throws {RequiredError}
|
|
1376
|
+
*/
|
|
1377
|
+
getServiceAccount(requestParameters, options) {
|
|
1378
|
+
return localVarFp.getServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(axios, basePath));
|
|
1379
|
+
},
|
|
1028
1380
|
/**
|
|
1029
1381
|
* kill a session in cluster
|
|
1030
1382
|
* @summary Kill cluster session
|
|
@@ -1055,6 +1407,16 @@ const RdbmsApiFactory = function (configuration, basePath, axios) {
|
|
|
1055
1407
|
listDatabases(requestParameters, options) {
|
|
1056
1408
|
return localVarFp.listDatabases(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, options).then((request) => request(axios, basePath));
|
|
1057
1409
|
},
|
|
1410
|
+
/**
|
|
1411
|
+
* list MinIO service account access keys
|
|
1412
|
+
* @summary List MinIO access keys
|
|
1413
|
+
* @param {RdbmsApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
1414
|
+
* @param {*} [options] Override http request option.
|
|
1415
|
+
* @throws {RequiredError}
|
|
1416
|
+
*/
|
|
1417
|
+
listServiceAccounts(requestParameters, options) {
|
|
1418
|
+
return localVarFp.listServiceAccounts(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.userName, options).then((request) => request(axios, basePath));
|
|
1419
|
+
},
|
|
1058
1420
|
/**
|
|
1059
1421
|
* list sessions in cluster
|
|
1060
1422
|
* @summary List cluster sessions
|
|
@@ -1095,6 +1457,16 @@ const RdbmsApiFactory = function (configuration, basePath, axios) {
|
|
|
1095
1457
|
updateDatabaseConfig(requestParameters, options) {
|
|
1096
1458
|
return localVarFp.updateDatabaseConfig(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.databaseName, requestParameters.requestBody, options).then((request) => request(axios, basePath));
|
|
1097
1459
|
},
|
|
1460
|
+
/**
|
|
1461
|
+
* update a MinIO service account access key
|
|
1462
|
+
* @summary Update MinIO access key
|
|
1463
|
+
* @param {RdbmsApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
1464
|
+
* @param {*} [options] Override http request option.
|
|
1465
|
+
* @throws {RequiredError}
|
|
1466
|
+
*/
|
|
1467
|
+
updateServiceAccount(requestParameters, options) {
|
|
1468
|
+
return localVarFp.updateServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, requestParameters.body, options).then((request) => request(axios, basePath));
|
|
1469
|
+
},
|
|
1098
1470
|
};
|
|
1099
1471
|
};
|
|
1100
1472
|
exports.RdbmsApiFactory = RdbmsApiFactory;
|
|
@@ -1127,6 +1499,17 @@ class RdbmsApi extends base_1.BaseAPI {
|
|
|
1127
1499
|
createDatabase(requestParameters, options) {
|
|
1128
1500
|
return (0, exports.RdbmsApiFp)(this.configuration).createDatabase(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
1129
1501
|
}
|
|
1502
|
+
/**
|
|
1503
|
+
* create a MinIO service account access key
|
|
1504
|
+
* @summary Create MinIO access key
|
|
1505
|
+
* @param {RdbmsApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
1506
|
+
* @param {*} [options] Override http request option.
|
|
1507
|
+
* @throws {RequiredError}
|
|
1508
|
+
* @memberof RdbmsApi
|
|
1509
|
+
*/
|
|
1510
|
+
createServiceAccount(requestParameters, options) {
|
|
1511
|
+
return (0, exports.RdbmsApiFp)(this.configuration).createServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
1512
|
+
}
|
|
1130
1513
|
/**
|
|
1131
1514
|
* delete an account in cluster
|
|
1132
1515
|
* @summary Delete cluster account
|
|
@@ -1149,6 +1532,17 @@ class RdbmsApi extends base_1.BaseAPI {
|
|
|
1149
1532
|
deleteDatabase(requestParameters, options) {
|
|
1150
1533
|
return (0, exports.RdbmsApiFp)(this.configuration).deleteDatabase(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.databaseName, options).then((request) => request(this.axios, this.basePath));
|
|
1151
1534
|
}
|
|
1535
|
+
/**
|
|
1536
|
+
* delete a MinIO service account access key
|
|
1537
|
+
* @summary Delete MinIO access key
|
|
1538
|
+
* @param {RdbmsApiDeleteServiceAccountRequest} requestParameters Request parameters.
|
|
1539
|
+
* @param {*} [options] Override http request option.
|
|
1540
|
+
* @throws {RequiredError}
|
|
1541
|
+
* @memberof RdbmsApi
|
|
1542
|
+
*/
|
|
1543
|
+
deleteServiceAccount(requestParameters, options) {
|
|
1544
|
+
return (0, exports.RdbmsApiFp)(this.configuration).deleteServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(this.axios, this.basePath));
|
|
1545
|
+
}
|
|
1152
1546
|
/**
|
|
1153
1547
|
* generate demo data
|
|
1154
1548
|
* @summary generate demo data
|
|
@@ -1181,6 +1575,17 @@ class RdbmsApi extends base_1.BaseAPI {
|
|
|
1181
1575
|
getDatabaseOptions(requestParameters, options) {
|
|
1182
1576
|
return (0, exports.RdbmsApiFp)(this.configuration).getDatabaseOptions(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.type, requestParameters.charset, requestParameters.filter, options).then((request) => request(this.axios, this.basePath));
|
|
1183
1577
|
}
|
|
1578
|
+
/**
|
|
1579
|
+
* get a MinIO service account access key
|
|
1580
|
+
* @summary Get MinIO access key
|
|
1581
|
+
* @param {RdbmsApiGetServiceAccountRequest} requestParameters Request parameters.
|
|
1582
|
+
* @param {*} [options] Override http request option.
|
|
1583
|
+
* @throws {RequiredError}
|
|
1584
|
+
* @memberof RdbmsApi
|
|
1585
|
+
*/
|
|
1586
|
+
getServiceAccount(requestParameters, options) {
|
|
1587
|
+
return (0, exports.RdbmsApiFp)(this.configuration).getServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, options).then((request) => request(this.axios, this.basePath));
|
|
1588
|
+
}
|
|
1184
1589
|
/**
|
|
1185
1590
|
* kill a session in cluster
|
|
1186
1591
|
* @summary Kill cluster session
|
|
@@ -1214,6 +1619,17 @@ class RdbmsApi extends base_1.BaseAPI {
|
|
|
1214
1619
|
listDatabases(requestParameters, options) {
|
|
1215
1620
|
return (0, exports.RdbmsApiFp)(this.configuration).listDatabases(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, options).then((request) => request(this.axios, this.basePath));
|
|
1216
1621
|
}
|
|
1622
|
+
/**
|
|
1623
|
+
* list MinIO service account access keys
|
|
1624
|
+
* @summary List MinIO access keys
|
|
1625
|
+
* @param {RdbmsApiListServiceAccountsRequest} requestParameters Request parameters.
|
|
1626
|
+
* @param {*} [options] Override http request option.
|
|
1627
|
+
* @throws {RequiredError}
|
|
1628
|
+
* @memberof RdbmsApi
|
|
1629
|
+
*/
|
|
1630
|
+
listServiceAccounts(requestParameters, options) {
|
|
1631
|
+
return (0, exports.RdbmsApiFp)(this.configuration).listServiceAccounts(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.userName, options).then((request) => request(this.axios, this.basePath));
|
|
1632
|
+
}
|
|
1217
1633
|
/**
|
|
1218
1634
|
* list sessions in cluster
|
|
1219
1635
|
* @summary List cluster sessions
|
|
@@ -1258,6 +1674,17 @@ class RdbmsApi extends base_1.BaseAPI {
|
|
|
1258
1674
|
updateDatabaseConfig(requestParameters, options) {
|
|
1259
1675
|
return (0, exports.RdbmsApiFp)(this.configuration).updateDatabaseConfig(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.databaseName, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
1260
1676
|
}
|
|
1677
|
+
/**
|
|
1678
|
+
* update a MinIO service account access key
|
|
1679
|
+
* @summary Update MinIO access key
|
|
1680
|
+
* @param {RdbmsApiUpdateServiceAccountRequest} requestParameters Request parameters.
|
|
1681
|
+
* @param {*} [options] Override http request option.
|
|
1682
|
+
* @throws {RequiredError}
|
|
1683
|
+
* @memberof RdbmsApi
|
|
1684
|
+
*/
|
|
1685
|
+
updateServiceAccount(requestParameters, options) {
|
|
1686
|
+
return (0, exports.RdbmsApiFp)(this.configuration).updateServiceAccount(requestParameters.engineName, requestParameters.orgName, requestParameters.clusterName, requestParameters.accessKey, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
1687
|
+
}
|
|
1261
1688
|
}
|
|
1262
1689
|
exports.RdbmsApi = RdbmsApi;
|
|
1263
1690
|
//# sourceMappingURL=rdbms-api.js.map
|