kb-cloud-client-typescript 2.3.0-alpha.208 → 2.3.0-alpha.210
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/adminapi/apis/account-api.d.ts +0 -206
- package/dist/adminapi/apis/account-api.d.ts.map +1 -1
- package/dist/adminapi/apis/account-api.js +0 -233
- package/dist/adminapi/apis/account-api.js.map +1 -1
- package/dist/adminapi/apis/milvus-api.d.ts +0 -207
- package/dist/adminapi/apis/milvus-api.d.ts.map +1 -1
- package/dist/adminapi/apis/milvus-api.js +0 -233
- package/dist/adminapi/apis/milvus-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +0 -206
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +0 -233
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/index.d.ts +0 -1
- package/dist/adminapi/models/index.d.ts.map +1 -1
- package/dist/adminapi/models/index.js +0 -1
- package/dist/adminapi/models/index.js.map +1 -1
- package/dist/openapi/apis/account-api.d.ts +0 -206
- package/dist/openapi/apis/account-api.d.ts.map +1 -1
- package/dist/openapi/apis/account-api.js +0 -233
- package/dist/openapi/apis/account-api.js.map +1 -1
- package/dist/openapi/apis/milvus-api.d.ts +0 -207
- package/dist/openapi/apis/milvus-api.d.ts.map +1 -1
- package/dist/openapi/apis/milvus-api.js +0 -233
- package/dist/openapi/apis/milvus-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +0 -206
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +0 -233
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/index.d.ts +0 -1
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +0 -1
- package/dist/openapi/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/.openapi-generator/FILES +0 -1
- package/src/adminapi/apis/account-api.ts +0 -364
- package/src/adminapi/apis/milvus-api.ts +0 -366
- package/src/adminapi/apis/shared-api.ts +0 -364
- package/src/adminapi/models/index.ts +0 -1
- package/src/adminapi.yaml +0 -150
- package/src/openapi/.openapi-generator/FILES +0 -1
- package/src/openapi/apis/account-api.ts +0 -364
- package/src/openapi/apis/milvus-api.ts +0 -366
- package/src/openapi/apis/shared-api.ts +0 -364
- package/src/openapi/models/index.ts +0 -1
- package/src/openapi.yaml +0 -150
- package/dist/adminapi/models/milvus-account.d.ts +0 -49
- package/dist/adminapi/models/milvus-account.d.ts.map +0 -1
- package/dist/adminapi/models/milvus-account.js +0 -16
- package/dist/adminapi/models/milvus-account.js.map +0 -1
- package/dist/openapi/models/milvus-account.d.ts +0 -49
- package/dist/openapi/models/milvus-account.d.ts.map +0 -1
- package/dist/openapi/models/milvus-account.js +0 -16
- package/dist/openapi/models/milvus-account.js.map +0 -1
- package/src/adminapi/models/milvus-account.ts +0 -54
- package/src/openapi/models/milvus-account.ts +0 -54
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Admin API
|
|
3
|
-
* The Admin API is used to manage the ApeCloud platform.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
6
|
-
* Contact: support@apecloud.com
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
* Milvus account creation request.
|
|
14
|
-
* @export
|
|
15
|
-
* @interface MilvusAccount
|
|
16
|
-
*/
|
|
17
|
-
export interface MilvusAccount {
|
|
18
|
-
/**
|
|
19
|
-
* Account name. Kept for compatibility with the generic account model.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof MilvusAccount
|
|
22
|
-
*/
|
|
23
|
-
'name'?: string;
|
|
24
|
-
/**
|
|
25
|
-
* Milvus username. When omitted, name is used.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof MilvusAccount
|
|
28
|
-
*/
|
|
29
|
-
'username'?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Account password.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof MilvusAccount
|
|
34
|
-
*/
|
|
35
|
-
'password': string;
|
|
36
|
-
/**
|
|
37
|
-
* Generic account role. SUPERUSER maps to the Milvus admin role.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof MilvusAccount
|
|
40
|
-
*/
|
|
41
|
-
'role'?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Milvus role names to assign to the user.
|
|
44
|
-
* @type {Array<string>}
|
|
45
|
-
* @memberof MilvusAccount
|
|
46
|
-
*/
|
|
47
|
-
'roles'?: Array<string>;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=milvus-account.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"milvus-account.d.ts","sourceRoot":"","sources":["../../../src/adminapi/models/milvus-account.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC1B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC3B"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Admin API
|
|
6
|
-
* The Admin API is used to manage the ApeCloud platform.
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
9
|
-
* Contact: support@apecloud.com
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
//# sourceMappingURL=milvus-account.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"milvus-account.js","sourceRoot":"","sources":["../../../src/adminapi/models/milvus-account.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* KubeBlocks Cloud API
|
|
3
|
-
* KubeBlocks Cloud API is a RESTful API for managing KubeBlocks Cloud resources. The API is organized around REST. Our API has predictable resource-oriented URLs, accepts `JSON-encoded` request bodies, returns `JSON-encoded` responses, and uses standard HTTP response codes, authentication, and verbs. We use standard HTTP authentication and provide API keys to identify who you are. Your API keys carry many privileges, so be sure to keep them secret! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0.0
|
|
6
|
-
* Contact: support@apecloud.com
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
* Milvus account creation request.
|
|
14
|
-
* @export
|
|
15
|
-
* @interface MilvusAccount
|
|
16
|
-
*/
|
|
17
|
-
export interface MilvusAccount {
|
|
18
|
-
/**
|
|
19
|
-
* Account name. Kept for compatibility with the generic account model.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof MilvusAccount
|
|
22
|
-
*/
|
|
23
|
-
'name'?: string;
|
|
24
|
-
/**
|
|
25
|
-
* Milvus username. When omitted, name is used.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof MilvusAccount
|
|
28
|
-
*/
|
|
29
|
-
'username'?: string;
|
|
30
|
-
/**
|
|
31
|
-
* Account password.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof MilvusAccount
|
|
34
|
-
*/
|
|
35
|
-
'password': string;
|
|
36
|
-
/**
|
|
37
|
-
* Generic account role. SUPERUSER maps to the Milvus admin role.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof MilvusAccount
|
|
40
|
-
*/
|
|
41
|
-
'role'?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Milvus role names to assign to the user.
|
|
44
|
-
* @type {Array<string>}
|
|
45
|
-
* @memberof MilvusAccount
|
|
46
|
-
*/
|
|
47
|
-
'roles'?: Array<string>;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=milvus-account.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"milvus-account.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/milvus-account.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC1B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC3B"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* KubeBlocks Cloud API
|
|
6
|
-
* KubeBlocks Cloud API is a RESTful API for managing KubeBlocks Cloud resources. The API is organized around REST. Our API has predictable resource-oriented URLs, accepts `JSON-encoded` request bodies, returns `JSON-encoded` responses, and uses standard HTTP response codes, authentication, and verbs. We use standard HTTP authentication and provide API keys to identify who you are. Your API keys carry many privileges, so be sure to keep them secret! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0.0
|
|
9
|
-
* Contact: support@apecloud.com
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
//# sourceMappingURL=milvus-account.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"milvus-account.js","sourceRoot":"","sources":["../../../src/openapi/models/milvus-account.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Admin API
|
|
5
|
-
* The Admin API is used to manage the ApeCloud platform.
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
* Contact: support@apecloud.com
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Milvus account creation request.
|
|
19
|
-
* @export
|
|
20
|
-
* @interface MilvusAccount
|
|
21
|
-
*/
|
|
22
|
-
export interface MilvusAccount {
|
|
23
|
-
/**
|
|
24
|
-
* Account name. Kept for compatibility with the generic account model.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof MilvusAccount
|
|
27
|
-
*/
|
|
28
|
-
'name'?: string;
|
|
29
|
-
/**
|
|
30
|
-
* Milvus username. When omitted, name is used.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof MilvusAccount
|
|
33
|
-
*/
|
|
34
|
-
'username'?: string;
|
|
35
|
-
/**
|
|
36
|
-
* Account password.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof MilvusAccount
|
|
39
|
-
*/
|
|
40
|
-
'password': string;
|
|
41
|
-
/**
|
|
42
|
-
* Generic account role. SUPERUSER maps to the Milvus admin role.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof MilvusAccount
|
|
45
|
-
*/
|
|
46
|
-
'role'?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Milvus role names to assign to the user.
|
|
49
|
-
* @type {Array<string>}
|
|
50
|
-
* @memberof MilvusAccount
|
|
51
|
-
*/
|
|
52
|
-
'roles'?: Array<string>;
|
|
53
|
-
}
|
|
54
|
-
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* KubeBlocks Cloud API
|
|
5
|
-
* KubeBlocks Cloud API is a RESTful API for managing KubeBlocks Cloud resources. The API is organized around REST. Our API has predictable resource-oriented URLs, accepts `JSON-encoded` request bodies, returns `JSON-encoded` responses, and uses standard HTTP response codes, authentication, and verbs. We use standard HTTP authentication and provide API keys to identify who you are. Your API keys carry many privileges, so be sure to keep them secret! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
* Contact: support@apecloud.com
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Milvus account creation request.
|
|
19
|
-
* @export
|
|
20
|
-
* @interface MilvusAccount
|
|
21
|
-
*/
|
|
22
|
-
export interface MilvusAccount {
|
|
23
|
-
/**
|
|
24
|
-
* Account name. Kept for compatibility with the generic account model.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof MilvusAccount
|
|
27
|
-
*/
|
|
28
|
-
'name'?: string;
|
|
29
|
-
/**
|
|
30
|
-
* Milvus username. When omitted, name is used.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof MilvusAccount
|
|
33
|
-
*/
|
|
34
|
-
'username'?: string;
|
|
35
|
-
/**
|
|
36
|
-
* Account password.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof MilvusAccount
|
|
39
|
-
*/
|
|
40
|
-
'password': string;
|
|
41
|
-
/**
|
|
42
|
-
* Generic account role. SUPERUSER maps to the Milvus admin role.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof MilvusAccount
|
|
45
|
-
*/
|
|
46
|
-
'role'?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Milvus role names to assign to the user.
|
|
49
|
-
* @type {Array<string>}
|
|
50
|
-
* @memberof MilvusAccount
|
|
51
|
-
*/
|
|
52
|
-
'roles'?: Array<string>;
|
|
53
|
-
}
|
|
54
|
-
|