tencentcloud-sdk-cwp 1.0.338 → 1.0.341
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/v20180228/models.rb +44 -4
- 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: 16b8633c03c8dcbc780be5707f7ae17d71fb33d5
|
|
4
|
+
data.tar.gz: 88f1b72fcadd38b08b2bf1335baa25346f519c44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b841f1be092a68c9d31ad500004e73e2fad5800abac2a45d0e6aa516e2927ae0ea43d7409d606b23f790ca835d3ee90a45cebb1b4f6dab10603e5655dfa55d76
|
|
7
|
+
data.tar.gz: d73c88ba4f8fa00329d0b3ace270baa62a1251e45b30d978fe16f10d93ee7a69c613cd0ddf364596fffe03693652a0e09c14b2fe19fada175348b87d92652800
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.341
|
data/lib/v20180228/models.rb
CHANGED
|
@@ -8431,8 +8431,8 @@ module TencentCloud
|
|
|
8431
8431
|
# @type ImportType: String
|
|
8432
8432
|
# @param IsQueryProMachine: 该参数已作废.
|
|
8433
8433
|
# @type IsQueryProMachine: Boolean
|
|
8434
|
-
# @param Filters:
|
|
8435
|
-
# <li>Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版 | Flagship
|
|
8434
|
+
# @param Filters: 过滤条件:
|
|
8435
|
+
# <li>Version - String 是否必填:否 - 当前防护版本( PRO_VERSION:专业版 | BASIC_VERSION:基础版 | Flagship:旗舰版 | ProtectedMachines:专业版+旗舰版) | BASIC_PROPOST_GENERAL_DISCOUNT:普惠版+专业版按量计费+基础版主机 | UnFlagship:专业版预付费+专业版后付费+基础版+普惠版</li>
|
|
8436
8436
|
# @type Filters: Array
|
|
8437
8437
|
|
|
8438
8438
|
attr_accessor :MachineList, :ImportType, :IsQueryProMachine, :Filters
|
|
@@ -12700,10 +12700,13 @@ module TencentCloud
|
|
|
12700
12700
|
# @param MachineStatus: 在线状态 OFFLINE,ONLINE
|
|
12701
12701
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12702
12702
|
# @type MachineStatus: String
|
|
12703
|
+
# @param LicenseOrder: 授权订单对象
|
|
12704
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12705
|
+
# @type LicenseOrder: :class:`Tencentcloud::Cwp.v20180228.models.LicenseOrder`
|
|
12703
12706
|
|
|
12704
|
-
attr_accessor :MachineName, :MachinePublicIp, :MachinePrivateIp, :MachineTag, :Quuid, :Uuid, :KernelVersion, :MachineStatus
|
|
12707
|
+
attr_accessor :MachineName, :MachinePublicIp, :MachinePrivateIp, :MachineTag, :Quuid, :Uuid, :KernelVersion, :MachineStatus, :LicenseOrder
|
|
12705
12708
|
|
|
12706
|
-
def initialize(machinename=nil, machinepublicip=nil, machineprivateip=nil, machinetag=nil, quuid=nil, uuid=nil, kernelversion=nil, machinestatus=nil)
|
|
12709
|
+
def initialize(machinename=nil, machinepublicip=nil, machineprivateip=nil, machinetag=nil, quuid=nil, uuid=nil, kernelversion=nil, machinestatus=nil, licenseorder=nil)
|
|
12707
12710
|
@MachineName = machinename
|
|
12708
12711
|
@MachinePublicIp = machinepublicip
|
|
12709
12712
|
@MachinePrivateIp = machineprivateip
|
|
@@ -12712,6 +12715,7 @@ module TencentCloud
|
|
|
12712
12715
|
@Uuid = uuid
|
|
12713
12716
|
@KernelVersion = kernelversion
|
|
12714
12717
|
@MachineStatus = machinestatus
|
|
12718
|
+
@LicenseOrder = licenseorder
|
|
12715
12719
|
end
|
|
12716
12720
|
|
|
12717
12721
|
def deserialize(params)
|
|
@@ -12730,6 +12734,10 @@ module TencentCloud
|
|
|
12730
12734
|
@Uuid = params['Uuid']
|
|
12731
12735
|
@KernelVersion = params['KernelVersion']
|
|
12732
12736
|
@MachineStatus = params['MachineStatus']
|
|
12737
|
+
unless params['LicenseOrder'].nil?
|
|
12738
|
+
@LicenseOrder = LicenseOrder.new
|
|
12739
|
+
@LicenseOrder.deserialize(params['LicenseOrder'])
|
|
12740
|
+
end
|
|
12733
12741
|
end
|
|
12734
12742
|
end
|
|
12735
12743
|
|
|
@@ -14413,6 +14421,38 @@ module TencentCloud
|
|
|
14413
14421
|
end
|
|
14414
14422
|
end
|
|
14415
14423
|
|
|
14424
|
+
# 授权订单对象内容
|
|
14425
|
+
class LicenseOrder < TencentCloud::Common::AbstractModel
|
|
14426
|
+
# @param LicenseId: 授权ID
|
|
14427
|
+
# @type LicenseId: Integer
|
|
14428
|
+
# @param LicenseType: 授权类型
|
|
14429
|
+
# @type LicenseType: Integer
|
|
14430
|
+
# @param Status: 授权订单资源状态
|
|
14431
|
+
# @type Status: Integer
|
|
14432
|
+
# @param SourceType: 订单类型
|
|
14433
|
+
# @type SourceType: Integer
|
|
14434
|
+
# @param ResourceId: 资源ID
|
|
14435
|
+
# @type ResourceId: String
|
|
14436
|
+
|
|
14437
|
+
attr_accessor :LicenseId, :LicenseType, :Status, :SourceType, :ResourceId
|
|
14438
|
+
|
|
14439
|
+
def initialize(licenseid=nil, licensetype=nil, status=nil, sourcetype=nil, resourceid=nil)
|
|
14440
|
+
@LicenseId = licenseid
|
|
14441
|
+
@LicenseType = licensetype
|
|
14442
|
+
@Status = status
|
|
14443
|
+
@SourceType = sourcetype
|
|
14444
|
+
@ResourceId = resourceid
|
|
14445
|
+
end
|
|
14446
|
+
|
|
14447
|
+
def deserialize(params)
|
|
14448
|
+
@LicenseId = params['LicenseId']
|
|
14449
|
+
@LicenseType = params['LicenseType']
|
|
14450
|
+
@Status = params['Status']
|
|
14451
|
+
@SourceType = params['SourceType']
|
|
14452
|
+
@ResourceId = params['ResourceId']
|
|
14453
|
+
end
|
|
14454
|
+
end
|
|
14455
|
+
|
|
14416
14456
|
# 异地登录合并后白名单
|
|
14417
14457
|
class LoginWhiteCombinedInfo < TencentCloud::Common::AbstractModel
|
|
14418
14458
|
# @param Places: 白名单地域
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cwp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.341
|
|
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-06-
|
|
11
|
+
date: 2022-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|