tencentcloud-sdk-cfs 3.0.1161 → 3.0.1162

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e60f97efad6e5880345481796dd784689f8057af
4
- data.tar.gz: 2f1fc8420cbf02be7c9ce09143a4d05fe1a735bb
3
+ metadata.gz: 920da36111086c884dd58c616daa7a10bcd7a7f7
4
+ data.tar.gz: c57cc6ca6fe9c2b567da095edb507aa03770123c
5
5
  SHA512:
6
- metadata.gz: be88819b7220b54b6d358824675b92d6c6f7aa229a80dd0b52a430b9f76d2b4310c3a9e55a371c991e1b54ef702b66205602c9c06d104a18102e1b7633123712
7
- data.tar.gz: 324a2ae1f9c3184ce87f383c5fca1a3c0c6664d39e7061603705e0ea2d007cc032ac10a3ea7701f019ca2a61b445f39906f4004b18344382ace4a5a39e81b359
6
+ metadata.gz: 1018d32625a965dd4016b7a169778e39bd6f66452f27d311828bacdb46adbff559888f4ad806b3935a16db26d167fbdb1f9558c8604c4b7f285c8e0bc2c0f91f
7
+ data.tar.gz: 8900745c6823998cedf8650630c88ab9b7b57115ddd792741a124d4e9a9241022d41d2389f2f4ff4312a074cd130c9ae745a6044e3f8725bb86a280d48423bdc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1161
1
+ 3.0.1162
@@ -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`
@@ -855,10 +855,20 @@ module TencentCloud
855
855
  # @type SecretKey: String
856
856
  # @param DataFlowName: 数据流动名称;支持不超过64字符长度,支持中文、数字、_、-
857
857
  # @type DataFlowName: String
858
-
859
- attr_accessor :FileSystemId, :SourceStorageType, :SourceStorageAddress, :SourcePath, :TargetPath, :SecretId, :SecretKey, :DataFlowName
860
-
861
- def initialize(filesystemid=nil, sourcestoragetype=nil, sourcestorageaddress=nil, sourcepath=nil, targetpath=nil, secretid=nil, secretkey=nil, dataflowname=nil)
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
 
@@ -2117,11 +2137,11 @@ module TencentCloud
2117
2137
 
2118
2138
  # DescribeLifecycleDataTask请求参数结构体
2119
2139
  class DescribeLifecycleDataTaskRequest < TencentCloud::Common::AbstractModel
2120
- # @param StartTime: 开始时间
2140
+ # @param StartTime: 开始时间。须早于 EndTime ,仅支持查询最近3个月内的任务数据。
2121
2141
  # @type StartTime: String
2122
- # @param EndTime: 结束时间
2142
+ # @param EndTime: 结束时间。须晚于 StartTime ,仅支持查询最近3个月内的任务数据。
2123
2143
  # @type EndTime: String
2124
- # @param TaskId: 任务ID
2144
+ # @param TaskId: 任务ID
2125
2145
  # @type TaskId: String
2126
2146
  # @param Offset: Offset 分页码
2127
2147
  # @type Offset: Integer
@@ -2129,16 +2149,19 @@ module TencentCloud
2129
2149
  # @type Limit: Integer
2130
2150
  # @param Filters: 过滤条件,TaskName,FileSystemId,Type
2131
2151
  # @type Filters: Array
2152
+ # @param CfsVersion: 文件系统版本;v3.1: pcfs/hifs v4.0:Turbo
2153
+ # @type CfsVersion: String
2132
2154
 
2133
- attr_accessor :StartTime, :EndTime, :TaskId, :Offset, :Limit, :Filters
2155
+ attr_accessor :StartTime, :EndTime, :TaskId, :Offset, :Limit, :Filters, :CfsVersion
2134
2156
 
2135
- def initialize(starttime=nil, endtime=nil, taskid=nil, offset=nil, limit=nil, filters=nil)
2157
+ def initialize(starttime=nil, endtime=nil, taskid=nil, offset=nil, limit=nil, filters=nil, cfsversion=nil)
2136
2158
  @StartTime = starttime
2137
2159
  @EndTime = endtime
2138
2160
  @TaskId = taskid
2139
2161
  @Offset = offset
2140
2162
  @Limit = limit
2141
2163
  @Filters = filters
2164
+ @CfsVersion = cfsversion
2142
2165
  end
2143
2166
 
2144
2167
  def deserialize(params)
@@ -2155,6 +2178,7 @@ module TencentCloud
2155
2178
  @Filters << filter_tmp
2156
2179
  end
2157
2180
  end
2181
+ @CfsVersion = params['CfsVersion']
2158
2182
  end
2159
2183
  end
2160
2184
 
@@ -3126,15 +3150,30 @@ module TencentCloud
3126
3150
  # @type SecretId: String
3127
3151
  # @param SecretKey: 密钥 key
3128
3152
  # @type SecretKey: String
3129
-
3130
- attr_accessor :DataFlowId, :FileSystemId, :DataFlowName, :SecretId, :SecretKey
3131
-
3132
- def initialize(dataflowid=nil, filesystemid=nil, dataflowname=nil, secretid=nil, secretkey=nil)
3153
+ # @param UserKafkaTopic: KafkaConsumer 消费时使用的Topic参数
3154
+ # @type UserKafkaTopic: String
3155
+ # @param ServerAddr: 服务地址
3156
+ # @type ServerAddr: String
3157
+ # @param UserName: name
3158
+ # @type UserName: String
3159
+ # @param Password: Kafka消费用户密码
3160
+ # @type Password: String
3161
+ # @param AutoRefresh: 元数据增量更新开关;1开启,0关闭
3162
+ # @type AutoRefresh: Integer
3163
+
3164
+ attr_accessor :DataFlowId, :FileSystemId, :DataFlowName, :SecretId, :SecretKey, :UserKafkaTopic, :ServerAddr, :UserName, :Password, :AutoRefresh
3165
+
3166
+ def initialize(dataflowid=nil, filesystemid=nil, dataflowname=nil, secretid=nil, secretkey=nil, userkafkatopic=nil, serveraddr=nil, username=nil, password=nil, autorefresh=nil)
3133
3167
  @DataFlowId = dataflowid
3134
3168
  @FileSystemId = filesystemid
3135
3169
  @DataFlowName = dataflowname
3136
3170
  @SecretId = secretid
3137
3171
  @SecretKey = secretkey
3172
+ @UserKafkaTopic = userkafkatopic
3173
+ @ServerAddr = serveraddr
3174
+ @UserName = username
3175
+ @Password = password
3176
+ @AutoRefresh = autorefresh
3138
3177
  end
3139
3178
 
3140
3179
  def deserialize(params)
@@ -3143,6 +3182,11 @@ module TencentCloud
3143
3182
  @DataFlowName = params['DataFlowName']
3144
3183
  @SecretId = params['SecretId']
3145
3184
  @SecretKey = params['SecretKey']
3185
+ @UserKafkaTopic = params['UserKafkaTopic']
3186
+ @ServerAddr = params['ServerAddr']
3187
+ @UserName = params['UserName']
3188
+ @Password = params['Password']
3189
+ @AutoRefresh = params['AutoRefresh']
3146
3190
  end
3147
3191
  end
3148
3192
 
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.1161
4
+ version: 3.0.1162
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-04 00:00:00.000000000 Z
11
+ date: 2025-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common