tencentcloud-sdk-domain 3.0.727 → 3.0.729
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/v20180808/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: 6bc0f280fd7dd9b8d35c3559e52d22c277247162
|
4
|
+
data.tar.gz: 92edab63e62d5d1bef1b99ba226ea572c26552d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad7594fbaff752470ceafc691bf4c40b7599093746609fa46fd0d5a0b4b083add295c41d737d20dc6a0358c744f0dd5d25ea1489765dbb2fd87931cb04ef4bf1
|
7
|
+
data.tar.gz: 9ed1fd0a76c4d08c839e5166555c3d5a4768b81a169567fb5916077b79e1efae1183b632c996d4a42873157b92102a0778fe25c1eff8e02938e9165d0be991bc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.729
|
data/lib/v20180808/models.rb
CHANGED
@@ -1401,6 +1401,8 @@ module TencentCloud
|
|
1401
1401
|
class DomainBatchDetailSet < TencentCloud::Common::AbstractModel
|
1402
1402
|
# @param Id: 详情ID
|
1403
1403
|
# @type Id: Integer
|
1404
|
+
# @param Action: 类型 new: 注册域名 batch_transfer_prohibition_on:开启禁止转移 batch_transfer_prohibition_off:关闭禁止转移 batch_update_prohibition_on:开启禁止更新 batch_update_prohibition_off:关闭禁止更新
|
1405
|
+
# @type Action: String
|
1404
1406
|
# @param Domain: 域名
|
1405
1407
|
# @type Domain: String
|
1406
1408
|
# @param Status: 执行状态:
|
@@ -1415,25 +1417,32 @@ module TencentCloud
|
|
1415
1417
|
# @type CreatedOn: String
|
1416
1418
|
# @param UpdatedOn: 更新时间
|
1417
1419
|
# @type UpdatedOn: String
|
1420
|
+
# @param BigDealId: 订单号
|
1421
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1422
|
+
# @type BigDealId: String
|
1418
1423
|
|
1419
|
-
attr_accessor :Id, :Domain, :Status, :Reason, :CreatedOn, :UpdatedOn
|
1424
|
+
attr_accessor :Id, :Action, :Domain, :Status, :Reason, :CreatedOn, :UpdatedOn, :BigDealId
|
1420
1425
|
|
1421
|
-
def initialize(id=nil, domain=nil, status=nil, reason=nil, createdon=nil, updatedon=nil)
|
1426
|
+
def initialize(id=nil, action=nil, domain=nil, status=nil, reason=nil, createdon=nil, updatedon=nil, bigdealid=nil)
|
1422
1427
|
@Id = id
|
1428
|
+
@Action = action
|
1423
1429
|
@Domain = domain
|
1424
1430
|
@Status = status
|
1425
1431
|
@Reason = reason
|
1426
1432
|
@CreatedOn = createdon
|
1427
1433
|
@UpdatedOn = updatedon
|
1434
|
+
@BigDealId = bigdealid
|
1428
1435
|
end
|
1429
1436
|
|
1430
1437
|
def deserialize(params)
|
1431
1438
|
@Id = params['Id']
|
1439
|
+
@Action = params['Action']
|
1432
1440
|
@Domain = params['Domain']
|
1433
1441
|
@Status = params['Status']
|
1434
1442
|
@Reason = params['Reason']
|
1435
1443
|
@CreatedOn = params['CreatedOn']
|
1436
1444
|
@UpdatedOn = params['UpdatedOn']
|
1445
|
+
@BigDealId = params['BigDealId']
|
1437
1446
|
end
|
1438
1447
|
end
|
1439
1448
|
|
@@ -1449,14 +1458,23 @@ module TencentCloud
|
|
1449
1458
|
# @type Status: String
|
1450
1459
|
# @param CreatedOn: 提交时间
|
1451
1460
|
# @type CreatedOn: String
|
1461
|
+
# @param Success: 批量操作成功个数
|
1462
|
+
# @type Success: Integer
|
1463
|
+
# @param Doing: 批量操作处理中个数
|
1464
|
+
# @type Doing: Integer
|
1465
|
+
# @param Failed: 批量操作失败个数
|
1466
|
+
# @type Failed: Integer
|
1452
1467
|
|
1453
|
-
attr_accessor :LogId, :Number, :Status, :CreatedOn
|
1468
|
+
attr_accessor :LogId, :Number, :Status, :CreatedOn, :Success, :Doing, :Failed
|
1454
1469
|
|
1455
|
-
def initialize(logid=nil, number=nil, status=nil, createdon=nil)
|
1470
|
+
def initialize(logid=nil, number=nil, status=nil, createdon=nil, success=nil, doing=nil, failed=nil)
|
1456
1471
|
@LogId = logid
|
1457
1472
|
@Number = number
|
1458
1473
|
@Status = status
|
1459
1474
|
@CreatedOn = createdon
|
1475
|
+
@Success = success
|
1476
|
+
@Doing = doing
|
1477
|
+
@Failed = failed
|
1460
1478
|
end
|
1461
1479
|
|
1462
1480
|
def deserialize(params)
|
@@ -1464,6 +1482,9 @@ module TencentCloud
|
|
1464
1482
|
@Number = params['Number']
|
1465
1483
|
@Status = params['Status']
|
1466
1484
|
@CreatedOn = params['CreatedOn']
|
1485
|
+
@Success = params['Success']
|
1486
|
+
@Doing = params['Doing']
|
1487
|
+
@Failed = params['Failed']
|
1467
1488
|
end
|
1468
1489
|
end
|
1469
1490
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-domain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.729
|
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-12-
|
11
|
+
date: 2023-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|