@ucloud-sdks/ucloud-sdk-js 0.2.10 → 0.2.13
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 +1 -0
- package/lib/services/index.js +7 -0
- package/lib/services/udb/index.d.ts +1002 -138
- package/lib/services/udb/index.js +93 -3
- 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
package/lib/services/index.js
CHANGED
|
@@ -31,6 +31,7 @@ const UPhoneClient = require('./uphone').default;
|
|
|
31
31
|
const UPHostClient = require('./uphost').default;
|
|
32
32
|
const USMSClient = require('./usms').default;
|
|
33
33
|
const UVMSClient = require('./uvms').default;
|
|
34
|
+
const UWSCClient = require('./uwsc').default;
|
|
34
35
|
const VPCClient = require('./vpc').default;
|
|
35
36
|
class Client extends BaseClient {
|
|
36
37
|
constructor({ config, credential, }) {
|
|
@@ -210,6 +211,12 @@ class Client extends BaseClient {
|
|
|
210
211
|
credential: this.credential,
|
|
211
212
|
});
|
|
212
213
|
}
|
|
214
|
+
uwsc() {
|
|
215
|
+
return new UWSCClient({
|
|
216
|
+
config: this.config,
|
|
217
|
+
credential: this.credential,
|
|
218
|
+
});
|
|
219
|
+
}
|
|
213
220
|
vpc() {
|
|
214
221
|
return new VPCClient({
|
|
215
222
|
config: this.config,
|