tencentcloud-sdk-live 3.0.381 → 3.0.382
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 +106 -6
- 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: a82265bf68a42edee8552ef4419fa1e2ed87e647
|
4
|
+
data.tar.gz: a2b4ab7ffe16da936f2a6751e0f5175c94aa7711
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16610065cb4d8095b213567f61132baac1c09aadf7959b346974822584005949202bacac2a82075ffaa16a46c46156b2ef45e8d44ea2cfea3c466c4b1a8894c8
|
7
|
+
data.tar.gz: 86098601324b48ecfe4ef98fb8661049c341df23ac9ba18205a5c51db0c7f97e9c2ca8f572433b96b9b23b72f10197453fc15dee3ee473aa8acafb0eed9fe1ef
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.382
|
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
|
@@ -6940,6 +6979,55 @@ module TencentCloud
|
|
6940
6979
|
end
|
6941
6980
|
end
|
6942
6981
|
|
6982
|
+
# DescribeLiveDomainCertBindings, DescribeLiveDomainCertBindingsGray接口返回的域名证书信息
|
6983
|
+
class LiveDomainCertBindings < TencentCloud::Common::AbstractModel
|
6984
|
+
# @param DomainName: 域名。
|
6985
|
+
# @type DomainName: String
|
6986
|
+
# @param CertificateAlias: 证书备注。与CertName同义。
|
6987
|
+
# @type CertificateAlias: String
|
6988
|
+
# @param CertType: 证书类型。
|
6989
|
+
# 0:自有证书
|
6990
|
+
# 1:腾讯云ssl托管证书
|
6991
|
+
# @type CertType: Integer
|
6992
|
+
# @param Status: https状态。
|
6993
|
+
# 1:已开启。
|
6994
|
+
# 0:已关闭。
|
6995
|
+
# @type Status: Integer
|
6996
|
+
# @param CertExpireTime: 证书过期时间。
|
6997
|
+
# @type CertExpireTime: String
|
6998
|
+
# @param CertId: 证书Id。
|
6999
|
+
# @type CertId: Integer
|
7000
|
+
# @param CloudCertId: 腾讯云ssl的证书Id。
|
7001
|
+
# @type CloudCertId: String
|
7002
|
+
# @param UpdateTime: 规则最后更新时间。
|
7003
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7004
|
+
# @type UpdateTime: String
|
7005
|
+
|
7006
|
+
attr_accessor :DomainName, :CertificateAlias, :CertType, :Status, :CertExpireTime, :CertId, :CloudCertId, :UpdateTime
|
7007
|
+
|
7008
|
+
def initialize(domainname=nil, certificatealias=nil, certtype=nil, status=nil, certexpiretime=nil, certid=nil, cloudcertid=nil, updatetime=nil)
|
7009
|
+
@DomainName = domainname
|
7010
|
+
@CertificateAlias = certificatealias
|
7011
|
+
@CertType = certtype
|
7012
|
+
@Status = status
|
7013
|
+
@CertExpireTime = certexpiretime
|
7014
|
+
@CertId = certid
|
7015
|
+
@CloudCertId = cloudcertid
|
7016
|
+
@UpdateTime = updatetime
|
7017
|
+
end
|
7018
|
+
|
7019
|
+
def deserialize(params)
|
7020
|
+
@DomainName = params['DomainName']
|
7021
|
+
@CertificateAlias = params['CertificateAlias']
|
7022
|
+
@CertType = params['CertType']
|
7023
|
+
@Status = params['Status']
|
7024
|
+
@CertExpireTime = params['CertExpireTime']
|
7025
|
+
@CertId = params['CertId']
|
7026
|
+
@CloudCertId = params['CloudCertId']
|
7027
|
+
@UpdateTime = params['UpdateTime']
|
7028
|
+
end
|
7029
|
+
end
|
7030
|
+
|
6943
7031
|
# 直播包信息。
|
6944
7032
|
class LivePackageInfo < TencentCloud::Common::AbstractModel
|
6945
7033
|
# @param Id: 包 ID。
|
@@ -7142,18 +7230,30 @@ module TencentCloud
|
|
7142
7230
|
class ModifyLiveDomainCertBindingsResponse < TencentCloud::Common::AbstractModel
|
7143
7231
|
# @param MismatchedDomainNames: DomainNames 入参中,与证书不匹配的域名列表,将会跳过处理。
|
7144
7232
|
# @type MismatchedDomainNames: Array
|
7233
|
+
# @param Errors: 操作失败的域名及错误码,错误信息,包括MismatchedDomainNames中的域名。
|
7234
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7235
|
+
# @type Errors: Array
|
7145
7236
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
7146
7237
|
# @type RequestId: String
|
7147
7238
|
|
7148
|
-
attr_accessor :MismatchedDomainNames, :RequestId
|
7239
|
+
attr_accessor :MismatchedDomainNames, :Errors, :RequestId
|
7149
7240
|
|
7150
|
-
def initialize(mismatcheddomainnames=nil, requestid=nil)
|
7241
|
+
def initialize(mismatcheddomainnames=nil, errors=nil, requestid=nil)
|
7151
7242
|
@MismatchedDomainNames = mismatcheddomainnames
|
7243
|
+
@Errors = errors
|
7152
7244
|
@RequestId = requestid
|
7153
7245
|
end
|
7154
7246
|
|
7155
7247
|
def deserialize(params)
|
7156
7248
|
@MismatchedDomainNames = params['MismatchedDomainNames']
|
7249
|
+
unless params['Errors'].nil?
|
7250
|
+
@Errors = []
|
7251
|
+
params['Errors'].each do |i|
|
7252
|
+
batchdomainoperateerrors_tmp = BatchDomainOperateErrors.new
|
7253
|
+
batchdomainoperateerrors_tmp.deserialize(i)
|
7254
|
+
@Errors << batchdomainoperateerrors_tmp
|
7255
|
+
end
|
7256
|
+
end
|
7157
7257
|
@RequestId = params['RequestId']
|
7158
7258
|
end
|
7159
7259
|
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.382
|
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-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|