tencentcloud-sdk-cwp 3.0.563 → 3.0.564
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 +41 -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: e3a9bbf67510ba4dcecfbc4e3a143c1e2ec74c6f
|
4
|
+
data.tar.gz: 9f3d7392cdc4aec4f28fa0c3eb1262e6559ac7d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36afc51718d00c8e740f177170249a3c29b22d834226a6ad9555af20fe486cfe132b2248b100a7732d2b7ab9f9fc89bc59eaf000b86b216013029807eea74162
|
7
|
+
data.tar.gz: d42d2d7f34fef7a66ed2d09129bdbf9a1040a113d33755f51840ebab343e61f7205419ae9f358893fc477148d8e0f20d10059286137e356a4846a8878d92103d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.564
|
data/lib/v20180228/models.rb
CHANGED
@@ -12223,12 +12223,14 @@ module TencentCloud
|
|
12223
12223
|
# @type AutoRepurchaseSwitch: Boolean
|
12224
12224
|
# @param AutoRepurchaseRenewSwitch: 自动加购订单是否自动续费 ,true 开启, false 关闭
|
12225
12225
|
# @type AutoRepurchaseRenewSwitch: Boolean
|
12226
|
+
# @param DestroyOrderNum: 已销毁订单数
|
12227
|
+
# @type DestroyOrderNum: Integer
|
12226
12228
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
12227
12229
|
# @type RequestId: String
|
12228
12230
|
|
12229
|
-
attr_accessor :LicenseCnt, :AvailableLicenseCnt, :AvailableProVersionLicenseCnt, :AvailableFlagshipVersionLicenseCnt, :NearExpiryLicenseCnt, :ExpireLicenseCnt, :AutoOpenStatus, :ProtectType, :IsOpenStatusHistory, :UsedLicenseCnt, :NotExpiredLicenseCnt, :FlagshipVersionLicenseCnt, :ProVersionLicenseCnt, :CwpVersionLicenseCnt, :AvailableLHLicenseCnt, :AutoRepurchaseSwitch, :AutoRepurchaseRenewSwitch, :RequestId
|
12231
|
+
attr_accessor :LicenseCnt, :AvailableLicenseCnt, :AvailableProVersionLicenseCnt, :AvailableFlagshipVersionLicenseCnt, :NearExpiryLicenseCnt, :ExpireLicenseCnt, :AutoOpenStatus, :ProtectType, :IsOpenStatusHistory, :UsedLicenseCnt, :NotExpiredLicenseCnt, :FlagshipVersionLicenseCnt, :ProVersionLicenseCnt, :CwpVersionLicenseCnt, :AvailableLHLicenseCnt, :AutoRepurchaseSwitch, :AutoRepurchaseRenewSwitch, :DestroyOrderNum, :RequestId
|
12230
12232
|
|
12231
|
-
def initialize(licensecnt=nil, availablelicensecnt=nil, availableproversionlicensecnt=nil, availableflagshipversionlicensecnt=nil, nearexpirylicensecnt=nil, expirelicensecnt=nil, autoopenstatus=nil, protecttype=nil, isopenstatushistory=nil, usedlicensecnt=nil, notexpiredlicensecnt=nil, flagshipversionlicensecnt=nil, proversionlicensecnt=nil, cwpversionlicensecnt=nil, availablelhlicensecnt=nil, autorepurchaseswitch=nil, autorepurchaserenewswitch=nil, requestid=nil)
|
12233
|
+
def initialize(licensecnt=nil, availablelicensecnt=nil, availableproversionlicensecnt=nil, availableflagshipversionlicensecnt=nil, nearexpirylicensecnt=nil, expirelicensecnt=nil, autoopenstatus=nil, protecttype=nil, isopenstatushistory=nil, usedlicensecnt=nil, notexpiredlicensecnt=nil, flagshipversionlicensecnt=nil, proversionlicensecnt=nil, cwpversionlicensecnt=nil, availablelhlicensecnt=nil, autorepurchaseswitch=nil, autorepurchaserenewswitch=nil, destroyordernum=nil, requestid=nil)
|
12232
12234
|
@LicenseCnt = licensecnt
|
12233
12235
|
@AvailableLicenseCnt = availablelicensecnt
|
12234
12236
|
@AvailableProVersionLicenseCnt = availableproversionlicensecnt
|
@@ -12246,6 +12248,7 @@ module TencentCloud
|
|
12246
12248
|
@AvailableLHLicenseCnt = availablelhlicensecnt
|
12247
12249
|
@AutoRepurchaseSwitch = autorepurchaseswitch
|
12248
12250
|
@AutoRepurchaseRenewSwitch = autorepurchaserenewswitch
|
12251
|
+
@DestroyOrderNum = destroyordernum
|
12249
12252
|
@RequestId = requestid
|
12250
12253
|
end
|
12251
12254
|
|
@@ -12267,6 +12270,7 @@ module TencentCloud
|
|
12267
12270
|
@AvailableLHLicenseCnt = params['AvailableLHLicenseCnt']
|
12268
12271
|
@AutoRepurchaseSwitch = params['AutoRepurchaseSwitch']
|
12269
12272
|
@AutoRepurchaseRenewSwitch = params['AutoRepurchaseRenewSwitch']
|
12273
|
+
@DestroyOrderNum = params['DestroyOrderNum']
|
12270
12274
|
@RequestId = params['RequestId']
|
12271
12275
|
end
|
12272
12276
|
end
|
@@ -19628,10 +19632,12 @@ module TencentCloud
|
|
19628
19632
|
# @type ModifyTime: String
|
19629
19633
|
# @param Uuid: 服务器Uuid
|
19630
19634
|
# @type Uuid: String
|
19635
|
+
# @param Locations: 登陆地
|
19636
|
+
# @type Locations: String
|
19631
19637
|
|
19632
|
-
attr_accessor :Places, :UserName, :SrcIp, :Locale, :Remark, :StartTime, :EndTime, :IsGlobal, :Name, :Desc, :Id, :CreateTime, :ModifyTime, :Uuid
|
19638
|
+
attr_accessor :Places, :UserName, :SrcIp, :Locale, :Remark, :StartTime, :EndTime, :IsGlobal, :Name, :Desc, :Id, :CreateTime, :ModifyTime, :Uuid, :Locations
|
19633
19639
|
|
19634
|
-
def initialize(places=nil, username=nil, srcip=nil, locale=nil, remark=nil, starttime=nil, endtime=nil, isglobal=nil, name=nil, desc=nil, id=nil, createtime=nil, modifytime=nil, uuid=nil)
|
19640
|
+
def initialize(places=nil, username=nil, srcip=nil, locale=nil, remark=nil, starttime=nil, endtime=nil, isglobal=nil, name=nil, desc=nil, id=nil, createtime=nil, modifytime=nil, uuid=nil, locations=nil)
|
19635
19641
|
@Places = places
|
19636
19642
|
@UserName = username
|
19637
19643
|
@SrcIp = srcip
|
@@ -19646,6 +19652,7 @@ module TencentCloud
|
|
19646
19652
|
@CreateTime = createtime
|
19647
19653
|
@ModifyTime = modifytime
|
19648
19654
|
@Uuid = uuid
|
19655
|
+
@Locations = locations
|
19649
19656
|
end
|
19650
19657
|
|
19651
19658
|
def deserialize(params)
|
@@ -19670,6 +19677,7 @@ module TencentCloud
|
|
19670
19677
|
@CreateTime = params['CreateTime']
|
19671
19678
|
@ModifyTime = params['ModifyTime']
|
19672
19679
|
@Uuid = params['Uuid']
|
19680
|
+
@Locations = params['Locations']
|
19673
19681
|
end
|
19674
19682
|
end
|
19675
19683
|
|
@@ -21535,10 +21543,22 @@ module TencentCloud
|
|
21535
21543
|
# @type ProtectException: Integer
|
21536
21544
|
# @param AutoRestoreSwitchStatus: 自动恢复开关 (Filters 过滤Quuid 时 返回) 默认0
|
21537
21545
|
# @type AutoRestoreSwitchStatus: Integer
|
21546
|
+
# @param FirstProtectTime: 首次开启防护时间
|
21547
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21548
|
+
# @type FirstProtectTime: String
|
21549
|
+
# @param LatestProtectTime: 最近开启防护时间
|
21550
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21551
|
+
# @type LatestProtectTime: String
|
21552
|
+
# @param ProtectFileType: 防护文件类型
|
21553
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21554
|
+
# @type ProtectFileType: String
|
21555
|
+
# @param ProtectFilesCount: 防护文件总数
|
21556
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21557
|
+
# @type ProtectFilesCount: Integer
|
21538
21558
|
|
21539
|
-
attr_accessor :DirName, :DirPath, :RelatedServerNum, :ProtectServerNum, :NoProtectServerNum, :Id, :ProtectStatus, :ProtectException, :AutoRestoreSwitchStatus
|
21559
|
+
attr_accessor :DirName, :DirPath, :RelatedServerNum, :ProtectServerNum, :NoProtectServerNum, :Id, :ProtectStatus, :ProtectException, :AutoRestoreSwitchStatus, :FirstProtectTime, :LatestProtectTime, :ProtectFileType, :ProtectFilesCount
|
21540
21560
|
|
21541
|
-
def initialize(dirname=nil, dirpath=nil, relatedservernum=nil, protectservernum=nil, noprotectservernum=nil, id=nil, protectstatus=nil, protectexception=nil, autorestoreswitchstatus=nil)
|
21561
|
+
def initialize(dirname=nil, dirpath=nil, relatedservernum=nil, protectservernum=nil, noprotectservernum=nil, id=nil, protectstatus=nil, protectexception=nil, autorestoreswitchstatus=nil, firstprotecttime=nil, latestprotecttime=nil, protectfiletype=nil, protectfilescount=nil)
|
21542
21562
|
@DirName = dirname
|
21543
21563
|
@DirPath = dirpath
|
21544
21564
|
@RelatedServerNum = relatedservernum
|
@@ -21548,6 +21568,10 @@ module TencentCloud
|
|
21548
21568
|
@ProtectStatus = protectstatus
|
21549
21569
|
@ProtectException = protectexception
|
21550
21570
|
@AutoRestoreSwitchStatus = autorestoreswitchstatus
|
21571
|
+
@FirstProtectTime = firstprotecttime
|
21572
|
+
@LatestProtectTime = latestprotecttime
|
21573
|
+
@ProtectFileType = protectfiletype
|
21574
|
+
@ProtectFilesCount = protectfilescount
|
21551
21575
|
end
|
21552
21576
|
|
21553
21577
|
def deserialize(params)
|
@@ -21560,6 +21584,10 @@ module TencentCloud
|
|
21560
21584
|
@ProtectStatus = params['ProtectStatus']
|
21561
21585
|
@ProtectException = params['ProtectException']
|
21562
21586
|
@AutoRestoreSwitchStatus = params['AutoRestoreSwitchStatus']
|
21587
|
+
@FirstProtectTime = params['FirstProtectTime']
|
21588
|
+
@LatestProtectTime = params['LatestProtectTime']
|
21589
|
+
@ProtectFileType = params['ProtectFileType']
|
21590
|
+
@ProtectFilesCount = params['ProtectFilesCount']
|
21563
21591
|
end
|
21564
21592
|
end
|
21565
21593
|
|
@@ -21658,10 +21686,13 @@ module TencentCloud
|
|
21658
21686
|
# @param MachineExtraInfo: 主机额外信息
|
21659
21687
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21660
21688
|
# @type MachineExtraInfo: :class:`Tencentcloud::Cwp.v20180228.models.MachineExtraInfo`
|
21689
|
+
# @param Quuid: 机器实例uuid
|
21690
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21691
|
+
# @type Quuid: String
|
21661
21692
|
|
21662
|
-
attr_accessor :HostName, :HostIp, :EventDir, :EventType, :EventStatus, :CreateTime, :RestoreTime, :Id, :FileType, :MachineExtraInfo
|
21693
|
+
attr_accessor :HostName, :HostIp, :EventDir, :EventType, :EventStatus, :CreateTime, :RestoreTime, :Id, :FileType, :MachineExtraInfo, :Quuid
|
21663
21694
|
|
21664
|
-
def initialize(hostname=nil, hostip=nil, eventdir=nil, eventtype=nil, eventstatus=nil, createtime=nil, restoretime=nil, id=nil, filetype=nil, machineextrainfo=nil)
|
21695
|
+
def initialize(hostname=nil, hostip=nil, eventdir=nil, eventtype=nil, eventstatus=nil, createtime=nil, restoretime=nil, id=nil, filetype=nil, machineextrainfo=nil, quuid=nil)
|
21665
21696
|
@HostName = hostname
|
21666
21697
|
@HostIp = hostip
|
21667
21698
|
@EventDir = eventdir
|
@@ -21672,6 +21703,7 @@ module TencentCloud
|
|
21672
21703
|
@Id = id
|
21673
21704
|
@FileType = filetype
|
21674
21705
|
@MachineExtraInfo = machineextrainfo
|
21706
|
+
@Quuid = quuid
|
21675
21707
|
end
|
21676
21708
|
|
21677
21709
|
def deserialize(params)
|
@@ -21688,6 +21720,7 @@ module TencentCloud
|
|
21688
21720
|
@MachineExtraInfo = MachineExtraInfo.new
|
21689
21721
|
@MachineExtraInfo.deserialize(params['MachineExtraInfo'])
|
21690
21722
|
end
|
21723
|
+
@Quuid = params['Quuid']
|
21691
21724
|
end
|
21692
21725
|
end
|
21693
21726
|
|
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: 3.0.
|
4
|
+
version: 3.0.564
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|