@ucloud-sdks/ucloud-sdk-js 0.2.11 → 0.2.14
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 +2 -0
- package/lib/services/index.js +14 -0
- package/lib/services/uai_modelverse/index.d.ts +1824 -0
- package/lib/services/uai_modelverse/index.js +160 -0
- package/lib/services/ukafka/index.d.ts +8 -8
- package/lib/services/uwsc/index.d.ts +544 -0
- package/lib/services/uwsc/index.js +115 -0
- package/package.json +1 -1
package/lib/services/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare class Client extends BaseClient {
|
|
|
10
10
|
ipsecvpn(): any;
|
|
11
11
|
pathx(): any;
|
|
12
12
|
uaccount(): any;
|
|
13
|
+
uai_modelverse(): any;
|
|
13
14
|
ubill(): any;
|
|
14
15
|
ucdn(): any;
|
|
15
16
|
uclickhouse(): any;
|
|
@@ -35,6 +36,7 @@ export declare class Client extends BaseClient {
|
|
|
35
36
|
uphost(): any;
|
|
36
37
|
usms(): any;
|
|
37
38
|
uvms(): any;
|
|
39
|
+
uwsc(): any;
|
|
38
40
|
vpc(): any;
|
|
39
41
|
}
|
|
40
42
|
export {};
|
package/lib/services/index.js
CHANGED
|
@@ -6,6 +6,7 @@ const CubeClient = require('./cube').default;
|
|
|
6
6
|
const IPSecVPNClient = require('./ipsecvpn').default;
|
|
7
7
|
const PathXClient = require('./pathx').default;
|
|
8
8
|
const UAccountClient = require('./uaccount').default;
|
|
9
|
+
const UAIModelverseClient = require('./uai_modelverse').default;
|
|
9
10
|
const UBillClient = require('./ubill').default;
|
|
10
11
|
const UCDNClient = require('./ucdn').default;
|
|
11
12
|
const UClickhouseClient = require('./uclickhouse').default;
|
|
@@ -31,6 +32,7 @@ const UPhoneClient = require('./uphone').default;
|
|
|
31
32
|
const UPHostClient = require('./uphost').default;
|
|
32
33
|
const USMSClient = require('./usms').default;
|
|
33
34
|
const UVMSClient = require('./uvms').default;
|
|
35
|
+
const UWSCClient = require('./uwsc').default;
|
|
34
36
|
const VPCClient = require('./vpc').default;
|
|
35
37
|
class Client extends BaseClient {
|
|
36
38
|
constructor({ config, credential, }) {
|
|
@@ -60,6 +62,12 @@ class Client extends BaseClient {
|
|
|
60
62
|
credential: this.credential,
|
|
61
63
|
});
|
|
62
64
|
}
|
|
65
|
+
uai_modelverse() {
|
|
66
|
+
return new UAIModelverseClient({
|
|
67
|
+
config: this.config,
|
|
68
|
+
credential: this.credential,
|
|
69
|
+
});
|
|
70
|
+
}
|
|
63
71
|
ubill() {
|
|
64
72
|
return new UBillClient({
|
|
65
73
|
config: this.config,
|
|
@@ -210,6 +218,12 @@ class Client extends BaseClient {
|
|
|
210
218
|
credential: this.credential,
|
|
211
219
|
});
|
|
212
220
|
}
|
|
221
|
+
uwsc() {
|
|
222
|
+
return new UWSCClient({
|
|
223
|
+
config: this.config,
|
|
224
|
+
credential: this.credential,
|
|
225
|
+
});
|
|
226
|
+
}
|
|
213
227
|
vpc() {
|
|
214
228
|
return new VPCClient({
|
|
215
229
|
config: this.config,
|