tencentcloud-sdk-domain 3.0.851 → 3.0.852
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 +35 -2
- 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: 4218158c2c0caec7b05473f79011041d054b3e2c
|
4
|
+
data.tar.gz: 2937361a1dd82ad5626fa10533d5716823e23a1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2687304f05cde5c5b68c67b2345e384dfaa4515565c7fb40cd9a405b5220863e527f3ff2470f9717a97078a2c6cf29e589a66d1054d2a1c7e6003323b732a669
|
7
|
+
data.tar.gz: 760dee1b83d5d816bd09235e763a669fe1c003daf7b8a9d090838a00de3db45dd570f52fa55d555ad1a2518414d6fd899b5dca1c7ed1ba22a29e7d7af8c237a3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.852
|
data/lib/v20180808/models.rb
CHANGED
@@ -3761,14 +3761,17 @@ module TencentCloud
|
|
3761
3761
|
# @type SucDomainList: Array
|
3762
3762
|
# @param FailDomainList: 预定失败域名列表
|
3763
3763
|
# @type FailDomainList: Array
|
3764
|
+
# @param SucDomains: 域名预定成功详情
|
3765
|
+
# @type SucDomains: Array
|
3764
3766
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3765
3767
|
# @type RequestId: String
|
3766
3768
|
|
3767
|
-
attr_accessor :SucDomainList, :FailDomainList, :RequestId
|
3769
|
+
attr_accessor :SucDomainList, :FailDomainList, :SucDomains, :RequestId
|
3768
3770
|
|
3769
|
-
def initialize(sucdomainlist=nil, faildomainlist=nil, requestid=nil)
|
3771
|
+
def initialize(sucdomainlist=nil, faildomainlist=nil, sucdomains=nil, requestid=nil)
|
3770
3772
|
@SucDomainList = sucdomainlist
|
3771
3773
|
@FailDomainList = faildomainlist
|
3774
|
+
@SucDomains = sucdomains
|
3772
3775
|
@RequestId = requestid
|
3773
3776
|
end
|
3774
3777
|
|
@@ -3782,6 +3785,14 @@ module TencentCloud
|
|
3782
3785
|
@FailDomainList << failreserveddomaininfo_tmp
|
3783
3786
|
end
|
3784
3787
|
end
|
3788
|
+
unless params['SucDomains'].nil?
|
3789
|
+
@SucDomains = []
|
3790
|
+
params['SucDomains'].each do |i|
|
3791
|
+
sucdomaininfo_tmp = SucDomainInfo.new
|
3792
|
+
sucdomaininfo_tmp.deserialize(i)
|
3793
|
+
@SucDomains << sucdomaininfo_tmp
|
3794
|
+
end
|
3795
|
+
end
|
3785
3796
|
@RequestId = params['RequestId']
|
3786
3797
|
end
|
3787
3798
|
end
|
@@ -3861,6 +3872,28 @@ module TencentCloud
|
|
3861
3872
|
end
|
3862
3873
|
end
|
3863
3874
|
|
3875
|
+
# 预释放域名预约参数补充成功信息
|
3876
|
+
class SucDomainInfo < TencentCloud::Common::AbstractModel
|
3877
|
+
# @param Domain: 域名
|
3878
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3879
|
+
# @type Domain: String
|
3880
|
+
# @param BusinessId: 业务ID
|
3881
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3882
|
+
# @type BusinessId: String
|
3883
|
+
|
3884
|
+
attr_accessor :Domain, :BusinessId
|
3885
|
+
|
3886
|
+
def initialize(domain=nil, businessid=nil)
|
3887
|
+
@Domain = domain
|
3888
|
+
@BusinessId = businessid
|
3889
|
+
end
|
3890
|
+
|
3891
|
+
def deserialize(params)
|
3892
|
+
@Domain = params['Domain']
|
3893
|
+
@BusinessId = params['BusinessId']
|
3894
|
+
end
|
3895
|
+
end
|
3896
|
+
|
3864
3897
|
# SyncCustomDnsHost请求参数结构体
|
3865
3898
|
class SyncCustomDnsHostRequest < TencentCloud::Common::AbstractModel
|
3866
3899
|
# @param DomainId: 域名实例ID
|
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.852
|
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-06-
|
11
|
+
date: 2024-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|