tencentcloud-sdk-iss 3.0.938 → 3.0.940

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 081eb7d5a68130fcd693c6f0870207a39e5fdd00
4
- data.tar.gz: 732c74de49a897b1f7e9a5f9df40fe22bcdbec21
3
+ metadata.gz: fd38437d56dd60efcb3f2099d2878f8b03cdac46
4
+ data.tar.gz: 243f1be9eaa9331cc8b2e3ffd2a67f115d32d68a
5
5
  SHA512:
6
- metadata.gz: 401b30072e5e2df4b0e083b327f65feed3e9584af2ecde0f33b5ad0a2e3b821e97f54d09b8d5fc163b05f5b1349f518af8994d7f5ff4713598f5b4912ecb0440
7
- data.tar.gz: 37ff5c34c258697fd29dd5622fd48885b5140e89ab2048c26ca1c1d0e3afba39e336f796d7683fb59aef06c2cc78293d557c08e609e2dd3d1c6cb31fed38877d
6
+ metadata.gz: 3fe1b5a22d8194898f9842f6b7d78ec3fb275bd42b8e36c5efee64adc4315c7dfacc31bf7cb2d7b1f80521837fa3d9287767804037b63cd5a6320a2539791fa2
7
+ data.tar.gz: f51c839569b132b00b41230c931a147271316033205f5e3f22ff616d4c93db0a7693de5f7d1ef99d5719be13b297f83fe086b71a3f9ea3034f8bbdc421e43b9a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.938
1
+ 3.0.940
@@ -296,30 +296,6 @@ module TencentCloud
296
296
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
297
297
  end
298
298
 
299
- # 用于检测域名是否备案。
300
-
301
- # @param request: Request instance for CheckDomain.
302
- # @type request: :class:`Tencentcloud::iss::V20230517::CheckDomainRequest`
303
- # @rtype: :class:`Tencentcloud::iss::V20230517::CheckDomainResponse`
304
- def CheckDomain(request)
305
- body = send_request('CheckDomain', request.serialize)
306
- response = JSON.parse(body)
307
- if response['Response'].key?('Error') == false
308
- model = CheckDomainResponse.new
309
- model.deserialize(response['Response'])
310
- model
311
- else
312
- code = response['Response']['Error']['Code']
313
- message = response['Response']['Error']['Message']
314
- reqid = response['Response']['RequestId']
315
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
316
- end
317
- rescue TencentCloud::Common::TencentCloudSDKException => e
318
- raise e
319
- rescue StandardError => e
320
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
321
- end
322
-
323
299
  # 用于设备通道云台控制,包括转动、变倍、变焦、光圈等。
324
300
 
325
301
  # @param request: Request instance for ControlDevicePTZ.
@@ -1527,46 +1527,6 @@ module TencentCloud
1527
1527
  end
1528
1528
  end
1529
1529
 
1530
- # CheckDomain请求参数结构体
1531
- class CheckDomainRequest < TencentCloud::Common::AbstractModel
1532
- # @param PlayDomain: 播放域名
1533
- # @type PlayDomain: String
1534
- # @param InternalDomain: CNAME 记录值
1535
- # @type InternalDomain: String
1536
-
1537
- attr_accessor :PlayDomain, :InternalDomain
1538
-
1539
- def initialize(playdomain=nil, internaldomain=nil)
1540
- @PlayDomain = playdomain
1541
- @InternalDomain = internaldomain
1542
- end
1543
-
1544
- def deserialize(params)
1545
- @PlayDomain = params['PlayDomain']
1546
- @InternalDomain = params['InternalDomain']
1547
- end
1548
- end
1549
-
1550
- # CheckDomain返回参数结构体
1551
- class CheckDomainResponse < TencentCloud::Common::AbstractModel
1552
- # @param Data: 是否备案
1553
- # @type Data: Boolean
1554
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1555
- # @type RequestId: String
1556
-
1557
- attr_accessor :Data, :RequestId
1558
-
1559
- def initialize(data=nil, requestid=nil)
1560
- @Data = data
1561
- @RequestId = requestid
1562
- end
1563
-
1564
- def deserialize(params)
1565
- @Data = params['Data']
1566
- @RequestId = params['RequestId']
1567
- end
1568
- end
1569
-
1570
1530
  # 厨师服识别结果详情
1571
1531
  class ChefClothAIResultInfo < TencentCloud::Common::AbstractModel
1572
1532
  # @param Time: 时间字符串
@@ -3721,14 +3681,17 @@ module TencentCloud
3721
3681
  # @type EndTime: Integer
3722
3682
  # @param IsInternal: 是否获取内网地址
3723
3683
  # @type IsInternal: Boolean
3684
+ # @param CorrectTimestamp: 云录像回放时,是否需要开启时间戳矫正,主要解决时间戳反转,会退等问题导致无法播放
3685
+ # @type CorrectTimestamp: Boolean
3724
3686
 
3725
- attr_accessor :ChannelId, :StartTime, :EndTime, :IsInternal
3687
+ attr_accessor :ChannelId, :StartTime, :EndTime, :IsInternal, :CorrectTimestamp
3726
3688
 
3727
- def initialize(channelid=nil, starttime=nil, endtime=nil, isinternal=nil)
3689
+ def initialize(channelid=nil, starttime=nil, endtime=nil, isinternal=nil, correcttimestamp=nil)
3728
3690
  @ChannelId = channelid
3729
3691
  @StartTime = starttime
3730
3692
  @EndTime = endtime
3731
3693
  @IsInternal = isinternal
3694
+ @CorrectTimestamp = correcttimestamp
3732
3695
  end
3733
3696
 
3734
3697
  def deserialize(params)
@@ -3736,6 +3699,7 @@ module TencentCloud
3736
3699
  @StartTime = params['StartTime']
3737
3700
  @EndTime = params['EndTime']
3738
3701
  @IsInternal = params['IsInternal']
3702
+ @CorrectTimestamp = params['CorrectTimestamp']
3739
3703
  end
3740
3704
  end
3741
3705
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.938
4
+ version: 3.0.940
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-11-07 00:00:00.000000000 Z
11
+ date: 2024-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common