tencentcloud-sdk-nodejs-intl-en 3.0.1377 → 3.0.1378
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
CHANGED
|
@@ -254,16 +254,16 @@ class CreateLifecycleDataTaskRequest extends AbstractModel {
|
|
|
254
254
|
this.Type = null;
|
|
255
255
|
|
|
256
256
|
/**
|
|
257
|
-
*
|
|
257
|
+
* Task name.
|
|
258
258
|
* @type {string || null}
|
|
259
259
|
*/
|
|
260
|
-
this.
|
|
260
|
+
this.TaskName = null;
|
|
261
261
|
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* The path or file to be settled supports passing only one path and cannot be empty.
|
|
264
264
|
* @type {string || null}
|
|
265
265
|
*/
|
|
266
|
-
this.
|
|
266
|
+
this.TaskPath = null;
|
|
267
267
|
|
|
268
268
|
/**
|
|
269
269
|
* Data flow ID. this api can be accessed through DescribeDataFlow.
|
|
@@ -288,8 +288,8 @@ class CreateLifecycleDataTaskRequest extends AbstractModel {
|
|
|
288
288
|
}
|
|
289
289
|
this.FileSystemId = 'FileSystemId' in params ? params.FileSystemId : null;
|
|
290
290
|
this.Type = 'Type' in params ? params.Type : null;
|
|
291
|
-
this.TaskPath = 'TaskPath' in params ? params.TaskPath : null;
|
|
292
291
|
this.TaskName = 'TaskName' in params ? params.TaskName : null;
|
|
292
|
+
this.TaskPath = 'TaskPath' in params ? params.TaskPath : null;
|
|
293
293
|
this.DataFlowId = 'DataFlowId' in params ? params.DataFlowId : null;
|
|
294
294
|
this.IsOverwrite = 'IsOverwrite' in params ? params.IsOverwrite : null;
|
|
295
295
|
|
|
@@ -4625,6 +4625,12 @@ class CreateCfsFileSystemRequest extends AbstractModel {
|
|
|
4625
4625
|
*/
|
|
4626
4626
|
this.FsName = null;
|
|
4627
4627
|
|
|
4628
|
+
/**
|
|
4629
|
+
*
|
|
4630
|
+
* @type {boolean || null}
|
|
4631
|
+
*/
|
|
4632
|
+
this.Encrypted = null;
|
|
4633
|
+
|
|
4628
4634
|
/**
|
|
4629
4635
|
* File system tag
|
|
4630
4636
|
* @type {Array.<TagInfo> || null}
|
|
@@ -4711,6 +4717,7 @@ Enhanced: creates enhanced metadata.
|
|
|
4711
4717
|
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
4712
4718
|
this.MountIP = 'MountIP' in params ? params.MountIP : null;
|
|
4713
4719
|
this.FsName = 'FsName' in params ? params.FsName : null;
|
|
4720
|
+
this.Encrypted = 'Encrypted' in params ? params.Encrypted : null;
|
|
4714
4721
|
|
|
4715
4722
|
if (params.ResourceTags) {
|
|
4716
4723
|
this.ResourceTags = new Array();
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1378";
|
|
2
2
|
module.exports = sdkVersion
|