tencentcloud-sdk-live 3.0.381 → 3.0.385
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/v20180801/models.rb +113 -8
- 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: b807a22059133d2aeb6359904c27a6301e8767de
|
4
|
+
data.tar.gz: 24ae37a7b91aea2ab30b2d191ec63228df0ec647
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 803e9031f9196f2079807b10c7873b2ce77a2a4ed3b99ad93820563967c2a42cd5140a4f75d2c055351db3b1639febdc37316464203c24afac01fb575cb47e64
|
7
|
+
data.tar.gz: 8fa43d6b9b231f6977e86d00ba7253c8842d2accb3116ba4b64c579e5275f4522fab54ec26e3ff78e9ea9aec7ee14745b68edb3dd5f7fbba30e21bce8dc28686
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.385
|
data/lib/v20180801/models.rb
CHANGED
@@ -209,6 +209,30 @@ module TencentCloud
|
|
209
209
|
end
|
210
210
|
end
|
211
211
|
|
212
|
+
# 批量操作域名相关接口,若其中个别域名操作失败将会跳过,相应的域名错误信息将统一汇总在此类型中
|
213
|
+
class BatchDomainOperateErrors < TencentCloud::Common::AbstractModel
|
214
|
+
# @param DomainName: 操作失败的域名。
|
215
|
+
# @type DomainName: String
|
216
|
+
# @param Code: API3.0错误码。
|
217
|
+
# @type Code: String
|
218
|
+
# @param Message: API3.0错误信息。
|
219
|
+
# @type Message: String
|
220
|
+
|
221
|
+
attr_accessor :DomainName, :Code, :Message
|
222
|
+
|
223
|
+
def initialize(domainname=nil, code=nil, message=nil)
|
224
|
+
@DomainName = domainname
|
225
|
+
@Code = code
|
226
|
+
@Message = message
|
227
|
+
end
|
228
|
+
|
229
|
+
def deserialize(params)
|
230
|
+
@DomainName = params['DomainName']
|
231
|
+
@Code = params['Code']
|
232
|
+
@Message = params['Message']
|
233
|
+
end
|
234
|
+
end
|
235
|
+
|
212
236
|
# 海外分区直播带宽出参,分区信息
|
213
237
|
class BillAreaInfo < TencentCloud::Common::AbstractModel
|
214
238
|
# @param Name: 大区名称
|
@@ -3394,8 +3418,8 @@ module TencentCloud
|
|
3394
3418
|
# @param DomainName: 要查询的单个域名。
|
3395
3419
|
# @type DomainName: String
|
3396
3420
|
# @param OrderBy: 可取值:
|
3397
|
-
# ExpireTimeAsc
|
3398
|
-
# ExpireTimeDesc
|
3421
|
+
# ExpireTimeAsc:证书过期时间升序。
|
3422
|
+
# ExpireTimeDesc:证书过期时间降序。
|
3399
3423
|
# @type OrderBy: String
|
3400
3424
|
|
3401
3425
|
attr_accessor :DomainSearch, :Offset, :Length, :DomainName, :OrderBy
|
@@ -3419,16 +3443,31 @@ module TencentCloud
|
|
3419
3443
|
|
3420
3444
|
# DescribeLiveDomainCertBindings返回参数结构体
|
3421
3445
|
class DescribeLiveDomainCertBindingsResponse < TencentCloud::Common::AbstractModel
|
3446
|
+
# @param LiveDomainCertBindings: 有绑定证书的域名信息数组。
|
3447
|
+
# @type LiveDomainCertBindings: Array
|
3448
|
+
# @param TotalNum: 总的记录行数,便于分页。
|
3449
|
+
# @type TotalNum: Integer
|
3422
3450
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3423
3451
|
# @type RequestId: String
|
3424
3452
|
|
3425
|
-
attr_accessor :RequestId
|
3453
|
+
attr_accessor :LiveDomainCertBindings, :TotalNum, :RequestId
|
3426
3454
|
|
3427
|
-
def initialize(requestid=nil)
|
3455
|
+
def initialize(livedomaincertbindings=nil, totalnum=nil, requestid=nil)
|
3456
|
+
@LiveDomainCertBindings = livedomaincertbindings
|
3457
|
+
@TotalNum = totalnum
|
3428
3458
|
@RequestId = requestid
|
3429
3459
|
end
|
3430
3460
|
|
3431
3461
|
def deserialize(params)
|
3462
|
+
unless params['LiveDomainCertBindings'].nil?
|
3463
|
+
@LiveDomainCertBindings = []
|
3464
|
+
params['LiveDomainCertBindings'].each do |i|
|
3465
|
+
livedomaincertbindings_tmp = LiveDomainCertBindings.new
|
3466
|
+
livedomaincertbindings_tmp.deserialize(i)
|
3467
|
+
@LiveDomainCertBindings << livedomaincertbindings_tmp
|
3468
|
+
end
|
3469
|
+
end
|
3470
|
+
@TotalNum = params['TotalNum']
|
3432
3471
|
@RequestId = params['RequestId']
|
3433
3472
|
end
|
3434
3473
|
end
|
@@ -3666,15 +3705,19 @@ module TencentCloud
|
|
3666
3705
|
# @param CreateLimitCount: 可继续添加域名数量。
|
3667
3706
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3668
3707
|
# @type CreateLimitCount: Integer
|
3708
|
+
# @param PlayTypeCount: 启用的播放域名加速区域统计,数组元素分别为:中国大陆(境内),全球地区,国际/港澳台(境外)域名数量。
|
3709
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3710
|
+
# @type PlayTypeCount: Array
|
3669
3711
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3670
3712
|
# @type RequestId: String
|
3671
3713
|
|
3672
|
-
attr_accessor :AllCount, :DomainList, :CreateLimitCount, :RequestId
|
3714
|
+
attr_accessor :AllCount, :DomainList, :CreateLimitCount, :PlayTypeCount, :RequestId
|
3673
3715
|
|
3674
|
-
def initialize(allcount=nil, domainlist=nil, createlimitcount=nil, requestid=nil)
|
3716
|
+
def initialize(allcount=nil, domainlist=nil, createlimitcount=nil, playtypecount=nil, requestid=nil)
|
3675
3717
|
@AllCount = allcount
|
3676
3718
|
@DomainList = domainlist
|
3677
3719
|
@CreateLimitCount = createlimitcount
|
3720
|
+
@PlayTypeCount = playtypecount
|
3678
3721
|
@RequestId = requestid
|
3679
3722
|
end
|
3680
3723
|
|
@@ -3689,6 +3732,7 @@ module TencentCloud
|
|
3689
3732
|
end
|
3690
3733
|
end
|
3691
3734
|
@CreateLimitCount = params['CreateLimitCount']
|
3735
|
+
@PlayTypeCount = params['PlayTypeCount']
|
3692
3736
|
@RequestId = params['RequestId']
|
3693
3737
|
end
|
3694
3738
|
end
|
@@ -6940,6 +6984,55 @@ module TencentCloud
|
|
6940
6984
|
end
|
6941
6985
|
end
|
6942
6986
|
|
6987
|
+
# DescribeLiveDomainCertBindings, DescribeLiveDomainCertBindingsGray接口返回的域名证书信息
|
6988
|
+
class LiveDomainCertBindings < TencentCloud::Common::AbstractModel
|
6989
|
+
# @param DomainName: 域名。
|
6990
|
+
# @type DomainName: String
|
6991
|
+
# @param CertificateAlias: 证书备注。与CertName同义。
|
6992
|
+
# @type CertificateAlias: String
|
6993
|
+
# @param CertType: 证书类型。
|
6994
|
+
# 0:自有证书
|
6995
|
+
# 1:腾讯云ssl托管证书
|
6996
|
+
# @type CertType: Integer
|
6997
|
+
# @param Status: https状态。
|
6998
|
+
# 1:已开启。
|
6999
|
+
# 0:已关闭。
|
7000
|
+
# @type Status: Integer
|
7001
|
+
# @param CertExpireTime: 证书过期时间。
|
7002
|
+
# @type CertExpireTime: String
|
7003
|
+
# @param CertId: 证书Id。
|
7004
|
+
# @type CertId: Integer
|
7005
|
+
# @param CloudCertId: 腾讯云ssl的证书Id。
|
7006
|
+
# @type CloudCertId: String
|
7007
|
+
# @param UpdateTime: 规则最后更新时间。
|
7008
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7009
|
+
# @type UpdateTime: String
|
7010
|
+
|
7011
|
+
attr_accessor :DomainName, :CertificateAlias, :CertType, :Status, :CertExpireTime, :CertId, :CloudCertId, :UpdateTime
|
7012
|
+
|
7013
|
+
def initialize(domainname=nil, certificatealias=nil, certtype=nil, status=nil, certexpiretime=nil, certid=nil, cloudcertid=nil, updatetime=nil)
|
7014
|
+
@DomainName = domainname
|
7015
|
+
@CertificateAlias = certificatealias
|
7016
|
+
@CertType = certtype
|
7017
|
+
@Status = status
|
7018
|
+
@CertExpireTime = certexpiretime
|
7019
|
+
@CertId = certid
|
7020
|
+
@CloudCertId = cloudcertid
|
7021
|
+
@UpdateTime = updatetime
|
7022
|
+
end
|
7023
|
+
|
7024
|
+
def deserialize(params)
|
7025
|
+
@DomainName = params['DomainName']
|
7026
|
+
@CertificateAlias = params['CertificateAlias']
|
7027
|
+
@CertType = params['CertType']
|
7028
|
+
@Status = params['Status']
|
7029
|
+
@CertExpireTime = params['CertExpireTime']
|
7030
|
+
@CertId = params['CertId']
|
7031
|
+
@CloudCertId = params['CloudCertId']
|
7032
|
+
@UpdateTime = params['UpdateTime']
|
7033
|
+
end
|
7034
|
+
end
|
7035
|
+
|
6943
7036
|
# 直播包信息。
|
6944
7037
|
class LivePackageInfo < TencentCloud::Common::AbstractModel
|
6945
7038
|
# @param Id: 包 ID。
|
@@ -7142,18 +7235,30 @@ module TencentCloud
|
|
7142
7235
|
class ModifyLiveDomainCertBindingsResponse < TencentCloud::Common::AbstractModel
|
7143
7236
|
# @param MismatchedDomainNames: DomainNames 入参中,与证书不匹配的域名列表,将会跳过处理。
|
7144
7237
|
# @type MismatchedDomainNames: Array
|
7238
|
+
# @param Errors: 操作失败的域名及错误码,错误信息,包括MismatchedDomainNames中的域名。
|
7239
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7240
|
+
# @type Errors: Array
|
7145
7241
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7146
7242
|
# @type RequestId: String
|
7147
7243
|
|
7148
|
-
attr_accessor :MismatchedDomainNames, :RequestId
|
7244
|
+
attr_accessor :MismatchedDomainNames, :Errors, :RequestId
|
7149
7245
|
|
7150
|
-
def initialize(mismatcheddomainnames=nil, requestid=nil)
|
7246
|
+
def initialize(mismatcheddomainnames=nil, errors=nil, requestid=nil)
|
7151
7247
|
@MismatchedDomainNames = mismatcheddomainnames
|
7248
|
+
@Errors = errors
|
7152
7249
|
@RequestId = requestid
|
7153
7250
|
end
|
7154
7251
|
|
7155
7252
|
def deserialize(params)
|
7156
7253
|
@MismatchedDomainNames = params['MismatchedDomainNames']
|
7254
|
+
unless params['Errors'].nil?
|
7255
|
+
@Errors = []
|
7256
|
+
params['Errors'].each do |i|
|
7257
|
+
batchdomainoperateerrors_tmp = BatchDomainOperateErrors.new
|
7258
|
+
batchdomainoperateerrors_tmp.deserialize(i)
|
7259
|
+
@Errors << batchdomainoperateerrors_tmp
|
7260
|
+
end
|
7261
|
+
end
|
7157
7262
|
@RequestId = params['RequestId']
|
7158
7263
|
end
|
7159
7264
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-live
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.385
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|