kb-cloud-client-typescript 2.3.0-alpha.174 → 2.3.0-alpha.175
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/api.d.ts +1 -0
- package/dist/openapi/api.d.ts.map +1 -1
- package/dist/openapi/api.js +1 -0
- package/dist/openapi/api.js.map +1 -1
- package/dist/openapi/apis/elasticsearch-api.d.ts +1221 -0
- package/dist/openapi/apis/elasticsearch-api.d.ts.map +1 -0
- package/dist/openapi/apis/elasticsearch-api.js +1332 -0
- package/dist/openapi/apis/elasticsearch-api.js.map +1 -0
- package/dist/openapi/apis/shared-api.d.ts +1187 -14
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +1407 -139
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/index.d.ts +12 -0
- package/dist/openapi/models/index.d.ts.map +1 -1
- package/dist/openapi/models/index.js +12 -0
- package/dist/openapi/models/index.js.map +1 -1
- package/dist/openapi/models/put-security-user-request.d.ts +63 -0
- package/dist/openapi/models/put-security-user-request.d.ts.map +1 -0
- package/dist/openapi/models/put-security-user-request.js +16 -0
- package/dist/openapi/models/put-security-user-request.js.map +1 -0
- package/dist/openapi/models/security-application-privileges.d.ts +37 -0
- package/dist/openapi/models/security-application-privileges.d.ts.map +1 -0
- package/dist/openapi/models/security-application-privileges.js +16 -0
- package/dist/openapi/models/security-application-privileges.js.map +1 -0
- package/dist/openapi/models/security-field-security.d.ts +31 -0
- package/dist/openapi/models/security-field-security.d.ts.map +1 -0
- package/dist/openapi/models/security-field-security.js +16 -0
- package/dist/openapi/models/security-field-security.js.map +1 -0
- package/dist/openapi/models/security-index-privileges.d.ts +50 -0
- package/dist/openapi/models/security-index-privileges.d.ts.map +1 -0
- package/dist/openapi/models/security-index-privileges.js +16 -0
- package/dist/openapi/models/security-index-privileges.js.map +1 -0
- package/dist/openapi/models/security-password-request.d.ts +25 -0
- package/dist/openapi/models/security-password-request.d.ts.map +1 -0
- package/dist/openapi/models/security-password-request.js +16 -0
- package/dist/openapi/models/security-password-request.js.map +1 -0
- package/dist/openapi/models/security-remote-cluster-privileges.d.ts +31 -0
- package/dist/openapi/models/security-remote-cluster-privileges.d.ts.map +1 -0
- package/dist/openapi/models/security-remote-cluster-privileges.js +16 -0
- package/dist/openapi/models/security-remote-cluster-privileges.js.map +1 -0
- package/dist/openapi/models/security-remote-index-privileges.d.ts +56 -0
- package/dist/openapi/models/security-remote-index-privileges.d.ts.map +1 -0
- package/dist/openapi/models/security-remote-index-privileges.js +16 -0
- package/dist/openapi/models/security-remote-index-privileges.js.map +1 -0
- package/dist/openapi/models/security-role-descriptor.d.ts +97 -0
- package/dist/openapi/models/security-role-descriptor.d.ts.map +1 -0
- package/dist/openapi/models/security-role-descriptor.js +16 -0
- package/dist/openapi/models/security-role-descriptor.js.map +1 -0
- package/dist/openapi/models/security-role-mapping.d.ts +54 -0
- package/dist/openapi/models/security-role-mapping.d.ts.map +1 -0
- package/dist/openapi/models/security-role-mapping.js +16 -0
- package/dist/openapi/models/security-role-mapping.js.map +1 -0
- package/dist/openapi/models/security-role-template-format.d.ts +22 -0
- package/dist/openapi/models/security-role-template-format.d.ts.map +1 -0
- package/dist/openapi/models/security-role-template-format.js +26 -0
- package/dist/openapi/models/security-role-template-format.js.map +1 -0
- package/dist/openapi/models/security-role-template.d.ts +34 -0
- package/dist/openapi/models/security-role-template.d.ts.map +1 -0
- package/dist/openapi/models/security-role-template.js +16 -0
- package/dist/openapi/models/security-role-template.js.map +1 -0
- package/dist/openapi/models/security-user.d.ts +51 -0
- package/dist/openapi/models/security-user.d.ts.map +1 -0
- package/dist/openapi/models/security-user.js +16 -0
- package/dist/openapi/models/security-user.js.map +1 -0
- package/package.json +1 -1
- package/src/openapi/.openapi-generator/FILES +13 -0
- package/src/openapi/api.ts +1 -0
- package/src/openapi/apis/elasticsearch-api.ts +2072 -0
- package/src/openapi/apis/shared-api.ts +2229 -227
- package/src/openapi/models/index.ts +12 -0
- package/src/openapi/models/put-security-user-request.ts +66 -0
- package/src/openapi/models/security-application-privileges.ts +42 -0
- package/src/openapi/models/security-field-security.ts +36 -0
- package/src/openapi/models/security-index-privileges.ts +57 -0
- package/src/openapi/models/security-password-request.ts +30 -0
- package/src/openapi/models/security-remote-cluster-privileges.ts +36 -0
- package/src/openapi/models/security-remote-index-privileges.ts +63 -0
- package/src/openapi/models/security-role-descriptor.ts +102 -0
- package/src/openapi/models/security-role-mapping.ts +57 -0
- package/src/openapi/models/security-role-template-format.ts +31 -0
- package/src/openapi/models/security-role-template.ts +41 -0
- package/src/openapi/models/security-user.ts +54 -0
- package/src/openapi.yaml +840 -0
|
@@ -0,0 +1,56 @@
|
|
|
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
|
+
import type { SecurityFieldSecurity } from './security-field-security';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SecurityRemoteIndexPrivileges
|
|
17
|
+
*/
|
|
18
|
+
export interface SecurityRemoteIndexPrivileges {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<string>}
|
|
22
|
+
* @memberof SecurityRemoteIndexPrivileges
|
|
23
|
+
*/
|
|
24
|
+
'clusters': Array<string>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<string>}
|
|
28
|
+
* @memberof SecurityRemoteIndexPrivileges
|
|
29
|
+
*/
|
|
30
|
+
'names': Array<string>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof SecurityRemoteIndexPrivileges
|
|
35
|
+
*/
|
|
36
|
+
'privileges': Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {SecurityFieldSecurity}
|
|
40
|
+
* @memberof SecurityRemoteIndexPrivileges
|
|
41
|
+
*/
|
|
42
|
+
'field_security'?: SecurityFieldSecurity;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof SecurityRemoteIndexPrivileges
|
|
47
|
+
*/
|
|
48
|
+
'query'?: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {boolean}
|
|
52
|
+
* @memberof SecurityRemoteIndexPrivileges
|
|
53
|
+
*/
|
|
54
|
+
'allow_restricted_indices'?: boolean | null;
|
|
55
|
+
}
|
|
56
|
+
//# sourceMappingURL=security-remote-index-privileges.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-remote-index-privileges.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/security-remote-index-privileges.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAEvE;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,UAAU,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC1B;;;;OAIG;IACH,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACvB;;;;OAIG;IACH,YAAY,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC5B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,qBAAqB,CAAC;IACzC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,0BAA0B,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAC/C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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=security-remote-index-privileges.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-remote-index-privileges.js","sourceRoot":"","sources":["../../../src/openapi/models/security-remote-index-privileges.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,97 @@
|
|
|
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
|
+
import type { SecurityApplicationPrivileges } from './security-application-privileges';
|
|
13
|
+
import type { SecurityIndexPrivileges } from './security-index-privileges';
|
|
14
|
+
import type { SecurityRemoteClusterPrivileges } from './security-remote-cluster-privileges';
|
|
15
|
+
import type { SecurityRemoteIndexPrivileges } from './security-remote-index-privileges';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface SecurityRoleDescriptor
|
|
20
|
+
*/
|
|
21
|
+
export interface SecurityRoleDescriptor {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof SecurityRoleDescriptor
|
|
26
|
+
*/
|
|
27
|
+
'description'?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {Array<string>}
|
|
31
|
+
* @memberof SecurityRoleDescriptor
|
|
32
|
+
*/
|
|
33
|
+
'cluster'?: Array<string>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {{ [key: string]: any; }}
|
|
37
|
+
* @memberof SecurityRoleDescriptor
|
|
38
|
+
*/
|
|
39
|
+
'global'?: {
|
|
40
|
+
[key: string]: any;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Array<SecurityIndexPrivileges>}
|
|
45
|
+
* @memberof SecurityRoleDescriptor
|
|
46
|
+
*/
|
|
47
|
+
'indices'?: Array<SecurityIndexPrivileges>;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {Array<SecurityRemoteIndexPrivileges>}
|
|
51
|
+
* @memberof SecurityRoleDescriptor
|
|
52
|
+
*/
|
|
53
|
+
'remote_indices'?: Array<SecurityRemoteIndexPrivileges>;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Array<SecurityRemoteClusterPrivileges>}
|
|
57
|
+
* @memberof SecurityRoleDescriptor
|
|
58
|
+
*/
|
|
59
|
+
'remote_cluster'?: Array<SecurityRemoteClusterPrivileges>;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {Array<SecurityApplicationPrivileges>}
|
|
63
|
+
* @memberof SecurityRoleDescriptor
|
|
64
|
+
*/
|
|
65
|
+
'applications'?: Array<SecurityApplicationPrivileges>;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {Array<string>}
|
|
69
|
+
* @memberof SecurityRoleDescriptor
|
|
70
|
+
*/
|
|
71
|
+
'run_as'?: Array<string>;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {{ [key: string]: any; }}
|
|
75
|
+
* @memberof SecurityRoleDescriptor
|
|
76
|
+
*/
|
|
77
|
+
'metadata'?: {
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {{ [key: string]: any; }}
|
|
83
|
+
* @memberof SecurityRoleDescriptor
|
|
84
|
+
*/
|
|
85
|
+
'restriction'?: {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {{ [key: string]: any; }}
|
|
91
|
+
* @memberof SecurityRoleDescriptor
|
|
92
|
+
*/
|
|
93
|
+
'transient_metadata'?: {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
//# sourceMappingURL=security-role-descriptor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-descriptor.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/security-role-descriptor.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mCAAmC,CAAC;AAGvF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAG3E,OAAO,KAAK,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAG5F,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,oCAAoC,CAAC;AAExF;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACnC;;;;OAIG;IACH,SAAS,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,CAAC;IAC3C;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,CAAC;IACxD;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,+BAA+B,CAAC,CAAC;IAC1D;;;;OAIG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,CAAC;IACtD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACzB;;;;OAIG;IACH,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACrC;;;;OAIG;IACH,aAAa,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACxC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;CAClD"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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=security-role-descriptor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-descriptor.js","sourceRoot":"","sources":["../../../src/openapi/models/security-role-descriptor.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
import type { SecurityRoleTemplate } from './security-role-template';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SecurityRoleMapping
|
|
17
|
+
*/
|
|
18
|
+
export interface SecurityRoleMapping {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof SecurityRoleMapping
|
|
23
|
+
*/
|
|
24
|
+
'enabled'?: boolean | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<string>}
|
|
28
|
+
* @memberof SecurityRoleMapping
|
|
29
|
+
*/
|
|
30
|
+
'roles'?: Array<string>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<SecurityRoleTemplate>}
|
|
34
|
+
* @memberof SecurityRoleMapping
|
|
35
|
+
*/
|
|
36
|
+
'role_templates'?: Array<SecurityRoleTemplate>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {{ [key: string]: any; }}
|
|
40
|
+
* @memberof SecurityRoleMapping
|
|
41
|
+
*/
|
|
42
|
+
'rules'?: {
|
|
43
|
+
[key: string]: any;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {{ [key: string]: any; }}
|
|
48
|
+
* @memberof SecurityRoleMapping
|
|
49
|
+
*/
|
|
50
|
+
'metadata'?: {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=security-role-mapping.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-mapping.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/security-role-mapping.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAErE;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAC/C;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;CACxC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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=security-role-mapping.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-mapping.js","sourceRoot":"","sources":["../../../src/openapi/models/security-role-mapping.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const SecurityRoleTemplateFormat: {
|
|
18
|
+
readonly string: "string";
|
|
19
|
+
readonly json: "json";
|
|
20
|
+
};
|
|
21
|
+
export type SecurityRoleTemplateFormat = typeof SecurityRoleTemplateFormat[keyof typeof SecurityRoleTemplateFormat];
|
|
22
|
+
//# sourceMappingURL=security-role-template-format.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-template-format.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/security-role-template-format.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,0BAA0B;;;CAG7B,CAAC;AAEX,MAAM,MAAM,0BAA0B,GAAG,OAAO,0BAA0B,CAAC,MAAM,OAAO,0BAA0B,CAAC,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
exports.SecurityRoleTemplateFormat = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.SecurityRoleTemplateFormat = {
|
|
23
|
+
string: 'string',
|
|
24
|
+
json: 'json'
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=security-role-template-format.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-template-format.js","sourceRoot":"","sources":["../../../src/openapi/models/security-role-template-format.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;AAIH;;;;GAIG;AAEU,QAAA,0BAA0B,GAAG;IACtC,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;CACN,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
import type { SecurityRoleTemplateFormat } from './security-role-template-format';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SecurityRoleTemplate
|
|
17
|
+
*/
|
|
18
|
+
export interface SecurityRoleTemplate {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {{ [key: string]: any; }}
|
|
22
|
+
* @memberof SecurityRoleTemplate
|
|
23
|
+
*/
|
|
24
|
+
'template'?: {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {SecurityRoleTemplateFormat}
|
|
30
|
+
* @memberof SecurityRoleTemplate
|
|
31
|
+
*/
|
|
32
|
+
'format'?: SecurityRoleTemplateFormat;
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=security-role-template.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-template.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/security-role-template.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAElF;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACrC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,0BAA0B,CAAC;CACzC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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=security-role-template.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-role-template.js","sourceRoot":"","sources":["../../../src/openapi/models/security-role-template.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SecurityUser
|
|
16
|
+
*/
|
|
17
|
+
export interface SecurityUser {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof SecurityUser
|
|
22
|
+
*/
|
|
23
|
+
'roles'?: Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SecurityUser
|
|
28
|
+
*/
|
|
29
|
+
'full_name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SecurityUser
|
|
34
|
+
*/
|
|
35
|
+
'email'?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {{ [key: string]: any; }}
|
|
39
|
+
* @memberof SecurityUser
|
|
40
|
+
*/
|
|
41
|
+
'metadata'?: {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
* @memberof SecurityUser
|
|
48
|
+
*/
|
|
49
|
+
'enabled'?: boolean | null;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=security-user.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-user.d.ts","sourceRoot":"","sources":["../../../src/openapi/models/security-user.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACxB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IACrC;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAC9B"}
|
|
@@ -0,0 +1,16 @@
|
|
|
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=security-user.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security-user.js","sourceRoot":"","sources":["../../../src/openapi/models/security-user.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG"}
|
package/package.json
CHANGED
|
@@ -30,6 +30,7 @@ apis/database-api.ts
|
|
|
30
30
|
apis/diagnostics-api.ts
|
|
31
31
|
apis/disaster-recovery-api.ts
|
|
32
32
|
apis/dms-api.ts
|
|
33
|
+
apis/elasticsearch-api.ts
|
|
33
34
|
apis/enable-service-version-api.ts
|
|
34
35
|
apis/engine-api.ts
|
|
35
36
|
apis/engine-option-api.ts
|
|
@@ -703,6 +704,7 @@ models/privilege-list-item.ts
|
|
|
703
704
|
models/privilege-type.ts
|
|
704
705
|
models/project-item.ts
|
|
705
706
|
models/project-list.ts
|
|
707
|
+
models/put-security-user-request.ts
|
|
706
708
|
models/rbmq-account-request.ts
|
|
707
709
|
models/rbmq-accounts-list-items-inner.ts
|
|
708
710
|
models/rbmq-accounts-list.ts
|
|
@@ -782,6 +784,17 @@ models/role-update.ts
|
|
|
782
784
|
models/role.ts
|
|
783
785
|
models/scheduler-option.ts
|
|
784
786
|
models/scheduling-policy-type.ts
|
|
787
|
+
models/security-application-privileges.ts
|
|
788
|
+
models/security-field-security.ts
|
|
789
|
+
models/security-index-privileges.ts
|
|
790
|
+
models/security-password-request.ts
|
|
791
|
+
models/security-remote-cluster-privileges.ts
|
|
792
|
+
models/security-remote-index-privileges.ts
|
|
793
|
+
models/security-role-descriptor.ts
|
|
794
|
+
models/security-role-mapping.ts
|
|
795
|
+
models/security-role-template-format.ts
|
|
796
|
+
models/security-role-template.ts
|
|
797
|
+
models/security-user.ts
|
|
785
798
|
models/select-module-mode.ts
|
|
786
799
|
models/selected-object-option-convert-to-parameters-inner.ts
|
|
787
800
|
models/selected-object-option-tree-level-order-inner.ts
|
package/src/openapi/api.ts
CHANGED
|
@@ -42,6 +42,7 @@ export * from './apis/database-api';
|
|
|
42
42
|
export * from './apis/diagnostics-api';
|
|
43
43
|
export * from './apis/disaster-recovery-api';
|
|
44
44
|
export * from './apis/dms-api';
|
|
45
|
+
export * from './apis/elasticsearch-api';
|
|
45
46
|
export * from './apis/enable-service-version-api';
|
|
46
47
|
export * from './apis/engine-api';
|
|
47
48
|
export * from './apis/engine-option-api';
|