tencentcloud-sdk-goosefs 3.0.884 → 3.0.886
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/v20220519/models.rb +25 -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: c67c8516fb6a56ea94eb280ca939aab525034548
|
4
|
+
data.tar.gz: 0c8bcaa982b645411778d9aff183b0e30eb060ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d13c56c7471853fa1abb0839cec12931fe52ca0b111c60b57c34354d677b320c16150fefd244abb087af48d39257fdbc3c7209b20c698386f538aa401926240
|
7
|
+
data.tar.gz: d78750e6266513a2737b6d2d3330fbca6f6a1cb12702f19e4f7b3d798dbb66e8d99071dd40e4841bcd7044ebb07806b845b9e880b80e3eed9f6228d8309f1193
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.886
|
data/lib/v20220519/models.rb
CHANGED
@@ -253,19 +253,36 @@ module TencentCloud
|
|
253
253
|
# @type Status: String
|
254
254
|
# @param ClientType: 客户端节点类型,extend(扩展节点),manager(管理节点)
|
255
255
|
# @type ClientType: String
|
256
|
+
# @param VpcId: 节点所属vpcid
|
257
|
+
# @type VpcId: String
|
258
|
+
# @param SubnetId: 节点所属子网id
|
259
|
+
# @type SubnetId: String
|
260
|
+
# @param InstanceId: cvmId
|
261
|
+
# @type InstanceId: String
|
262
|
+
# @param MountPoint: 自定义挂载点
|
263
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
264
|
+
# @type MountPoint: String
|
256
265
|
|
257
|
-
attr_accessor :ClientNodeIp, :Status, :ClientType
|
266
|
+
attr_accessor :ClientNodeIp, :Status, :ClientType, :VpcId, :SubnetId, :InstanceId, :MountPoint
|
258
267
|
|
259
|
-
def initialize(clientnodeip=nil, status=nil, clienttype=nil)
|
268
|
+
def initialize(clientnodeip=nil, status=nil, clienttype=nil, vpcid=nil, subnetid=nil, instanceid=nil, mountpoint=nil)
|
260
269
|
@ClientNodeIp = clientnodeip
|
261
270
|
@Status = status
|
262
271
|
@ClientType = clienttype
|
272
|
+
@VpcId = vpcid
|
273
|
+
@SubnetId = subnetid
|
274
|
+
@InstanceId = instanceid
|
275
|
+
@MountPoint = mountpoint
|
263
276
|
end
|
264
277
|
|
265
278
|
def deserialize(params)
|
266
279
|
@ClientNodeIp = params['ClientNodeIp']
|
267
280
|
@Status = params['Status']
|
268
281
|
@ClientType = params['ClientType']
|
282
|
+
@VpcId = params['VpcId']
|
283
|
+
@SubnetId = params['SubnetId']
|
284
|
+
@InstanceId = params['InstanceId']
|
285
|
+
@MountPoint = params['MountPoint']
|
269
286
|
end
|
270
287
|
end
|
271
288
|
|
@@ -1099,14 +1116,17 @@ module TencentCloud
|
|
1099
1116
|
# @type SubnetId: String
|
1100
1117
|
# @param LinuxClientNodeIp: linux客户端节点地址
|
1101
1118
|
# @type LinuxClientNodeIp: String
|
1119
|
+
# @param MountPoint: 自定义挂载点
|
1120
|
+
# @type MountPoint: String
|
1102
1121
|
|
1103
|
-
attr_accessor :InstanceId, :VpcId, :SubnetId, :LinuxClientNodeIp
|
1122
|
+
attr_accessor :InstanceId, :VpcId, :SubnetId, :LinuxClientNodeIp, :MountPoint
|
1104
1123
|
|
1105
|
-
def initialize(instanceid=nil, vpcid=nil, subnetid=nil, linuxclientnodeip=nil)
|
1124
|
+
def initialize(instanceid=nil, vpcid=nil, subnetid=nil, linuxclientnodeip=nil, mountpoint=nil)
|
1106
1125
|
@InstanceId = instanceid
|
1107
1126
|
@VpcId = vpcid
|
1108
1127
|
@SubnetId = subnetid
|
1109
1128
|
@LinuxClientNodeIp = linuxclientnodeip
|
1129
|
+
@MountPoint = mountpoint
|
1110
1130
|
end
|
1111
1131
|
|
1112
1132
|
def deserialize(params)
|
@@ -1114,6 +1134,7 @@ module TencentCloud
|
|
1114
1134
|
@VpcId = params['VpcId']
|
1115
1135
|
@SubnetId = params['SubnetId']
|
1116
1136
|
@LinuxClientNodeIp = params['LinuxClientNodeIp']
|
1137
|
+
@MountPoint = params['MountPoint']
|
1117
1138
|
end
|
1118
1139
|
end
|
1119
1140
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-goosefs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.886
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|