tencentcloud-sdk-cfs 3.0.1197 → 3.0.1205
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190719/models.rb +47 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 510cad12e566bb2d5b9a0d7bf37e7c5abb31f64d
|
|
4
|
+
data.tar.gz: 1bfbf826df89012715238eed8125432668f3daac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ee54a56b0c96a384ccf7c9f5bbefa1acac1aa476335bffaaeb16256fd7ab4e88e4b9f7015c4efa39e1c30b885521e8d712a3be2b00ab5e106b4a1d34dc5b898
|
|
7
|
+
data.tar.gz: 88821a530f912c4d81a0f15a6cd9b23483134b7835e5a2d3295b8912c69b5cdeec4fcbc9579ee04b4e1c360155f18318a865c4d39018e40543a43e239dba5cef
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1205
|
data/lib/v20190719/models.rb
CHANGED
|
@@ -955,15 +955,18 @@ module TencentCloud
|
|
|
955
955
|
# @type TaskName: String
|
|
956
956
|
# @param DataFlowId: 数据流动 ID ,该接口可以通过 DescribeDataFlow 查询
|
|
957
957
|
# @type DataFlowId: String
|
|
958
|
+
# @param IsOverwrite: 当CFSTurbo内的文件和外置存储存在同名情况时,是否覆盖。 ture:覆盖 false:不覆盖(同时也不会释放热存数据) 为空时,默认为false
|
|
959
|
+
# @type IsOverwrite: Boolean
|
|
958
960
|
|
|
959
|
-
attr_accessor :FileSystemId, :Type, :TaskPath, :TaskName, :DataFlowId
|
|
961
|
+
attr_accessor :FileSystemId, :Type, :TaskPath, :TaskName, :DataFlowId, :IsOverwrite
|
|
960
962
|
|
|
961
|
-
def initialize(filesystemid=nil, type=nil, taskpath=nil, taskname=nil, dataflowid=nil)
|
|
963
|
+
def initialize(filesystemid=nil, type=nil, taskpath=nil, taskname=nil, dataflowid=nil, isoverwrite=nil)
|
|
962
964
|
@FileSystemId = filesystemid
|
|
963
965
|
@Type = type
|
|
964
966
|
@TaskPath = taskpath
|
|
965
967
|
@TaskName = taskname
|
|
966
968
|
@DataFlowId = dataflowid
|
|
969
|
+
@IsOverwrite = isoverwrite
|
|
967
970
|
end
|
|
968
971
|
|
|
969
972
|
def deserialize(params)
|
|
@@ -972,6 +975,7 @@ module TencentCloud
|
|
|
972
975
|
@TaskPath = params['TaskPath']
|
|
973
976
|
@TaskName = params['TaskName']
|
|
974
977
|
@DataFlowId = params['DataFlowId']
|
|
978
|
+
@IsOverwrite = params['IsOverwrite']
|
|
975
979
|
end
|
|
976
980
|
end
|
|
977
981
|
|
|
@@ -2938,10 +2942,17 @@ module TencentCloud
|
|
|
2938
2942
|
# @type Type: String
|
|
2939
2943
|
# @param DataFlowId: 数据流动Id
|
|
2940
2944
|
# @type DataFlowId: String
|
|
2945
|
+
# @param IsOverwrite: 当CFSTurbo内的文件和外置存储存在同名情况时,是否覆盖。
|
|
2941
2946
|
|
|
2942
|
-
|
|
2947
|
+
# ture:覆盖
|
|
2943
2948
|
|
|
2944
|
-
|
|
2949
|
+
# false:不覆盖(同时也不会释放热存数据)
|
|
2950
|
+
# 为空时,默认为false
|
|
2951
|
+
# @type IsOverwrite: Boolean
|
|
2952
|
+
|
|
2953
|
+
attr_accessor :TaskId, :TaskStatus, :CreationTime, :FinishTime, :FileTotalCount, :FileSuccessedCount, :FileFailedCount, :FileTotalSize, :FileSuccessedSize, :FileFailedSize, :FileTotalList, :FileSuccessedList, :FileFailedList, :FileSystemId, :TaskName, :TaskPath, :Type, :DataFlowId, :IsOverwrite
|
|
2954
|
+
|
|
2955
|
+
def initialize(taskid=nil, taskstatus=nil, creationtime=nil, finishtime=nil, filetotalcount=nil, filesuccessedcount=nil, filefailedcount=nil, filetotalsize=nil, filesuccessedsize=nil, filefailedsize=nil, filetotallist=nil, filesuccessedlist=nil, filefailedlist=nil, filesystemid=nil, taskname=nil, taskpath=nil, type=nil, dataflowid=nil, isoverwrite=nil)
|
|
2945
2956
|
@TaskId = taskid
|
|
2946
2957
|
@TaskStatus = taskstatus
|
|
2947
2958
|
@CreationTime = creationtime
|
|
@@ -2960,6 +2971,7 @@ module TencentCloud
|
|
|
2960
2971
|
@TaskPath = taskpath
|
|
2961
2972
|
@Type = type
|
|
2962
2973
|
@DataFlowId = dataflowid
|
|
2974
|
+
@IsOverwrite = isoverwrite
|
|
2963
2975
|
end
|
|
2964
2976
|
|
|
2965
2977
|
def deserialize(params)
|
|
@@ -2981,6 +2993,7 @@ module TencentCloud
|
|
|
2981
2993
|
@TaskPath = params['TaskPath']
|
|
2982
2994
|
@Type = params['Type']
|
|
2983
2995
|
@DataFlowId = params['DataFlowId']
|
|
2996
|
+
@IsOverwrite = params['IsOverwrite']
|
|
2984
2997
|
end
|
|
2985
2998
|
end
|
|
2986
2999
|
|
|
@@ -3050,16 +3063,34 @@ module TencentCloud
|
|
|
3050
3063
|
# @param FileMinSize: 数据转储文件最小规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
3051
3064
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3052
3065
|
# @type FileMinSize: String
|
|
3066
|
+
# @param PolicyType: 策略类型
|
|
3067
|
+
# @type PolicyType: String
|
|
3068
|
+
# @param ExpireThreshold: 阈值范围[10-90]
|
|
3069
|
+
# @type ExpireThreshold: Integer
|
|
3070
|
+
# @param TargetThreshold: 阈值范围[10-90]
|
|
3071
|
+
# @type TargetThreshold: Integer
|
|
3072
|
+
# @param IsOverwrite: 当CFSTurbo内的文件和外置存储存在同名情况时,是否覆盖。
|
|
3073
|
+
|
|
3074
|
+
# ture:覆盖
|
|
3075
|
+
|
|
3076
|
+
# false:不覆盖(同时也不会释放热存数据)
|
|
3077
|
+
|
|
3078
|
+
# 为空时,默认为false
|
|
3079
|
+
# @type IsOverwrite: Boolean
|
|
3053
3080
|
|
|
3054
|
-
attr_accessor :StorageType, :FileType, :Action, :Interval, :FileMaxSize, :FileMinSize
|
|
3081
|
+
attr_accessor :StorageType, :FileType, :Action, :Interval, :FileMaxSize, :FileMinSize, :PolicyType, :ExpireThreshold, :TargetThreshold, :IsOverwrite
|
|
3055
3082
|
|
|
3056
|
-
def initialize(storagetype=nil, filetype=nil, action=nil, interval=nil, filemaxsize=nil, fileminsize=nil)
|
|
3083
|
+
def initialize(storagetype=nil, filetype=nil, action=nil, interval=nil, filemaxsize=nil, fileminsize=nil, policytype=nil, expirethreshold=nil, targetthreshold=nil, isoverwrite=nil)
|
|
3057
3084
|
@StorageType = storagetype
|
|
3058
3085
|
@FileType = filetype
|
|
3059
3086
|
@Action = action
|
|
3060
3087
|
@Interval = interval
|
|
3061
3088
|
@FileMaxSize = filemaxsize
|
|
3062
3089
|
@FileMinSize = fileminsize
|
|
3090
|
+
@PolicyType = policytype
|
|
3091
|
+
@ExpireThreshold = expirethreshold
|
|
3092
|
+
@TargetThreshold = targetthreshold
|
|
3093
|
+
@IsOverwrite = isoverwrite
|
|
3063
3094
|
end
|
|
3064
3095
|
|
|
3065
3096
|
def deserialize(params)
|
|
@@ -3069,6 +3100,10 @@ module TencentCloud
|
|
|
3069
3100
|
@Interval = params['Interval']
|
|
3070
3101
|
@FileMaxSize = params['FileMaxSize']
|
|
3071
3102
|
@FileMinSize = params['FileMinSize']
|
|
3103
|
+
@PolicyType = params['PolicyType']
|
|
3104
|
+
@ExpireThreshold = params['ExpireThreshold']
|
|
3105
|
+
@TargetThreshold = params['TargetThreshold']
|
|
3106
|
+
@IsOverwrite = params['IsOverwrite']
|
|
3072
3107
|
end
|
|
3073
3108
|
end
|
|
3074
3109
|
|
|
@@ -3526,17 +3561,21 @@ module TencentCloud
|
|
|
3526
3561
|
# @type FileSystemId: String
|
|
3527
3562
|
# @param Path: 目录绝对路径
|
|
3528
3563
|
# @type Path: String
|
|
3564
|
+
# @param DataFlowId: 数据流动Id
|
|
3565
|
+
# @type DataFlowId: String
|
|
3529
3566
|
|
|
3530
|
-
attr_accessor :FileSystemId, :Path
|
|
3567
|
+
attr_accessor :FileSystemId, :Path, :DataFlowId
|
|
3531
3568
|
|
|
3532
|
-
def initialize(filesystemid=nil, path=nil)
|
|
3569
|
+
def initialize(filesystemid=nil, path=nil, dataflowid=nil)
|
|
3533
3570
|
@FileSystemId = filesystemid
|
|
3534
3571
|
@Path = path
|
|
3572
|
+
@DataFlowId = dataflowid
|
|
3535
3573
|
end
|
|
3536
3574
|
|
|
3537
3575
|
def deserialize(params)
|
|
3538
3576
|
@FileSystemId = params['FileSystemId']
|
|
3539
3577
|
@Path = params['Path']
|
|
3578
|
+
@DataFlowId = params['DataFlowId']
|
|
3540
3579
|
end
|
|
3541
3580
|
end
|
|
3542
3581
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cfs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1205
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-01-
|
|
11
|
+
date: 2026-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|