volc-bmq20240901 1.0.2

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.
Files changed (39) hide show
  1. package/dist/cjs/index.js +125 -0
  2. package/dist/esm/api.d.ts +100 -0
  3. package/dist/esm/api.d.ts.map +1 -0
  4. package/dist/esm/index.d.ts +13 -0
  5. package/dist/esm/index.d.ts.map +1 -0
  6. package/dist/esm/index.mjs +70 -0
  7. package/dist/esm/types/clients-info-for-describe-mqttclients-output.d.ts +70 -0
  8. package/dist/esm/types/clients-info-for-describe-mqttclients-output.d.ts.map +1 -0
  9. package/dist/esm/types/create-dashboard-endpoint-request.d.ts +25 -0
  10. package/dist/esm/types/create-dashboard-endpoint-request.d.ts.map +1 -0
  11. package/dist/esm/types/create-dashboard-endpoint-response.d.ts +30 -0
  12. package/dist/esm/types/create-dashboard-endpoint-response.d.ts.map +1 -0
  13. package/dist/esm/types/delete-dashboard-endpoint-request.d.ts +25 -0
  14. package/dist/esm/types/delete-dashboard-endpoint-request.d.ts.map +1 -0
  15. package/dist/esm/types/delete-dashboard-endpoint-response.d.ts +30 -0
  16. package/dist/esm/types/delete-dashboard-endpoint-response.d.ts.map +1 -0
  17. package/dist/esm/types/describe-device-credential-request.d.ts +30 -0
  18. package/dist/esm/types/describe-device-credential-request.d.ts.map +1 -0
  19. package/dist/esm/types/describe-device-credential-response.d.ts +50 -0
  20. package/dist/esm/types/describe-device-credential-response.d.ts.map +1 -0
  21. package/dist/esm/types/describe-mqttclients-request.d.ts +68 -0
  22. package/dist/esm/types/describe-mqttclients-request.d.ts.map +1 -0
  23. package/dist/esm/types/describe-mqttclients-response.d.ts +46 -0
  24. package/dist/esm/types/describe-mqttclients-response.d.ts.map +1 -0
  25. package/dist/esm/types/index.d.ts +16 -0
  26. package/dist/esm/types/index.d.ts.map +1 -0
  27. package/dist/esm/types/refresh-device-credential-request.d.ts +30 -0
  28. package/dist/esm/types/refresh-device-credential-request.d.ts.map +1 -0
  29. package/dist/esm/types/refresh-device-credential-response.d.ts +50 -0
  30. package/dist/esm/types/refresh-device-credential-response.d.ts.map +1 -0
  31. package/dist/esm/types/register-device-credential-request.d.ts +30 -0
  32. package/dist/esm/types/register-device-credential-request.d.ts.map +1 -0
  33. package/dist/esm/types/register-device-credential-response.d.ts +50 -0
  34. package/dist/esm/types/register-device-credential-response.d.ts.map +1 -0
  35. package/dist/esm/types/un-register-device-credential-request.d.ts +30 -0
  36. package/dist/esm/types/un-register-device-credential-request.d.ts.map +1 -0
  37. package/dist/esm/types/un-register-device-credential-response.d.ts +30 -0
  38. package/dist/esm/types/un-register-device-credential-response.d.ts.map +1 -0
  39. package/package.json +41 -0
@@ -0,0 +1,125 @@
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ RefreshDeviceCredentialCommand: ()=>RefreshDeviceCredentialCommand,
28
+ DescribeDeviceCredentialCommand: ()=>DescribeDeviceCredentialCommand,
29
+ DescribeMQTTClientsCommand: ()=>DescribeMQTTClientsCommand,
30
+ BMQ20240901Client: ()=>BMQ20240901Client,
31
+ DeleteDashboardEndpointCommand: ()=>DeleteDashboardEndpointCommand,
32
+ RegisterDeviceCredentialCommand: ()=>RegisterDeviceCredentialCommand,
33
+ UnRegisterDeviceCredentialCommand: ()=>UnRegisterDeviceCredentialCommand,
34
+ CreateDashboardEndpointCommand: ()=>CreateDashboardEndpointCommand
35
+ });
36
+ const sdk_core_namespaceObject = require("@volcengine/sdk-core");
37
+ function _define_property(obj, key, value) {
38
+ if (key in obj) Object.defineProperty(obj, key, {
39
+ value: value,
40
+ enumerable: true,
41
+ configurable: true,
42
+ writable: true
43
+ });
44
+ else obj[key] = value;
45
+ return obj;
46
+ }
47
+ class BMQ20240901Client extends sdk_core_namespaceObject.Client {
48
+ constructor(config = {}){
49
+ super({
50
+ protocol: 'https',
51
+ region: 'cn-beijing',
52
+ ...config
53
+ });
54
+ }
55
+ }
56
+ class CreateDashboardEndpointCommand extends sdk_core_namespaceObject.Command {
57
+ constructor(input){
58
+ super(input);
59
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(CreateDashboardEndpointCommand.metaPath);
60
+ }
61
+ }
62
+ _define_property(CreateDashboardEndpointCommand, "metaPath", '/CreateDashboardEndpoint/2024-09-01/bmq/post/application_json/');
63
+ class DeleteDashboardEndpointCommand extends sdk_core_namespaceObject.Command {
64
+ constructor(input){
65
+ super(input);
66
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(DeleteDashboardEndpointCommand.metaPath);
67
+ }
68
+ }
69
+ _define_property(DeleteDashboardEndpointCommand, "metaPath", '/DeleteDashboardEndpoint/2024-09-01/bmq/post/application_json/');
70
+ class DescribeDeviceCredentialCommand extends sdk_core_namespaceObject.Command {
71
+ constructor(input){
72
+ super(input);
73
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(DescribeDeviceCredentialCommand.metaPath);
74
+ }
75
+ }
76
+ _define_property(DescribeDeviceCredentialCommand, "metaPath", '/DescribeDeviceCredential/2024-09-01/bmq/post/application_json/');
77
+ class DescribeMQTTClientsCommand extends sdk_core_namespaceObject.Command {
78
+ constructor(input){
79
+ super(input);
80
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(DescribeMQTTClientsCommand.metaPath);
81
+ }
82
+ }
83
+ _define_property(DescribeMQTTClientsCommand, "metaPath", '/DescribeMQTTClients/2024-09-01/bmq/post/application_json/');
84
+ class RefreshDeviceCredentialCommand extends sdk_core_namespaceObject.Command {
85
+ constructor(input){
86
+ super(input);
87
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(RefreshDeviceCredentialCommand.metaPath);
88
+ }
89
+ }
90
+ _define_property(RefreshDeviceCredentialCommand, "metaPath", '/RefreshDeviceCredential/2024-09-01/bmq/post/application_json/');
91
+ class RegisterDeviceCredentialCommand extends sdk_core_namespaceObject.Command {
92
+ constructor(input){
93
+ super(input);
94
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(RegisterDeviceCredentialCommand.metaPath);
95
+ }
96
+ }
97
+ _define_property(RegisterDeviceCredentialCommand, "metaPath", '/RegisterDeviceCredential/2024-09-01/bmq/post/application_json/');
98
+ class UnRegisterDeviceCredentialCommand extends sdk_core_namespaceObject.Command {
99
+ constructor(input){
100
+ super(input);
101
+ this.requestConfig = (0, sdk_core_namespaceObject.buildRequestConfigFromMetaPath)(UnRegisterDeviceCredentialCommand.metaPath);
102
+ }
103
+ }
104
+ _define_property(UnRegisterDeviceCredentialCommand, "metaPath", '/UnRegisterDeviceCredential/2024-09-01/bmq/post/application_json/');
105
+ exports.BMQ20240901Client = __webpack_exports__.BMQ20240901Client;
106
+ exports.CreateDashboardEndpointCommand = __webpack_exports__.CreateDashboardEndpointCommand;
107
+ exports.DeleteDashboardEndpointCommand = __webpack_exports__.DeleteDashboardEndpointCommand;
108
+ exports.DescribeDeviceCredentialCommand = __webpack_exports__.DescribeDeviceCredentialCommand;
109
+ exports.DescribeMQTTClientsCommand = __webpack_exports__.DescribeMQTTClientsCommand;
110
+ exports.RefreshDeviceCredentialCommand = __webpack_exports__.RefreshDeviceCredentialCommand;
111
+ exports.RegisterDeviceCredentialCommand = __webpack_exports__.RegisterDeviceCredentialCommand;
112
+ exports.UnRegisterDeviceCredentialCommand = __webpack_exports__.UnRegisterDeviceCredentialCommand;
113
+ for(var __rspack_i in __webpack_exports__)if (-1 === [
114
+ "BMQ20240901Client",
115
+ "CreateDashboardEndpointCommand",
116
+ "DeleteDashboardEndpointCommand",
117
+ "DescribeDeviceCredentialCommand",
118
+ "DescribeMQTTClientsCommand",
119
+ "RefreshDeviceCredentialCommand",
120
+ "RegisterDeviceCredentialCommand",
121
+ "UnRegisterDeviceCredentialCommand"
122
+ ].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
123
+ Object.defineProperty(exports, '__esModule', {
124
+ value: true
125
+ });
@@ -0,0 +1,100 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { Client, ClientConfig, Command, CommandOutput } from '@volcengine/sdk-core';
13
+ import { CreateDashboardEndpointRequest } from './types/index';
14
+ import { CreateDashboardEndpointResponse } from './types/index';
15
+ import { DeleteDashboardEndpointRequest } from './types/index';
16
+ import { DeleteDashboardEndpointResponse } from './types/index';
17
+ import { DescribeDeviceCredentialRequest } from './types/index';
18
+ import { DescribeDeviceCredentialResponse } from './types/index';
19
+ import { DescribeMQTTClientsRequest } from './types/index';
20
+ import { DescribeMQTTClientsResponse } from './types/index';
21
+ import { RefreshDeviceCredentialRequest } from './types/index';
22
+ import { RefreshDeviceCredentialResponse } from './types/index';
23
+ import { RegisterDeviceCredentialRequest } from './types/index';
24
+ import { RegisterDeviceCredentialResponse } from './types/index';
25
+ import { UnRegisterDeviceCredentialRequest } from './types/index';
26
+ import { UnRegisterDeviceCredentialResponse } from './types/index';
27
+ export type CreateDashboardEndpointCommandOutput = CommandOutput<CreateDashboardEndpointResponse>;
28
+ export type DeleteDashboardEndpointCommandOutput = CommandOutput<DeleteDashboardEndpointResponse>;
29
+ export type DescribeDeviceCredentialCommandOutput = CommandOutput<DescribeDeviceCredentialResponse>;
30
+ export type DescribeMQTTClientsCommandOutput = CommandOutput<DescribeMQTTClientsResponse>;
31
+ export type RefreshDeviceCredentialCommandOutput = CommandOutput<RefreshDeviceCredentialResponse>;
32
+ export type RegisterDeviceCredentialCommandOutput = CommandOutput<RegisterDeviceCredentialResponse>;
33
+ export type UnRegisterDeviceCredentialCommandOutput = CommandOutput<UnRegisterDeviceCredentialResponse>;
34
+ /**
35
+ * BMQ20240901Client Service Client
36
+ */
37
+ export declare class BMQ20240901Client extends Client {
38
+ constructor(config?: ClientConfig);
39
+ }
40
+ /**
41
+ * Command to CreateDashboardEndpoint
42
+ */
43
+ export declare class CreateDashboardEndpointCommand extends Command<CreateDashboardEndpointRequest, CreateDashboardEndpointCommandOutput, 'CreateDashboardEndpointCommand'> {
44
+ static readonly metaPath = "/CreateDashboardEndpoint/2024-09-01/bmq/post/application_json/";
45
+ constructor(input: CreateDashboardEndpointRequest);
46
+ }
47
+ /**
48
+ * Command to DeleteDashboardEndpoint
49
+ */
50
+ export declare class DeleteDashboardEndpointCommand extends Command<DeleteDashboardEndpointRequest, DeleteDashboardEndpointCommandOutput, 'DeleteDashboardEndpointCommand'> {
51
+ static readonly metaPath = "/DeleteDashboardEndpoint/2024-09-01/bmq/post/application_json/";
52
+ constructor(input: DeleteDashboardEndpointRequest);
53
+ }
54
+ /**
55
+ * Command to DescribeDeviceCredential
56
+ */
57
+ export declare class DescribeDeviceCredentialCommand extends Command<DescribeDeviceCredentialRequest, DescribeDeviceCredentialCommandOutput, 'DescribeDeviceCredentialCommand'> {
58
+ static readonly metaPath = "/DescribeDeviceCredential/2024-09-01/bmq/post/application_json/";
59
+ constructor(input: DescribeDeviceCredentialRequest);
60
+ }
61
+ /**
62
+ * Command to DescribeMQTTClients
63
+ */
64
+ export declare class DescribeMQTTClientsCommand extends Command<DescribeMQTTClientsRequest, DescribeMQTTClientsCommandOutput, 'DescribeMQTTClientsCommand'> {
65
+ static readonly metaPath = "/DescribeMQTTClients/2024-09-01/bmq/post/application_json/";
66
+ constructor(input: DescribeMQTTClientsRequest);
67
+ }
68
+ /**
69
+ * Command to RefreshDeviceCredential
70
+ */
71
+ export declare class RefreshDeviceCredentialCommand extends Command<RefreshDeviceCredentialRequest, RefreshDeviceCredentialCommandOutput, 'RefreshDeviceCredentialCommand'> {
72
+ static readonly metaPath = "/RefreshDeviceCredential/2024-09-01/bmq/post/application_json/";
73
+ constructor(input: RefreshDeviceCredentialRequest);
74
+ }
75
+ /**
76
+ * Command to RegisterDeviceCredential
77
+ */
78
+ export declare class RegisterDeviceCredentialCommand extends Command<RegisterDeviceCredentialRequest, RegisterDeviceCredentialCommandOutput, 'RegisterDeviceCredentialCommand'> {
79
+ static readonly metaPath = "/RegisterDeviceCredential/2024-09-01/bmq/post/application_json/";
80
+ constructor(input: RegisterDeviceCredentialRequest);
81
+ }
82
+ /**
83
+ * Command to UnRegisterDeviceCredential
84
+ */
85
+ export declare class UnRegisterDeviceCredentialCommand extends Command<UnRegisterDeviceCredentialRequest, UnRegisterDeviceCredentialCommandOutput, 'UnRegisterDeviceCredentialCommand'> {
86
+ static readonly metaPath = "/UnRegisterDeviceCredential/2024-09-01/bmq/post/application_json/";
87
+ constructor(input: UnRegisterDeviceCredentialRequest);
88
+ }
89
+ declare const _default: {
90
+ BMQ20240901Client: typeof BMQ20240901Client;
91
+ CreateDashboardEndpointCommand: typeof CreateDashboardEndpointCommand;
92
+ DeleteDashboardEndpointCommand: typeof DeleteDashboardEndpointCommand;
93
+ DescribeDeviceCredentialCommand: typeof DescribeDeviceCredentialCommand;
94
+ DescribeMQTTClientsCommand: typeof DescribeMQTTClientsCommand;
95
+ RefreshDeviceCredentialCommand: typeof RefreshDeviceCredentialCommand;
96
+ RegisterDeviceCredentialCommand: typeof RegisterDeviceCredentialCommand;
97
+ UnRegisterDeviceCredentialCommand: typeof UnRegisterDeviceCredentialCommand;
98
+ };
99
+ export default _default;
100
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,OAAO,EAAkC,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAEpH,OAAO,EAAE,8BAA8B,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,+BAA+B,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,8BAA8B,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,+BAA+B,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,+BAA+B,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,gCAAgC,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,EAAE,0BAA0B,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,2BAA2B,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAE,8BAA8B,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,+BAA+B,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,+BAA+B,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,gCAAgC,EAAE,MAAM,eAAe,CAAC;AACjE,OAAO,EAAE,iCAAiC,EAAE,MAAM,eAAe,CAAC;AAClE,OAAO,EAAE,kCAAkC,EAAE,MAAM,eAAe,CAAC;AAKnE,MAAM,MAAM,oCAAoC,GAAG,aAAa,CAAC,+BAA+B,CAAC,CAAC;AAClG,MAAM,MAAM,oCAAoC,GAAG,aAAa,CAAC,+BAA+B,CAAC,CAAC;AAClG,MAAM,MAAM,qCAAqC,GAAG,aAAa,CAAC,gCAAgC,CAAC,CAAC;AACpG,MAAM,MAAM,gCAAgC,GAAG,aAAa,CAAC,2BAA2B,CAAC,CAAC;AAC1F,MAAM,MAAM,oCAAoC,GAAG,aAAa,CAAC,+BAA+B,CAAC,CAAC;AAClG,MAAM,MAAM,qCAAqC,GAAG,aAAa,CAAC,gCAAgC,CAAC,CAAC;AACpG,MAAM,MAAM,uCAAuC,GAAG,aAAa,CAAC,kCAAkC,CAAC,CAAC;AAGxG;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,MAAM;gBAC/B,MAAM,GAAE,YAAiB;CAOtC;AAED;;GAEG;AACH,qBAAa,8BAA+B,SAAQ,OAAO,CACzD,8BAA8B,EAC9B,oCAAoC,EACpC,gCAAgC,CACjC;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,oEAAoE;gBAEhF,KAAK,EAAE,8BAA8B;CAIlD;AACD;;GAEG;AACH,qBAAa,8BAA+B,SAAQ,OAAO,CACzD,8BAA8B,EAC9B,oCAAoC,EACpC,gCAAgC,CACjC;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,oEAAoE;gBAEhF,KAAK,EAAE,8BAA8B;CAIlD;AACD;;GAEG;AACH,qBAAa,+BAAgC,SAAQ,OAAO,CAC1D,+BAA+B,EAC/B,qCAAqC,EACrC,iCAAiC,CAClC;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,qEAAqE;gBAEjF,KAAK,EAAE,+BAA+B;CAInD;AACD;;GAEG;AACH,qBAAa,0BAA2B,SAAQ,OAAO,CACrD,0BAA0B,EAC1B,gCAAgC,EAChC,4BAA4B,CAC7B;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,gEAAgE;gBAE5E,KAAK,EAAE,0BAA0B;CAI9C;AACD;;GAEG;AACH,qBAAa,8BAA+B,SAAQ,OAAO,CACzD,8BAA8B,EAC9B,oCAAoC,EACpC,gCAAgC,CACjC;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,oEAAoE;gBAEhF,KAAK,EAAE,8BAA8B;CAIlD;AACD;;GAEG;AACH,qBAAa,+BAAgC,SAAQ,OAAO,CAC1D,+BAA+B,EAC/B,qCAAqC,EACrC,iCAAiC,CAClC;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,qEAAqE;gBAEjF,KAAK,EAAE,+BAA+B;CAInD;AACD;;GAEG;AACH,qBAAa,iCAAkC,SAAQ,OAAO,CAC5D,iCAAiC,EACjC,uCAAuC,EACvC,mCAAmC,CACpC;IACC,MAAM,CAAC,QAAQ,CAAC,QAAQ,uEAAuE;gBAEnF,KAAK,EAAE,iCAAiC;CAIrD;;;;;;;;;;;AAED,wBASE"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ export * from "./api";
13
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA;;;;;;;;;;GAUG;AAEH,cAAc,OAAO,CAAC"}
@@ -0,0 +1,70 @@
1
+ import { Client, Command, buildRequestConfigFromMetaPath } from "@volcengine/sdk-core";
2
+ function _define_property(obj, key, value) {
3
+ if (key in obj) Object.defineProperty(obj, key, {
4
+ value: value,
5
+ enumerable: true,
6
+ configurable: true,
7
+ writable: true
8
+ });
9
+ else obj[key] = value;
10
+ return obj;
11
+ }
12
+ class BMQ20240901Client extends Client {
13
+ constructor(config = {}){
14
+ super({
15
+ protocol: 'https',
16
+ region: 'cn-beijing',
17
+ ...config
18
+ });
19
+ }
20
+ }
21
+ class CreateDashboardEndpointCommand extends Command {
22
+ constructor(input){
23
+ super(input);
24
+ this.requestConfig = buildRequestConfigFromMetaPath(CreateDashboardEndpointCommand.metaPath);
25
+ }
26
+ }
27
+ _define_property(CreateDashboardEndpointCommand, "metaPath", '/CreateDashboardEndpoint/2024-09-01/bmq/post/application_json/');
28
+ class DeleteDashboardEndpointCommand extends Command {
29
+ constructor(input){
30
+ super(input);
31
+ this.requestConfig = buildRequestConfigFromMetaPath(DeleteDashboardEndpointCommand.metaPath);
32
+ }
33
+ }
34
+ _define_property(DeleteDashboardEndpointCommand, "metaPath", '/DeleteDashboardEndpoint/2024-09-01/bmq/post/application_json/');
35
+ class DescribeDeviceCredentialCommand extends Command {
36
+ constructor(input){
37
+ super(input);
38
+ this.requestConfig = buildRequestConfigFromMetaPath(DescribeDeviceCredentialCommand.metaPath);
39
+ }
40
+ }
41
+ _define_property(DescribeDeviceCredentialCommand, "metaPath", '/DescribeDeviceCredential/2024-09-01/bmq/post/application_json/');
42
+ class DescribeMQTTClientsCommand extends Command {
43
+ constructor(input){
44
+ super(input);
45
+ this.requestConfig = buildRequestConfigFromMetaPath(DescribeMQTTClientsCommand.metaPath);
46
+ }
47
+ }
48
+ _define_property(DescribeMQTTClientsCommand, "metaPath", '/DescribeMQTTClients/2024-09-01/bmq/post/application_json/');
49
+ class RefreshDeviceCredentialCommand extends Command {
50
+ constructor(input){
51
+ super(input);
52
+ this.requestConfig = buildRequestConfigFromMetaPath(RefreshDeviceCredentialCommand.metaPath);
53
+ }
54
+ }
55
+ _define_property(RefreshDeviceCredentialCommand, "metaPath", '/RefreshDeviceCredential/2024-09-01/bmq/post/application_json/');
56
+ class RegisterDeviceCredentialCommand extends Command {
57
+ constructor(input){
58
+ super(input);
59
+ this.requestConfig = buildRequestConfigFromMetaPath(RegisterDeviceCredentialCommand.metaPath);
60
+ }
61
+ }
62
+ _define_property(RegisterDeviceCredentialCommand, "metaPath", '/RegisterDeviceCredential/2024-09-01/bmq/post/application_json/');
63
+ class UnRegisterDeviceCredentialCommand extends Command {
64
+ constructor(input){
65
+ super(input);
66
+ this.requestConfig = buildRequestConfigFromMetaPath(UnRegisterDeviceCredentialCommand.metaPath);
67
+ }
68
+ }
69
+ _define_property(UnRegisterDeviceCredentialCommand, "metaPath", '/UnRegisterDeviceCredential/2024-09-01/bmq/post/application_json/');
70
+ export { BMQ20240901Client, CreateDashboardEndpointCommand, DeleteDashboardEndpointCommand, DescribeDeviceCredentialCommand, DescribeMQTTClientsCommand, RefreshDeviceCredentialCommand, RegisterDeviceCredentialCommand, UnRegisterDeviceCredentialCommand };
@@ -0,0 +1,70 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface ClientsInfoForDescribeMQTTClientsOutput
17
+ */
18
+ export interface ClientsInfoForDescribeMQTTClientsOutput {
19
+ /**
20
+ * @type {string}
21
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
22
+ */
23
+ ClientId?: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
27
+ */
28
+ ConnectedTime?: string;
29
+ /**
30
+ * @type {string}
31
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
32
+ */
33
+ ConnectionState?: string;
34
+ /**
35
+ * @type {string}
36
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
37
+ */
38
+ DisconnectedTime?: string;
39
+ /**
40
+ * @type {string}
41
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
42
+ */
43
+ HeartBeatInterval?: string;
44
+ /**
45
+ * @type {string}
46
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
47
+ */
48
+ IpAddress?: string;
49
+ /**
50
+ * @type {string}
51
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
52
+ */
53
+ Port?: string;
54
+ /**
55
+ * @type {string}
56
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
57
+ */
58
+ SessionExpireInterval?: string;
59
+ /**
60
+ * @type {string}
61
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
62
+ */
63
+ SubscriptionsCount?: string;
64
+ /**
65
+ * @type {string}
66
+ * @memberof ClientsInfoForDescribeMQTTClientsOutput
67
+ */
68
+ UserName?: string;
69
+ }
70
+ //# sourceMappingURL=clients-info-for-describe-mqttclients-output.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"clients-info-for-describe-mqttclients-output.d.ts","sourceRoot":"","sources":["../../../src/types/clients-info-for-describe-mqttclients-output.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,uCAAuC;IAEpD;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;;OAGG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;OAGG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface CreateDashboardEndpointRequest
17
+ */
18
+ export interface CreateDashboardEndpointRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof CreateDashboardEndpointRequest
22
+ */
23
+ InstanceId: string;
24
+ }
25
+ //# sourceMappingURL=create-dashboard-endpoint-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-dashboard-endpoint-request.d.ts","sourceRoot":"","sources":["../../../src/types/create-dashboard-endpoint-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,8BAA8B;IAE3C;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface CreateDashboardEndpointResponse
17
+ */
18
+ export interface CreateDashboardEndpointResponse {
19
+ /**
20
+ * @type {string}
21
+ * @memberof CreateDashboardEndpointResponse
22
+ */
23
+ Message?: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof CreateDashboardEndpointResponse
27
+ */
28
+ Status?: string;
29
+ }
30
+ //# sourceMappingURL=create-dashboard-endpoint-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-dashboard-endpoint-response.d.ts","sourceRoot":"","sources":["../../../src/types/create-dashboard-endpoint-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface DeleteDashboardEndpointRequest
17
+ */
18
+ export interface DeleteDashboardEndpointRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof DeleteDashboardEndpointRequest
22
+ */
23
+ InstanceId: string;
24
+ }
25
+ //# sourceMappingURL=delete-dashboard-endpoint-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-dashboard-endpoint-request.d.ts","sourceRoot":"","sources":["../../../src/types/delete-dashboard-endpoint-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,8BAA8B;IAE3C;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface DeleteDashboardEndpointResponse
17
+ */
18
+ export interface DeleteDashboardEndpointResponse {
19
+ /**
20
+ * @type {string}
21
+ * @memberof DeleteDashboardEndpointResponse
22
+ */
23
+ Message?: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof DeleteDashboardEndpointResponse
27
+ */
28
+ Status?: string;
29
+ }
30
+ //# sourceMappingURL=delete-dashboard-endpoint-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"delete-dashboard-endpoint-response.d.ts","sourceRoot":"","sources":["../../../src/types/delete-dashboard-endpoint-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface DescribeDeviceCredentialRequest
17
+ */
18
+ export interface DescribeDeviceCredentialRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof DescribeDeviceCredentialRequest
22
+ */
23
+ ClientId: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof DescribeDeviceCredentialRequest
27
+ */
28
+ InstanceId: string;
29
+ }
30
+ //# sourceMappingURL=describe-device-credential-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"describe-device-credential-request.d.ts","sourceRoot":"","sources":["../../../src/types/describe-device-credential-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,50 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface DescribeDeviceCredentialResponse
17
+ */
18
+ export interface DescribeDeviceCredentialResponse {
19
+ /**
20
+ * @type {string}
21
+ * @memberof DescribeDeviceCredentialResponse
22
+ */
23
+ ClientId?: string;
24
+ /**
25
+ * @type {number}
26
+ * @memberof DescribeDeviceCredentialResponse
27
+ */
28
+ CreateTime?: number;
29
+ /**
30
+ * @type {string}
31
+ * @memberof DescribeDeviceCredentialResponse
32
+ */
33
+ DeviceAccessKeyId?: string;
34
+ /**
35
+ * @type {string}
36
+ * @memberof DescribeDeviceCredentialResponse
37
+ */
38
+ DeviceAccessKeySecret?: string;
39
+ /**
40
+ * @type {string}
41
+ * @memberof DescribeDeviceCredentialResponse
42
+ */
43
+ InstanceId?: string;
44
+ /**
45
+ * @type {number}
46
+ * @memberof DescribeDeviceCredentialResponse
47
+ */
48
+ UpdateTime?: number;
49
+ }
50
+ //# sourceMappingURL=describe-device-credential-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"describe-device-credential-response.d.ts","sourceRoot":"","sources":["../../../src/types/describe-device-credential-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,gCAAgC;IAE7C;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,68 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface DescribeMQTTClientsRequest
17
+ */
18
+ export interface DescribeMQTTClientsRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof DescribeMQTTClientsRequest
22
+ */
23
+ ClientIdLike?: string;
24
+ /**
25
+ * @type {Array<string>}
26
+ * @memberof DescribeMQTTClientsRequest
27
+ */
28
+ ClientIdSpecifyList?: Array<string>;
29
+ /**
30
+ * @type {string}
31
+ * @memberof DescribeMQTTClientsRequest
32
+ */
33
+ ConnectionState?: DescribeMQTTClientsRequestConnectionStateEnum;
34
+ /**
35
+ * @type {string}
36
+ * @memberof DescribeMQTTClientsRequest
37
+ */
38
+ InstanceId: string;
39
+ /**
40
+ * @type {number}
41
+ * @memberof DescribeMQTTClientsRequest
42
+ */
43
+ PageNumber?: number;
44
+ /**
45
+ * @type {number}
46
+ * @memberof DescribeMQTTClientsRequest
47
+ */
48
+ PageSize?: number;
49
+ /**
50
+ * @type {string}
51
+ * @memberof DescribeMQTTClientsRequest
52
+ */
53
+ UserNameLike?: string;
54
+ /**
55
+ * @type {Array<string>}
56
+ * @memberof DescribeMQTTClientsRequest
57
+ */
58
+ UserNameSpecifyList?: Array<string>;
59
+ }
60
+ /**
61
+ * @export
62
+ * @enum {string}
63
+ */
64
+ export declare enum DescribeMQTTClientsRequestConnectionStateEnum {
65
+ Online = "Online",
66
+ Offline = "Offline"
67
+ }
68
+ //# sourceMappingURL=describe-mqttclients-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"describe-mqttclients-request.d.ts","sourceRoot":"","sources":["../../../src/types/describe-mqttclients-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,0BAA0B;IAEvC;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEpC;;;OAGG;IACH,eAAe,CAAC,EAAE,6CAA6C,CAAC;IAEhE;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;;OAGG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC;AAED;;;GAGG;AACH,oBAAY,6CAA6C;IACrD,MAAM,WAAW;IACjB,OAAO,YAAY;CACtB"}
@@ -0,0 +1,46 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { ClientsInfoForDescribeMQTTClientsOutput } from './clients-info-for-describe-mqttclients-output';
13
+ /**
14
+ *
15
+ *
16
+ * @export
17
+ * @interface DescribeMQTTClientsResponse
18
+ */
19
+ export interface DescribeMQTTClientsResponse {
20
+ /**
21
+ * @type {Array<ClientsInfoForDescribeMQTTClientsOutput>}
22
+ * @memberof DescribeMQTTClientsResponse
23
+ */
24
+ ClientsInfo?: Array<ClientsInfoForDescribeMQTTClientsOutput>;
25
+ /**
26
+ * @type {string}
27
+ * @memberof DescribeMQTTClientsResponse
28
+ */
29
+ InstanceId?: string;
30
+ /**
31
+ * @type {number}
32
+ * @memberof DescribeMQTTClientsResponse
33
+ */
34
+ PageNumber?: number;
35
+ /**
36
+ * @type {number}
37
+ * @memberof DescribeMQTTClientsResponse
38
+ */
39
+ PageSize?: number;
40
+ /**
41
+ * @type {number}
42
+ * @memberof DescribeMQTTClientsResponse
43
+ */
44
+ Total?: number;
45
+ }
46
+ //# sourceMappingURL=describe-mqttclients-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"describe-mqttclients-response.d.ts","sourceRoot":"","sources":["../../../src/types/describe-mqttclients-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,uCAAuC,EAAE,MAAM,gDAAgD,CAAC;AACxG;;;;;EAKE;AACH,MAAM,WAAW,2BAA2B;IAExC;;;OAGG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,uCAAuC,CAAC,CAAC;IAE7D;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB"}
@@ -0,0 +1,16 @@
1
+ export * from './clients-info-for-describe-mqttclients-output';
2
+ export * from './create-dashboard-endpoint-request';
3
+ export * from './create-dashboard-endpoint-response';
4
+ export * from './delete-dashboard-endpoint-request';
5
+ export * from './delete-dashboard-endpoint-response';
6
+ export * from './describe-device-credential-request';
7
+ export * from './describe-device-credential-response';
8
+ export * from './describe-mqttclients-request';
9
+ export * from './describe-mqttclients-response';
10
+ export * from './refresh-device-credential-request';
11
+ export * from './refresh-device-credential-response';
12
+ export * from './register-device-credential-request';
13
+ export * from './register-device-credential-response';
14
+ export * from './un-register-device-credential-request';
15
+ export * from './un-register-device-credential-response';
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,gDAAgD,CAAC;AAC/D,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC;AAChD,cAAc,qCAAqC,CAAC;AACpD,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,yCAAyC,CAAC;AACxD,cAAc,0CAA0C,CAAC"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface RefreshDeviceCredentialRequest
17
+ */
18
+ export interface RefreshDeviceCredentialRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof RefreshDeviceCredentialRequest
22
+ */
23
+ ClientId: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof RefreshDeviceCredentialRequest
27
+ */
28
+ InstanceId: string;
29
+ }
30
+ //# sourceMappingURL=refresh-device-credential-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"refresh-device-credential-request.d.ts","sourceRoot":"","sources":["../../../src/types/refresh-device-credential-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,8BAA8B;IAE3C;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,50 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface RefreshDeviceCredentialResponse
17
+ */
18
+ export interface RefreshDeviceCredentialResponse {
19
+ /**
20
+ * @type {string}
21
+ * @memberof RefreshDeviceCredentialResponse
22
+ */
23
+ ClientId?: string;
24
+ /**
25
+ * @type {number}
26
+ * @memberof RefreshDeviceCredentialResponse
27
+ */
28
+ CreateTime?: number;
29
+ /**
30
+ * @type {string}
31
+ * @memberof RefreshDeviceCredentialResponse
32
+ */
33
+ DeviceAccessKeyId?: string;
34
+ /**
35
+ * @type {string}
36
+ * @memberof RefreshDeviceCredentialResponse
37
+ */
38
+ DeviceAccessKeySecret?: string;
39
+ /**
40
+ * @type {string}
41
+ * @memberof RefreshDeviceCredentialResponse
42
+ */
43
+ InstanceId?: string;
44
+ /**
45
+ * @type {number}
46
+ * @memberof RefreshDeviceCredentialResponse
47
+ */
48
+ UpdateTime?: number;
49
+ }
50
+ //# sourceMappingURL=refresh-device-credential-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"refresh-device-credential-response.d.ts","sourceRoot":"","sources":["../../../src/types/refresh-device-credential-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface RegisterDeviceCredentialRequest
17
+ */
18
+ export interface RegisterDeviceCredentialRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof RegisterDeviceCredentialRequest
22
+ */
23
+ ClientId: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof RegisterDeviceCredentialRequest
27
+ */
28
+ InstanceId: string;
29
+ }
30
+ //# sourceMappingURL=register-device-credential-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"register-device-credential-request.d.ts","sourceRoot":"","sources":["../../../src/types/register-device-credential-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,+BAA+B;IAE5C;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,50 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface RegisterDeviceCredentialResponse
17
+ */
18
+ export interface RegisterDeviceCredentialResponse {
19
+ /**
20
+ * @type {string}
21
+ * @memberof RegisterDeviceCredentialResponse
22
+ */
23
+ ClientId?: string;
24
+ /**
25
+ * @type {number}
26
+ * @memberof RegisterDeviceCredentialResponse
27
+ */
28
+ CreateTime?: number;
29
+ /**
30
+ * @type {string}
31
+ * @memberof RegisterDeviceCredentialResponse
32
+ */
33
+ DeviceAccessKeyId?: string;
34
+ /**
35
+ * @type {string}
36
+ * @memberof RegisterDeviceCredentialResponse
37
+ */
38
+ DeviceAccessKeySecret?: string;
39
+ /**
40
+ * @type {string}
41
+ * @memberof RegisterDeviceCredentialResponse
42
+ */
43
+ InstanceId?: string;
44
+ /**
45
+ * @type {number}
46
+ * @memberof RegisterDeviceCredentialResponse
47
+ */
48
+ UpdateTime?: number;
49
+ }
50
+ //# sourceMappingURL=register-device-credential-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"register-device-credential-response.d.ts","sourceRoot":"","sources":["../../../src/types/register-device-credential-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,gCAAgC;IAE7C;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAE3B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface UnRegisterDeviceCredentialRequest
17
+ */
18
+ export interface UnRegisterDeviceCredentialRequest {
19
+ /**
20
+ * @type {string}
21
+ * @memberof UnRegisterDeviceCredentialRequest
22
+ */
23
+ ClientId: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof UnRegisterDeviceCredentialRequest
27
+ */
28
+ InstanceId: string;
29
+ }
30
+ //# sourceMappingURL=un-register-device-credential-request.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"un-register-device-credential-request.d.ts","sourceRoot":"","sources":["../../../src/types/un-register-device-credential-request.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,iCAAiC;IAE9C;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * bmq20240901
3
+ * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4
+ *
5
+ * OpenAPI spec version: common-version
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ *
15
+ * @export
16
+ * @interface UnRegisterDeviceCredentialResponse
17
+ */
18
+ export interface UnRegisterDeviceCredentialResponse {
19
+ /**
20
+ * @type {string}
21
+ * @memberof UnRegisterDeviceCredentialResponse
22
+ */
23
+ ClientId?: string;
24
+ /**
25
+ * @type {string}
26
+ * @memberof UnRegisterDeviceCredentialResponse
27
+ */
28
+ InstanceId?: string;
29
+ }
30
+ //# sourceMappingURL=un-register-device-credential-response.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"un-register-device-credential-response.d.ts","sourceRoot":"","sources":["../../../src/types/un-register-device-credential-response.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAEF;;;;;EAKE;AACH,MAAM,WAAW,kCAAkC;IAE/C;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB"}
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "volc-bmq20240901",
3
+ "version": "1.0.2",
4
+ "description": "swagger client for volc-bmq20240901",
5
+ "license": "Apache-2.0",
6
+ "main": "./dist/cjs/index.js",
7
+ "module": "./dist/esm/index.mjs",
8
+ "types": "./dist/esm/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/esm/index.d.ts",
12
+ "import": "./dist/esm/index.mjs",
13
+ "require": "./dist/cjs/index.js"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "engines": {
18
+ "node": ">=18"
19
+ },
20
+ "scripts": {
21
+ "build": "rslib build",
22
+ "dev": "rslib build --watch",
23
+ "clean": "rm -rf dist",
24
+ "test": "jest"
25
+ },
26
+ "dependencies": {
27
+ "@volcengine/sdk-core": "workspace:*"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^20.8.0",
31
+ "typescript": "^5.2.2"
32
+ },
33
+ "sideEffects": false,
34
+ "publishConfig": {
35
+ "registry": "https://registry.npmjs.org"
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "!dist/tsconfig.tsbuildinfo"
40
+ ]
41
+ }