tencentcloud-sdk-cfs 3.0.1161 → 3.0.1163
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/client.rb +1 -1
- data/lib/v20190719/models.rb +93 -21
- 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: ff2d5d444afda3f4630c29f7838ebe90c29cc388
|
|
4
|
+
data.tar.gz: a402670c339f459058be8b340a2aad5cd4037110
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b3c1dc5a6c199d6111450e5f1f8d6d486a7bf20984f4b8e7fb801753524a37d056675a36097809fb1515d1fe81d85c3c810cecb72f788596bc82b2822a7dadd
|
|
7
|
+
data.tar.gz: 61551611d6b1aa59031f287008717464ad989aaa25b0619c2abe04eb3bfaa5b61968c424a14c08b68d1adcd4726de3ff42d01ceaa87fb91edbc75b572fd4a173
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1163
|
data/lib/v20190719/client.rb
CHANGED
|
@@ -821,7 +821,7 @@ module TencentCloud
|
|
|
821
821
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
822
822
|
end
|
|
823
823
|
|
|
824
|
-
#
|
|
824
|
+
# 查询生命周期任务的接口。仅支持查询最近三个月内的任务数据。
|
|
825
825
|
|
|
826
826
|
# @param request: Request instance for DescribeLifecycleDataTask.
|
|
827
827
|
# @type request: :class:`Tencentcloud::cfs::V20190719::DescribeLifecycleDataTaskRequest`
|
data/lib/v20190719/models.rb
CHANGED
|
@@ -855,10 +855,20 @@ module TencentCloud
|
|
|
855
855
|
# @type SecretKey: String
|
|
856
856
|
# @param DataFlowName: 数据流动名称;支持不超过64字符长度,支持中文、数字、_、-
|
|
857
857
|
# @type DataFlowName: String
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
858
|
+
# @param AutoRefresh: 0:不开启自动更新 1:开启自动更新
|
|
859
|
+
# @type AutoRefresh: Integer
|
|
860
|
+
# @param UserKafkaTopic: KafkaConsumer 消费时使用的Topic参数
|
|
861
|
+
# @type UserKafkaTopic: String
|
|
862
|
+
# @param ServerAddr: 服务地址 示例值:kafkaconsumer-ap-beijing.cls.tencentyun.com:9095
|
|
863
|
+
# @type ServerAddr: String
|
|
864
|
+
# @param UserName: Kafka消费用户名.示例值:name
|
|
865
|
+
# @type UserName: String
|
|
866
|
+
# @param Password: Kafka消费用户密码。默认${SecretId}#${SecretKey}。
|
|
867
|
+
# @type Password: String
|
|
868
|
+
|
|
869
|
+
attr_accessor :FileSystemId, :SourceStorageType, :SourceStorageAddress, :SourcePath, :TargetPath, :SecretId, :SecretKey, :DataFlowName, :AutoRefresh, :UserKafkaTopic, :ServerAddr, :UserName, :Password
|
|
870
|
+
|
|
871
|
+
def initialize(filesystemid=nil, sourcestoragetype=nil, sourcestorageaddress=nil, sourcepath=nil, targetpath=nil, secretid=nil, secretkey=nil, dataflowname=nil, autorefresh=nil, userkafkatopic=nil, serveraddr=nil, username=nil, password=nil)
|
|
862
872
|
@FileSystemId = filesystemid
|
|
863
873
|
@SourceStorageType = sourcestoragetype
|
|
864
874
|
@SourceStorageAddress = sourcestorageaddress
|
|
@@ -867,6 +877,11 @@ module TencentCloud
|
|
|
867
877
|
@SecretId = secretid
|
|
868
878
|
@SecretKey = secretkey
|
|
869
879
|
@DataFlowName = dataflowname
|
|
880
|
+
@AutoRefresh = autorefresh
|
|
881
|
+
@UserKafkaTopic = userkafkatopic
|
|
882
|
+
@ServerAddr = serveraddr
|
|
883
|
+
@UserName = username
|
|
884
|
+
@Password = password
|
|
870
885
|
end
|
|
871
886
|
|
|
872
887
|
def deserialize(params)
|
|
@@ -878,6 +893,11 @@ module TencentCloud
|
|
|
878
893
|
@SecretId = params['SecretId']
|
|
879
894
|
@SecretKey = params['SecretKey']
|
|
880
895
|
@DataFlowName = params['DataFlowName']
|
|
896
|
+
@AutoRefresh = params['AutoRefresh']
|
|
897
|
+
@UserKafkaTopic = params['UserKafkaTopic']
|
|
898
|
+
@ServerAddr = params['ServerAddr']
|
|
899
|
+
@UserName = params['UserName']
|
|
900
|
+
@Password = params['Password']
|
|
881
901
|
end
|
|
882
902
|
end
|
|
883
903
|
|
|
@@ -1159,10 +1179,26 @@ module TencentCloud
|
|
|
1159
1179
|
# @type CreationTime: String
|
|
1160
1180
|
# @param FileSystemId: 文件系统 ID
|
|
1161
1181
|
# @type FileSystemId: String
|
|
1182
|
+
# @param AutoRefresh: 0:不开启自动更新
|
|
1183
|
+
|
|
1184
|
+
# 1:开启自动更新
|
|
1185
|
+
# @type AutoRefresh: Integer
|
|
1186
|
+
# @param UserKafkaTopic: KafkaConsumer 消费时使用的Topic参数
|
|
1187
|
+
# @type UserKafkaTopic: String
|
|
1188
|
+
# @param ServerAddr: 服务地址
|
|
1189
|
+
# @type ServerAddr: String
|
|
1190
|
+
# @param UserName: Kafka消费用户名
|
|
1191
|
+
# @type UserName: String
|
|
1192
|
+
# @param AutoRefreshStatus: 自动刷新的状态,available:已生效
|
|
1193
|
+
# pending:配置中
|
|
1194
|
+
# unavailable:失效
|
|
1195
|
+
# @type AutoRefreshStatus: String
|
|
1196
|
+
# @param AutoRefreshTime: 自动刷新开启时间
|
|
1197
|
+
# @type AutoRefreshTime: String
|
|
1162
1198
|
|
|
1163
|
-
attr_accessor :DataFlowId, :DataFlowName, :SourceStorageType, :SourceStorageAddress, :SourcePath, :TargetPath, :Status, :CreationTime, :FileSystemId
|
|
1199
|
+
attr_accessor :DataFlowId, :DataFlowName, :SourceStorageType, :SourceStorageAddress, :SourcePath, :TargetPath, :Status, :CreationTime, :FileSystemId, :AutoRefresh, :UserKafkaTopic, :ServerAddr, :UserName, :AutoRefreshStatus, :AutoRefreshTime
|
|
1164
1200
|
|
|
1165
|
-
def initialize(dataflowid=nil, dataflowname=nil, sourcestoragetype=nil, sourcestorageaddress=nil, sourcepath=nil, targetpath=nil, status=nil, creationtime=nil, filesystemid=nil)
|
|
1201
|
+
def initialize(dataflowid=nil, dataflowname=nil, sourcestoragetype=nil, sourcestorageaddress=nil, sourcepath=nil, targetpath=nil, status=nil, creationtime=nil, filesystemid=nil, autorefresh=nil, userkafkatopic=nil, serveraddr=nil, username=nil, autorefreshstatus=nil, autorefreshtime=nil)
|
|
1166
1202
|
@DataFlowId = dataflowid
|
|
1167
1203
|
@DataFlowName = dataflowname
|
|
1168
1204
|
@SourceStorageType = sourcestoragetype
|
|
@@ -1172,6 +1208,12 @@ module TencentCloud
|
|
|
1172
1208
|
@Status = status
|
|
1173
1209
|
@CreationTime = creationtime
|
|
1174
1210
|
@FileSystemId = filesystemid
|
|
1211
|
+
@AutoRefresh = autorefresh
|
|
1212
|
+
@UserKafkaTopic = userkafkatopic
|
|
1213
|
+
@ServerAddr = serveraddr
|
|
1214
|
+
@UserName = username
|
|
1215
|
+
@AutoRefreshStatus = autorefreshstatus
|
|
1216
|
+
@AutoRefreshTime = autorefreshtime
|
|
1175
1217
|
end
|
|
1176
1218
|
|
|
1177
1219
|
def deserialize(params)
|
|
@@ -1184,6 +1226,12 @@ module TencentCloud
|
|
|
1184
1226
|
@Status = params['Status']
|
|
1185
1227
|
@CreationTime = params['CreationTime']
|
|
1186
1228
|
@FileSystemId = params['FileSystemId']
|
|
1229
|
+
@AutoRefresh = params['AutoRefresh']
|
|
1230
|
+
@UserKafkaTopic = params['UserKafkaTopic']
|
|
1231
|
+
@ServerAddr = params['ServerAddr']
|
|
1232
|
+
@UserName = params['UserName']
|
|
1233
|
+
@AutoRefreshStatus = params['AutoRefreshStatus']
|
|
1234
|
+
@AutoRefreshTime = params['AutoRefreshTime']
|
|
1187
1235
|
end
|
|
1188
1236
|
end
|
|
1189
1237
|
|
|
@@ -2117,11 +2165,11 @@ module TencentCloud
|
|
|
2117
2165
|
|
|
2118
2166
|
# DescribeLifecycleDataTask请求参数结构体
|
|
2119
2167
|
class DescribeLifecycleDataTaskRequest < TencentCloud::Common::AbstractModel
|
|
2120
|
-
# @param StartTime:
|
|
2168
|
+
# @param StartTime: 开始时间。须早于 EndTime ,仅支持查询最近3个月内的任务数据。
|
|
2121
2169
|
# @type StartTime: String
|
|
2122
|
-
# @param EndTime:
|
|
2170
|
+
# @param EndTime: 结束时间。须晚于 StartTime ,仅支持查询最近3个月内的任务数据。
|
|
2123
2171
|
# @type EndTime: String
|
|
2124
|
-
# @param TaskId:
|
|
2172
|
+
# @param TaskId: 任务ID
|
|
2125
2173
|
# @type TaskId: String
|
|
2126
2174
|
# @param Offset: Offset 分页码
|
|
2127
2175
|
# @type Offset: Integer
|
|
@@ -2129,16 +2177,19 @@ module TencentCloud
|
|
|
2129
2177
|
# @type Limit: Integer
|
|
2130
2178
|
# @param Filters: 过滤条件,TaskName,FileSystemId,Type
|
|
2131
2179
|
# @type Filters: Array
|
|
2180
|
+
# @param CfsVersion: 文件系统版本;v3.1: pcfs/hifs v4.0:Turbo
|
|
2181
|
+
# @type CfsVersion: String
|
|
2132
2182
|
|
|
2133
|
-
attr_accessor :StartTime, :EndTime, :TaskId, :Offset, :Limit, :Filters
|
|
2183
|
+
attr_accessor :StartTime, :EndTime, :TaskId, :Offset, :Limit, :Filters, :CfsVersion
|
|
2134
2184
|
|
|
2135
|
-
def initialize(starttime=nil, endtime=nil, taskid=nil, offset=nil, limit=nil, filters=nil)
|
|
2185
|
+
def initialize(starttime=nil, endtime=nil, taskid=nil, offset=nil, limit=nil, filters=nil, cfsversion=nil)
|
|
2136
2186
|
@StartTime = starttime
|
|
2137
2187
|
@EndTime = endtime
|
|
2138
2188
|
@TaskId = taskid
|
|
2139
2189
|
@Offset = offset
|
|
2140
2190
|
@Limit = limit
|
|
2141
2191
|
@Filters = filters
|
|
2192
|
+
@CfsVersion = cfsversion
|
|
2142
2193
|
end
|
|
2143
2194
|
|
|
2144
2195
|
def deserialize(params)
|
|
@@ -2155,6 +2206,7 @@ module TencentCloud
|
|
|
2155
2206
|
@Filters << filter_tmp
|
|
2156
2207
|
end
|
|
2157
2208
|
end
|
|
2209
|
+
@CfsVersion = params['CfsVersion']
|
|
2158
2210
|
end
|
|
2159
2211
|
end
|
|
2160
2212
|
|
|
@@ -2961,19 +3013,19 @@ module TencentCloud
|
|
|
2961
3013
|
|
|
2962
3014
|
# 生命周期管理策略关联的管理规则
|
|
2963
3015
|
class LifecycleRule < TencentCloud::Common::AbstractModel
|
|
2964
|
-
# @param StorageType:
|
|
3016
|
+
# @param StorageType: 数据转储后的存储类型。其中:InfrequentAccess:低频介质存储;ColdStorage:冷存储。
|
|
2965
3017
|
# @type StorageType: String
|
|
2966
|
-
# @param FileType:
|
|
3018
|
+
# @param FileType: 数据转储文件类型。其中,BIG_FILE:超大文件;STD_FILE:普通文件;SMALL_FILE:小文件;ALL:所有文件。
|
|
2967
3019
|
# @type FileType: String
|
|
2968
|
-
# @param Action:
|
|
3020
|
+
# @param Action: 数据转储行为。其中,Archive:沉降;Noarchive:不沉降。
|
|
2969
3021
|
# @type Action: String
|
|
2970
|
-
# @param Interval:
|
|
3022
|
+
# @param Interval: 数据转储触发时间。由“DEFAULT_ATIME_”与“数字”组成,单位为天。当 Action 为 Noarchive,请保持为空。
|
|
2971
3023
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2972
3024
|
# @type Interval: String
|
|
2973
|
-
# @param FileMaxSize:
|
|
3025
|
+
# @param FileMaxSize: 数据转储文件最大规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
2974
3026
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2975
3027
|
# @type FileMaxSize: String
|
|
2976
|
-
# @param FileMinSize:
|
|
3028
|
+
# @param FileMinSize: 数据转储文件最小规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
2977
3029
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2978
3030
|
# @type FileMinSize: String
|
|
2979
3031
|
|
|
@@ -3126,15 +3178,30 @@ module TencentCloud
|
|
|
3126
3178
|
# @type SecretId: String
|
|
3127
3179
|
# @param SecretKey: 密钥 key
|
|
3128
3180
|
# @type SecretKey: String
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3181
|
+
# @param UserKafkaTopic: KafkaConsumer 消费时使用的Topic参数
|
|
3182
|
+
# @type UserKafkaTopic: String
|
|
3183
|
+
# @param ServerAddr: 服务地址
|
|
3184
|
+
# @type ServerAddr: String
|
|
3185
|
+
# @param UserName: name
|
|
3186
|
+
# @type UserName: String
|
|
3187
|
+
# @param Password: Kafka消费用户密码
|
|
3188
|
+
# @type Password: String
|
|
3189
|
+
# @param AutoRefresh: 元数据增量更新开关;1开启,0关闭
|
|
3190
|
+
# @type AutoRefresh: Integer
|
|
3191
|
+
|
|
3192
|
+
attr_accessor :DataFlowId, :FileSystemId, :DataFlowName, :SecretId, :SecretKey, :UserKafkaTopic, :ServerAddr, :UserName, :Password, :AutoRefresh
|
|
3193
|
+
|
|
3194
|
+
def initialize(dataflowid=nil, filesystemid=nil, dataflowname=nil, secretid=nil, secretkey=nil, userkafkatopic=nil, serveraddr=nil, username=nil, password=nil, autorefresh=nil)
|
|
3133
3195
|
@DataFlowId = dataflowid
|
|
3134
3196
|
@FileSystemId = filesystemid
|
|
3135
3197
|
@DataFlowName = dataflowname
|
|
3136
3198
|
@SecretId = secretid
|
|
3137
3199
|
@SecretKey = secretkey
|
|
3200
|
+
@UserKafkaTopic = userkafkatopic
|
|
3201
|
+
@ServerAddr = serveraddr
|
|
3202
|
+
@UserName = username
|
|
3203
|
+
@Password = password
|
|
3204
|
+
@AutoRefresh = autorefresh
|
|
3138
3205
|
end
|
|
3139
3206
|
|
|
3140
3207
|
def deserialize(params)
|
|
@@ -3143,6 +3210,11 @@ module TencentCloud
|
|
|
3143
3210
|
@DataFlowName = params['DataFlowName']
|
|
3144
3211
|
@SecretId = params['SecretId']
|
|
3145
3212
|
@SecretKey = params['SecretKey']
|
|
3213
|
+
@UserKafkaTopic = params['UserKafkaTopic']
|
|
3214
|
+
@ServerAddr = params['ServerAddr']
|
|
3215
|
+
@UserName = params['UserName']
|
|
3216
|
+
@Password = params['Password']
|
|
3217
|
+
@AutoRefresh = params['AutoRefresh']
|
|
3146
3218
|
end
|
|
3147
3219
|
end
|
|
3148
3220
|
|
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.1163
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|