@ucloud-sdks/ucloud-sdk-js 0.2.7 → 0.2.8
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/lib/services/index.d.ts +3 -0
- package/lib/services/index.js +21 -0
- package/lib/services/uclickhouse/index.d.ts +877 -0
- package/lib/services/uclickhouse/index.js +88 -0
- package/lib/services/ues/index.d.ts +635 -0
- package/lib/services/ues/index.js +106 -0
- package/lib/services/ukafka/index.d.ts +797 -0
- package/lib/services/ukafka/index.js +133 -0
- package/package.json +1 -1
package/lib/services/index.d.ts
CHANGED
|
@@ -12,16 +12,19 @@ export declare class Client extends BaseClient {
|
|
|
12
12
|
uaccount(): any;
|
|
13
13
|
ubill(): any;
|
|
14
14
|
ucdn(): any;
|
|
15
|
+
uclickhouse(): any;
|
|
15
16
|
udb(): any;
|
|
16
17
|
uddb(): any;
|
|
17
18
|
udisk(): any;
|
|
18
19
|
udns(): any;
|
|
19
20
|
udpn(): any;
|
|
20
21
|
uec(): any;
|
|
22
|
+
ues(): any;
|
|
21
23
|
ufile(): any;
|
|
22
24
|
ufs(): any;
|
|
23
25
|
uhost(): any;
|
|
24
26
|
uk8s(): any;
|
|
27
|
+
ukafka(): any;
|
|
25
28
|
ulb(): any;
|
|
26
29
|
ulight_host(): any;
|
|
27
30
|
umem(): any;
|
package/lib/services/index.js
CHANGED
|
@@ -8,16 +8,19 @@ const PathXClient = require('./pathx').default;
|
|
|
8
8
|
const UAccountClient = require('./uaccount').default;
|
|
9
9
|
const UBillClient = require('./ubill').default;
|
|
10
10
|
const UCDNClient = require('./ucdn').default;
|
|
11
|
+
const UClickhouseClient = require('./uclickhouse').default;
|
|
11
12
|
const UDBClient = require('./udb').default;
|
|
12
13
|
const UDDBClient = require('./uddb').default;
|
|
13
14
|
const UDiskClient = require('./udisk').default;
|
|
14
15
|
const UDNSClient = require('./udns').default;
|
|
15
16
|
const UDPNClient = require('./udpn').default;
|
|
16
17
|
const UECClient = require('./uec').default;
|
|
18
|
+
const UESClient = require('./ues').default;
|
|
17
19
|
const UFileClient = require('./ufile').default;
|
|
18
20
|
const UFSClient = require('./ufs').default;
|
|
19
21
|
const UHostClient = require('./uhost').default;
|
|
20
22
|
const UK8SClient = require('./uk8s').default;
|
|
23
|
+
const UKafkaClient = require('./ukafka').default;
|
|
21
24
|
const ULBClient = require('./ulb').default;
|
|
22
25
|
const ULightHostClient = require('./ulight_host').default;
|
|
23
26
|
const UMemClient = require('./umem').default;
|
|
@@ -68,6 +71,12 @@ class Client extends BaseClient {
|
|
|
68
71
|
credential: this.credential,
|
|
69
72
|
});
|
|
70
73
|
}
|
|
74
|
+
uclickhouse() {
|
|
75
|
+
return new UClickhouseClient({
|
|
76
|
+
config: this.config,
|
|
77
|
+
credential: this.credential,
|
|
78
|
+
});
|
|
79
|
+
}
|
|
71
80
|
udb() {
|
|
72
81
|
return new UDBClient({
|
|
73
82
|
config: this.config,
|
|
@@ -104,6 +113,12 @@ class Client extends BaseClient {
|
|
|
104
113
|
credential: this.credential,
|
|
105
114
|
});
|
|
106
115
|
}
|
|
116
|
+
ues() {
|
|
117
|
+
return new UESClient({
|
|
118
|
+
config: this.config,
|
|
119
|
+
credential: this.credential,
|
|
120
|
+
});
|
|
121
|
+
}
|
|
107
122
|
ufile() {
|
|
108
123
|
return new UFileClient({
|
|
109
124
|
config: this.config,
|
|
@@ -128,6 +143,12 @@ class Client extends BaseClient {
|
|
|
128
143
|
credential: this.credential,
|
|
129
144
|
});
|
|
130
145
|
}
|
|
146
|
+
ukafka() {
|
|
147
|
+
return new UKafkaClient({
|
|
148
|
+
config: this.config,
|
|
149
|
+
credential: this.credential,
|
|
150
|
+
});
|
|
151
|
+
}
|
|
131
152
|
ulb() {
|
|
132
153
|
return new ULBClient({
|
|
133
154
|
config: this.config,
|