@alicloud/live20161101 2.3.3 → 2.5.0
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/dist/client.d.ts +54 -0
- package/dist/client.js +135 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeLiveRtcRecordUsageDataRequest.d.ts +50 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataRequest.js +66 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataRequest.js.map +1 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponse.d.ts +19 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponse.js +69 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponse.js.map +1 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponseBody.d.ts +99 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponseBody.js +106 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponseBody.js.map +1 -0
- package/dist/models/ListLiveTagResourcesRequest.d.ts +66 -0
- package/dist/models/ListLiveTagResourcesRequest.js +99 -0
- package/dist/models/ListLiveTagResourcesRequest.js.map +1 -0
- package/dist/models/ListLiveTagResourcesResponse.d.ts +19 -0
- package/dist/models/ListLiveTagResourcesResponse.js +69 -0
- package/dist/models/ListLiveTagResourcesResponse.js.map +1 -0
- package/dist/models/ListLiveTagResourcesResponseBody.d.ts +69 -0
- package/dist/models/ListLiveTagResourcesResponseBody.js +112 -0
- package/dist/models/ListLiveTagResourcesResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +10 -0
- package/dist/models/model.js +53 -33
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +152 -0
- package/src/models/DescribeLiveRtcRecordUsageDataRequest.ts +71 -0
- package/src/models/DescribeLiveRtcRecordUsageDataResponse.ts +40 -0
- package/src/models/DescribeLiveRtcRecordUsageDataResponseBody.ts +151 -0
- package/src/models/ListLiveTagResourcesRequest.ts +111 -0
- package/src/models/ListLiveTagResourcesResponse.ts +40 -0
- package/src/models/ListLiveTagResourcesResponseBody.ts +118 -0
- package/src/models/model.ts +10 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListLiveTagResourcesResponse.js","sourceRoot":"","sources":["../../src/models/ListLiveTagResourcesResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yFAAsF;AAGtF,MAAa,4BAA6B,SAAQ,KAAK,CAAC,KAAK;IAI3D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,mEAAgC;SACvC,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,oEAiCC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListLiveTagResourcesResponseBodyTagResourcesTagResource extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* my-resource-id
|
|
6
|
+
*/
|
|
7
|
+
resourceId?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* DOMAIN
|
|
11
|
+
*/
|
|
12
|
+
resourceType?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* env
|
|
16
|
+
*/
|
|
17
|
+
tagKey?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* dev
|
|
21
|
+
*/
|
|
22
|
+
tagValue?: string;
|
|
23
|
+
static names(): {
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
};
|
|
26
|
+
static types(): {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
};
|
|
29
|
+
validate(): void;
|
|
30
|
+
constructor(map?: {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
export declare class ListLiveTagResourcesResponseBodyTagResources extends $dara.Model {
|
|
35
|
+
tagResource?: ListLiveTagResourcesResponseBodyTagResourcesTagResource[];
|
|
36
|
+
static names(): {
|
|
37
|
+
[key: string]: string;
|
|
38
|
+
};
|
|
39
|
+
static types(): {
|
|
40
|
+
[key: string]: any;
|
|
41
|
+
};
|
|
42
|
+
validate(): void;
|
|
43
|
+
constructor(map?: {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
export declare class ListLiveTagResourcesResponseBody extends $dara.Model {
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* 6a5e8f4fae643e70d1a2ff1827cd91bd
|
|
51
|
+
*/
|
|
52
|
+
nextToken?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @example
|
|
55
|
+
* ******3B-0E1A-586A-AC29-742247******
|
|
56
|
+
*/
|
|
57
|
+
requestId?: string;
|
|
58
|
+
tagResources?: ListLiveTagResourcesResponseBodyTagResources;
|
|
59
|
+
static names(): {
|
|
60
|
+
[key: string]: string;
|
|
61
|
+
};
|
|
62
|
+
static types(): {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
};
|
|
65
|
+
validate(): void;
|
|
66
|
+
constructor(map?: {
|
|
67
|
+
[key: string]: any;
|
|
68
|
+
});
|
|
69
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ListLiveTagResourcesResponseBody = exports.ListLiveTagResourcesResponseBodyTagResources = exports.ListLiveTagResourcesResponseBodyTagResourcesTagResource = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListLiveTagResourcesResponseBodyTagResourcesTagResource extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
resourceId: 'ResourceId',
|
|
43
|
+
resourceType: 'ResourceType',
|
|
44
|
+
tagKey: 'TagKey',
|
|
45
|
+
tagValue: 'TagValue',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
resourceId: 'string',
|
|
51
|
+
resourceType: 'string',
|
|
52
|
+
tagKey: 'string',
|
|
53
|
+
tagValue: 'string',
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
validate() {
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
constructor(map) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.ListLiveTagResourcesResponseBodyTagResourcesTagResource = ListLiveTagResourcesResponseBodyTagResourcesTagResource;
|
|
64
|
+
class ListLiveTagResourcesResponseBodyTagResources extends $dara.Model {
|
|
65
|
+
static names() {
|
|
66
|
+
return {
|
|
67
|
+
tagResource: 'TagResource',
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
static types() {
|
|
71
|
+
return {
|
|
72
|
+
tagResource: { 'type': 'array', 'itemType': ListLiveTagResourcesResponseBodyTagResourcesTagResource },
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
validate() {
|
|
76
|
+
if (Array.isArray(this.tagResource)) {
|
|
77
|
+
$dara.Model.validateArray(this.tagResource);
|
|
78
|
+
}
|
|
79
|
+
super.validate();
|
|
80
|
+
}
|
|
81
|
+
constructor(map) {
|
|
82
|
+
super(map);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
exports.ListLiveTagResourcesResponseBodyTagResources = ListLiveTagResourcesResponseBodyTagResources;
|
|
86
|
+
class ListLiveTagResourcesResponseBody extends $dara.Model {
|
|
87
|
+
static names() {
|
|
88
|
+
return {
|
|
89
|
+
nextToken: 'NextToken',
|
|
90
|
+
requestId: 'RequestId',
|
|
91
|
+
tagResources: 'TagResources',
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
static types() {
|
|
95
|
+
return {
|
|
96
|
+
nextToken: 'string',
|
|
97
|
+
requestId: 'string',
|
|
98
|
+
tagResources: ListLiveTagResourcesResponseBodyTagResources,
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
validate() {
|
|
102
|
+
if (this.tagResources && typeof this.tagResources.validate === 'function') {
|
|
103
|
+
this.tagResources.validate();
|
|
104
|
+
}
|
|
105
|
+
super.validate();
|
|
106
|
+
}
|
|
107
|
+
constructor(map) {
|
|
108
|
+
super(map);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.ListLiveTagResourcesResponseBody = ListLiveTagResourcesResponseBody;
|
|
112
|
+
//# sourceMappingURL=ListLiveTagResourcesResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListLiveTagResourcesResponseBody.js","sourceRoot":"","sources":["../../src/models/ListLiveTagResourcesResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,uDAAwD,SAAQ,KAAK,CAAC,KAAK;IAqBtF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,YAAY,EAAE,cAAc;YAC5B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,UAAU;SACrB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,YAAY,EAAE,QAAQ;YACtB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,QAAQ;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA9CD,0HA8CC;AAED,MAAa,4CAA6C,SAAQ,KAAK,CAAC,KAAK;IAE3E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,WAAW,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,uDAAuD,EAAE;SACtG,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC;YACnC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC9C,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxBD,oGAwBC;AAED,MAAa,gCAAiC,SAAQ,KAAK,CAAC,KAAK;IAY/D,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,SAAS,EAAE,WAAW;YACtB,YAAY,EAAE,cAAc;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,SAAS,EAAE,QAAQ;YACnB,YAAY,EAAE,4CAA4C;SAC3D,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,YAAY,IAAI,OAAQ,IAAI,CAAC,YAAoB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjF,IAAI,CAAC,YAAoB,CAAC,QAAQ,EAAE,CAAC;QACxC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,4EAsCC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -225,6 +225,7 @@ export { DescribeLiveRecordNotifyConfigResponseBodyLiveRecordNotifyConfig } from
|
|
|
225
225
|
export { DescribeLiveRecordNotifyRecordsResponseBodyCallbackList } from './DescribeLiveRecordNotifyRecordsResponseBody';
|
|
226
226
|
export { DescribeLiveRecordVodConfigsResponseBodyLiveRecordVodConfigsLiveRecordVodConfig } from './DescribeLiveRecordVodConfigsResponseBody';
|
|
227
227
|
export { DescribeLiveRecordVodConfigsResponseBodyLiveRecordVodConfigs } from './DescribeLiveRecordVodConfigsResponseBody';
|
|
228
|
+
export { DescribeLiveRtcRecordUsageDataResponseBodyData } from './DescribeLiveRtcRecordUsageDataResponseBody';
|
|
228
229
|
export { DescribeLiveShiftConfigsResponseBodyContentConfig } from './DescribeLiveShiftConfigsResponseBody';
|
|
229
230
|
export { DescribeLiveShiftConfigsResponseBodyContent } from './DescribeLiveShiftConfigsResponseBody';
|
|
230
231
|
export { DescribeLiveSnapshotConfigResponseBodyLiveStreamSnapshotConfigListLiveStreamSnapshotConfig } from './DescribeLiveSnapshotConfigResponseBody';
|
|
@@ -395,6 +396,9 @@ export { ListLiveRealtimeLogDeliveryDomainsResponseBodyContentDomains } from './
|
|
|
395
396
|
export { ListLiveRealtimeLogDeliveryDomainsResponseBodyContent } from './ListLiveRealtimeLogDeliveryDomainsResponseBody';
|
|
396
397
|
export { ListLiveRealtimeLogDeliveryInfosResponseBodyContentRealtimeLogDeliveryInfos } from './ListLiveRealtimeLogDeliveryInfosResponseBody';
|
|
397
398
|
export { ListLiveRealtimeLogDeliveryInfosResponseBodyContent } from './ListLiveRealtimeLogDeliveryInfosResponseBody';
|
|
399
|
+
export { ListLiveTagResourcesRequestTag } from './ListLiveTagResourcesRequest';
|
|
400
|
+
export { ListLiveTagResourcesResponseBodyTagResourcesTagResource } from './ListLiveTagResourcesResponseBody';
|
|
401
|
+
export { ListLiveTagResourcesResponseBodyTagResources } from './ListLiveTagResourcesResponseBody';
|
|
398
402
|
export { ListMessageResponseBodyResultMessageList } from './ListMessageResponseBody';
|
|
399
403
|
export { ListMessageResponseBodyResult } from './ListMessageResponseBody';
|
|
400
404
|
export { ListMessageAppResponseBodyResultAppList } from './ListMessageAppResponseBody';
|
|
@@ -1146,6 +1150,9 @@ export { DescribeLiveRecordNotifyRecordsResponse } from './DescribeLiveRecordNot
|
|
|
1146
1150
|
export { DescribeLiveRecordVodConfigsRequest } from './DescribeLiveRecordVodConfigsRequest';
|
|
1147
1151
|
export { DescribeLiveRecordVodConfigsResponseBody } from './DescribeLiveRecordVodConfigsResponseBody';
|
|
1148
1152
|
export { DescribeLiveRecordVodConfigsResponse } from './DescribeLiveRecordVodConfigsResponse';
|
|
1153
|
+
export { DescribeLiveRtcRecordUsageDataRequest } from './DescribeLiveRtcRecordUsageDataRequest';
|
|
1154
|
+
export { DescribeLiveRtcRecordUsageDataResponseBody } from './DescribeLiveRtcRecordUsageDataResponseBody';
|
|
1155
|
+
export { DescribeLiveRtcRecordUsageDataResponse } from './DescribeLiveRtcRecordUsageDataResponse';
|
|
1149
1156
|
export { DescribeLiveShiftConfigsRequest } from './DescribeLiveShiftConfigsRequest';
|
|
1150
1157
|
export { DescribeLiveShiftConfigsResponseBody } from './DescribeLiveShiftConfigsResponseBody';
|
|
1151
1158
|
export { DescribeLiveShiftConfigsResponse } from './DescribeLiveShiftConfigsResponse';
|
|
@@ -1433,6 +1440,9 @@ export { ListLiveRealtimeLogDeliveryDomainsResponse } from './ListLiveRealtimeLo
|
|
|
1433
1440
|
export { ListLiveRealtimeLogDeliveryInfosRequest } from './ListLiveRealtimeLogDeliveryInfosRequest';
|
|
1434
1441
|
export { ListLiveRealtimeLogDeliveryInfosResponseBody } from './ListLiveRealtimeLogDeliveryInfosResponseBody';
|
|
1435
1442
|
export { ListLiveRealtimeLogDeliveryInfosResponse } from './ListLiveRealtimeLogDeliveryInfosResponse';
|
|
1443
|
+
export { ListLiveTagResourcesRequest } from './ListLiveTagResourcesRequest';
|
|
1444
|
+
export { ListLiveTagResourcesResponseBody } from './ListLiveTagResourcesResponseBody';
|
|
1445
|
+
export { ListLiveTagResourcesResponse } from './ListLiveTagResourcesResponse';
|
|
1436
1446
|
export { ListMessageRequest } from './ListMessageRequest';
|
|
1437
1447
|
export { ListMessageResponseBody } from './ListMessageResponseBody';
|
|
1438
1448
|
export { ListMessageResponse } from './ListMessageResponse';
|