tencentcloud-sdk-dasb 3.0.625 → 3.0.626
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/v20191018/models.rb +13 -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: 1ee0ab881677a32572b692bdc527e2af2c382a82
|
|
4
|
+
data.tar.gz: 8d037eac6bec484bccef7413583bc0c302566637
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b9a49b5314d3af9cd14db6adb186394650e1aa5babb738b6786cbf335badfb5f18951cdbc34aa7e3c03d86d7467d41d469af34f5650ea043536626fa0f92bd9
|
|
7
|
+
data.tar.gz: 2cb2e84b7c1ffca89151b6f386681b982d148686e10cadf6360494df24a8166e1d7c029dbba11ba9235f3ec5e538e864a16d1f04fa29068bd2c4a8df4613ebf0
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.626
|
data/lib/v20191018/models.rb
CHANGED
|
@@ -2331,10 +2331,13 @@ module TencentCloud
|
|
|
2331
2331
|
# @param Department: 资产所属部门
|
|
2332
2332
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2333
2333
|
# @type Department: :class:`Tencentcloud::Dasb.v20191018.models.Department`
|
|
2334
|
+
# @param IpPortSet: 数据库资产的多节点
|
|
2335
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2336
|
+
# @type IpPortSet: Array
|
|
2334
2337
|
|
|
2335
|
-
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department
|
|
2338
|
+
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet
|
|
2336
2339
|
|
|
2337
|
-
def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil)
|
|
2340
|
+
def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil, ipportset=nil)
|
|
2338
2341
|
@Id = id
|
|
2339
2342
|
@InstanceId = instanceid
|
|
2340
2343
|
@Name = name
|
|
@@ -2350,6 +2353,7 @@ module TencentCloud
|
|
|
2350
2353
|
@SubnetId = subnetid
|
|
2351
2354
|
@Resource = resource
|
|
2352
2355
|
@Department = department
|
|
2356
|
+
@IpPortSet = ipportset
|
|
2353
2357
|
end
|
|
2354
2358
|
|
|
2355
2359
|
def deserialize(params)
|
|
@@ -2381,6 +2385,7 @@ module TencentCloud
|
|
|
2381
2385
|
@Department = Department.new
|
|
2382
2386
|
@Department.deserialize(params['Department'])
|
|
2383
2387
|
end
|
|
2388
|
+
@IpPortSet = params['IpPortSet']
|
|
2384
2389
|
end
|
|
2385
2390
|
end
|
|
2386
2391
|
|
|
@@ -2428,15 +2433,18 @@ module TencentCloud
|
|
|
2428
2433
|
# @type Name: String
|
|
2429
2434
|
# @param DepartmentId: 资产所属的部门ID
|
|
2430
2435
|
# @type DepartmentId: String
|
|
2436
|
+
# @param IpPortSet: 资产多节点:字段ip和端口
|
|
2437
|
+
# @type IpPortSet: Array
|
|
2431
2438
|
|
|
2432
|
-
attr_accessor :OsName, :Ip, :Port, :Name, :DepartmentId
|
|
2439
|
+
attr_accessor :OsName, :Ip, :Port, :Name, :DepartmentId, :IpPortSet
|
|
2433
2440
|
|
|
2434
|
-
def initialize(osname=nil, ip=nil, port=nil, name=nil, departmentid=nil)
|
|
2441
|
+
def initialize(osname=nil, ip=nil, port=nil, name=nil, departmentid=nil, ipportset=nil)
|
|
2435
2442
|
@OsName = osname
|
|
2436
2443
|
@Ip = ip
|
|
2437
2444
|
@Port = port
|
|
2438
2445
|
@Name = name
|
|
2439
2446
|
@DepartmentId = departmentid
|
|
2447
|
+
@IpPortSet = ipportset
|
|
2440
2448
|
end
|
|
2441
2449
|
|
|
2442
2450
|
def deserialize(params)
|
|
@@ -2445,6 +2453,7 @@ module TencentCloud
|
|
|
2445
2453
|
@Port = params['Port']
|
|
2446
2454
|
@Name = params['Name']
|
|
2447
2455
|
@DepartmentId = params['DepartmentId']
|
|
2456
|
+
@IpPortSet = params['IpPortSet']
|
|
2448
2457
|
end
|
|
2449
2458
|
end
|
|
2450
2459
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-dasb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.626
|
|
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-08-
|
|
11
|
+
date: 2023-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|