@ucloud-sdks/ucloud-sdk-js 0.2.7 → 0.2.9
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/uhadoop/index.d.ts +771 -0
- package/lib/services/uhadoop/index.js +115 -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,20 @@ 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;
|
|
25
|
+
uhadoop(): any;
|
|
23
26
|
uhost(): any;
|
|
24
27
|
uk8s(): any;
|
|
28
|
+
ukafka(): any;
|
|
25
29
|
ulb(): any;
|
|
26
30
|
ulight_host(): any;
|
|
27
31
|
umem(): any;
|
package/lib/services/index.js
CHANGED
|
@@ -8,16 +8,20 @@ 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;
|
|
21
|
+
const UHadoopClient = require('./uhadoop').default;
|
|
19
22
|
const UHostClient = require('./uhost').default;
|
|
20
23
|
const UK8SClient = require('./uk8s').default;
|
|
24
|
+
const UKafkaClient = require('./ukafka').default;
|
|
21
25
|
const ULBClient = require('./ulb').default;
|
|
22
26
|
const ULightHostClient = require('./ulight_host').default;
|
|
23
27
|
const UMemClient = require('./umem').default;
|
|
@@ -68,6 +72,12 @@ class Client extends BaseClient {
|
|
|
68
72
|
credential: this.credential,
|
|
69
73
|
});
|
|
70
74
|
}
|
|
75
|
+
uclickhouse() {
|
|
76
|
+
return new UClickhouseClient({
|
|
77
|
+
config: this.config,
|
|
78
|
+
credential: this.credential,
|
|
79
|
+
});
|
|
80
|
+
}
|
|
71
81
|
udb() {
|
|
72
82
|
return new UDBClient({
|
|
73
83
|
config: this.config,
|
|
@@ -104,6 +114,12 @@ class Client extends BaseClient {
|
|
|
104
114
|
credential: this.credential,
|
|
105
115
|
});
|
|
106
116
|
}
|
|
117
|
+
ues() {
|
|
118
|
+
return new UESClient({
|
|
119
|
+
config: this.config,
|
|
120
|
+
credential: this.credential,
|
|
121
|
+
});
|
|
122
|
+
}
|
|
107
123
|
ufile() {
|
|
108
124
|
return new UFileClient({
|
|
109
125
|
config: this.config,
|
|
@@ -116,6 +132,12 @@ class Client extends BaseClient {
|
|
|
116
132
|
credential: this.credential,
|
|
117
133
|
});
|
|
118
134
|
}
|
|
135
|
+
uhadoop() {
|
|
136
|
+
return new UHadoopClient({
|
|
137
|
+
config: this.config,
|
|
138
|
+
credential: this.credential,
|
|
139
|
+
});
|
|
140
|
+
}
|
|
119
141
|
uhost() {
|
|
120
142
|
return new UHostClient({
|
|
121
143
|
config: this.config,
|
|
@@ -128,6 +150,12 @@ class Client extends BaseClient {
|
|
|
128
150
|
credential: this.credential,
|
|
129
151
|
});
|
|
130
152
|
}
|
|
153
|
+
ukafka() {
|
|
154
|
+
return new UKafkaClient({
|
|
155
|
+
config: this.config,
|
|
156
|
+
credential: this.credential,
|
|
157
|
+
});
|
|
158
|
+
}
|
|
131
159
|
ulb() {
|
|
132
160
|
return new ULBClient({
|
|
133
161
|
config: this.config,
|