tencentcloud-sdk-cfs 3.0.650 → 3.0.651
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 +16 -4
- 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: 1c7d0f2055ebc1f7622fbdb183b310c53b7c0ebe
|
4
|
+
data.tar.gz: 584b2e155f277db81270b312a794c93801fc2881
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58146740aaee8b7d8948eace66eb70b510add65249385ed253947ff9581f162676d49026adec7f2de22683a165865c819cc2a17442e9ae1ada2bae4fdd3367d8
|
7
|
+
data.tar.gz: 65439c2ab1b1ece98012accfb4e0aa6299c6a9747606bf74924054c7ac3521dfdcca0209736072871bbfe5be4a74e45b2b3eb191ef23d05e60ca925eda802645
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.651
|
data/lib/v20190719/models.rb
CHANGED
@@ -1225,15 +1225,23 @@ module TencentCloud
|
|
1225
1225
|
class DescribeCfsFileSystemClientsRequest < TencentCloud::Common::AbstractModel
|
1226
1226
|
# @param FileSystemId: 文件系统 ID。
|
1227
1227
|
# @type FileSystemId: String
|
1228
|
+
# @param Offset: Offset 分页码
|
1229
|
+
# @type Offset: Integer
|
1230
|
+
# @param Limit: Limit 页面大小
|
1231
|
+
# @type Limit: Integer
|
1228
1232
|
|
1229
|
-
attr_accessor :FileSystemId
|
1233
|
+
attr_accessor :FileSystemId, :Offset, :Limit
|
1230
1234
|
|
1231
|
-
def initialize(filesystemid=nil)
|
1235
|
+
def initialize(filesystemid=nil, offset=nil, limit=nil)
|
1232
1236
|
@FileSystemId = filesystemid
|
1237
|
+
@Offset = offset
|
1238
|
+
@Limit = limit
|
1233
1239
|
end
|
1234
1240
|
|
1235
1241
|
def deserialize(params)
|
1236
1242
|
@FileSystemId = params['FileSystemId']
|
1243
|
+
@Offset = params['Offset']
|
1244
|
+
@Limit = params['Limit']
|
1237
1245
|
end
|
1238
1246
|
end
|
1239
1247
|
|
@@ -1241,13 +1249,16 @@ module TencentCloud
|
|
1241
1249
|
class DescribeCfsFileSystemClientsResponse < TencentCloud::Common::AbstractModel
|
1242
1250
|
# @param ClientList: 客户端列表
|
1243
1251
|
# @type ClientList: Array
|
1252
|
+
# @param TotalCount: 文件系统总数
|
1253
|
+
# @type TotalCount: Integer
|
1244
1254
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1245
1255
|
# @type RequestId: String
|
1246
1256
|
|
1247
|
-
attr_accessor :ClientList, :RequestId
|
1257
|
+
attr_accessor :ClientList, :TotalCount, :RequestId
|
1248
1258
|
|
1249
|
-
def initialize(clientlist=nil, requestid=nil)
|
1259
|
+
def initialize(clientlist=nil, totalcount=nil, requestid=nil)
|
1250
1260
|
@ClientList = clientlist
|
1261
|
+
@TotalCount = totalcount
|
1251
1262
|
@RequestId = requestid
|
1252
1263
|
end
|
1253
1264
|
|
@@ -1260,6 +1271,7 @@ module TencentCloud
|
|
1260
1271
|
@ClientList << filesystemclient_tmp
|
1261
1272
|
end
|
1262
1273
|
end
|
1274
|
+
@TotalCount = params['TotalCount']
|
1263
1275
|
@RequestId = params['RequestId']
|
1264
1276
|
end
|
1265
1277
|
end
|
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.651
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|