@ucloud-sdks/ucloud-sdk-js 0.2.20 → 0.2.21
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/ukms/index.d.ts +1184 -0
- package/lib/services/ukms/index.js +286 -0
- package/package.json +1 -1
package/lib/services/index.d.ts
CHANGED
package/lib/services/index.js
CHANGED
|
@@ -24,6 +24,7 @@ const UHadoopClient = require('./uhadoop').default;
|
|
|
24
24
|
const UHostClient = require('./uhost').default;
|
|
25
25
|
const UK8SClient = require('./uk8s').default;
|
|
26
26
|
const UKafkaClient = require('./ukafka').default;
|
|
27
|
+
const UKMSClient = require('./ukms').default;
|
|
27
28
|
const ULBClient = require('./ulb').default;
|
|
28
29
|
const ULightHostClient = require('./ulight_host').default;
|
|
29
30
|
const UMemClient = require('./umem').default;
|
|
@@ -171,6 +172,12 @@ class Client extends BaseClient {
|
|
|
171
172
|
credential: this.credential,
|
|
172
173
|
});
|
|
173
174
|
}
|
|
175
|
+
ukms() {
|
|
176
|
+
return new UKMSClient({
|
|
177
|
+
config: this.config,
|
|
178
|
+
credential: this.credential,
|
|
179
|
+
});
|
|
180
|
+
}
|
|
174
181
|
ulb() {
|
|
175
182
|
return new ULBClient({
|
|
176
183
|
config: this.config,
|