@ucloud-sdks/ucloud-sdk-js 0.2.6 → 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 +4 -0
- package/lib/services/index.js +28 -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/lib/services/umongodb/index.d.ts +1904 -0
- package/lib/services/umongodb/index.js +241 -0
- package/package.json +1 -1
package/lib/services/index.d.ts
CHANGED
|
@@ -12,19 +12,23 @@ 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;
|
|
31
|
+
umongodb(): any;
|
|
28
32
|
unet(): any;
|
|
29
33
|
uphone(): any;
|
|
30
34
|
uphost(): any;
|
package/lib/services/index.js
CHANGED
|
@@ -8,19 +8,23 @@ 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;
|
|
27
|
+
const UMongoDBClient = require('./umongodb').default;
|
|
24
28
|
const UNetClient = require('./unet').default;
|
|
25
29
|
const UPhoneClient = require('./uphone').default;
|
|
26
30
|
const UPHostClient = require('./uphost').default;
|
|
@@ -67,6 +71,12 @@ class Client extends BaseClient {
|
|
|
67
71
|
credential: this.credential,
|
|
68
72
|
});
|
|
69
73
|
}
|
|
74
|
+
uclickhouse() {
|
|
75
|
+
return new UClickhouseClient({
|
|
76
|
+
config: this.config,
|
|
77
|
+
credential: this.credential,
|
|
78
|
+
});
|
|
79
|
+
}
|
|
70
80
|
udb() {
|
|
71
81
|
return new UDBClient({
|
|
72
82
|
config: this.config,
|
|
@@ -103,6 +113,12 @@ class Client extends BaseClient {
|
|
|
103
113
|
credential: this.credential,
|
|
104
114
|
});
|
|
105
115
|
}
|
|
116
|
+
ues() {
|
|
117
|
+
return new UESClient({
|
|
118
|
+
config: this.config,
|
|
119
|
+
credential: this.credential,
|
|
120
|
+
});
|
|
121
|
+
}
|
|
106
122
|
ufile() {
|
|
107
123
|
return new UFileClient({
|
|
108
124
|
config: this.config,
|
|
@@ -127,6 +143,12 @@ class Client extends BaseClient {
|
|
|
127
143
|
credential: this.credential,
|
|
128
144
|
});
|
|
129
145
|
}
|
|
146
|
+
ukafka() {
|
|
147
|
+
return new UKafkaClient({
|
|
148
|
+
config: this.config,
|
|
149
|
+
credential: this.credential,
|
|
150
|
+
});
|
|
151
|
+
}
|
|
130
152
|
ulb() {
|
|
131
153
|
return new ULBClient({
|
|
132
154
|
config: this.config,
|
|
@@ -145,6 +167,12 @@ class Client extends BaseClient {
|
|
|
145
167
|
credential: this.credential,
|
|
146
168
|
});
|
|
147
169
|
}
|
|
170
|
+
umongodb() {
|
|
171
|
+
return new UMongoDBClient({
|
|
172
|
+
config: this.config,
|
|
173
|
+
credential: this.credential,
|
|
174
|
+
});
|
|
175
|
+
}
|
|
148
176
|
unet() {
|
|
149
177
|
return new UNetClient({
|
|
150
178
|
config: this.config,
|