tencentcloud-sdk-domain 3.0.851 → 3.0.853

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180808/models.rb +35 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a61dcf39522b70b12f9e36fef805b00bda811ef7
4
- data.tar.gz: 543fcb2b4f5ade42034f152655739b7233644a46
3
+ metadata.gz: 2f890af2f73bddae5286e80ff7277283b3282bca
4
+ data.tar.gz: 639bf13197fb04eba3ea210a17df789e0f876eee
5
5
  SHA512:
6
- metadata.gz: 7eba9b3ed108c9a8633811eb91f1b7d1d044b9561ced9d4aad14896b2709766ca8c8143025534dcbe5372658561ff5689080034c22230308b3427091c45ef117
7
- data.tar.gz: 09f5b871a4c891b1fd53fc9c28e7d4786554fda3b47d2671eefc7e10c05d95ed3fdba8bf2abd8ce4226d017dbf3aa8497dfcf31e4a94a767dab683c9d134410d
6
+ metadata.gz: c2140a4cf50d540fe9d22bf852b39df0ae3e88578ab2446dee75d132c408a47091e8104ebe91196839ed7004c520840999eaca8d26cbbd6d0edda1ce71267a01
7
+ data.tar.gz: d049d75b0f53ff3314229dbd4d5dfe762e533b8ba76fd153af18792e4d88c02d47dae08f7917fcb19450695c4a3c8fb394d3c6f334db87bedf89f3befcbde377
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.851
1
+ 3.0.853
@@ -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.851
4
+ version: 3.0.853
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-25 00:00:00.000000000 Z
11
+ date: 2024-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common