tencentcloud-sdk-nodejs-intl-en 3.0.409 → 3.0.412
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/package.json +1 -1
- package/tencentcloud/batch/v20170312/batch_client.js +0 -14
- package/tencentcloud/batch/v20170312/models.js +0 -206
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/es/v20180416/es_client.js +13 -0
- package/tencentcloud/es/v20180416/models.js +100 -0
- package/tencentcloud/live/v20180801/live_client.js +2 -29
- package/tencentcloud/live/v20180801/models.js +68 -476
- package/tencentcloud/ocr/v20181119/models.js +14 -0
- package/tencentcloud/privatedns/v20201028/models.js +199 -808
- package/tencentcloud/privatedns/v20201028/privatedns_client.js +26 -92
- package/tencentcloud/redis/v20180412/models.js +838 -8348
- package/tencentcloud/redis/v20180412/redis_client.js +85 -819
- package/tencentcloud/ses/v20201002/models.js +66 -619
- package/tencentcloud/ses/v20201002/ses_client.js +109 -163
- package/tencentcloud/vpc/v20170312/models.js +288 -1824
- package/tencentcloud/vpc/v20170312/vpc_client.js +58 -245
package/package.json
CHANGED
|
@@ -19,7 +19,6 @@ const AbstractClient = require('../../common/abstract_client')
|
|
|
19
19
|
const EventVar = models.EventVar;
|
|
20
20
|
const AnonymousComputeEnv = models.AnonymousComputeEnv;
|
|
21
21
|
const DeleteComputeEnvResponse = models.DeleteComputeEnvResponse;
|
|
22
|
-
const SubmitJobRequest = models.SubmitJobRequest;
|
|
23
22
|
const ComputeEnvData = models.ComputeEnvData;
|
|
24
23
|
const Authentication = models.Authentication;
|
|
25
24
|
const RetryJobsResponse = models.RetryJobsResponse;
|
|
@@ -52,7 +51,6 @@ const TerminateComputeNodesRequest = models.TerminateComputeNodesRequest;
|
|
|
52
51
|
const LocalDiskType = models.LocalDiskType;
|
|
53
52
|
const DescribeComputeEnvActivitiesRequest = models.DescribeComputeEnvActivitiesRequest;
|
|
54
53
|
const CreateTaskTemplateRequest = models.CreateTaskTemplateRequest;
|
|
55
|
-
const Job = models.Job;
|
|
56
54
|
const DeleteComputeEnvRequest = models.DeleteComputeEnvRequest;
|
|
57
55
|
const CreateComputeEnvRequest = models.CreateComputeEnvRequest;
|
|
58
56
|
const DescribeComputeEnvCreateInfoResponse = models.DescribeComputeEnvCreateInfoResponse;
|
|
@@ -86,7 +84,6 @@ const DescribeJobRequest = models.DescribeJobRequest;
|
|
|
86
84
|
const RedirectInfo = models.RedirectInfo;
|
|
87
85
|
const DescribeInstanceCategoriesResponse = models.DescribeInstanceCategoriesResponse;
|
|
88
86
|
const ModifyTaskTemplateResponse = models.ModifyTaskTemplateResponse;
|
|
89
|
-
const SubmitJobResponse = models.SubmitJobResponse;
|
|
90
87
|
const InputMapping = models.InputMapping;
|
|
91
88
|
const RedirectLocalInfo = models.RedirectLocalInfo;
|
|
92
89
|
const DescribeJobSubmitInfoRequest = models.DescribeJobSubmitInfoRequest;
|
|
@@ -305,17 +302,6 @@ Instance termination is an asynchronous process, and the time it takes to comple
|
|
|
305
302
|
this.request("DescribeJob", req, resp, cb);
|
|
306
303
|
}
|
|
307
304
|
|
|
308
|
-
/**
|
|
309
|
-
* This API is used to submit a instance.
|
|
310
|
-
* @param {SubmitJobRequest} req
|
|
311
|
-
* @param {function(string, SubmitJobResponse):void} cb
|
|
312
|
-
* @public
|
|
313
|
-
*/
|
|
314
|
-
SubmitJob(req, cb) {
|
|
315
|
-
let resp = new SubmitJobResponse();
|
|
316
|
-
this.request("SubmitJob", req, resp, cb);
|
|
317
|
-
}
|
|
318
|
-
|
|
319
305
|
/**
|
|
320
306
|
* This API is used to terminate compute nodes in batches. It is not allowed to repeatedly terminate the same node.
|
|
321
307
|
* @param {TerminateComputeNodesRequest} req
|
|
@@ -146,58 +146,6 @@ class DeleteComputeEnvResponse extends AbstractModel {
|
|
|
146
146
|
}
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
-
/**
|
|
150
|
-
* SubmitJob request structure.
|
|
151
|
-
* @class
|
|
152
|
-
*/
|
|
153
|
-
class SubmitJobRequest extends AbstractModel {
|
|
154
|
-
constructor(){
|
|
155
|
-
super();
|
|
156
|
-
|
|
157
|
-
/**
|
|
158
|
-
* Location information of the submitted job. This parameter allows you to specify information such as the availability zone of the CVM instance with which the job is associated.
|
|
159
|
-
* @type {Placement || null}
|
|
160
|
-
*/
|
|
161
|
-
this.Placement = null;
|
|
162
|
-
|
|
163
|
-
/**
|
|
164
|
-
* Job information
|
|
165
|
-
* @type {Job || null}
|
|
166
|
-
*/
|
|
167
|
-
this.Job = null;
|
|
168
|
-
|
|
169
|
-
/**
|
|
170
|
-
* The string used to guarantee the idempotency of the request, which is generated by the user and must be unique for different requests. The maximum length is 64 ASCII characters. If this parameter is not specified, the idempotency of the request cannot be guaranteed.
|
|
171
|
-
* @type {string || null}
|
|
172
|
-
*/
|
|
173
|
-
this.ClientToken = null;
|
|
174
|
-
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
/**
|
|
178
|
-
* @private
|
|
179
|
-
*/
|
|
180
|
-
deserialize(params) {
|
|
181
|
-
if (!params) {
|
|
182
|
-
return;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
if (params.Placement) {
|
|
186
|
-
let obj = new Placement();
|
|
187
|
-
obj.deserialize(params.Placement)
|
|
188
|
-
this.Placement = obj;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
if (params.Job) {
|
|
192
|
-
let obj = new Job();
|
|
193
|
-
obj.deserialize(params.Job)
|
|
194
|
-
this.Job = obj;
|
|
195
|
-
}
|
|
196
|
-
this.ClientToken = 'ClientToken' in params ? params.ClientToken : null;
|
|
197
|
-
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
149
|
/**
|
|
202
150
|
* Compute environment attributes
|
|
203
151
|
* @class
|
|
@@ -2107,122 +2055,6 @@ class CreateTaskTemplateRequest extends AbstractModel {
|
|
|
2107
2055
|
}
|
|
2108
2056
|
}
|
|
2109
2057
|
|
|
2110
|
-
/**
|
|
2111
|
-
* Instance
|
|
2112
|
-
* @class
|
|
2113
|
-
*/
|
|
2114
|
-
class Job extends AbstractModel {
|
|
2115
|
-
constructor(){
|
|
2116
|
-
super();
|
|
2117
|
-
|
|
2118
|
-
/**
|
|
2119
|
-
* Job information
|
|
2120
|
-
* @type {Array.<Task> || null}
|
|
2121
|
-
*/
|
|
2122
|
-
this.Tasks = null;
|
|
2123
|
-
|
|
2124
|
-
/**
|
|
2125
|
-
* Instance name
|
|
2126
|
-
* @type {string || null}
|
|
2127
|
-
*/
|
|
2128
|
-
this.JobName = null;
|
|
2129
|
-
|
|
2130
|
-
/**
|
|
2131
|
-
* Instance description
|
|
2132
|
-
* @type {string || null}
|
|
2133
|
-
*/
|
|
2134
|
-
this.JobDescription = null;
|
|
2135
|
-
|
|
2136
|
-
/**
|
|
2137
|
-
* Instance priority. Tasks (Task) and task instances (TaskInstance) inherit the priority of the instance
|
|
2138
|
-
* @type {number || null}
|
|
2139
|
-
*/
|
|
2140
|
-
this.Priority = null;
|
|
2141
|
-
|
|
2142
|
-
/**
|
|
2143
|
-
* Dependency information
|
|
2144
|
-
* @type {Array.<Dependence> || null}
|
|
2145
|
-
*/
|
|
2146
|
-
this.Dependences = null;
|
|
2147
|
-
|
|
2148
|
-
/**
|
|
2149
|
-
* Notification information
|
|
2150
|
-
* @type {Array.<Notification> || null}
|
|
2151
|
-
*/
|
|
2152
|
-
this.Notifications = null;
|
|
2153
|
-
|
|
2154
|
-
/**
|
|
2155
|
-
* This is the dependency of the subsequent task on the previous task if there is a dependent relationship between them. Value range: PRE_TASK_SUCCEED, PRE_TASK_AT_LEAST_PARTLY_SUCCEED, PRE_TASK_FINISHED. Default value: PRE_TASK_SUCCEED.
|
|
2156
|
-
* @type {string || null}
|
|
2157
|
-
*/
|
|
2158
|
-
this.TaskExecutionDependOn = null;
|
|
2159
|
-
|
|
2160
|
-
/**
|
|
2161
|
-
* Indicates which policy will be used in case that CVM instance creation fails. Value range: FAILED, RUNNABLE. FAILED indicates that the CVM instance creation failure will be processed as an execution failure, while RUNNABLE indicates that the failure will be processed as "keep waiting". Default value: FAILED. StateIfCreateCvmFailed is not valid for submitted jobs for which a compute environment is specified.
|
|
2162
|
-
* @type {string || null}
|
|
2163
|
-
*/
|
|
2164
|
-
this.StateIfCreateCvmFailed = null;
|
|
2165
|
-
|
|
2166
|
-
/**
|
|
2167
|
-
* Tag list. By setting this parameter, you can bind tags to a job. Each job supports up to 10 tags.
|
|
2168
|
-
* @type {Array.<Tag> || null}
|
|
2169
|
-
*/
|
|
2170
|
-
this.Tags = null;
|
|
2171
|
-
|
|
2172
|
-
}
|
|
2173
|
-
|
|
2174
|
-
/**
|
|
2175
|
-
* @private
|
|
2176
|
-
*/
|
|
2177
|
-
deserialize(params) {
|
|
2178
|
-
if (!params) {
|
|
2179
|
-
return;
|
|
2180
|
-
}
|
|
2181
|
-
|
|
2182
|
-
if (params.Tasks) {
|
|
2183
|
-
this.Tasks = new Array();
|
|
2184
|
-
for (let z in params.Tasks) {
|
|
2185
|
-
let obj = new Task();
|
|
2186
|
-
obj.deserialize(params.Tasks[z]);
|
|
2187
|
-
this.Tasks.push(obj);
|
|
2188
|
-
}
|
|
2189
|
-
}
|
|
2190
|
-
this.JobName = 'JobName' in params ? params.JobName : null;
|
|
2191
|
-
this.JobDescription = 'JobDescription' in params ? params.JobDescription : null;
|
|
2192
|
-
this.Priority = 'Priority' in params ? params.Priority : null;
|
|
2193
|
-
|
|
2194
|
-
if (params.Dependences) {
|
|
2195
|
-
this.Dependences = new Array();
|
|
2196
|
-
for (let z in params.Dependences) {
|
|
2197
|
-
let obj = new Dependence();
|
|
2198
|
-
obj.deserialize(params.Dependences[z]);
|
|
2199
|
-
this.Dependences.push(obj);
|
|
2200
|
-
}
|
|
2201
|
-
}
|
|
2202
|
-
|
|
2203
|
-
if (params.Notifications) {
|
|
2204
|
-
this.Notifications = new Array();
|
|
2205
|
-
for (let z in params.Notifications) {
|
|
2206
|
-
let obj = new Notification();
|
|
2207
|
-
obj.deserialize(params.Notifications[z]);
|
|
2208
|
-
this.Notifications.push(obj);
|
|
2209
|
-
}
|
|
2210
|
-
}
|
|
2211
|
-
this.TaskExecutionDependOn = 'TaskExecutionDependOn' in params ? params.TaskExecutionDependOn : null;
|
|
2212
|
-
this.StateIfCreateCvmFailed = 'StateIfCreateCvmFailed' in params ? params.StateIfCreateCvmFailed : null;
|
|
2213
|
-
|
|
2214
|
-
if (params.Tags) {
|
|
2215
|
-
this.Tags = new Array();
|
|
2216
|
-
for (let z in params.Tags) {
|
|
2217
|
-
let obj = new Tag();
|
|
2218
|
-
obj.deserialize(params.Tags[z]);
|
|
2219
|
-
this.Tags.push(obj);
|
|
2220
|
-
}
|
|
2221
|
-
}
|
|
2222
|
-
|
|
2223
|
-
}
|
|
2224
|
-
}
|
|
2225
|
-
|
|
2226
2058
|
/**
|
|
2227
2059
|
* DeleteComputeEnv request structure.
|
|
2228
2060
|
* @class
|
|
@@ -4099,41 +3931,6 @@ class ModifyTaskTemplateResponse extends AbstractModel {
|
|
|
4099
3931
|
}
|
|
4100
3932
|
}
|
|
4101
3933
|
|
|
4102
|
-
/**
|
|
4103
|
-
* SubmitJob response structure.
|
|
4104
|
-
* @class
|
|
4105
|
-
*/
|
|
4106
|
-
class SubmitJobResponse extends AbstractModel {
|
|
4107
|
-
constructor(){
|
|
4108
|
-
super();
|
|
4109
|
-
|
|
4110
|
-
/**
|
|
4111
|
-
* When a job is submitted through this API, this parameter is returned and indicates the job ID. Returning the list of job IDs does not mean that the job is parsed/executed successfully. The job state can be queried using the DescribeJob API.
|
|
4112
|
-
* @type {string || null}
|
|
4113
|
-
*/
|
|
4114
|
-
this.JobId = null;
|
|
4115
|
-
|
|
4116
|
-
/**
|
|
4117
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4118
|
-
* @type {string || null}
|
|
4119
|
-
*/
|
|
4120
|
-
this.RequestId = null;
|
|
4121
|
-
|
|
4122
|
-
}
|
|
4123
|
-
|
|
4124
|
-
/**
|
|
4125
|
-
* @private
|
|
4126
|
-
*/
|
|
4127
|
-
deserialize(params) {
|
|
4128
|
-
if (!params) {
|
|
4129
|
-
return;
|
|
4130
|
-
}
|
|
4131
|
-
this.JobId = 'JobId' in params ? params.JobId : null;
|
|
4132
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4133
|
-
|
|
4134
|
-
}
|
|
4135
|
-
}
|
|
4136
|
-
|
|
4137
3934
|
/**
|
|
4138
3935
|
* Input mapping
|
|
4139
3936
|
* @class
|
|
@@ -6634,7 +6431,6 @@ module.exports = {
|
|
|
6634
6431
|
EventVar: EventVar,
|
|
6635
6432
|
AnonymousComputeEnv: AnonymousComputeEnv,
|
|
6636
6433
|
DeleteComputeEnvResponse: DeleteComputeEnvResponse,
|
|
6637
|
-
SubmitJobRequest: SubmitJobRequest,
|
|
6638
6434
|
ComputeEnvData: ComputeEnvData,
|
|
6639
6435
|
Authentication: Authentication,
|
|
6640
6436
|
RetryJobsResponse: RetryJobsResponse,
|
|
@@ -6667,7 +6463,6 @@ module.exports = {
|
|
|
6667
6463
|
LocalDiskType: LocalDiskType,
|
|
6668
6464
|
DescribeComputeEnvActivitiesRequest: DescribeComputeEnvActivitiesRequest,
|
|
6669
6465
|
CreateTaskTemplateRequest: CreateTaskTemplateRequest,
|
|
6670
|
-
Job: Job,
|
|
6671
6466
|
DeleteComputeEnvRequest: DeleteComputeEnvRequest,
|
|
6672
6467
|
CreateComputeEnvRequest: CreateComputeEnvRequest,
|
|
6673
6468
|
DescribeComputeEnvCreateInfoResponse: DescribeComputeEnvCreateInfoResponse,
|
|
@@ -6701,7 +6496,6 @@ module.exports = {
|
|
|
6701
6496
|
RedirectInfo: RedirectInfo,
|
|
6702
6497
|
DescribeInstanceCategoriesResponse: DescribeInstanceCategoriesResponse,
|
|
6703
6498
|
ModifyTaskTemplateResponse: ModifyTaskTemplateResponse,
|
|
6704
|
-
SubmitJobResponse: SubmitJobResponse,
|
|
6705
6499
|
InputMapping: InputMapping,
|
|
6706
6500
|
RedirectLocalInfo: RedirectLocalInfo,
|
|
6707
6501
|
DescribeJobSubmitInfoRequest: DescribeJobSubmitInfoRequest,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.412";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -32,12 +32,14 @@ const RestartInstanceResponse = models.RestartInstanceResponse;
|
|
|
32
32
|
const RestartKibanaRequest = models.RestartKibanaRequest;
|
|
33
33
|
const CreateInstanceResponse = models.CreateInstanceResponse;
|
|
34
34
|
const DescribeInstanceLogsRequest = models.DescribeInstanceLogsRequest;
|
|
35
|
+
const UpdateDictionariesRequest = models.UpdateDictionariesRequest;
|
|
35
36
|
const UpdateRequestTargetNodeTypesRequest = models.UpdateRequestTargetNodeTypesRequest;
|
|
36
37
|
const NodeView = models.NodeView;
|
|
37
38
|
const CosBackup = models.CosBackup;
|
|
38
39
|
const TagInfo = models.TagInfo;
|
|
39
40
|
const KeyValue = models.KeyValue;
|
|
40
41
|
const CreateInstanceRequest = models.CreateInstanceRequest;
|
|
42
|
+
const UpdateDictionariesResponse = models.UpdateDictionariesResponse;
|
|
41
43
|
const InstanceInfo = models.InstanceInfo;
|
|
42
44
|
const DeleteInstanceResponse = models.DeleteInstanceResponse;
|
|
43
45
|
const DescribeInstancesResponse = models.DescribeInstancesResponse;
|
|
@@ -252,6 +254,17 @@ Only one of the parameters or parameter combinations above can be passed in at a
|
|
|
252
254
|
this.request("RestartKibana", req, resp, cb);
|
|
253
255
|
}
|
|
254
256
|
|
|
257
|
+
/**
|
|
258
|
+
* This API is used to update ES cluster dictionaries.
|
|
259
|
+
* @param {UpdateDictionariesRequest} req
|
|
260
|
+
* @param {function(string, UpdateDictionariesResponse):void} cb
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
UpdateDictionaries(req, cb) {
|
|
264
|
+
let resp = new UpdateDictionariesResponse();
|
|
265
|
+
this.request("UpdateDictionaries", req, resp, cb);
|
|
266
|
+
}
|
|
267
|
+
|
|
255
268
|
|
|
256
269
|
}
|
|
257
270
|
module.exports = EsClient;
|
|
@@ -792,6 +792,76 @@ class DescribeInstanceLogsRequest extends AbstractModel {
|
|
|
792
792
|
}
|
|
793
793
|
}
|
|
794
794
|
|
|
795
|
+
/**
|
|
796
|
+
* UpdateDictionaries request structure.
|
|
797
|
+
* @class
|
|
798
|
+
*/
|
|
799
|
+
class UpdateDictionariesRequest extends AbstractModel {
|
|
800
|
+
constructor(){
|
|
801
|
+
super();
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
* ES instance ID
|
|
805
|
+
* @type {string || null}
|
|
806
|
+
*/
|
|
807
|
+
this.InstanceId = null;
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* COS address of the main dictionary for the IK analyzer
|
|
811
|
+
* @type {Array.<string> || null}
|
|
812
|
+
*/
|
|
813
|
+
this.IkMainDicts = null;
|
|
814
|
+
|
|
815
|
+
/**
|
|
816
|
+
* COS address of the stopword dictionary for the IK analyzer
|
|
817
|
+
* @type {Array.<string> || null}
|
|
818
|
+
*/
|
|
819
|
+
this.IkStopwords = null;
|
|
820
|
+
|
|
821
|
+
/**
|
|
822
|
+
* COS address of the synonym dictionary
|
|
823
|
+
* @type {Array.<string> || null}
|
|
824
|
+
*/
|
|
825
|
+
this.Synonym = null;
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* COS address of the QQ dictionary
|
|
829
|
+
* @type {Array.<string> || null}
|
|
830
|
+
*/
|
|
831
|
+
this.QQDict = null;
|
|
832
|
+
|
|
833
|
+
/**
|
|
834
|
+
* 0: Install; 1: Delete
|
|
835
|
+
* @type {number || null}
|
|
836
|
+
*/
|
|
837
|
+
this.UpdateType = null;
|
|
838
|
+
|
|
839
|
+
/**
|
|
840
|
+
* Whether to force restart the cluster
|
|
841
|
+
* @type {boolean || null}
|
|
842
|
+
*/
|
|
843
|
+
this.ForceRestart = null;
|
|
844
|
+
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
/**
|
|
848
|
+
* @private
|
|
849
|
+
*/
|
|
850
|
+
deserialize(params) {
|
|
851
|
+
if (!params) {
|
|
852
|
+
return;
|
|
853
|
+
}
|
|
854
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
855
|
+
this.IkMainDicts = 'IkMainDicts' in params ? params.IkMainDicts : null;
|
|
856
|
+
this.IkStopwords = 'IkStopwords' in params ? params.IkStopwords : null;
|
|
857
|
+
this.Synonym = 'Synonym' in params ? params.Synonym : null;
|
|
858
|
+
this.QQDict = 'QQDict' in params ? params.QQDict : null;
|
|
859
|
+
this.UpdateType = 'UpdateType' in params ? params.UpdateType : null;
|
|
860
|
+
this.ForceRestart = 'ForceRestart' in params ? params.ForceRestart : null;
|
|
861
|
+
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
|
|
795
865
|
/**
|
|
796
866
|
* UpdateRequestTargetNodeTypes request structure.
|
|
797
867
|
* @class
|
|
@@ -1340,6 +1410,34 @@ Dedicated primary node disk size in GB, which is optional. If passed in, it can
|
|
|
1340
1410
|
}
|
|
1341
1411
|
}
|
|
1342
1412
|
|
|
1413
|
+
/**
|
|
1414
|
+
* UpdateDictionaries response structure.
|
|
1415
|
+
* @class
|
|
1416
|
+
*/
|
|
1417
|
+
class UpdateDictionariesResponse extends AbstractModel {
|
|
1418
|
+
constructor(){
|
|
1419
|
+
super();
|
|
1420
|
+
|
|
1421
|
+
/**
|
|
1422
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1423
|
+
* @type {string || null}
|
|
1424
|
+
*/
|
|
1425
|
+
this.RequestId = null;
|
|
1426
|
+
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
/**
|
|
1430
|
+
* @private
|
|
1431
|
+
*/
|
|
1432
|
+
deserialize(params) {
|
|
1433
|
+
if (!params) {
|
|
1434
|
+
return;
|
|
1435
|
+
}
|
|
1436
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1437
|
+
|
|
1438
|
+
}
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1343
1441
|
/**
|
|
1344
1442
|
* Instance details
|
|
1345
1443
|
* @class
|
|
@@ -3791,12 +3889,14 @@ module.exports = {
|
|
|
3791
3889
|
RestartKibanaRequest: RestartKibanaRequest,
|
|
3792
3890
|
CreateInstanceResponse: CreateInstanceResponse,
|
|
3793
3891
|
DescribeInstanceLogsRequest: DescribeInstanceLogsRequest,
|
|
3892
|
+
UpdateDictionariesRequest: UpdateDictionariesRequest,
|
|
3794
3893
|
UpdateRequestTargetNodeTypesRequest: UpdateRequestTargetNodeTypesRequest,
|
|
3795
3894
|
NodeView: NodeView,
|
|
3796
3895
|
CosBackup: CosBackup,
|
|
3797
3896
|
TagInfo: TagInfo,
|
|
3798
3897
|
KeyValue: KeyValue,
|
|
3799
3898
|
CreateInstanceRequest: CreateInstanceRequest,
|
|
3899
|
+
UpdateDictionariesResponse: UpdateDictionariesResponse,
|
|
3800
3900
|
InstanceInfo: InstanceInfo,
|
|
3801
3901
|
DeleteInstanceResponse: DeleteInstanceResponse,
|
|
3802
3902
|
DescribeInstancesResponse: DescribeInstancesResponse,
|
|
@@ -25,7 +25,6 @@ const DescribeDeliverBandwidthListResponse = models.DescribeDeliverBandwidthList
|
|
|
25
25
|
const DeleteLiveRecordRuleRequest = models.DeleteLiveRecordRuleRequest;
|
|
26
26
|
const ResumeLiveStreamRequest = models.ResumeLiveStreamRequest;
|
|
27
27
|
const DeleteLiveTranscodeTemplateResponse = models.DeleteLiveTranscodeTemplateResponse;
|
|
28
|
-
const DescribeBillBandwidthAndFluxListResponse = models.DescribeBillBandwidthAndFluxListResponse;
|
|
29
28
|
const TemplateInfo = models.TemplateInfo;
|
|
30
29
|
const DeleteLiveCallbackRuleResponse = models.DeleteLiveCallbackRuleResponse;
|
|
31
30
|
const ResumeDelayLiveStreamRequest = models.ResumeDelayLiveStreamRequest;
|
|
@@ -38,7 +37,6 @@ const DescribeUploadStreamNumsResponse = models.DescribeUploadStreamNumsResponse
|
|
|
38
37
|
const DeleteLiveRecordTemplateRequest = models.DeleteLiveRecordTemplateRequest;
|
|
39
38
|
const DeleteLiveCallbackTemplateResponse = models.DeleteLiveCallbackTemplateResponse;
|
|
40
39
|
const DescribeLiveStreamOnlineListResponse = models.DescribeLiveStreamOnlineListResponse;
|
|
41
|
-
const PushQualityData = models.PushQualityData;
|
|
42
40
|
const UnBindLiveDomainCertResponse = models.UnBindLiveDomainCertResponse;
|
|
43
41
|
const ModifyLivePlayAuthKeyRequest = models.ModifyLivePlayAuthKeyRequest;
|
|
44
42
|
const DescribeLiveDelayInfoListRequest = models.DescribeLiveDelayInfoListRequest;
|
|
@@ -58,7 +56,7 @@ const DomainInfo = models.DomainInfo;
|
|
|
58
56
|
const DescribeLiveTranscodeRulesRequest = models.DescribeLiveTranscodeRulesRequest;
|
|
59
57
|
const DeleteLiveSnapshotRuleRequest = models.DeleteLiveSnapshotRuleRequest;
|
|
60
58
|
const DescribePlayErrorCodeDetailInfoListRequest = models.DescribePlayErrorCodeDetailInfoListRequest;
|
|
61
|
-
const
|
|
59
|
+
const PublishTime = models.PublishTime;
|
|
62
60
|
const CommonMixOutputParams = models.CommonMixOutputParams;
|
|
63
61
|
const DescribeUploadStreamNumsRequest = models.DescribeUploadStreamNumsRequest;
|
|
64
62
|
const DescribeLiveSnapshotRulesResponse = models.DescribeLiveSnapshotRulesResponse;
|
|
@@ -103,7 +101,6 @@ const UpdateLiveWatermarkResponse = models.UpdateLiveWatermarkResponse;
|
|
|
103
101
|
const CreateLiveTranscodeTemplateResponse = models.CreateLiveTranscodeTemplateResponse;
|
|
104
102
|
const BillAreaInfo = models.BillAreaInfo;
|
|
105
103
|
const PlayDataInfoByStream = models.PlayDataInfoByStream;
|
|
106
|
-
const DescribeVisitTopSumInfoListRequest = models.DescribeVisitTopSumInfoListRequest;
|
|
107
104
|
const DayStreamPlayInfo = models.DayStreamPlayInfo;
|
|
108
105
|
const ModifyLivePlayDomainResponse = models.ModifyLivePlayDomainResponse;
|
|
109
106
|
const CancelCommonMixStreamResponse = models.CancelCommonMixStreamResponse;
|
|
@@ -148,12 +145,11 @@ const ModifyLiveCallbackTemplateRequest = models.ModifyLiveCallbackTemplateReque
|
|
|
148
145
|
const DescribeProvinceIspPlayInfoListRequest = models.DescribeProvinceIspPlayInfoListRequest;
|
|
149
146
|
const DescribeLivePlayAuthKeyRequest = models.DescribeLivePlayAuthKeyRequest;
|
|
150
147
|
const DescribeLiveForbidStreamListResponse = models.DescribeLiveForbidStreamListResponse;
|
|
151
|
-
const
|
|
148
|
+
const DescribeVisitTopSumInfoListRequest = models.DescribeVisitTopSumInfoListRequest;
|
|
152
149
|
const DomainInfoList = models.DomainInfoList;
|
|
153
150
|
const DescribeLiveWatermarkResponse = models.DescribeLiveWatermarkResponse;
|
|
154
151
|
const ResumeLiveStreamResponse = models.ResumeLiveStreamResponse;
|
|
155
152
|
const ModifyLiveRecordTemplateRequest = models.ModifyLiveRecordTemplateRequest;
|
|
156
|
-
const DescribeStreamPushInfoListResponse = models.DescribeStreamPushInfoListResponse;
|
|
157
153
|
const DescribeLiveStreamPushInfoListRequest = models.DescribeLiveStreamPushInfoListRequest;
|
|
158
154
|
const DescribeLiveWatermarksResponse = models.DescribeLiveWatermarksResponse;
|
|
159
155
|
const WatermarkInfo = models.WatermarkInfo;
|
|
@@ -163,7 +159,6 @@ const BindLiveDomainCertRequest = models.BindLiveDomainCertRequest;
|
|
|
163
159
|
const DescribeTopClientIpSumInfoListRequest = models.DescribeTopClientIpSumInfoListRequest;
|
|
164
160
|
const CreateLiveCallbackRuleRequest = models.CreateLiveCallbackRuleRequest;
|
|
165
161
|
const DeleteLiveWatermarkRuleResponse = models.DeleteLiveWatermarkRuleResponse;
|
|
166
|
-
const PublishTime = models.PublishTime;
|
|
167
162
|
const ModifyLiveCertResponse = models.ModifyLiveCertResponse;
|
|
168
163
|
const MonitorStreamPlayInfo = models.MonitorStreamPlayInfo;
|
|
169
164
|
const DescribeLiveTranscodeDetailInfoRequest = models.DescribeLiveTranscodeDetailInfoRequest;
|
|
@@ -452,17 +447,6 @@ Note: data can be queried one hour after it is generated. For example, data betw
|
|
|
452
447
|
this.request("ModifyLivePlayDomain", req, resp, cb);
|
|
453
448
|
}
|
|
454
449
|
|
|
455
|
-
/**
|
|
456
|
-
* This API is used to query the upstream push quality data by stream ID, including frame rate, bitrate, elapsed time, and codec of audio and video files.
|
|
457
|
-
* @param {DescribeStreamPushInfoListRequest} req
|
|
458
|
-
* @param {function(string, DescribeStreamPushInfoListResponse):void} cb
|
|
459
|
-
* @public
|
|
460
|
-
*/
|
|
461
|
-
DescribeStreamPushInfoList(req, cb) {
|
|
462
|
-
let resp = new DescribeStreamPushInfoListResponse();
|
|
463
|
-
this.request("DescribeStreamPushInfoList", req, resp, cb);
|
|
464
|
-
}
|
|
465
|
-
|
|
466
450
|
/**
|
|
467
451
|
* This API is used to get the screencapturing rule list.
|
|
468
452
|
* @param {DescribeLiveSnapshotRulesRequest} req
|
|
@@ -1248,17 +1232,6 @@ Note: Up to 10,000 entries can be queried per page. More data can be obtained by
|
|
|
1248
1232
|
this.request("CreateLiveRecordTemplate", req, resp, cb);
|
|
1249
1233
|
}
|
|
1250
1234
|
|
|
1251
|
-
/**
|
|
1252
|
-
* This API is used to query the data of billable LVB bandwidth and traffic.
|
|
1253
|
-
* @param {DescribeBillBandwidthAndFluxListRequest} req
|
|
1254
|
-
* @param {function(string, DescribeBillBandwidthAndFluxListResponse):void} cb
|
|
1255
|
-
* @public
|
|
1256
|
-
*/
|
|
1257
|
-
DescribeBillBandwidthAndFluxList(req, cb) {
|
|
1258
|
-
let resp = new DescribeBillBandwidthAndFluxListResponse();
|
|
1259
|
-
this.request("DescribeBillBandwidthAndFluxList", req, resp, cb);
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
1235
|
/**
|
|
1263
1236
|
* This API is used to disable an LVB domain name.
|
|
1264
1237
|
* @param {ForbidLiveDomainRequest} req
|