tencentcloud-sdk-nodejs-intl-en 3.0.1278 → 3.0.1280
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/ccc/v20200210/ccc_client.js +31 -1
- package/tencentcloud/ccc/v20200210/models.js +522 -110
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +140 -56
- package/tencentcloud/ckafka/v20190819/models.js +2185 -1109
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cvm/v20170312/cvm_client.js +0 -1
- package/tencentcloud/cvm/v20170312/models.js +30 -18
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/lkeap/v20240522/lkeap_client.js +25 -11
- package/tencentcloud/lkeap/v20240522/models.js +454 -264
- package/tencentcloud/mdl/v20200326/models.js +29 -1
- package/tencentcloud/mps/v20190612/models.js +1630 -476
- package/tencentcloud/mps/v20190612/mps_client.js +16 -3
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vm/index.js +1 -1
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/vpc/v20170312/models.js +41 -26
- package/tencentcloud/vpc/v20170312/vpc_client.js +1 -2
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -3216,7 +3216,7 @@ class TimingSettingsReq extends AbstractModel {
|
|
|
3216
3216
|
super();
|
|
3217
3217
|
|
|
3218
3218
|
/**
|
|
3219
|
-
* Event trigger type. Valid values: `FIXED_TIME`, `IMMEDIATE`. This parameter is required if `EventType` is `INPUT_SWITCH`.
|
|
3219
|
+
* Event trigger type. Valid values: `FIXED_TIME`, `IMMEDIATE`,`FIXED_PTS `. This parameter is required if `EventType` is `INPUT_SWITCH`.
|
|
3220
3220
|
* @type {string || null}
|
|
3221
3221
|
*/
|
|
3222
3222
|
this.StartType = null;
|
|
@@ -3242,6 +3242,12 @@ It specifies the recording end time in UTC format (e.g., `2020-01-01T12:00:00Z`)
|
|
|
3242
3242
|
*/
|
|
3243
3243
|
this.EndTime = null;
|
|
3244
3244
|
|
|
3245
|
+
/**
|
|
3246
|
+
* Effective only when StartType is FIXED_PTS, with a range of 1-8589934592
|
|
3247
|
+
* @type {number || null}
|
|
3248
|
+
*/
|
|
3249
|
+
this.PTS = null;
|
|
3250
|
+
|
|
3245
3251
|
}
|
|
3246
3252
|
|
|
3247
3253
|
/**
|
|
@@ -3255,6 +3261,7 @@ It specifies the recording end time in UTC format (e.g., `2020-01-01T12:00:00Z`)
|
|
|
3255
3261
|
this.Time = 'Time' in params ? params.Time : null;
|
|
3256
3262
|
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
3257
3263
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
3264
|
+
this.PTS = 'PTS' in params ? params.PTS : null;
|
|
3258
3265
|
|
|
3259
3266
|
}
|
|
3260
3267
|
}
|
|
@@ -4084,6 +4091,12 @@ class EventSettingsResp extends AbstractModel {
|
|
|
4084
4091
|
*/
|
|
4085
4092
|
this.InputAttachment = null;
|
|
4086
4093
|
|
|
4094
|
+
/**
|
|
4095
|
+
* When the type is FIXED_PTS, it is mandatory and defaults to 0
|
|
4096
|
+
* @type {number || null}
|
|
4097
|
+
*/
|
|
4098
|
+
this.PipelineId = null;
|
|
4099
|
+
|
|
4087
4100
|
/**
|
|
4088
4101
|
* Name of the output group attached. This parameter is not empty if `EventType` is `TIMED_RECORD`.
|
|
4089
4102
|
* @type {string || null}
|
|
@@ -4155,6 +4168,7 @@ class EventSettingsResp extends AbstractModel {
|
|
|
4155
4168
|
}
|
|
4156
4169
|
this.EventType = 'EventType' in params ? params.EventType : null;
|
|
4157
4170
|
this.InputAttachment = 'InputAttachment' in params ? params.InputAttachment : null;
|
|
4171
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
4158
4172
|
this.OutputGroupName = 'OutputGroupName' in params ? params.OutputGroupName : null;
|
|
4159
4173
|
this.ManifestName = 'ManifestName' in params ? params.ManifestName : null;
|
|
4160
4174
|
|
|
@@ -5857,6 +5871,12 @@ class EventSettingsReq extends AbstractModel {
|
|
|
5857
5871
|
*/
|
|
5858
5872
|
this.InputAttachment = null;
|
|
5859
5873
|
|
|
5874
|
+
/**
|
|
5875
|
+
* When the type is FIXED_PTS, it is mandatory and defaults to 0
|
|
5876
|
+
* @type {number || null}
|
|
5877
|
+
*/
|
|
5878
|
+
this.PipelineId = null;
|
|
5879
|
+
|
|
5860
5880
|
/**
|
|
5861
5881
|
* Name of the output group to attach. This parameter is required if `EventType` is `TIMED_RECORD`.
|
|
5862
5882
|
* @type {string || null}
|
|
@@ -5928,6 +5948,7 @@ class EventSettingsReq extends AbstractModel {
|
|
|
5928
5948
|
}
|
|
5929
5949
|
this.EventType = 'EventType' in params ? params.EventType : null;
|
|
5930
5950
|
this.InputAttachment = 'InputAttachment' in params ? params.InputAttachment : null;
|
|
5951
|
+
this.PipelineId = 'PipelineId' in params ? params.PipelineId : null;
|
|
5931
5952
|
this.OutputGroupName = 'OutputGroupName' in params ? params.OutputGroupName : null;
|
|
5932
5953
|
this.ManifestName = 'ManifestName' in params ? params.ManifestName : null;
|
|
5933
5954
|
|
|
@@ -7041,6 +7062,12 @@ It indicates the end time for recording in UTC format (e.g., `2020-01-01T12:00:0
|
|
|
7041
7062
|
*/
|
|
7042
7063
|
this.EndTime = null;
|
|
7043
7064
|
|
|
7065
|
+
/**
|
|
7066
|
+
* Effective only when StartType is FIXED_PTS, with a range of 1-8589934592
|
|
7067
|
+
* @type {number || null}
|
|
7068
|
+
*/
|
|
7069
|
+
this.PTS = null;
|
|
7070
|
+
|
|
7044
7071
|
}
|
|
7045
7072
|
|
|
7046
7073
|
/**
|
|
@@ -7054,6 +7081,7 @@ It indicates the end time for recording in UTC format (e.g., `2020-01-01T12:00:0
|
|
|
7054
7081
|
this.Time = 'Time' in params ? params.Time : null;
|
|
7055
7082
|
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
7056
7083
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
7084
|
+
this.PTS = 'PTS' in params ? params.PTS : null;
|
|
7057
7085
|
|
|
7058
7086
|
}
|
|
7059
7087
|
}
|