tencentcloud-sdk-cfs 3.0.1162 → 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/models.rb +36 -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: 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/models.rb
CHANGED
|
@@ -1179,10 +1179,26 @@ module TencentCloud
|
|
|
1179
1179
|
# @type CreationTime: String
|
|
1180
1180
|
# @param FileSystemId: 文件系统 ID
|
|
1181
1181
|
# @type FileSystemId: String
|
|
1182
|
+
# @param AutoRefresh: 0:不开启自动更新
|
|
1182
1183
|
|
|
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
|
|
1198
|
+
|
|
1199
|
+
attr_accessor :DataFlowId, :DataFlowName, :SourceStorageType, :SourceStorageAddress, :SourcePath, :TargetPath, :Status, :CreationTime, :FileSystemId, :AutoRefresh, :UserKafkaTopic, :ServerAddr, :UserName, :AutoRefreshStatus, :AutoRefreshTime
|
|
1184
1200
|
|
|
1185
|
-
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)
|
|
1186
1202
|
@DataFlowId = dataflowid
|
|
1187
1203
|
@DataFlowName = dataflowname
|
|
1188
1204
|
@SourceStorageType = sourcestoragetype
|
|
@@ -1192,6 +1208,12 @@ module TencentCloud
|
|
|
1192
1208
|
@Status = status
|
|
1193
1209
|
@CreationTime = creationtime
|
|
1194
1210
|
@FileSystemId = filesystemid
|
|
1211
|
+
@AutoRefresh = autorefresh
|
|
1212
|
+
@UserKafkaTopic = userkafkatopic
|
|
1213
|
+
@ServerAddr = serveraddr
|
|
1214
|
+
@UserName = username
|
|
1215
|
+
@AutoRefreshStatus = autorefreshstatus
|
|
1216
|
+
@AutoRefreshTime = autorefreshtime
|
|
1195
1217
|
end
|
|
1196
1218
|
|
|
1197
1219
|
def deserialize(params)
|
|
@@ -1204,6 +1226,12 @@ module TencentCloud
|
|
|
1204
1226
|
@Status = params['Status']
|
|
1205
1227
|
@CreationTime = params['CreationTime']
|
|
1206
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']
|
|
1207
1235
|
end
|
|
1208
1236
|
end
|
|
1209
1237
|
|
|
@@ -2985,19 +3013,19 @@ module TencentCloud
|
|
|
2985
3013
|
|
|
2986
3014
|
# 生命周期管理策略关联的管理规则
|
|
2987
3015
|
class LifecycleRule < TencentCloud::Common::AbstractModel
|
|
2988
|
-
# @param StorageType:
|
|
3016
|
+
# @param StorageType: 数据转储后的存储类型。其中:InfrequentAccess:低频介质存储;ColdStorage:冷存储。
|
|
2989
3017
|
# @type StorageType: String
|
|
2990
|
-
# @param FileType:
|
|
3018
|
+
# @param FileType: 数据转储文件类型。其中,BIG_FILE:超大文件;STD_FILE:普通文件;SMALL_FILE:小文件;ALL:所有文件。
|
|
2991
3019
|
# @type FileType: String
|
|
2992
|
-
# @param Action:
|
|
3020
|
+
# @param Action: 数据转储行为。其中,Archive:沉降;Noarchive:不沉降。
|
|
2993
3021
|
# @type Action: String
|
|
2994
|
-
# @param Interval:
|
|
3022
|
+
# @param Interval: 数据转储触发时间。由“DEFAULT_ATIME_”与“数字”组成,单位为天。当 Action 为 Noarchive,请保持为空。
|
|
2995
3023
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2996
3024
|
# @type Interval: String
|
|
2997
|
-
# @param FileMaxSize:
|
|
3025
|
+
# @param FileMaxSize: 数据转储文件最大规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
2998
3026
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2999
3027
|
# @type FileMaxSize: String
|
|
3000
|
-
# @param FileMinSize:
|
|
3028
|
+
# @param FileMinSize: 数据转储文件最小规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
3001
3029
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3002
3030
|
# @type FileMinSize: String
|
|
3003
3031
|
|
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
|