tencentcloud-sdk-cwp 3.0.406 → 3.0.407
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/client.rb +267 -0
- data/lib/v20180228/models.rb +1419 -315
- metadata +2 -2
data/lib/v20180228/models.rb
CHANGED
@@ -41,14 +41,14 @@ module TencentCloud
|
|
41
41
|
class AssetAppBaseInfo < TencentCloud::Common::AbstractModel
|
42
42
|
# @param MachineIp: 主机内网IP
|
43
43
|
# @type MachineIp: String
|
44
|
+
# @param MachineName: 主机名称
|
45
|
+
# @type MachineName: String
|
44
46
|
# @param MachineWanIp: 主机外网IP
|
45
47
|
# @type MachineWanIp: String
|
46
|
-
# @param Quuid: 主机Quuid
|
47
|
-
# @type Quuid: String
|
48
48
|
# @param Uuid: 主机Uuid
|
49
49
|
# @type Uuid: String
|
50
|
-
# @param
|
51
|
-
# @type
|
50
|
+
# @param Quuid: 主机Quuid
|
51
|
+
# @type Quuid: String
|
52
52
|
# @param ProjectId: 主机业务组ID
|
53
53
|
# @type ProjectId: Integer
|
54
54
|
# @param Tag: 主机标签
|
@@ -68,44 +68,54 @@ module TencentCloud
|
|
68
68
|
# @type Type: Integer
|
69
69
|
# @param BinPath: 二进制路径
|
70
70
|
# @type BinPath: String
|
71
|
-
# @param
|
72
|
-
# @type
|
71
|
+
# @param OsInfo: 操作系统信息
|
72
|
+
# @type OsInfo: String
|
73
73
|
# @param ProcessCount: 关联进程数
|
74
74
|
# @type ProcessCount: Integer
|
75
75
|
# @param Desc: 应用描述
|
76
76
|
# @type Desc: String
|
77
77
|
# @param Version: 版本号
|
78
78
|
# @type Version: String
|
79
|
+
# @param ConfigPath: 配置文件路径
|
80
|
+
# @type ConfigPath: String
|
81
|
+
# @param FirstTime: 首次采集时间
|
82
|
+
# @type FirstTime: String
|
79
83
|
# @param UpdateTime: 数据更新时间
|
80
84
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
81
85
|
# @type UpdateTime: String
|
86
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
87
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
88
|
+
# @type IsNew: Integer
|
82
89
|
|
83
|
-
attr_accessor :MachineIp, :
|
90
|
+
attr_accessor :MachineIp, :MachineName, :MachineWanIp, :Uuid, :Quuid, :ProjectId, :Tag, :Name, :Type, :BinPath, :OsInfo, :ProcessCount, :Desc, :Version, :ConfigPath, :FirstTime, :UpdateTime, :IsNew
|
84
91
|
|
85
|
-
def initialize(machineip=nil,
|
92
|
+
def initialize(machineip=nil, machinename=nil, machinewanip=nil, uuid=nil, quuid=nil, projectid=nil, tag=nil, name=nil, type=nil, binpath=nil, osinfo=nil, processcount=nil, desc=nil, version=nil, configpath=nil, firsttime=nil, updatetime=nil, isnew=nil)
|
86
93
|
@MachineIp = machineip
|
94
|
+
@MachineName = machinename
|
87
95
|
@MachineWanIp = machinewanip
|
88
|
-
@Quuid = quuid
|
89
96
|
@Uuid = uuid
|
90
|
-
@
|
97
|
+
@Quuid = quuid
|
91
98
|
@ProjectId = projectid
|
92
99
|
@Tag = tag
|
93
100
|
@Name = name
|
94
101
|
@Type = type
|
95
102
|
@BinPath = binpath
|
96
|
-
@
|
103
|
+
@OsInfo = osinfo
|
97
104
|
@ProcessCount = processcount
|
98
105
|
@Desc = desc
|
99
106
|
@Version = version
|
107
|
+
@ConfigPath = configpath
|
108
|
+
@FirstTime = firsttime
|
100
109
|
@UpdateTime = updatetime
|
110
|
+
@IsNew = isnew
|
101
111
|
end
|
102
112
|
|
103
113
|
def deserialize(params)
|
104
114
|
@MachineIp = params['MachineIp']
|
115
|
+
@MachineName = params['MachineName']
|
105
116
|
@MachineWanIp = params['MachineWanIp']
|
106
|
-
@Quuid = params['Quuid']
|
107
117
|
@Uuid = params['Uuid']
|
108
|
-
@
|
118
|
+
@Quuid = params['Quuid']
|
109
119
|
@ProjectId = params['ProjectId']
|
110
120
|
unless params['Tag'].nil?
|
111
121
|
@Tag = []
|
@@ -118,11 +128,14 @@ module TencentCloud
|
|
118
128
|
@Name = params['Name']
|
119
129
|
@Type = params['Type']
|
120
130
|
@BinPath = params['BinPath']
|
121
|
-
@
|
131
|
+
@OsInfo = params['OsInfo']
|
122
132
|
@ProcessCount = params['ProcessCount']
|
123
133
|
@Desc = params['Desc']
|
124
134
|
@Version = params['Version']
|
135
|
+
@ConfigPath = params['ConfigPath']
|
136
|
+
@FirstTime = params['FirstTime']
|
125
137
|
@UpdateTime = params['UpdateTime']
|
138
|
+
@IsNew = params['IsNew']
|
126
139
|
end
|
127
140
|
end
|
128
141
|
|
@@ -193,10 +206,16 @@ module TencentCloud
|
|
193
206
|
# @param UpdateTime: 数据更新时间
|
194
207
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
195
208
|
# @type UpdateTime: String
|
209
|
+
# @param FirstTime: 首次采集时间
|
210
|
+
# @type FirstTime: String
|
211
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
212
|
+
# @type IsNew: Integer
|
213
|
+
# @param MachineWanIp: 服务器外网IP
|
214
|
+
# @type MachineWanIp: String
|
196
215
|
|
197
|
-
attr_accessor :Name, :Desc, :Path, :Version, :MachineIp, :MachineName, :OsInfo, :Size, :ProcessCount, :ModuleCount, :Id, :Quuid, :Uuid, :UpdateTime
|
216
|
+
attr_accessor :Name, :Desc, :Path, :Version, :MachineIp, :MachineName, :OsInfo, :Size, :ProcessCount, :ModuleCount, :Id, :Quuid, :Uuid, :UpdateTime, :FirstTime, :IsNew, :MachineWanIp
|
198
217
|
|
199
|
-
def initialize(name=nil, desc=nil, path=nil, version=nil, machineip=nil, machinename=nil, osinfo=nil, size=nil, processcount=nil, modulecount=nil, id=nil, quuid=nil, uuid=nil, updatetime=nil)
|
218
|
+
def initialize(name=nil, desc=nil, path=nil, version=nil, machineip=nil, machinename=nil, osinfo=nil, size=nil, processcount=nil, modulecount=nil, id=nil, quuid=nil, uuid=nil, updatetime=nil, firsttime=nil, isnew=nil, machinewanip=nil)
|
200
219
|
@Name = name
|
201
220
|
@Desc = desc
|
202
221
|
@Path = path
|
@@ -211,6 +230,9 @@ module TencentCloud
|
|
211
230
|
@Quuid = quuid
|
212
231
|
@Uuid = uuid
|
213
232
|
@UpdateTime = updatetime
|
233
|
+
@FirstTime = firsttime
|
234
|
+
@IsNew = isnew
|
235
|
+
@MachineWanIp = machinewanip
|
214
236
|
end
|
215
237
|
|
216
238
|
def deserialize(params)
|
@@ -228,6 +250,9 @@ module TencentCloud
|
|
228
250
|
@Quuid = params['Quuid']
|
229
251
|
@Uuid = params['Uuid']
|
230
252
|
@UpdateTime = params['UpdateTime']
|
253
|
+
@FirstTime = params['FirstTime']
|
254
|
+
@IsNew = params['IsNew']
|
255
|
+
@MachineWanIp = params['MachineWanIp']
|
231
256
|
end
|
232
257
|
end
|
233
258
|
|
@@ -358,10 +383,16 @@ module TencentCloud
|
|
358
383
|
# @param UpdateTime: 数据更新时间
|
359
384
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
360
385
|
# @type UpdateTime: String
|
386
|
+
# @param FirstTime: 首次采集时间
|
387
|
+
# @type FirstTime: String
|
388
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
389
|
+
# @type IsNew: Integer
|
390
|
+
# @param MachineName: 主机名称
|
391
|
+
# @type MachineName: String
|
361
392
|
|
362
|
-
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :Port, :Proto, :User, :Ip, :ConfigPath, :LogPath, :DataPath, :Permission, :ErrorLogPath, :PlugInPath, :BinPath, :Param, :Id, :UpdateTime
|
393
|
+
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :Port, :Proto, :User, :Ip, :ConfigPath, :LogPath, :DataPath, :Permission, :ErrorLogPath, :PlugInPath, :BinPath, :Param, :Id, :UpdateTime, :FirstTime, :IsNew, :MachineName
|
363
394
|
|
364
|
-
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, port=nil, proto=nil, user=nil, ip=nil, configpath=nil, logpath=nil, datapath=nil, permission=nil, errorlogpath=nil, pluginpath=nil, binpath=nil, param=nil, id=nil, updatetime=nil)
|
395
|
+
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, port=nil, proto=nil, user=nil, ip=nil, configpath=nil, logpath=nil, datapath=nil, permission=nil, errorlogpath=nil, pluginpath=nil, binpath=nil, param=nil, id=nil, updatetime=nil, firsttime=nil, isnew=nil, machinename=nil)
|
365
396
|
@MachineIp = machineip
|
366
397
|
@MachineWanIp = machinewanip
|
367
398
|
@Quuid = quuid
|
@@ -385,6 +416,9 @@ module TencentCloud
|
|
385
416
|
@Param = param
|
386
417
|
@Id = id
|
387
418
|
@UpdateTime = updatetime
|
419
|
+
@FirstTime = firsttime
|
420
|
+
@IsNew = isnew
|
421
|
+
@MachineName = machinename
|
388
422
|
end
|
389
423
|
|
390
424
|
def deserialize(params)
|
@@ -418,6 +452,9 @@ module TencentCloud
|
|
418
452
|
@Param = params['Param']
|
419
453
|
@Id = params['Id']
|
420
454
|
@UpdateTime = params['UpdateTime']
|
455
|
+
@FirstTime = params['FirstTime']
|
456
|
+
@IsNew = params['IsNew']
|
457
|
+
@MachineName = params['MachineName']
|
421
458
|
end
|
422
459
|
end
|
423
460
|
|
@@ -575,10 +612,16 @@ module TencentCloud
|
|
575
612
|
# @param UpdateTime: 数据更新时间
|
576
613
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
577
614
|
# @type UpdateTime: String
|
615
|
+
# @param FirstTime: 首次采集时间
|
616
|
+
# @type FirstTime: String
|
617
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
618
|
+
# @type IsNew: Integer
|
619
|
+
# @param MachineWanIp: 服务器外网IP
|
620
|
+
# @type MachineWanIp: String
|
578
621
|
|
579
|
-
attr_accessor :Name, :Type, :User, :Value, :MachineIp, :MachineName, :OsInfo, :Quuid, :Uuid, :UpdateTime
|
622
|
+
attr_accessor :Name, :Type, :User, :Value, :MachineIp, :MachineName, :OsInfo, :Quuid, :Uuid, :UpdateTime, :FirstTime, :IsNew, :MachineWanIp
|
580
623
|
|
581
|
-
def initialize(name=nil, type=nil, user=nil, value=nil, machineip=nil, machinename=nil, osinfo=nil, quuid=nil, uuid=nil, updatetime=nil)
|
624
|
+
def initialize(name=nil, type=nil, user=nil, value=nil, machineip=nil, machinename=nil, osinfo=nil, quuid=nil, uuid=nil, updatetime=nil, firsttime=nil, isnew=nil, machinewanip=nil)
|
582
625
|
@Name = name
|
583
626
|
@Type = type
|
584
627
|
@User = user
|
@@ -589,6 +632,9 @@ module TencentCloud
|
|
589
632
|
@Quuid = quuid
|
590
633
|
@Uuid = uuid
|
591
634
|
@UpdateTime = updatetime
|
635
|
+
@FirstTime = firsttime
|
636
|
+
@IsNew = isnew
|
637
|
+
@MachineWanIp = machinewanip
|
592
638
|
end
|
593
639
|
|
594
640
|
def deserialize(params)
|
@@ -602,6 +648,9 @@ module TencentCloud
|
|
602
648
|
@Quuid = params['Quuid']
|
603
649
|
@Uuid = params['Uuid']
|
604
650
|
@UpdateTime = params['UpdateTime']
|
651
|
+
@FirstTime = params['FirstTime']
|
652
|
+
@IsNew = params['IsNew']
|
653
|
+
@MachineWanIp = params['MachineWanIp']
|
605
654
|
end
|
606
655
|
end
|
607
656
|
|
@@ -670,10 +719,16 @@ module TencentCloud
|
|
670
719
|
# @type Uuid: String
|
671
720
|
# @param UpdateTime: 数据更新时间
|
672
721
|
# @type UpdateTime: String
|
722
|
+
# @param FirstTime: 首次采集时间
|
723
|
+
# @type FirstTime: String
|
724
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
725
|
+
# @type IsNew: Integer
|
726
|
+
# @param MachineWanIp: 服务器外网IP
|
727
|
+
# @type MachineWanIp: String
|
673
728
|
|
674
|
-
attr_accessor :Name, :Type, :Status, :User, :Path, :MachineIp, :MachineName, :OsInfo, :Quuid, :Uuid, :UpdateTime
|
729
|
+
attr_accessor :Name, :Type, :Status, :User, :Path, :MachineIp, :MachineName, :OsInfo, :Quuid, :Uuid, :UpdateTime, :FirstTime, :IsNew, :MachineWanIp
|
675
730
|
|
676
|
-
def initialize(name=nil, type=nil, status=nil, user=nil, path=nil, machineip=nil, machinename=nil, osinfo=nil, quuid=nil, uuid=nil, updatetime=nil)
|
731
|
+
def initialize(name=nil, type=nil, status=nil, user=nil, path=nil, machineip=nil, machinename=nil, osinfo=nil, quuid=nil, uuid=nil, updatetime=nil, firsttime=nil, isnew=nil, machinewanip=nil)
|
677
732
|
@Name = name
|
678
733
|
@Type = type
|
679
734
|
@Status = status
|
@@ -685,6 +740,9 @@ module TencentCloud
|
|
685
740
|
@Quuid = quuid
|
686
741
|
@Uuid = uuid
|
687
742
|
@UpdateTime = updatetime
|
743
|
+
@FirstTime = firsttime
|
744
|
+
@IsNew = isnew
|
745
|
+
@MachineWanIp = machinewanip
|
688
746
|
end
|
689
747
|
|
690
748
|
def deserialize(params)
|
@@ -699,6 +757,9 @@ module TencentCloud
|
|
699
757
|
@Quuid = params['Quuid']
|
700
758
|
@Uuid = params['Uuid']
|
701
759
|
@UpdateTime = params['UpdateTime']
|
760
|
+
@FirstTime = params['FirstTime']
|
761
|
+
@IsNew = params['IsNew']
|
762
|
+
@MachineWanIp = params['MachineWanIp']
|
702
763
|
end
|
703
764
|
end
|
704
765
|
|
@@ -731,10 +792,16 @@ module TencentCloud
|
|
731
792
|
# @param UpdateTime: 数据更新时间
|
732
793
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
733
794
|
# @type UpdateTime: String
|
795
|
+
# @param FirstTime: 首次采集时间
|
796
|
+
# @type FirstTime: String
|
797
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
798
|
+
# @type IsNew: Integer
|
799
|
+
# @param MachineWanIp: 服务器外网IP
|
800
|
+
# @type MachineWanIp: String
|
734
801
|
|
735
|
-
attr_accessor :Name, :Type, :Status, :Version, :Path, :MachineIp, :MachineName, :OsInfo, :Id, :Md5, :Quuid, :Uuid, :UpdateTime
|
802
|
+
attr_accessor :Name, :Type, :Status, :Version, :Path, :MachineIp, :MachineName, :OsInfo, :Id, :Md5, :Quuid, :Uuid, :UpdateTime, :FirstTime, :IsNew, :MachineWanIp
|
736
803
|
|
737
|
-
def initialize(name=nil, type=nil, status=nil, version=nil, path=nil, machineip=nil, machinename=nil, osinfo=nil, id=nil, md5=nil, quuid=nil, uuid=nil, updatetime=nil)
|
804
|
+
def initialize(name=nil, type=nil, status=nil, version=nil, path=nil, machineip=nil, machinename=nil, osinfo=nil, id=nil, md5=nil, quuid=nil, uuid=nil, updatetime=nil, firsttime=nil, isnew=nil, machinewanip=nil)
|
738
805
|
@Name = name
|
739
806
|
@Type = type
|
740
807
|
@Status = status
|
@@ -748,6 +815,9 @@ module TencentCloud
|
|
748
815
|
@Quuid = quuid
|
749
816
|
@Uuid = uuid
|
750
817
|
@UpdateTime = updatetime
|
818
|
+
@FirstTime = firsttime
|
819
|
+
@IsNew = isnew
|
820
|
+
@MachineWanIp = machinewanip
|
751
821
|
end
|
752
822
|
|
753
823
|
def deserialize(params)
|
@@ -764,6 +834,9 @@ module TencentCloud
|
|
764
834
|
@Quuid = params['Quuid']
|
765
835
|
@Uuid = params['Uuid']
|
766
836
|
@UpdateTime = params['UpdateTime']
|
837
|
+
@FirstTime = params['FirstTime']
|
838
|
+
@IsNew = params['IsNew']
|
839
|
+
@MachineWanIp = params['MachineWanIp']
|
767
840
|
end
|
768
841
|
end
|
769
842
|
|
@@ -842,19 +915,24 @@ module TencentCloud
|
|
842
915
|
# @param Desc: 描述信息
|
843
916
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
844
917
|
# @type Desc: String
|
918
|
+
# @param NewCount: 今日新增数量
|
919
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
920
|
+
# @type NewCount: Integer
|
845
921
|
|
846
|
-
attr_accessor :Key, :Value, :Desc
|
922
|
+
attr_accessor :Key, :Value, :Desc, :NewCount
|
847
923
|
|
848
|
-
def initialize(key=nil, value=nil, desc=nil)
|
924
|
+
def initialize(key=nil, value=nil, desc=nil, newcount=nil)
|
849
925
|
@Key = key
|
850
926
|
@Value = value
|
851
927
|
@Desc = desc
|
928
|
+
@NewCount = newcount
|
852
929
|
end
|
853
930
|
|
854
931
|
def deserialize(params)
|
855
932
|
@Key = params['Key']
|
856
933
|
@Value = params['Value']
|
857
934
|
@Desc = params['Desc']
|
935
|
+
@NewCount = params['NewCount']
|
858
936
|
end
|
859
937
|
end
|
860
938
|
|
@@ -896,10 +974,14 @@ module TencentCloud
|
|
896
974
|
# @param UpdateTime: 数据更新时间
|
897
975
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
898
976
|
# @type UpdateTime: String
|
977
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
978
|
+
# @type IsNew: Integer
|
979
|
+
# @param FirstTime: 首次采集时间
|
980
|
+
# @type FirstTime: String
|
899
981
|
|
900
|
-
attr_accessor :Quuid, :Uuid, :MachineIp, :MachineName, :OsInfo, :Cpu, :MemSize, :MemLoad, :DiskSize, :DiskLoad, :PartitionCount, :MachineWanIp, :ProjectId, :CpuSize, :CpuLoad, :Tag, :UpdateTime
|
982
|
+
attr_accessor :Quuid, :Uuid, :MachineIp, :MachineName, :OsInfo, :Cpu, :MemSize, :MemLoad, :DiskSize, :DiskLoad, :PartitionCount, :MachineWanIp, :ProjectId, :CpuSize, :CpuLoad, :Tag, :UpdateTime, :IsNew, :FirstTime
|
901
983
|
|
902
|
-
def initialize(quuid=nil, uuid=nil, machineip=nil, machinename=nil, osinfo=nil, cpu=nil, memsize=nil, memload=nil, disksize=nil, diskload=nil, partitioncount=nil, machinewanip=nil, projectid=nil, cpusize=nil, cpuload=nil, tag=nil, updatetime=nil)
|
984
|
+
def initialize(quuid=nil, uuid=nil, machineip=nil, machinename=nil, osinfo=nil, cpu=nil, memsize=nil, memload=nil, disksize=nil, diskload=nil, partitioncount=nil, machinewanip=nil, projectid=nil, cpusize=nil, cpuload=nil, tag=nil, updatetime=nil, isnew=nil, firsttime=nil)
|
903
985
|
@Quuid = quuid
|
904
986
|
@Uuid = uuid
|
905
987
|
@MachineIp = machineip
|
@@ -917,6 +999,8 @@ module TencentCloud
|
|
917
999
|
@CpuLoad = cpuload
|
918
1000
|
@Tag = tag
|
919
1001
|
@UpdateTime = updatetime
|
1002
|
+
@IsNew = isnew
|
1003
|
+
@FirstTime = firsttime
|
920
1004
|
end
|
921
1005
|
|
922
1006
|
def deserialize(params)
|
@@ -944,6 +1028,8 @@ module TencentCloud
|
|
944
1028
|
end
|
945
1029
|
end
|
946
1030
|
@UpdateTime = params['UpdateTime']
|
1031
|
+
@IsNew = params['IsNew']
|
1032
|
+
@FirstTime = params['FirstTime']
|
947
1033
|
end
|
948
1034
|
end
|
949
1035
|
|
@@ -1177,10 +1263,16 @@ module TencentCloud
|
|
1177
1263
|
# @param UpdateTime: 数据更新时间
|
1178
1264
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1179
1265
|
# @type UpdateTime: String
|
1266
|
+
# @param FirstTime: 首次采集时间
|
1267
|
+
# @type FirstTime: String
|
1268
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
1269
|
+
# @type IsNew: Integer
|
1270
|
+
# @param MachineWanIp: 服务器外网IP
|
1271
|
+
# @type MachineWanIp: String
|
1180
1272
|
|
1181
|
-
attr_accessor :Status, :Cycle, :Command, :User, :ConfigPath, :MachineIp, :MachineName, :OsInfo, :Quuid, :Uuid, :UpdateTime
|
1273
|
+
attr_accessor :Status, :Cycle, :Command, :User, :ConfigPath, :MachineIp, :MachineName, :OsInfo, :Quuid, :Uuid, :UpdateTime, :FirstTime, :IsNew, :MachineWanIp
|
1182
1274
|
|
1183
|
-
def initialize(status=nil, cycle=nil, command=nil, user=nil, configpath=nil, machineip=nil, machinename=nil, osinfo=nil, quuid=nil, uuid=nil, updatetime=nil)
|
1275
|
+
def initialize(status=nil, cycle=nil, command=nil, user=nil, configpath=nil, machineip=nil, machinename=nil, osinfo=nil, quuid=nil, uuid=nil, updatetime=nil, firsttime=nil, isnew=nil, machinewanip=nil)
|
1184
1276
|
@Status = status
|
1185
1277
|
@Cycle = cycle
|
1186
1278
|
@Command = command
|
@@ -1192,6 +1284,9 @@ module TencentCloud
|
|
1192
1284
|
@Quuid = quuid
|
1193
1285
|
@Uuid = uuid
|
1194
1286
|
@UpdateTime = updatetime
|
1287
|
+
@FirstTime = firsttime
|
1288
|
+
@IsNew = isnew
|
1289
|
+
@MachineWanIp = machinewanip
|
1195
1290
|
end
|
1196
1291
|
|
1197
1292
|
def deserialize(params)
|
@@ -1206,6 +1301,9 @@ module TencentCloud
|
|
1206
1301
|
@Quuid = params['Quuid']
|
1207
1302
|
@Uuid = params['Uuid']
|
1208
1303
|
@UpdateTime = params['UpdateTime']
|
1304
|
+
@FirstTime = params['FirstTime']
|
1305
|
+
@IsNew = params['IsNew']
|
1306
|
+
@MachineWanIp = params['MachineWanIp']
|
1209
1307
|
end
|
1210
1308
|
end
|
1211
1309
|
|
@@ -1261,10 +1359,14 @@ module TencentCloud
|
|
1261
1359
|
# @param UpdateTime: 数据更新时间
|
1262
1360
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1263
1361
|
# @type UpdateTime: String
|
1362
|
+
# @param FirstTime: 首次采集时间
|
1363
|
+
# @type FirstTime: String
|
1364
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
1365
|
+
# @type IsNew: Integer
|
1264
1366
|
|
1265
|
-
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :ProcessName, :ProcessVersion, :ProcessPath, :Pid, :User, :StartTime, :Param, :Teletype, :Port, :GroupName, :Md5, :Ppid, :ParentProcessName, :Proto, :BindIp, :MachineName, :UpdateTime
|
1367
|
+
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :ProcessName, :ProcessVersion, :ProcessPath, :Pid, :User, :StartTime, :Param, :Teletype, :Port, :GroupName, :Md5, :Ppid, :ParentProcessName, :Proto, :BindIp, :MachineName, :UpdateTime, :FirstTime, :IsNew
|
1266
1368
|
|
1267
|
-
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, processname=nil, processversion=nil, processpath=nil, pid=nil, user=nil, starttime=nil, param=nil, teletype=nil, port=nil, groupname=nil, md5=nil, ppid=nil, parentprocessname=nil, proto=nil, bindip=nil, machinename=nil, updatetime=nil)
|
1369
|
+
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, processname=nil, processversion=nil, processpath=nil, pid=nil, user=nil, starttime=nil, param=nil, teletype=nil, port=nil, groupname=nil, md5=nil, ppid=nil, parentprocessname=nil, proto=nil, bindip=nil, machinename=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
1268
1370
|
@MachineIp = machineip
|
1269
1371
|
@MachineWanIp = machinewanip
|
1270
1372
|
@Quuid = quuid
|
@@ -1289,6 +1391,8 @@ module TencentCloud
|
|
1289
1391
|
@BindIp = bindip
|
1290
1392
|
@MachineName = machinename
|
1291
1393
|
@UpdateTime = updatetime
|
1394
|
+
@FirstTime = firsttime
|
1395
|
+
@IsNew = isnew
|
1292
1396
|
end
|
1293
1397
|
|
1294
1398
|
def deserialize(params)
|
@@ -1323,6 +1427,8 @@ module TencentCloud
|
|
1323
1427
|
@BindIp = params['BindIp']
|
1324
1428
|
@MachineName = params['MachineName']
|
1325
1429
|
@UpdateTime = params['UpdateTime']
|
1430
|
+
@FirstTime = params['FirstTime']
|
1431
|
+
@IsNew = params['IsNew']
|
1326
1432
|
end
|
1327
1433
|
end
|
1328
1434
|
|
@@ -1382,10 +1488,14 @@ module TencentCloud
|
|
1382
1488
|
# @param UpdateTime: 数据更新时间
|
1383
1489
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1384
1490
|
# @type UpdateTime: String
|
1491
|
+
# @param FirstTime: 首次采集时间
|
1492
|
+
# @type FirstTime: String
|
1493
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
1494
|
+
# @type IsNew: Integer
|
1385
1495
|
|
1386
|
-
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Desc, :Path, :Pid, :User, :StartTime, :Param, :Tty, :Version, :GroupName, :Md5, :Ppid, :ParentProcessName, :Status, :HasSign, :InstallByPackage, :PackageName, :MachineName, :UpdateTime
|
1496
|
+
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Desc, :Path, :Pid, :User, :StartTime, :Param, :Tty, :Version, :GroupName, :Md5, :Ppid, :ParentProcessName, :Status, :HasSign, :InstallByPackage, :PackageName, :MachineName, :UpdateTime, :FirstTime, :IsNew
|
1387
1497
|
|
1388
|
-
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, desc=nil, path=nil, pid=nil, user=nil, starttime=nil, param=nil, tty=nil, version=nil, groupname=nil, md5=nil, ppid=nil, parentprocessname=nil, status=nil, hassign=nil, installbypackage=nil, packagename=nil, machinename=nil, updatetime=nil)
|
1498
|
+
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, desc=nil, path=nil, pid=nil, user=nil, starttime=nil, param=nil, tty=nil, version=nil, groupname=nil, md5=nil, ppid=nil, parentprocessname=nil, status=nil, hassign=nil, installbypackage=nil, packagename=nil, machinename=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
1389
1499
|
@MachineIp = machineip
|
1390
1500
|
@MachineWanIp = machinewanip
|
1391
1501
|
@Quuid = quuid
|
@@ -1412,6 +1522,8 @@ module TencentCloud
|
|
1412
1522
|
@PackageName = packagename
|
1413
1523
|
@MachineName = machinename
|
1414
1524
|
@UpdateTime = updatetime
|
1525
|
+
@FirstTime = firsttime
|
1526
|
+
@IsNew = isnew
|
1415
1527
|
end
|
1416
1528
|
|
1417
1529
|
def deserialize(params)
|
@@ -1448,6 +1560,8 @@ module TencentCloud
|
|
1448
1560
|
@PackageName = params['PackageName']
|
1449
1561
|
@MachineName = params['MachineName']
|
1450
1562
|
@UpdateTime = params['UpdateTime']
|
1563
|
+
@FirstTime = params['FirstTime']
|
1564
|
+
@IsNew = params['IsNew']
|
1451
1565
|
end
|
1452
1566
|
end
|
1453
1567
|
|
@@ -1472,10 +1586,14 @@ module TencentCloud
|
|
1472
1586
|
# @param UpdateTime: 数据更新时间
|
1473
1587
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1474
1588
|
# @type UpdateTime: String
|
1589
|
+
# @param FirstTime: 首次采集时间
|
1590
|
+
# @type FirstTime: String
|
1591
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
1592
|
+
# @type IsNew: Integer
|
1475
1593
|
|
1476
|
-
attr_accessor :Name, :Desc, :Version, :InstallTime, :Type, :MachineName, :MachineIp, :OsInfo, :UpdateTime
|
1594
|
+
attr_accessor :Name, :Desc, :Version, :InstallTime, :Type, :MachineName, :MachineIp, :OsInfo, :UpdateTime, :FirstTime, :IsNew
|
1477
1595
|
|
1478
|
-
def initialize(name=nil, desc=nil, version=nil, installtime=nil, type=nil, machinename=nil, machineip=nil, osinfo=nil, updatetime=nil)
|
1596
|
+
def initialize(name=nil, desc=nil, version=nil, installtime=nil, type=nil, machinename=nil, machineip=nil, osinfo=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
1479
1597
|
@Name = name
|
1480
1598
|
@Desc = desc
|
1481
1599
|
@Version = version
|
@@ -1485,6 +1603,8 @@ module TencentCloud
|
|
1485
1603
|
@MachineIp = machineip
|
1486
1604
|
@OsInfo = osinfo
|
1487
1605
|
@UpdateTime = updatetime
|
1606
|
+
@FirstTime = firsttime
|
1607
|
+
@IsNew = isnew
|
1488
1608
|
end
|
1489
1609
|
|
1490
1610
|
def deserialize(params)
|
@@ -1497,6 +1617,8 @@ module TencentCloud
|
|
1497
1617
|
@MachineIp = params['MachineIp']
|
1498
1618
|
@OsInfo = params['OsInfo']
|
1499
1619
|
@UpdateTime = params['UpdateTime']
|
1620
|
+
@FirstTime = params['FirstTime']
|
1621
|
+
@IsNew = params['IsNew']
|
1500
1622
|
end
|
1501
1623
|
end
|
1502
1624
|
|
@@ -1555,10 +1677,14 @@ module TencentCloud
|
|
1555
1677
|
# @param UpdateTime: 更新时间
|
1556
1678
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1557
1679
|
# @type UpdateTime: String
|
1680
|
+
# @param FirstTime: 首次采集时间
|
1681
|
+
# @type FirstTime: String
|
1682
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
1683
|
+
# @type IsNew: Integer
|
1558
1684
|
|
1559
|
-
attr_accessor :MachineIp, :MachineWanIp, :MachineName, :OsInfo, :Uuid, :Quuid, :Uid, :Gid, :Status, :IsRoot, :LoginType, :LastLoginTime, :Name, :ProjectId, :UserType, :IsDomain, :IsSudo, :IsSshLogin, :HomePath, :Shell, :ShellLoginStatus, :PasswordChangeTime, :PasswordDueTime, :PasswordLockDays, :PasswordStatus, :UpdateTime
|
1685
|
+
attr_accessor :MachineIp, :MachineWanIp, :MachineName, :OsInfo, :Uuid, :Quuid, :Uid, :Gid, :Status, :IsRoot, :LoginType, :LastLoginTime, :Name, :ProjectId, :UserType, :IsDomain, :IsSudo, :IsSshLogin, :HomePath, :Shell, :ShellLoginStatus, :PasswordChangeTime, :PasswordDueTime, :PasswordLockDays, :PasswordStatus, :UpdateTime, :FirstTime, :IsNew
|
1560
1686
|
|
1561
|
-
def initialize(machineip=nil, machinewanip=nil, machinename=nil, osinfo=nil, uuid=nil, quuid=nil, uid=nil, gid=nil, status=nil, isroot=nil, logintype=nil, lastlogintime=nil, name=nil, projectid=nil, usertype=nil, isdomain=nil, issudo=nil, issshlogin=nil, homepath=nil, shell=nil, shellloginstatus=nil, passwordchangetime=nil, passwordduetime=nil, passwordlockdays=nil, passwordstatus=nil, updatetime=nil)
|
1687
|
+
def initialize(machineip=nil, machinewanip=nil, machinename=nil, osinfo=nil, uuid=nil, quuid=nil, uid=nil, gid=nil, status=nil, isroot=nil, logintype=nil, lastlogintime=nil, name=nil, projectid=nil, usertype=nil, isdomain=nil, issudo=nil, issshlogin=nil, homepath=nil, shell=nil, shellloginstatus=nil, passwordchangetime=nil, passwordduetime=nil, passwordlockdays=nil, passwordstatus=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
1562
1688
|
@MachineIp = machineip
|
1563
1689
|
@MachineWanIp = machinewanip
|
1564
1690
|
@MachineName = machinename
|
@@ -1585,6 +1711,8 @@ module TencentCloud
|
|
1585
1711
|
@PasswordLockDays = passwordlockdays
|
1586
1712
|
@PasswordStatus = passwordstatus
|
1587
1713
|
@UpdateTime = updatetime
|
1714
|
+
@FirstTime = firsttime
|
1715
|
+
@IsNew = isnew
|
1588
1716
|
end
|
1589
1717
|
|
1590
1718
|
def deserialize(params)
|
@@ -1614,6 +1742,8 @@ module TencentCloud
|
|
1614
1742
|
@PasswordLockDays = params['PasswordLockDays']
|
1615
1743
|
@PasswordStatus = params['PasswordStatus']
|
1616
1744
|
@UpdateTime = params['UpdateTime']
|
1745
|
+
@FirstTime = params['FirstTime']
|
1746
|
+
@IsNew = params['IsNew']
|
1617
1747
|
end
|
1618
1748
|
end
|
1619
1749
|
|
@@ -1818,10 +1948,14 @@ module TencentCloud
|
|
1818
1948
|
# @param UpdateTime: 数据更新时间
|
1819
1949
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1820
1950
|
# @type UpdateTime: String
|
1951
|
+
# @param FirstTime: 首次采集时间
|
1952
|
+
# @type FirstTime: String
|
1953
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
1954
|
+
# @type IsNew: Integer
|
1821
1955
|
|
1822
|
-
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :RootPath, :ServiceType, :Domain, :VirtualPath, :PluginCount, :Id, :Desc, :MachineName, :UpdateTime
|
1956
|
+
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :RootPath, :ServiceType, :Domain, :VirtualPath, :PluginCount, :Id, :Desc, :MachineName, :UpdateTime, :FirstTime, :IsNew
|
1823
1957
|
|
1824
|
-
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, rootpath=nil, servicetype=nil, domain=nil, virtualpath=nil, plugincount=nil, id=nil, desc=nil, machinename=nil, updatetime=nil)
|
1958
|
+
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, rootpath=nil, servicetype=nil, domain=nil, virtualpath=nil, plugincount=nil, id=nil, desc=nil, machinename=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
1825
1959
|
@MachineIp = machineip
|
1826
1960
|
@MachineWanIp = machinewanip
|
1827
1961
|
@Quuid = quuid
|
@@ -1840,6 +1974,8 @@ module TencentCloud
|
|
1840
1974
|
@Desc = desc
|
1841
1975
|
@MachineName = machinename
|
1842
1976
|
@UpdateTime = updatetime
|
1977
|
+
@FirstTime = firsttime
|
1978
|
+
@IsNew = isnew
|
1843
1979
|
end
|
1844
1980
|
|
1845
1981
|
def deserialize(params)
|
@@ -1868,6 +2004,8 @@ module TencentCloud
|
|
1868
2004
|
@Desc = params['Desc']
|
1869
2005
|
@MachineName = params['MachineName']
|
1870
2006
|
@UpdateTime = params['UpdateTime']
|
2007
|
+
@FirstTime = params['FirstTime']
|
2008
|
+
@IsNew = params['IsNew']
|
1871
2009
|
end
|
1872
2010
|
end
|
1873
2011
|
|
@@ -1929,10 +2067,14 @@ module TencentCloud
|
|
1929
2067
|
# @param UpdateTime: 数据更新时间
|
1930
2068
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1931
2069
|
# @type UpdateTime: String
|
2070
|
+
# @param FirstTime: 首次采集时间
|
2071
|
+
# @type FirstTime: String
|
2072
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
2073
|
+
# @type IsNew: Integer
|
1932
2074
|
|
1933
|
-
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :Lang, :ServiceType, :MachineName, :UpdateTime
|
2075
|
+
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :Lang, :ServiceType, :MachineName, :UpdateTime, :FirstTime, :IsNew
|
1934
2076
|
|
1935
|
-
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, lang=nil, servicetype=nil, machinename=nil, updatetime=nil)
|
2077
|
+
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, lang=nil, servicetype=nil, machinename=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
1936
2078
|
@MachineIp = machineip
|
1937
2079
|
@MachineWanIp = machinewanip
|
1938
2080
|
@Quuid = quuid
|
@@ -1946,6 +2088,8 @@ module TencentCloud
|
|
1946
2088
|
@ServiceType = servicetype
|
1947
2089
|
@MachineName = machinename
|
1948
2090
|
@UpdateTime = updatetime
|
2091
|
+
@FirstTime = firsttime
|
2092
|
+
@IsNew = isnew
|
1949
2093
|
end
|
1950
2094
|
|
1951
2095
|
def deserialize(params)
|
@@ -1969,6 +2113,8 @@ module TencentCloud
|
|
1969
2113
|
@ServiceType = params['ServiceType']
|
1970
2114
|
@MachineName = params['MachineName']
|
1971
2115
|
@UpdateTime = params['UpdateTime']
|
2116
|
+
@FirstTime = params['FirstTime']
|
2117
|
+
@IsNew = params['IsNew']
|
1972
2118
|
end
|
1973
2119
|
end
|
1974
2120
|
|
@@ -2013,10 +2159,15 @@ module TencentCloud
|
|
2013
2159
|
# @param UpdateTime: 数据更新时间
|
2014
2160
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2015
2161
|
# @type UpdateTime: String
|
2162
|
+
# @param FirstTime: 首次采集时间
|
2163
|
+
# @type FirstTime: String
|
2164
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
2165
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2166
|
+
# @type IsNew: Integer
|
2016
2167
|
|
2017
|
-
attr_accessor :Uuid, :Quuid, :MachineIp, :MachineWanIp, :MachineName, :OsInfo, :Name, :Port, :Proto, :ServiceType, :PathCount, :User, :MainPath, :MainPathOwner, :Permission, :ProjectId, :Tag, :Id, :UpdateTime
|
2168
|
+
attr_accessor :Uuid, :Quuid, :MachineIp, :MachineWanIp, :MachineName, :OsInfo, :Name, :Port, :Proto, :ServiceType, :PathCount, :User, :MainPath, :MainPathOwner, :Permission, :ProjectId, :Tag, :Id, :UpdateTime, :FirstTime, :IsNew
|
2018
2169
|
|
2019
|
-
def initialize(uuid=nil, quuid=nil, machineip=nil, machinewanip=nil, machinename=nil, osinfo=nil, name=nil, port=nil, proto=nil, servicetype=nil, pathcount=nil, user=nil, mainpath=nil, mainpathowner=nil, permission=nil, projectid=nil, tag=nil, id=nil, updatetime=nil)
|
2170
|
+
def initialize(uuid=nil, quuid=nil, machineip=nil, machinewanip=nil, machinename=nil, osinfo=nil, name=nil, port=nil, proto=nil, servicetype=nil, pathcount=nil, user=nil, mainpath=nil, mainpathowner=nil, permission=nil, projectid=nil, tag=nil, id=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
2020
2171
|
@Uuid = uuid
|
2021
2172
|
@Quuid = quuid
|
2022
2173
|
@MachineIp = machineip
|
@@ -2036,6 +2187,8 @@ module TencentCloud
|
|
2036
2187
|
@Tag = tag
|
2037
2188
|
@Id = id
|
2038
2189
|
@UpdateTime = updatetime
|
2190
|
+
@FirstTime = firsttime
|
2191
|
+
@IsNew = isnew
|
2039
2192
|
end
|
2040
2193
|
|
2041
2194
|
def deserialize(params)
|
@@ -2065,6 +2218,8 @@ module TencentCloud
|
|
2065
2218
|
end
|
2066
2219
|
@Id = params['Id']
|
2067
2220
|
@UpdateTime = params['UpdateTime']
|
2221
|
+
@FirstTime = params['FirstTime']
|
2222
|
+
@IsNew = params['IsNew']
|
2068
2223
|
end
|
2069
2224
|
end
|
2070
2225
|
|
@@ -2161,10 +2316,14 @@ module TencentCloud
|
|
2161
2316
|
# @param UpdateTime: 数据更新时间
|
2162
2317
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2163
2318
|
# @type UpdateTime: String
|
2319
|
+
# @param FirstTime: 首次采集时间
|
2320
|
+
# @type FirstTime: String
|
2321
|
+
# @param IsNew: 是否新增[0:否|1:是]
|
2322
|
+
# @type IsNew: Integer
|
2164
2323
|
|
2165
|
-
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :BinPath, :User, :InstallPath, :ConfigPath, :ProcessCount, :Id, :MachineName, :Desc, :UpdateTime
|
2324
|
+
attr_accessor :MachineIp, :MachineWanIp, :Quuid, :Uuid, :OsInfo, :ProjectId, :Tag, :Name, :Version, :BinPath, :User, :InstallPath, :ConfigPath, :ProcessCount, :Id, :MachineName, :Desc, :UpdateTime, :FirstTime, :IsNew
|
2166
2325
|
|
2167
|
-
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, binpath=nil, user=nil, installpath=nil, configpath=nil, processcount=nil, id=nil, machinename=nil, desc=nil, updatetime=nil)
|
2326
|
+
def initialize(machineip=nil, machinewanip=nil, quuid=nil, uuid=nil, osinfo=nil, projectid=nil, tag=nil, name=nil, version=nil, binpath=nil, user=nil, installpath=nil, configpath=nil, processcount=nil, id=nil, machinename=nil, desc=nil, updatetime=nil, firsttime=nil, isnew=nil)
|
2168
2327
|
@MachineIp = machineip
|
2169
2328
|
@MachineWanIp = machinewanip
|
2170
2329
|
@Quuid = quuid
|
@@ -2183,6 +2342,8 @@ module TencentCloud
|
|
2183
2342
|
@MachineName = machinename
|
2184
2343
|
@Desc = desc
|
2185
2344
|
@UpdateTime = updatetime
|
2345
|
+
@FirstTime = firsttime
|
2346
|
+
@IsNew = isnew
|
2186
2347
|
end
|
2187
2348
|
|
2188
2349
|
def deserialize(params)
|
@@ -2211,6 +2372,8 @@ module TencentCloud
|
|
2211
2372
|
@MachineName = params['MachineName']
|
2212
2373
|
@Desc = params['Desc']
|
2213
2374
|
@UpdateTime = params['UpdateTime']
|
2375
|
+
@FirstTime = params['FirstTime']
|
2376
|
+
@IsNew = params['IsNew']
|
2214
2377
|
end
|
2215
2378
|
end
|
2216
2379
|
|
@@ -3194,6 +3357,91 @@ module TencentCloud
|
|
3194
3357
|
end
|
3195
3358
|
end
|
3196
3359
|
|
3360
|
+
# CreateLicenseOrder请求参数结构体
|
3361
|
+
class CreateLicenseOrderRequest < TencentCloud::Common::AbstractModel
|
3362
|
+
# @param Tags: 标签数组, 空则表示不需要绑定标签
|
3363
|
+
# @type Tags: Array
|
3364
|
+
# @param LicenseType: 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
|
3365
|
+
# 默认为0
|
3366
|
+
# @type LicenseType: Integer
|
3367
|
+
# @param LicenseNum: 授权数量 , 需要购买的数量.
|
3368
|
+
# 默认为1
|
3369
|
+
# @type LicenseNum: Integer
|
3370
|
+
# @param RegionId: 购买订单地域,这里仅支持 1 广州,9 新加坡. 推荐选择广州. 新加坡地域为白名单用户购买.
|
3371
|
+
# 默认为1
|
3372
|
+
# @type RegionId: Integer
|
3373
|
+
# @param ProjectId: 项目ID .
|
3374
|
+
# 默认为0
|
3375
|
+
# @type ProjectId: Integer
|
3376
|
+
# @param TimeSpan: 购买时间长度,默认1 , 可选值为1,2,3,4,5,6,7,8,9,10,11,12,24,36
|
3377
|
+
# 该参数仅包年包月生效
|
3378
|
+
# @type TimeSpan: Integer
|
3379
|
+
# @param AutoRenewFlag: 是否自动续费, 默认不自动续费.
|
3380
|
+
# 该参数仅包年包月生效
|
3381
|
+
# @type AutoRenewFlag: Boolean
|
3382
|
+
# @param AutoProtectOpenConfig: 自动防护授权配置值, 不空则表示开启
|
3383
|
+
# @type AutoProtectOpenConfig: String
|
3384
|
+
|
3385
|
+
attr_accessor :Tags, :LicenseType, :LicenseNum, :RegionId, :ProjectId, :TimeSpan, :AutoRenewFlag, :AutoProtectOpenConfig
|
3386
|
+
|
3387
|
+
def initialize(tags=nil, licensetype=nil, licensenum=nil, regionid=nil, projectid=nil, timespan=nil, autorenewflag=nil, autoprotectopenconfig=nil)
|
3388
|
+
@Tags = tags
|
3389
|
+
@LicenseType = licensetype
|
3390
|
+
@LicenseNum = licensenum
|
3391
|
+
@RegionId = regionid
|
3392
|
+
@ProjectId = projectid
|
3393
|
+
@TimeSpan = timespan
|
3394
|
+
@AutoRenewFlag = autorenewflag
|
3395
|
+
@AutoProtectOpenConfig = autoprotectopenconfig
|
3396
|
+
end
|
3397
|
+
|
3398
|
+
def deserialize(params)
|
3399
|
+
unless params['Tags'].nil?
|
3400
|
+
@Tags = []
|
3401
|
+
params['Tags'].each do |i|
|
3402
|
+
tags_tmp = Tags.new
|
3403
|
+
tags_tmp.deserialize(i)
|
3404
|
+
@Tags << tags_tmp
|
3405
|
+
end
|
3406
|
+
end
|
3407
|
+
@LicenseType = params['LicenseType']
|
3408
|
+
@LicenseNum = params['LicenseNum']
|
3409
|
+
@RegionId = params['RegionId']
|
3410
|
+
@ProjectId = params['ProjectId']
|
3411
|
+
@TimeSpan = params['TimeSpan']
|
3412
|
+
@AutoRenewFlag = params['AutoRenewFlag']
|
3413
|
+
@AutoProtectOpenConfig = params['AutoProtectOpenConfig']
|
3414
|
+
end
|
3415
|
+
end
|
3416
|
+
|
3417
|
+
# CreateLicenseOrder返回参数结构体
|
3418
|
+
class CreateLicenseOrderResponse < TencentCloud::Common::AbstractModel
|
3419
|
+
# @param DealNames: 订单号列表
|
3420
|
+
# @type DealNames: Array
|
3421
|
+
# @param ResourceIds: 资源ID列表,预付费订单该字段空值
|
3422
|
+
# @type ResourceIds: Array
|
3423
|
+
# @param BigDealId: 大订单号 , 后付费该字段空值
|
3424
|
+
# @type BigDealId: String
|
3425
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3426
|
+
# @type RequestId: String
|
3427
|
+
|
3428
|
+
attr_accessor :DealNames, :ResourceIds, :BigDealId, :RequestId
|
3429
|
+
|
3430
|
+
def initialize(dealnames=nil, resourceids=nil, bigdealid=nil, requestid=nil)
|
3431
|
+
@DealNames = dealnames
|
3432
|
+
@ResourceIds = resourceids
|
3433
|
+
@BigDealId = bigdealid
|
3434
|
+
@RequestId = requestid
|
3435
|
+
end
|
3436
|
+
|
3437
|
+
def deserialize(params)
|
3438
|
+
@DealNames = params['DealNames']
|
3439
|
+
@ResourceIds = params['ResourceIds']
|
3440
|
+
@BigDealId = params['BigDealId']
|
3441
|
+
@RequestId = params['RequestId']
|
3442
|
+
end
|
3443
|
+
end
|
3444
|
+
|
3197
3445
|
# CreateProtectServer请求参数结构体
|
3198
3446
|
class CreateProtectServerRequest < TencentCloud::Common::AbstractModel
|
3199
3447
|
# @param ProtectDir: 防护目录地址
|
@@ -3588,6 +3836,46 @@ module TencentCloud
|
|
3588
3836
|
end
|
3589
3837
|
end
|
3590
3838
|
|
3839
|
+
# DeleteLicenseRecord请求参数结构体
|
3840
|
+
class DeleteLicenseRecordRequest < TencentCloud::Common::AbstractModel
|
3841
|
+
# @param LicenseId: 授权ID ,可以用授权订单列表获取.
|
3842
|
+
# @type LicenseId: Integer
|
3843
|
+
# @param LicenseType: 授权类型
|
3844
|
+
# @type LicenseType: Integer
|
3845
|
+
# @param ResourceId: 资源ID
|
3846
|
+
# @type ResourceId: String
|
3847
|
+
|
3848
|
+
attr_accessor :LicenseId, :LicenseType, :ResourceId
|
3849
|
+
|
3850
|
+
def initialize(licenseid=nil, licensetype=nil, resourceid=nil)
|
3851
|
+
@LicenseId = licenseid
|
3852
|
+
@LicenseType = licensetype
|
3853
|
+
@ResourceId = resourceid
|
3854
|
+
end
|
3855
|
+
|
3856
|
+
def deserialize(params)
|
3857
|
+
@LicenseId = params['LicenseId']
|
3858
|
+
@LicenseType = params['LicenseType']
|
3859
|
+
@ResourceId = params['ResourceId']
|
3860
|
+
end
|
3861
|
+
end
|
3862
|
+
|
3863
|
+
# DeleteLicenseRecord返回参数结构体
|
3864
|
+
class DeleteLicenseRecordResponse < TencentCloud::Common::AbstractModel
|
3865
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3866
|
+
# @type RequestId: String
|
3867
|
+
|
3868
|
+
attr_accessor :RequestId
|
3869
|
+
|
3870
|
+
def initialize(requestid=nil)
|
3871
|
+
@RequestId = requestid
|
3872
|
+
end
|
3873
|
+
|
3874
|
+
def deserialize(params)
|
3875
|
+
@RequestId = params['RequestId']
|
3876
|
+
end
|
3877
|
+
end
|
3878
|
+
|
3591
3879
|
# DeleteLoginWhiteList请求参数结构体
|
3592
3880
|
class DeleteLoginWhiteListRequest < TencentCloud::Common::AbstractModel
|
3593
3881
|
# @param Ids: 白名单ID (最大 100 条)
|
@@ -4139,10 +4427,8 @@ module TencentCloud
|
|
4139
4427
|
|
4140
4428
|
# DescribeAssetAppList请求参数结构体
|
4141
4429
|
class DescribeAssetAppListRequest < TencentCloud::Common::AbstractModel
|
4142
|
-
# @param
|
4143
|
-
# @type
|
4144
|
-
# @param Offset: 偏移量,默认为0。
|
4145
|
-
# @type Offset: Integer
|
4430
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
4431
|
+
# @type Quuid: String
|
4146
4432
|
# @param Filters: 过滤条件。
|
4147
4433
|
# <li>AppName- string - 是否必填:否 - 应用名搜索</li>
|
4148
4434
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
@@ -4159,27 +4445,28 @@ module TencentCloud
|
|
4159
4445
|
# <li>OsType - uint64 - 是否必填:否 - windows/linux</li>
|
4160
4446
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
4161
4447
|
# @type Filters: Array
|
4162
|
-
# @param
|
4163
|
-
# @type
|
4448
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
4449
|
+
# @type Limit: Integer
|
4450
|
+
# @param Offset: 偏移量,默认为0。
|
4451
|
+
# @type Offset: Integer
|
4164
4452
|
# @param Order: 排序方式,asc升序 或 desc降序
|
4165
4453
|
# @type Order: String
|
4166
|
-
# @param
|
4167
|
-
# @type
|
4454
|
+
# @param By: 排序方式:[FirstTime|ProcessCount]
|
4455
|
+
# @type By: String
|
4168
4456
|
|
4169
|
-
attr_accessor :
|
4457
|
+
attr_accessor :Quuid, :Filters, :Limit, :Offset, :Order, :By
|
4170
4458
|
|
4171
|
-
def initialize(
|
4459
|
+
def initialize(quuid=nil, filters=nil, limit=nil, offset=nil, order=nil, by=nil)
|
4460
|
+
@Quuid = quuid
|
4461
|
+
@Filters = filters
|
4172
4462
|
@Limit = limit
|
4173
4463
|
@Offset = offset
|
4174
|
-
@Filters = filters
|
4175
|
-
@By = by
|
4176
4464
|
@Order = order
|
4177
|
-
@
|
4465
|
+
@By = by
|
4178
4466
|
end
|
4179
4467
|
|
4180
4468
|
def deserialize(params)
|
4181
|
-
@
|
4182
|
-
@Offset = params['Offset']
|
4469
|
+
@Quuid = params['Quuid']
|
4183
4470
|
unless params['Filters'].nil?
|
4184
4471
|
@Filters = []
|
4185
4472
|
params['Filters'].each do |i|
|
@@ -4188,9 +4475,10 @@ module TencentCloud
|
|
4188
4475
|
@Filters << assetfilters_tmp
|
4189
4476
|
end
|
4190
4477
|
end
|
4191
|
-
@
|
4478
|
+
@Limit = params['Limit']
|
4479
|
+
@Offset = params['Offset']
|
4192
4480
|
@Order = params['Order']
|
4193
|
-
@
|
4481
|
+
@By = params['By']
|
4194
4482
|
end
|
4195
4483
|
end
|
4196
4484
|
|
@@ -4339,39 +4627,39 @@ module TencentCloud
|
|
4339
4627
|
|
4340
4628
|
# DescribeAssetCoreModuleList请求参数结构体
|
4341
4629
|
class DescribeAssetCoreModuleListRequest < TencentCloud::Common::AbstractModel
|
4342
|
-
# @param
|
4343
|
-
# @type
|
4344
|
-
# @param
|
4345
|
-
# @type
|
4630
|
+
# @param Uuid: 服务器Uuid
|
4631
|
+
# @type Uuid: String
|
4632
|
+
# @param Quuid: 服务器Quuid
|
4633
|
+
# @type Quuid: String
|
4346
4634
|
# @param Filters: 过滤条件。
|
4347
4635
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
4348
4636
|
# <li>Name- string - 是否必填:否 - 包名</li>
|
4349
4637
|
# <li>User- string - 是否必填:否 - 用户</li>
|
4350
4638
|
# @type Filters: Array
|
4639
|
+
# @param Offset: 偏移量,默认为0。
|
4640
|
+
# @type Offset: Integer
|
4641
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
4642
|
+
# @type Limit: Integer
|
4351
4643
|
# @param Order: 排序方式,asc升序 或 desc降序
|
4352
4644
|
# @type Order: String
|
4353
|
-
# @param By:
|
4645
|
+
# @param By: 排序依据[Size|FirstTime|ProcessCount|ModuleCount]
|
4354
4646
|
# @type By: String
|
4355
|
-
# @param Uuid: 服务器Uuid
|
4356
|
-
# @type Uuid: String
|
4357
|
-
# @param Quuid: 服务器Quuid
|
4358
|
-
# @type Quuid: String
|
4359
4647
|
|
4360
|
-
attr_accessor :
|
4648
|
+
attr_accessor :Uuid, :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
4361
4649
|
|
4362
|
-
def initialize(
|
4363
|
-
@
|
4364
|
-
@
|
4650
|
+
def initialize(uuid=nil, quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
4651
|
+
@Uuid = uuid
|
4652
|
+
@Quuid = quuid
|
4365
4653
|
@Filters = filters
|
4654
|
+
@Offset = offset
|
4655
|
+
@Limit = limit
|
4366
4656
|
@Order = order
|
4367
4657
|
@By = by
|
4368
|
-
@Uuid = uuid
|
4369
|
-
@Quuid = quuid
|
4370
4658
|
end
|
4371
4659
|
|
4372
4660
|
def deserialize(params)
|
4373
|
-
@
|
4374
|
-
@
|
4661
|
+
@Uuid = params['Uuid']
|
4662
|
+
@Quuid = params['Quuid']
|
4375
4663
|
unless params['Filters'].nil?
|
4376
4664
|
@Filters = []
|
4377
4665
|
params['Filters'].each do |i|
|
@@ -4380,10 +4668,10 @@ module TencentCloud
|
|
4380
4668
|
@Filters << assetfilters_tmp
|
4381
4669
|
end
|
4382
4670
|
end
|
4671
|
+
@Offset = params['Offset']
|
4672
|
+
@Limit = params['Limit']
|
4383
4673
|
@Order = params['Order']
|
4384
4674
|
@By = params['By']
|
4385
|
-
@Uuid = params['Uuid']
|
4386
|
-
@Quuid = params['Quuid']
|
4387
4675
|
end
|
4388
4676
|
end
|
4389
4677
|
|
@@ -4468,10 +4756,8 @@ module TencentCloud
|
|
4468
4756
|
|
4469
4757
|
# DescribeAssetDatabaseList请求参数结构体
|
4470
4758
|
class DescribeAssetDatabaseListRequest < TencentCloud::Common::AbstractModel
|
4471
|
-
# @param
|
4472
|
-
# @type
|
4473
|
-
# @param Offset: 偏移量,默认为0。
|
4474
|
-
# @type Offset: Integer
|
4759
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
4760
|
+
# @type Quuid: String
|
4475
4761
|
# @param Filters: 过滤条件。
|
4476
4762
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
4477
4763
|
# <li>User- string - 是否必填:否 - 运行用户</li>
|
@@ -4493,21 +4779,28 @@ module TencentCloud
|
|
4493
4779
|
# <li>OsType - String - 是否必填:否 - 操作系统: linux/windows</li>
|
4494
4780
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
4495
4781
|
# @type Filters: Array
|
4496
|
-
# @param
|
4497
|
-
# @type
|
4782
|
+
# @param Offset: 偏移量,默认为0。
|
4783
|
+
# @type Offset: Integer
|
4784
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
4785
|
+
# @type Limit: Integer
|
4786
|
+
# @param Order: 排序方式,asc升序 或 desc降序
|
4787
|
+
# @type Order: String
|
4788
|
+
# @param By: 排序方式:[FirstTime]
|
4789
|
+
# @type By: String
|
4498
4790
|
|
4499
|
-
attr_accessor :
|
4791
|
+
attr_accessor :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
4500
4792
|
|
4501
|
-
def initialize(
|
4502
|
-
@Limit = limit
|
4503
|
-
@Offset = offset
|
4504
|
-
@Filters = filters
|
4793
|
+
def initialize(quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
4505
4794
|
@Quuid = quuid
|
4795
|
+
@Filters = filters
|
4796
|
+
@Offset = offset
|
4797
|
+
@Limit = limit
|
4798
|
+
@Order = order
|
4799
|
+
@By = by
|
4506
4800
|
end
|
4507
4801
|
|
4508
4802
|
def deserialize(params)
|
4509
|
-
@
|
4510
|
-
@Offset = params['Offset']
|
4803
|
+
@Quuid = params['Quuid']
|
4511
4804
|
unless params['Filters'].nil?
|
4512
4805
|
@Filters = []
|
4513
4806
|
params['Filters'].each do |i|
|
@@ -4516,7 +4809,10 @@ module TencentCloud
|
|
4516
4809
|
@Filters << assetfilters_tmp
|
4517
4810
|
end
|
4518
4811
|
end
|
4519
|
-
@
|
4812
|
+
@Offset = params['Offset']
|
4813
|
+
@Limit = params['Limit']
|
4814
|
+
@Order = params['Order']
|
4815
|
+
@By = params['By']
|
4520
4816
|
end
|
4521
4817
|
end
|
4522
4818
|
|
@@ -4554,10 +4850,10 @@ module TencentCloud
|
|
4554
4850
|
|
4555
4851
|
# DescribeAssetEnvList请求参数结构体
|
4556
4852
|
class DescribeAssetEnvListRequest < TencentCloud::Common::AbstractModel
|
4557
|
-
# @param
|
4558
|
-
# @type
|
4559
|
-
# @param
|
4560
|
-
# @type
|
4853
|
+
# @param Uuid: 服务器Uuid
|
4854
|
+
# @type Uuid: String
|
4855
|
+
# @param Quuid: 服务器Quuid
|
4856
|
+
# @type Quuid: String
|
4561
4857
|
# @param Type: 该字段已废弃,由Filters代替
|
4562
4858
|
# @type Type: Integer
|
4563
4859
|
# @param Filters: 过滤条件。
|
@@ -4565,25 +4861,31 @@ module TencentCloud
|
|
4565
4861
|
# <li>Name- string - 是否必填:否 - 环境变量名</li>
|
4566
4862
|
# <li>Type- int - 是否必填:否 - 类型:0用户变量,1系统变量</li>
|
4567
4863
|
# @type Filters: Array
|
4568
|
-
# @param
|
4569
|
-
# @type
|
4570
|
-
# @param
|
4571
|
-
# @type
|
4864
|
+
# @param Offset: 偏移量,默认为0。
|
4865
|
+
# @type Offset: Integer
|
4866
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
4867
|
+
# @type Limit: Integer
|
4868
|
+
# @param Order: 排序方式,asc升序 或 desc降序
|
4869
|
+
# @type Order: String
|
4870
|
+
# @param By: 排序方式:[FirstTime]
|
4871
|
+
# @type By: String
|
4572
4872
|
|
4573
|
-
attr_accessor :
|
4873
|
+
attr_accessor :Uuid, :Quuid, :Type, :Filters, :Offset, :Limit, :Order, :By
|
4574
4874
|
|
4575
|
-
def initialize(
|
4576
|
-
@Limit = limit
|
4577
|
-
@Offset = offset
|
4578
|
-
@Type = type
|
4579
|
-
@Filters = filters
|
4875
|
+
def initialize(uuid=nil, quuid=nil, type=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
4580
4876
|
@Uuid = uuid
|
4581
4877
|
@Quuid = quuid
|
4878
|
+
@Type = type
|
4879
|
+
@Filters = filters
|
4880
|
+
@Offset = offset
|
4881
|
+
@Limit = limit
|
4882
|
+
@Order = order
|
4883
|
+
@By = by
|
4582
4884
|
end
|
4583
4885
|
|
4584
4886
|
def deserialize(params)
|
4585
|
-
@
|
4586
|
-
@
|
4887
|
+
@Uuid = params['Uuid']
|
4888
|
+
@Quuid = params['Quuid']
|
4587
4889
|
@Type = params['Type']
|
4588
4890
|
unless params['Filters'].nil?
|
4589
4891
|
@Filters = []
|
@@ -4593,8 +4895,10 @@ module TencentCloud
|
|
4593
4895
|
@Filters << assetfilters_tmp
|
4594
4896
|
end
|
4595
4897
|
end
|
4596
|
-
@
|
4597
|
-
@
|
4898
|
+
@Offset = params['Offset']
|
4899
|
+
@Limit = params['Limit']
|
4900
|
+
@Order = params['Order']
|
4901
|
+
@By = params['By']
|
4598
4902
|
end
|
4599
4903
|
end
|
4600
4904
|
|
@@ -4663,12 +4967,32 @@ module TencentCloud
|
|
4663
4967
|
# @type WebServiceCount: Integer
|
4664
4968
|
# @param WebLocationCount: Web站点数
|
4665
4969
|
# @type WebLocationCount: Integer
|
4970
|
+
# @param AccountNewCount: 账号今日新增
|
4971
|
+
# @type AccountNewCount: Integer
|
4972
|
+
# @param PortNewCount: 端口今日新增
|
4973
|
+
# @type PortNewCount: Integer
|
4974
|
+
# @param ProcessNewCount: 进程今日新增
|
4975
|
+
# @type ProcessNewCount: Integer
|
4976
|
+
# @param SoftwareNewCount: 软件今日新增
|
4977
|
+
# @type SoftwareNewCount: Integer
|
4978
|
+
# @param DatabaseNewCount: 数据库今日新增
|
4979
|
+
# @type DatabaseNewCount: Integer
|
4980
|
+
# @param WebAppNewCount: Web应用今日新增
|
4981
|
+
# @type WebAppNewCount: Integer
|
4982
|
+
# @param WebFrameNewCount: Web框架今日新增
|
4983
|
+
# @type WebFrameNewCount: Integer
|
4984
|
+
# @param WebServiceNewCount: Web服务今日新增
|
4985
|
+
# @type WebServiceNewCount: Integer
|
4986
|
+
# @param WebLocationNewCount: Web站点今日新增
|
4987
|
+
# @type WebLocationNewCount: Integer
|
4988
|
+
# @param MachineNewCount: 主机今日新增
|
4989
|
+
# @type MachineNewCount: Integer
|
4666
4990
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4667
4991
|
# @type RequestId: String
|
4668
4992
|
|
4669
|
-
attr_accessor :MachineCount, :AccountCount, :PortCount, :ProcessCount, :SoftwareCount, :DatabaseCount, :WebAppCount, :WebFrameCount, :WebServiceCount, :WebLocationCount, :RequestId
|
4993
|
+
attr_accessor :MachineCount, :AccountCount, :PortCount, :ProcessCount, :SoftwareCount, :DatabaseCount, :WebAppCount, :WebFrameCount, :WebServiceCount, :WebLocationCount, :AccountNewCount, :PortNewCount, :ProcessNewCount, :SoftwareNewCount, :DatabaseNewCount, :WebAppNewCount, :WebFrameNewCount, :WebServiceNewCount, :WebLocationNewCount, :MachineNewCount, :RequestId
|
4670
4994
|
|
4671
|
-
def initialize(machinecount=nil, accountcount=nil, portcount=nil, processcount=nil, softwarecount=nil, databasecount=nil, webappcount=nil, webframecount=nil, webservicecount=nil, weblocationcount=nil, requestid=nil)
|
4995
|
+
def initialize(machinecount=nil, accountcount=nil, portcount=nil, processcount=nil, softwarecount=nil, databasecount=nil, webappcount=nil, webframecount=nil, webservicecount=nil, weblocationcount=nil, accountnewcount=nil, portnewcount=nil, processnewcount=nil, softwarenewcount=nil, databasenewcount=nil, webappnewcount=nil, webframenewcount=nil, webservicenewcount=nil, weblocationnewcount=nil, machinenewcount=nil, requestid=nil)
|
4672
4996
|
@MachineCount = machinecount
|
4673
4997
|
@AccountCount = accountcount
|
4674
4998
|
@PortCount = portcount
|
@@ -4679,6 +5003,16 @@ module TencentCloud
|
|
4679
5003
|
@WebFrameCount = webframecount
|
4680
5004
|
@WebServiceCount = webservicecount
|
4681
5005
|
@WebLocationCount = weblocationcount
|
5006
|
+
@AccountNewCount = accountnewcount
|
5007
|
+
@PortNewCount = portnewcount
|
5008
|
+
@ProcessNewCount = processnewcount
|
5009
|
+
@SoftwareNewCount = softwarenewcount
|
5010
|
+
@DatabaseNewCount = databasenewcount
|
5011
|
+
@WebAppNewCount = webappnewcount
|
5012
|
+
@WebFrameNewCount = webframenewcount
|
5013
|
+
@WebServiceNewCount = webservicenewcount
|
5014
|
+
@WebLocationNewCount = weblocationnewcount
|
5015
|
+
@MachineNewCount = machinenewcount
|
4682
5016
|
@RequestId = requestid
|
4683
5017
|
end
|
4684
5018
|
|
@@ -4693,16 +5027,26 @@ module TencentCloud
|
|
4693
5027
|
@WebFrameCount = params['WebFrameCount']
|
4694
5028
|
@WebServiceCount = params['WebServiceCount']
|
4695
5029
|
@WebLocationCount = params['WebLocationCount']
|
5030
|
+
@AccountNewCount = params['AccountNewCount']
|
5031
|
+
@PortNewCount = params['PortNewCount']
|
5032
|
+
@ProcessNewCount = params['ProcessNewCount']
|
5033
|
+
@SoftwareNewCount = params['SoftwareNewCount']
|
5034
|
+
@DatabaseNewCount = params['DatabaseNewCount']
|
5035
|
+
@WebAppNewCount = params['WebAppNewCount']
|
5036
|
+
@WebFrameNewCount = params['WebFrameNewCount']
|
5037
|
+
@WebServiceNewCount = params['WebServiceNewCount']
|
5038
|
+
@WebLocationNewCount = params['WebLocationNewCount']
|
5039
|
+
@MachineNewCount = params['MachineNewCount']
|
4696
5040
|
@RequestId = params['RequestId']
|
4697
5041
|
end
|
4698
5042
|
end
|
4699
5043
|
|
4700
5044
|
# DescribeAssetInitServiceList请求参数结构体
|
4701
5045
|
class DescribeAssetInitServiceListRequest < TencentCloud::Common::AbstractModel
|
4702
|
-
# @param
|
4703
|
-
# @type
|
4704
|
-
# @param
|
4705
|
-
# @type
|
5046
|
+
# @param Uuid: 服务器Uuid
|
5047
|
+
# @type Uuid: String
|
5048
|
+
# @param Quuid: 服务器Quuid
|
5049
|
+
# @type Quuid: String
|
4706
5050
|
# @param Filters: 过滤条件。
|
4707
5051
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
4708
5052
|
# <li>Name- string - 是否必填:否 - 包名</li>
|
@@ -4724,24 +5068,30 @@ module TencentCloud
|
|
4724
5068
|
# 13:驱动服务
|
4725
5069
|
# 14:登录</li>
|
4726
5070
|
# @type Filters: Array
|
4727
|
-
# @param
|
4728
|
-
# @type
|
4729
|
-
# @param
|
4730
|
-
# @type
|
5071
|
+
# @param Offset: 偏移量,默认为0。
|
5072
|
+
# @type Offset: Integer
|
5073
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5074
|
+
# @type Limit: Integer
|
5075
|
+
# @param Order: 排序方式,asc升序 或 desc降序
|
5076
|
+
# @type Order: String
|
5077
|
+
# @param By: 排序方式:[FirstTime]
|
5078
|
+
# @type By: String
|
4731
5079
|
|
4732
|
-
attr_accessor :
|
5080
|
+
attr_accessor :Uuid, :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
4733
5081
|
|
4734
|
-
def initialize(
|
4735
|
-
@Limit = limit
|
4736
|
-
@Offset = offset
|
4737
|
-
@Filters = filters
|
5082
|
+
def initialize(uuid=nil, quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
4738
5083
|
@Uuid = uuid
|
4739
5084
|
@Quuid = quuid
|
5085
|
+
@Filters = filters
|
5086
|
+
@Offset = offset
|
5087
|
+
@Limit = limit
|
5088
|
+
@Order = order
|
5089
|
+
@By = by
|
4740
5090
|
end
|
4741
5091
|
|
4742
5092
|
def deserialize(params)
|
4743
|
-
@
|
4744
|
-
@
|
5093
|
+
@Uuid = params['Uuid']
|
5094
|
+
@Quuid = params['Quuid']
|
4745
5095
|
unless params['Filters'].nil?
|
4746
5096
|
@Filters = []
|
4747
5097
|
params['Filters'].each do |i|
|
@@ -4750,8 +5100,10 @@ module TencentCloud
|
|
4750
5100
|
@Filters << assetfilters_tmp
|
4751
5101
|
end
|
4752
5102
|
end
|
4753
|
-
@
|
4754
|
-
@
|
5103
|
+
@Offset = params['Offset']
|
5104
|
+
@Limit = params['Limit']
|
5105
|
+
@Order = params['Order']
|
5106
|
+
@By = params['By']
|
4755
5107
|
end
|
4756
5108
|
end
|
4757
5109
|
|
@@ -4836,10 +5188,10 @@ module TencentCloud
|
|
4836
5188
|
|
4837
5189
|
# DescribeAssetJarList请求参数结构体
|
4838
5190
|
class DescribeAssetJarListRequest < TencentCloud::Common::AbstractModel
|
4839
|
-
# @param
|
4840
|
-
# @type
|
4841
|
-
# @param
|
4842
|
-
# @type
|
5191
|
+
# @param Uuid: 服务器Uuid
|
5192
|
+
# @type Uuid: String
|
5193
|
+
# @param Quuid: 服务器Quuid
|
5194
|
+
# @type Quuid: String
|
4843
5195
|
# @param Filters: 过滤条件。
|
4844
5196
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
4845
5197
|
# <li>Name- string - 是否必填:否 - 包名</li>
|
@@ -4850,24 +5202,30 @@ module TencentCloud
|
|
4850
5202
|
# 4 : 其他依赖包</li>
|
4851
5203
|
# <li>Status- string - 是否必填:否 - 是否可执行:0否,1是</li>
|
4852
5204
|
# @type Filters: Array
|
4853
|
-
# @param
|
4854
|
-
# @type
|
4855
|
-
# @param
|
4856
|
-
# @type
|
5205
|
+
# @param Offset: 偏移量,默认为0。
|
5206
|
+
# @type Offset: Integer
|
5207
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5208
|
+
# @type Limit: Integer
|
5209
|
+
# @param Order: 排序方式,asc升序 或 desc降序
|
5210
|
+
# @type Order: String
|
5211
|
+
# @param By: 排序方式:[FirstTime]
|
5212
|
+
# @type By: String
|
4857
5213
|
|
4858
|
-
attr_accessor :
|
5214
|
+
attr_accessor :Uuid, :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
4859
5215
|
|
4860
|
-
def initialize(
|
4861
|
-
@Limit = limit
|
4862
|
-
@Offset = offset
|
4863
|
-
@Filters = filters
|
5216
|
+
def initialize(uuid=nil, quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
4864
5217
|
@Uuid = uuid
|
4865
5218
|
@Quuid = quuid
|
5219
|
+
@Filters = filters
|
5220
|
+
@Offset = offset
|
5221
|
+
@Limit = limit
|
5222
|
+
@Order = order
|
5223
|
+
@By = by
|
4866
5224
|
end
|
4867
5225
|
|
4868
5226
|
def deserialize(params)
|
4869
|
-
@
|
4870
|
-
@
|
5227
|
+
@Uuid = params['Uuid']
|
5228
|
+
@Quuid = params['Quuid']
|
4871
5229
|
unless params['Filters'].nil?
|
4872
5230
|
@Filters = []
|
4873
5231
|
params['Filters'].each do |i|
|
@@ -4876,8 +5234,10 @@ module TencentCloud
|
|
4876
5234
|
@Filters << assetfilters_tmp
|
4877
5235
|
end
|
4878
5236
|
end
|
4879
|
-
@
|
4880
|
-
@
|
5237
|
+
@Offset = params['Offset']
|
5238
|
+
@Limit = params['Limit']
|
5239
|
+
@Order = params['Order']
|
5240
|
+
@By = params['By']
|
4881
5241
|
end
|
4882
5242
|
end
|
4883
5243
|
|
@@ -4958,10 +5318,6 @@ module TencentCloud
|
|
4958
5318
|
|
4959
5319
|
# DescribeAssetMachineList请求参数结构体
|
4960
5320
|
class DescribeAssetMachineListRequest < TencentCloud::Common::AbstractModel
|
4961
|
-
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
4962
|
-
# @type Limit: Integer
|
4963
|
-
# @param Offset: 偏移量,默认为0。
|
4964
|
-
# @type Offset: Integer
|
4965
5321
|
# @param Filters: 过滤条件。
|
4966
5322
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
4967
5323
|
# <li>OsType - String - 是否必填:否 - windows或linux</li>
|
@@ -4979,24 +5335,26 @@ module TencentCloud
|
|
4979
5335
|
# <li>Quuid:主机Quuid</li>
|
4980
5336
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
4981
5337
|
# @type Filters: Array
|
4982
|
-
# @param
|
4983
|
-
# @type
|
5338
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5339
|
+
# @type Limit: Integer
|
5340
|
+
# @param Offset: 偏移量,默认为0。
|
5341
|
+
# @type Offset: Integer
|
4984
5342
|
# @param Order: 排序方式,asc升序 或 desc降序
|
4985
5343
|
# @type Order: String
|
5344
|
+
# @param By: 可选排序[FirstTime|PartitionCount]
|
5345
|
+
# @type By: String
|
4986
5346
|
|
4987
|
-
attr_accessor :Limit, :Offset, :
|
5347
|
+
attr_accessor :Filters, :Limit, :Offset, :Order, :By
|
4988
5348
|
|
4989
|
-
def initialize(
|
5349
|
+
def initialize(filters=nil, limit=nil, offset=nil, order=nil, by=nil)
|
5350
|
+
@Filters = filters
|
4990
5351
|
@Limit = limit
|
4991
5352
|
@Offset = offset
|
4992
|
-
@Filters = filters
|
4993
|
-
@By = by
|
4994
5353
|
@Order = order
|
5354
|
+
@By = by
|
4995
5355
|
end
|
4996
5356
|
|
4997
5357
|
def deserialize(params)
|
4998
|
-
@Limit = params['Limit']
|
4999
|
-
@Offset = params['Offset']
|
5000
5358
|
unless params['Filters'].nil?
|
5001
5359
|
@Filters = []
|
5002
5360
|
params['Filters'].each do |i|
|
@@ -5005,8 +5363,10 @@ module TencentCloud
|
|
5005
5363
|
@Filters << filter_tmp
|
5006
5364
|
end
|
5007
5365
|
end
|
5008
|
-
@
|
5366
|
+
@Limit = params['Limit']
|
5367
|
+
@Offset = params['Offset']
|
5009
5368
|
@Order = params['Order']
|
5369
|
+
@By = params['By']
|
5010
5370
|
end
|
5011
5371
|
end
|
5012
5372
|
|
@@ -5044,33 +5404,39 @@ module TencentCloud
|
|
5044
5404
|
|
5045
5405
|
# DescribeAssetPlanTaskList请求参数结构体
|
5046
5406
|
class DescribeAssetPlanTaskListRequest < TencentCloud::Common::AbstractModel
|
5047
|
-
# @param
|
5048
|
-
# @type
|
5049
|
-
# @param
|
5050
|
-
# @type
|
5407
|
+
# @param Uuid: 服务器Uuid
|
5408
|
+
# @type Uuid: String
|
5409
|
+
# @param Quuid: 服务器Quuid
|
5410
|
+
# @type Quuid: String
|
5051
5411
|
# @param Filters: 过滤条件。
|
5052
5412
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
5053
5413
|
# <li>User- string - 是否必填:否 - 用户</li>
|
5054
5414
|
# <li>Status- int - 是否必填:否 - 默认启用状态:0未启用, 1启用 </li>
|
5055
5415
|
# @type Filters: Array
|
5056
|
-
# @param
|
5057
|
-
# @type
|
5058
|
-
# @param
|
5059
|
-
# @type
|
5416
|
+
# @param Offset: 偏移量,默认为0。
|
5417
|
+
# @type Offset: Integer
|
5418
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5419
|
+
# @type Limit: Integer
|
5420
|
+
# @param Order: 排序方式,asc升序 或 desc降序
|
5421
|
+
# @type Order: String
|
5422
|
+
# @param By: 排序方式:[FirstTime]
|
5423
|
+
# @type By: String
|
5060
5424
|
|
5061
|
-
attr_accessor :
|
5425
|
+
attr_accessor :Uuid, :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
5062
5426
|
|
5063
|
-
def initialize(
|
5064
|
-
@Limit = limit
|
5065
|
-
@Offset = offset
|
5066
|
-
@Filters = filters
|
5427
|
+
def initialize(uuid=nil, quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
5067
5428
|
@Uuid = uuid
|
5068
5429
|
@Quuid = quuid
|
5430
|
+
@Filters = filters
|
5431
|
+
@Offset = offset
|
5432
|
+
@Limit = limit
|
5433
|
+
@Order = order
|
5434
|
+
@By = by
|
5069
5435
|
end
|
5070
5436
|
|
5071
5437
|
def deserialize(params)
|
5072
|
-
@
|
5073
|
-
@
|
5438
|
+
@Uuid = params['Uuid']
|
5439
|
+
@Quuid = params['Quuid']
|
5074
5440
|
unless params['Filters'].nil?
|
5075
5441
|
@Filters = []
|
5076
5442
|
params['Filters'].each do |i|
|
@@ -5079,8 +5445,10 @@ module TencentCloud
|
|
5079
5445
|
@Filters << assetfilters_tmp
|
5080
5446
|
end
|
5081
5447
|
end
|
5082
|
-
@
|
5083
|
-
@
|
5448
|
+
@Offset = params['Offset']
|
5449
|
+
@Limit = params['Limit']
|
5450
|
+
@Order = params['Order']
|
5451
|
+
@By = params['By']
|
5084
5452
|
end
|
5085
5453
|
end
|
5086
5454
|
|
@@ -5118,10 +5486,8 @@ module TencentCloud
|
|
5118
5486
|
|
5119
5487
|
# DescribeAssetPortInfoList请求参数结构体
|
5120
5488
|
class DescribeAssetPortInfoListRequest < TencentCloud::Common::AbstractModel
|
5121
|
-
# @param
|
5122
|
-
# @type
|
5123
|
-
# @param Offset: 偏移量,默认为0。
|
5124
|
-
# @type Offset: Integer
|
5489
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
5490
|
+
# @type Quuid: String
|
5125
5491
|
# @param Filters: 过滤条件。
|
5126
5492
|
# <li>Port - uint64 - 是否必填:否 - 端口</li>
|
5127
5493
|
# <li>Ip - String - 是否必填:否 - 绑定IP</li>
|
@@ -5136,27 +5502,28 @@ module TencentCloud
|
|
5136
5502
|
# <li>RunTimeEnd - String - 是否必填:否 - 运行结束时间</li>
|
5137
5503
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
5138
5504
|
# @type Filters: Array
|
5505
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5506
|
+
# @type Limit: Integer
|
5507
|
+
# @param Offset: 偏移量,默认为0。
|
5508
|
+
# @type Offset: Integer
|
5139
5509
|
# @param Order: 排序方式,asc升序 或 desc降序
|
5140
5510
|
# @type Order: String
|
5141
|
-
# @param By: 排序方式:StartTime
|
5511
|
+
# @param By: 排序方式:[FirstTime|StartTime]
|
5142
5512
|
# @type By: String
|
5143
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
5144
|
-
# @type Quuid: String
|
5145
5513
|
|
5146
|
-
attr_accessor :
|
5514
|
+
attr_accessor :Quuid, :Filters, :Limit, :Offset, :Order, :By
|
5147
5515
|
|
5148
|
-
def initialize(
|
5516
|
+
def initialize(quuid=nil, filters=nil, limit=nil, offset=nil, order=nil, by=nil)
|
5517
|
+
@Quuid = quuid
|
5518
|
+
@Filters = filters
|
5149
5519
|
@Limit = limit
|
5150
5520
|
@Offset = offset
|
5151
|
-
@Filters = filters
|
5152
5521
|
@Order = order
|
5153
5522
|
@By = by
|
5154
|
-
@Quuid = quuid
|
5155
5523
|
end
|
5156
5524
|
|
5157
5525
|
def deserialize(params)
|
5158
|
-
@
|
5159
|
-
@Offset = params['Offset']
|
5526
|
+
@Quuid = params['Quuid']
|
5160
5527
|
unless params['Filters'].nil?
|
5161
5528
|
@Filters = []
|
5162
5529
|
params['Filters'].each do |i|
|
@@ -5165,9 +5532,10 @@ module TencentCloud
|
|
5165
5532
|
@Filters << filter_tmp
|
5166
5533
|
end
|
5167
5534
|
end
|
5535
|
+
@Limit = params['Limit']
|
5536
|
+
@Offset = params['Offset']
|
5168
5537
|
@Order = params['Order']
|
5169
5538
|
@By = params['By']
|
5170
|
-
@Quuid = params['Quuid']
|
5171
5539
|
end
|
5172
5540
|
end
|
5173
5541
|
|
@@ -5205,10 +5573,8 @@ module TencentCloud
|
|
5205
5573
|
|
5206
5574
|
# DescribeAssetProcessInfoList请求参数结构体
|
5207
5575
|
class DescribeAssetProcessInfoListRequest < TencentCloud::Common::AbstractModel
|
5208
|
-
# @param
|
5209
|
-
# @type
|
5210
|
-
# @param Offset: 偏移量,默认为0。
|
5211
|
-
# @type Offset: Integer
|
5576
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
5577
|
+
# @type Quuid: String
|
5212
5578
|
# @param Filters: 过滤条件。
|
5213
5579
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
5214
5580
|
# <li>Name - String - 是否必填:否 - 进程名</li>
|
@@ -5229,27 +5595,28 @@ module TencentCloud
|
|
5229
5595
|
# <li>InstallByPackage - uint64 - 是否必填:否 - 是否包安装:0否,1是</li>
|
5230
5596
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
5231
5597
|
# @type Filters: Array
|
5232
|
-
# @param
|
5233
|
-
# @type
|
5598
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5599
|
+
# @type Limit: Integer
|
5600
|
+
# @param Offset: 偏移量,默认为0。
|
5601
|
+
# @type Offset: Integer
|
5234
5602
|
# @param Order: 排序方式,asc升序 或 desc降序
|
5235
5603
|
# @type Order: String
|
5236
|
-
# @param By: 排序方式:StartTime
|
5604
|
+
# @param By: 排序方式:[FirstTime|StartTime]
|
5237
5605
|
# @type By: String
|
5238
5606
|
|
5239
|
-
attr_accessor :
|
5607
|
+
attr_accessor :Quuid, :Filters, :Limit, :Offset, :Order, :By
|
5240
5608
|
|
5241
|
-
def initialize(
|
5609
|
+
def initialize(quuid=nil, filters=nil, limit=nil, offset=nil, order=nil, by=nil)
|
5610
|
+
@Quuid = quuid
|
5611
|
+
@Filters = filters
|
5242
5612
|
@Limit = limit
|
5243
5613
|
@Offset = offset
|
5244
|
-
@Filters = filters
|
5245
|
-
@Quuid = quuid
|
5246
5614
|
@Order = order
|
5247
5615
|
@By = by
|
5248
5616
|
end
|
5249
5617
|
|
5250
5618
|
def deserialize(params)
|
5251
|
-
@
|
5252
|
-
@Offset = params['Offset']
|
5619
|
+
@Quuid = params['Quuid']
|
5253
5620
|
unless params['Filters'].nil?
|
5254
5621
|
@Filters = []
|
5255
5622
|
params['Filters'].each do |i|
|
@@ -5258,7 +5625,8 @@ module TencentCloud
|
|
5258
5625
|
@Filters << filter_tmp
|
5259
5626
|
end
|
5260
5627
|
end
|
5261
|
-
@
|
5628
|
+
@Limit = params['Limit']
|
5629
|
+
@Offset = params['Offset']
|
5262
5630
|
@Order = params['Order']
|
5263
5631
|
@By = params['By']
|
5264
5632
|
end
|
@@ -5386,10 +5754,6 @@ module TencentCloud
|
|
5386
5754
|
# @type Uuid: String
|
5387
5755
|
# @param Quuid: 主机Quuid
|
5388
5756
|
# @type Quuid: String
|
5389
|
-
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5390
|
-
# @type Limit: Integer
|
5391
|
-
# @param Offset: 偏移量,默认为0。
|
5392
|
-
# @type Offset: Integer
|
5393
5757
|
# @param Filters: 过滤条件。
|
5394
5758
|
# <li>Name - String - 是否必填:否 - 包 名</li>
|
5395
5759
|
# <li>StartTime - String - 是否必填:否 - 安装开始时间</li>
|
@@ -5400,19 +5764,23 @@ module TencentCloud
|
|
5400
5764
|
# 3:java
|
5401
5765
|
# 4:system</li>
|
5402
5766
|
# @type Filters: Array
|
5767
|
+
# @param Offset: 偏移量,默认为0。
|
5768
|
+
# @type Offset: Integer
|
5769
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5770
|
+
# @type Limit: Integer
|
5403
5771
|
# @param Order: 排序方式,asc-升序 或 desc-降序。默认:desc-降序
|
5404
5772
|
# @type Order: String
|
5405
|
-
# @param By: 排序方式可选:InstallTime
|
5773
|
+
# @param By: 排序方式可选:[FistTime|InstallTime:安装时间]
|
5406
5774
|
# @type By: String
|
5407
5775
|
|
5408
|
-
attr_accessor :Uuid, :Quuid, :
|
5776
|
+
attr_accessor :Uuid, :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
5409
5777
|
|
5410
|
-
def initialize(uuid=nil, quuid=nil,
|
5778
|
+
def initialize(uuid=nil, quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
5411
5779
|
@Uuid = uuid
|
5412
5780
|
@Quuid = quuid
|
5413
|
-
@Limit = limit
|
5414
|
-
@Offset = offset
|
5415
5781
|
@Filters = filters
|
5782
|
+
@Offset = offset
|
5783
|
+
@Limit = limit
|
5416
5784
|
@Order = order
|
5417
5785
|
@By = by
|
5418
5786
|
end
|
@@ -5420,8 +5788,6 @@ module TencentCloud
|
|
5420
5788
|
def deserialize(params)
|
5421
5789
|
@Uuid = params['Uuid']
|
5422
5790
|
@Quuid = params['Quuid']
|
5423
|
-
@Limit = params['Limit']
|
5424
|
-
@Offset = params['Offset']
|
5425
5791
|
unless params['Filters'].nil?
|
5426
5792
|
@Filters = []
|
5427
5793
|
params['Filters'].each do |i|
|
@@ -5430,6 +5796,8 @@ module TencentCloud
|
|
5430
5796
|
@Filters << filter_tmp
|
5431
5797
|
end
|
5432
5798
|
end
|
5799
|
+
@Offset = params['Offset']
|
5800
|
+
@Limit = params['Limit']
|
5433
5801
|
@Order = params['Order']
|
5434
5802
|
@By = params['By']
|
5435
5803
|
end
|
@@ -5516,10 +5884,8 @@ module TencentCloud
|
|
5516
5884
|
|
5517
5885
|
# DescribeAssetUserList请求参数结构体
|
5518
5886
|
class DescribeAssetUserListRequest < TencentCloud::Common::AbstractModel
|
5519
|
-
# @param
|
5520
|
-
# @type
|
5521
|
-
# @param Offset: 偏移量,默认为0。
|
5522
|
-
# @type Offset: Integer
|
5887
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
5888
|
+
# @type Quuid: String
|
5523
5889
|
# @param Filters: 过滤条件。
|
5524
5890
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
5525
5891
|
# <li>Name - String - 是否必填:否 - 账户名(模糊匹配)</li>
|
@@ -5540,31 +5906,29 @@ module TencentCloud
|
|
5540
5906
|
# <li>PasswordStatus - uint64 - 是否必填:否 - 密码状态:1正常 2即将过期 3已过期 4已锁定 仅linux</li>
|
5541
5907
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
5542
5908
|
# @type Filters: Array
|
5909
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
5910
|
+
# @type Limit: Integer
|
5911
|
+
# @param Offset: 偏移量,默认为0。
|
5912
|
+
# @type Offset: Integer
|
5543
5913
|
# @param Order: 排序方式,asc升序 或 desc降序
|
5544
5914
|
# @type Order: String
|
5545
|
-
# @param By: 可选排序:
|
5546
|
-
# LoginTime
|
5547
|
-
# PasswordChangeTime
|
5548
|
-
# PasswordDuaTime
|
5915
|
+
# @param By: 可选排序:[FirstTime|LoginTime|PasswordChangeTime|PasswordDuaTime]
|
5549
5916
|
# PasswordLockDays
|
5550
5917
|
# @type By: String
|
5551
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
5552
|
-
# @type Quuid: String
|
5553
5918
|
|
5554
|
-
attr_accessor :
|
5919
|
+
attr_accessor :Quuid, :Filters, :Limit, :Offset, :Order, :By
|
5555
5920
|
|
5556
|
-
def initialize(
|
5921
|
+
def initialize(quuid=nil, filters=nil, limit=nil, offset=nil, order=nil, by=nil)
|
5922
|
+
@Quuid = quuid
|
5923
|
+
@Filters = filters
|
5557
5924
|
@Limit = limit
|
5558
5925
|
@Offset = offset
|
5559
|
-
@Filters = filters
|
5560
5926
|
@Order = order
|
5561
5927
|
@By = by
|
5562
|
-
@Quuid = quuid
|
5563
5928
|
end
|
5564
5929
|
|
5565
5930
|
def deserialize(params)
|
5566
|
-
@
|
5567
|
-
@Offset = params['Offset']
|
5931
|
+
@Quuid = params['Quuid']
|
5568
5932
|
unless params['Filters'].nil?
|
5569
5933
|
@Filters = []
|
5570
5934
|
params['Filters'].each do |i|
|
@@ -5573,9 +5937,10 @@ module TencentCloud
|
|
5573
5937
|
@Filters << filter_tmp
|
5574
5938
|
end
|
5575
5939
|
end
|
5940
|
+
@Limit = params['Limit']
|
5941
|
+
@Offset = params['Offset']
|
5576
5942
|
@Order = params['Order']
|
5577
5943
|
@By = params['By']
|
5578
|
-
@Quuid = params['Quuid']
|
5579
5944
|
end
|
5580
5945
|
end
|
5581
5946
|
|
@@ -5613,10 +5978,8 @@ module TencentCloud
|
|
5613
5978
|
|
5614
5979
|
# DescribeAssetWebAppList请求参数结构体
|
5615
5980
|
class DescribeAssetWebAppListRequest < TencentCloud::Common::AbstractModel
|
5616
|
-
# @param
|
5617
|
-
# @type
|
5618
|
-
# @param Offset: 偏移量,默认为0。
|
5619
|
-
# @type Offset: Integer
|
5981
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
5982
|
+
# @type Quuid: String
|
5620
5983
|
# @param Filters: 过滤条件。
|
5621
5984
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
5622
5985
|
# <li>Name - String - 是否必填:否 - 应用名</li>
|
@@ -5635,27 +5998,28 @@ module TencentCloud
|
|
5635
5998
|
# <li>OsType - String - 是否必填:否 - windows/linux</li>
|
5636
5999
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
5637
6000
|
# @type Filters: Array
|
6001
|
+
# @param Offset: 偏移量,默认为0。
|
6002
|
+
# @type Offset: Integer
|
6003
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
6004
|
+
# @type Limit: Integer
|
5638
6005
|
# @param Order: 排序方式,asc升序 或 desc降序
|
5639
6006
|
# @type Order: String
|
5640
|
-
# @param By: 可选排序:PluginCount
|
6007
|
+
# @param By: 可选排序:[FirstTime|PluginCount]
|
5641
6008
|
# @type By: String
|
5642
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
5643
|
-
# @type Quuid: String
|
5644
6009
|
|
5645
|
-
attr_accessor :
|
6010
|
+
attr_accessor :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
5646
6011
|
|
5647
|
-
def initialize(
|
5648
|
-
@
|
5649
|
-
@Offset = offset
|
6012
|
+
def initialize(quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
6013
|
+
@Quuid = quuid
|
5650
6014
|
@Filters = filters
|
6015
|
+
@Offset = offset
|
6016
|
+
@Limit = limit
|
5651
6017
|
@Order = order
|
5652
6018
|
@By = by
|
5653
|
-
@Quuid = quuid
|
5654
6019
|
end
|
5655
6020
|
|
5656
6021
|
def deserialize(params)
|
5657
|
-
@
|
5658
|
-
@Offset = params['Offset']
|
6022
|
+
@Quuid = params['Quuid']
|
5659
6023
|
unless params['Filters'].nil?
|
5660
6024
|
@Filters = []
|
5661
6025
|
params['Filters'].each do |i|
|
@@ -5664,9 +6028,10 @@ module TencentCloud
|
|
5664
6028
|
@Filters << filter_tmp
|
5665
6029
|
end
|
5666
6030
|
end
|
6031
|
+
@Offset = params['Offset']
|
6032
|
+
@Limit = params['Limit']
|
5667
6033
|
@Order = params['Order']
|
5668
6034
|
@By = params['By']
|
5669
|
-
@Quuid = params['Quuid']
|
5670
6035
|
end
|
5671
6036
|
end
|
5672
6037
|
|
@@ -5768,10 +6133,8 @@ module TencentCloud
|
|
5768
6133
|
|
5769
6134
|
# DescribeAssetWebFrameList请求参数结构体
|
5770
6135
|
class DescribeAssetWebFrameListRequest < TencentCloud::Common::AbstractModel
|
5771
|
-
# @param
|
5772
|
-
# @type
|
5773
|
-
# @param Offset: 偏移量,默认为0。
|
5774
|
-
# @type Offset: Integer
|
6136
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
6137
|
+
# @type Quuid: String
|
5775
6138
|
# @param Filters: 过滤条件。
|
5776
6139
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
5777
6140
|
# <li>Name - String - 是否必填:否 - 框架名</li>
|
@@ -5792,27 +6155,28 @@ module TencentCloud
|
|
5792
6155
|
# <li>OsType - String - 是否必填:否 - windows/linux</li>
|
5793
6156
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
5794
6157
|
# @type Filters: Array
|
6158
|
+
# @param Offset: 偏移量,默认为0。
|
6159
|
+
# @type Offset: Integer
|
6160
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
6161
|
+
# @type Limit: Integer
|
5795
6162
|
# @param Order: 排序方式,asc升序 或 desc降序
|
5796
6163
|
# @type Order: String
|
5797
|
-
# @param By: 可选排序:JarCount
|
6164
|
+
# @param By: 可选排序:[FirstTime|JarCount]
|
5798
6165
|
# @type By: String
|
5799
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
5800
|
-
# @type Quuid: String
|
5801
6166
|
|
5802
|
-
attr_accessor :
|
6167
|
+
attr_accessor :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
5803
6168
|
|
5804
|
-
def initialize(
|
5805
|
-
@
|
5806
|
-
@Offset = offset
|
6169
|
+
def initialize(quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
6170
|
+
@Quuid = quuid
|
5807
6171
|
@Filters = filters
|
6172
|
+
@Offset = offset
|
6173
|
+
@Limit = limit
|
5808
6174
|
@Order = order
|
5809
6175
|
@By = by
|
5810
|
-
@Quuid = quuid
|
5811
6176
|
end
|
5812
6177
|
|
5813
6178
|
def deserialize(params)
|
5814
|
-
@
|
5815
|
-
@Offset = params['Offset']
|
6179
|
+
@Quuid = params['Quuid']
|
5816
6180
|
unless params['Filters'].nil?
|
5817
6181
|
@Filters = []
|
5818
6182
|
params['Filters'].each do |i|
|
@@ -5821,9 +6185,10 @@ module TencentCloud
|
|
5821
6185
|
@Filters << filter_tmp
|
5822
6186
|
end
|
5823
6187
|
end
|
6188
|
+
@Offset = params['Offset']
|
6189
|
+
@Limit = params['Limit']
|
5824
6190
|
@Order = params['Order']
|
5825
6191
|
@By = params['By']
|
5826
|
-
@Quuid = params['Quuid']
|
5827
6192
|
end
|
5828
6193
|
end
|
5829
6194
|
|
@@ -5909,10 +6274,8 @@ module TencentCloud
|
|
5909
6274
|
|
5910
6275
|
# DescribeAssetWebLocationList请求参数结构体
|
5911
6276
|
class DescribeAssetWebLocationListRequest < TencentCloud::Common::AbstractModel
|
5912
|
-
# @param
|
5913
|
-
# @type
|
5914
|
-
# @param Offset: 偏移量,默认为0。
|
5915
|
-
# @type Offset: Integer
|
6277
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
6278
|
+
# @type Quuid: String
|
5916
6279
|
# @param Filters: 过滤条件。
|
5917
6280
|
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
5918
6281
|
# <li>Name - String - 是否必填:否 - 域名</li>
|
@@ -5933,27 +6296,28 @@ module TencentCloud
|
|
5933
6296
|
# <li>OsType - String - 是否必填:否 - windows/linux</li>
|
5934
6297
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
5935
6298
|
# @type Filters: Array
|
6299
|
+
# @param Offset: 偏移量,默认为0。
|
6300
|
+
# @type Offset: Integer
|
6301
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
6302
|
+
# @type Limit: Integer
|
5936
6303
|
# @param Order: 排序方式,asc升序 或 desc降序
|
5937
6304
|
# @type Order: String
|
5938
|
-
# @param By: 可选排序:PathCount
|
6305
|
+
# @param By: 可选排序:[FirstTime|PathCount]
|
5939
6306
|
# @type By: String
|
5940
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
5941
|
-
# @type Quuid: String
|
5942
6307
|
|
5943
|
-
attr_accessor :
|
6308
|
+
attr_accessor :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
5944
6309
|
|
5945
|
-
def initialize(
|
5946
|
-
@
|
5947
|
-
@Offset = offset
|
6310
|
+
def initialize(quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
6311
|
+
@Quuid = quuid
|
5948
6312
|
@Filters = filters
|
6313
|
+
@Offset = offset
|
6314
|
+
@Limit = limit
|
5949
6315
|
@Order = order
|
5950
6316
|
@By = by
|
5951
|
-
@Quuid = quuid
|
5952
6317
|
end
|
5953
6318
|
|
5954
6319
|
def deserialize(params)
|
5955
|
-
@
|
5956
|
-
@Offset = params['Offset']
|
6320
|
+
@Quuid = params['Quuid']
|
5957
6321
|
unless params['Filters'].nil?
|
5958
6322
|
@Filters = []
|
5959
6323
|
params['Filters'].each do |i|
|
@@ -5962,9 +6326,10 @@ module TencentCloud
|
|
5962
6326
|
@Filters << filter_tmp
|
5963
6327
|
end
|
5964
6328
|
end
|
6329
|
+
@Offset = params['Offset']
|
6330
|
+
@Limit = params['Limit']
|
5965
6331
|
@Order = params['Order']
|
5966
6332
|
@By = params['By']
|
5967
|
-
@Quuid = params['Quuid']
|
5968
6333
|
end
|
5969
6334
|
end
|
5970
6335
|
|
@@ -6002,11 +6367,8 @@ module TencentCloud
|
|
6002
6367
|
|
6003
6368
|
# DescribeAssetWebServiceInfoList请求参数结构体
|
6004
6369
|
class DescribeAssetWebServiceInfoListRequest < TencentCloud::Common::AbstractModel
|
6005
|
-
# @param
|
6006
|
-
# @type
|
6007
|
-
# @param Offset: 偏移量,默认为0。
|
6008
|
-
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
6009
|
-
# @type Offset: Integer
|
6370
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
6371
|
+
# @type Quuid: String
|
6010
6372
|
# @param Filters: 过滤条件。
|
6011
6373
|
# <li>User- string - 是否必填:否 - 运行用户</li>
|
6012
6374
|
# <li>Name- string - 是否必填:否 - Web服务名:
|
@@ -6023,27 +6385,29 @@ module TencentCloud
|
|
6023
6385
|
# <li>OsType- string - 是否必填:否 - Windows/linux</li>
|
6024
6386
|
# <li>Os -String 是否必填: 否 - 操作系统( DescribeMachineOsList 接口 值 )</li>
|
6025
6387
|
# @type Filters: Array
|
6388
|
+
# @param Offset: 偏移量,默认为0。
|
6389
|
+
# <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li>
|
6390
|
+
# @type Offset: Integer
|
6391
|
+
# @param Limit: 需要返回的数量,默认为10,最大值为100
|
6392
|
+
# @type Limit: Integer
|
6026
6393
|
# @param Order: 排序方式,asc升序 或 desc降序
|
6027
6394
|
# @type Order: String
|
6028
|
-
# @param By: 可选排序:ProcessCount
|
6395
|
+
# @param By: 可选排序:[FirstTime|ProcessCount]
|
6029
6396
|
# @type By: String
|
6030
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
6031
|
-
# @type Quuid: String
|
6032
6397
|
|
6033
|
-
attr_accessor :
|
6398
|
+
attr_accessor :Quuid, :Filters, :Offset, :Limit, :Order, :By
|
6034
6399
|
|
6035
|
-
def initialize(
|
6036
|
-
@
|
6037
|
-
@Offset = offset
|
6400
|
+
def initialize(quuid=nil, filters=nil, offset=nil, limit=nil, order=nil, by=nil)
|
6401
|
+
@Quuid = quuid
|
6038
6402
|
@Filters = filters
|
6403
|
+
@Offset = offset
|
6404
|
+
@Limit = limit
|
6039
6405
|
@Order = order
|
6040
6406
|
@By = by
|
6041
|
-
@Quuid = quuid
|
6042
6407
|
end
|
6043
6408
|
|
6044
6409
|
def deserialize(params)
|
6045
|
-
@
|
6046
|
-
@Offset = params['Offset']
|
6410
|
+
@Quuid = params['Quuid']
|
6047
6411
|
unless params['Filters'].nil?
|
6048
6412
|
@Filters = []
|
6049
6413
|
params['Filters'].each do |i|
|
@@ -6052,9 +6416,10 @@ module TencentCloud
|
|
6052
6416
|
@Filters << assetfilters_tmp
|
6053
6417
|
end
|
6054
6418
|
end
|
6419
|
+
@Offset = params['Offset']
|
6420
|
+
@Limit = params['Limit']
|
6055
6421
|
@Order = params['Order']
|
6056
6422
|
@By = params['By']
|
6057
|
-
@Quuid = params['Quuid']
|
6058
6423
|
end
|
6059
6424
|
end
|
6060
6425
|
|
@@ -8529,6 +8894,319 @@ module TencentCloud
|
|
8529
8894
|
end
|
8530
8895
|
end
|
8531
8896
|
|
8897
|
+
# DescribeLicenseBindList请求参数结构体
|
8898
|
+
class DescribeLicenseBindListRequest < TencentCloud::Common::AbstractModel
|
8899
|
+
# @param LicenseId: 授权ID
|
8900
|
+
# @type LicenseId: Integer
|
8901
|
+
# @param LicenseType: 授权类型
|
8902
|
+
# @type LicenseType: Integer
|
8903
|
+
# @param ResourceId: 资源ID
|
8904
|
+
# @type ResourceId: String
|
8905
|
+
# @param Filters: <li>Keywords 机器别名/公私IP 模糊查询</li>
|
8906
|
+
# @type Filters: Array
|
8907
|
+
# @param Limit: 限制条数,默认10.
|
8908
|
+
# @type Limit: Integer
|
8909
|
+
# @param Offset: 偏移量,默认0.
|
8910
|
+
# @type Offset: Integer
|
8911
|
+
|
8912
|
+
attr_accessor :LicenseId, :LicenseType, :ResourceId, :Filters, :Limit, :Offset
|
8913
|
+
|
8914
|
+
def initialize(licenseid=nil, licensetype=nil, resourceid=nil, filters=nil, limit=nil, offset=nil)
|
8915
|
+
@LicenseId = licenseid
|
8916
|
+
@LicenseType = licensetype
|
8917
|
+
@ResourceId = resourceid
|
8918
|
+
@Filters = filters
|
8919
|
+
@Limit = limit
|
8920
|
+
@Offset = offset
|
8921
|
+
end
|
8922
|
+
|
8923
|
+
def deserialize(params)
|
8924
|
+
@LicenseId = params['LicenseId']
|
8925
|
+
@LicenseType = params['LicenseType']
|
8926
|
+
@ResourceId = params['ResourceId']
|
8927
|
+
unless params['Filters'].nil?
|
8928
|
+
@Filters = []
|
8929
|
+
params['Filters'].each do |i|
|
8930
|
+
filters_tmp = Filters.new
|
8931
|
+
filters_tmp.deserialize(i)
|
8932
|
+
@Filters << filters_tmp
|
8933
|
+
end
|
8934
|
+
end
|
8935
|
+
@Limit = params['Limit']
|
8936
|
+
@Offset = params['Offset']
|
8937
|
+
end
|
8938
|
+
end
|
8939
|
+
|
8940
|
+
# DescribeLicenseBindList返回参数结构体
|
8941
|
+
class DescribeLicenseBindListResponse < TencentCloud::Common::AbstractModel
|
8942
|
+
# @param TotalCount: 总条数
|
8943
|
+
# @type TotalCount: Integer
|
8944
|
+
# @param List: 绑定机器列表信息
|
8945
|
+
# @type List: Array
|
8946
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
8947
|
+
# @type RequestId: String
|
8948
|
+
|
8949
|
+
attr_accessor :TotalCount, :List, :RequestId
|
8950
|
+
|
8951
|
+
def initialize(totalcount=nil, list=nil, requestid=nil)
|
8952
|
+
@TotalCount = totalcount
|
8953
|
+
@List = list
|
8954
|
+
@RequestId = requestid
|
8955
|
+
end
|
8956
|
+
|
8957
|
+
def deserialize(params)
|
8958
|
+
@TotalCount = params['TotalCount']
|
8959
|
+
unless params['List'].nil?
|
8960
|
+
@List = []
|
8961
|
+
params['List'].each do |i|
|
8962
|
+
licensebinddetail_tmp = LicenseBindDetail.new
|
8963
|
+
licensebinddetail_tmp.deserialize(i)
|
8964
|
+
@List << licensebinddetail_tmp
|
8965
|
+
end
|
8966
|
+
end
|
8967
|
+
@RequestId = params['RequestId']
|
8968
|
+
end
|
8969
|
+
end
|
8970
|
+
|
8971
|
+
# DescribeLicenseBindSchedule请求参数结构体
|
8972
|
+
class DescribeLicenseBindScheduleRequest < TencentCloud::Common::AbstractModel
|
8973
|
+
# @param TaskId: 任务ID
|
8974
|
+
# @type TaskId: Integer
|
8975
|
+
# @param Limit: 限制条数,默认10.
|
8976
|
+
# @type Limit: Integer
|
8977
|
+
# @param Offset: 偏移量,默认0
|
8978
|
+
# @type Offset: Integer
|
8979
|
+
# @param Filters: 过滤参数
|
8980
|
+
# Status 绑定进度状态 0 进行中 1 已完成 2 失败
|
8981
|
+
# @type Filters: Array
|
8982
|
+
|
8983
|
+
attr_accessor :TaskId, :Limit, :Offset, :Filters
|
8984
|
+
|
8985
|
+
def initialize(taskid=nil, limit=nil, offset=nil, filters=nil)
|
8986
|
+
@TaskId = taskid
|
8987
|
+
@Limit = limit
|
8988
|
+
@Offset = offset
|
8989
|
+
@Filters = filters
|
8990
|
+
end
|
8991
|
+
|
8992
|
+
def deserialize(params)
|
8993
|
+
@TaskId = params['TaskId']
|
8994
|
+
@Limit = params['Limit']
|
8995
|
+
@Offset = params['Offset']
|
8996
|
+
unless params['Filters'].nil?
|
8997
|
+
@Filters = []
|
8998
|
+
params['Filters'].each do |i|
|
8999
|
+
filter_tmp = Filter.new
|
9000
|
+
filter_tmp.deserialize(i)
|
9001
|
+
@Filters << filter_tmp
|
9002
|
+
end
|
9003
|
+
end
|
9004
|
+
end
|
9005
|
+
end
|
9006
|
+
|
9007
|
+
# DescribeLicenseBindSchedule返回参数结构体
|
9008
|
+
class DescribeLicenseBindScheduleResponse < TencentCloud::Common::AbstractModel
|
9009
|
+
# @param Schedule: 进度
|
9010
|
+
# @type Schedule: Integer
|
9011
|
+
# @param List: 绑定任务详情
|
9012
|
+
# @type List: Array
|
9013
|
+
# @param TotalCount: 总条数
|
9014
|
+
# @type TotalCount: Integer
|
9015
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9016
|
+
# @type RequestId: String
|
9017
|
+
|
9018
|
+
attr_accessor :Schedule, :List, :TotalCount, :RequestId
|
9019
|
+
|
9020
|
+
def initialize(schedule=nil, list=nil, totalcount=nil, requestid=nil)
|
9021
|
+
@Schedule = schedule
|
9022
|
+
@List = list
|
9023
|
+
@TotalCount = totalcount
|
9024
|
+
@RequestId = requestid
|
9025
|
+
end
|
9026
|
+
|
9027
|
+
def deserialize(params)
|
9028
|
+
@Schedule = params['Schedule']
|
9029
|
+
unless params['List'].nil?
|
9030
|
+
@List = []
|
9031
|
+
params['List'].each do |i|
|
9032
|
+
licensebindtaskdetail_tmp = LicenseBindTaskDetail.new
|
9033
|
+
licensebindtaskdetail_tmp.deserialize(i)
|
9034
|
+
@List << licensebindtaskdetail_tmp
|
9035
|
+
end
|
9036
|
+
end
|
9037
|
+
@TotalCount = params['TotalCount']
|
9038
|
+
@RequestId = params['RequestId']
|
9039
|
+
end
|
9040
|
+
end
|
9041
|
+
|
9042
|
+
# DescribeLicenseGeneral请求参数结构体
|
9043
|
+
class DescribeLicenseGeneralRequest < TencentCloud::Common::AbstractModel
|
9044
|
+
|
9045
|
+
|
9046
|
+
def initialize()
|
9047
|
+
end
|
9048
|
+
|
9049
|
+
def deserialize(params)
|
9050
|
+
end
|
9051
|
+
end
|
9052
|
+
|
9053
|
+
# DescribeLicenseGeneral返回参数结构体
|
9054
|
+
class DescribeLicenseGeneralResponse < TencentCloud::Common::AbstractModel
|
9055
|
+
# @param LicenseCnt: 总授权数 (包含隔离,过期等不可用状态)
|
9056
|
+
# @type LicenseCnt: Integer
|
9057
|
+
# @param AvailableLicenseCnt: 可用授权数
|
9058
|
+
# @type AvailableLicenseCnt: Integer
|
9059
|
+
# @param AvailableProVersionLicenseCnt: 可用专业版授权数(包含后付费).
|
9060
|
+
# @type AvailableProVersionLicenseCnt: Integer
|
9061
|
+
# @param AvailableFlagshipVersionLicenseCnt: 可用旗舰版授权数
|
9062
|
+
# @type AvailableFlagshipVersionLicenseCnt: Integer
|
9063
|
+
# @param NearExpiryLicenseCnt: 即将到期授权数 (15天内到期的)
|
9064
|
+
# @type NearExpiryLicenseCnt: Integer
|
9065
|
+
# @param ExpireLicenseCnt: 已到期授权数(不包含已删除的记录)
|
9066
|
+
# @type ExpireLicenseCnt: Integer
|
9067
|
+
# @param AutoOpenStatus: 自动升级开关状态,默认 false, ture 开启, false 关闭
|
9068
|
+
# @type AutoOpenStatus: Boolean
|
9069
|
+
# @param ProtectType: PROVERSION_POSTPAY 专业版-后付费, PROVERSION_PREPAY 专业版-预付费, FLAGSHIP_PREPAY 旗舰版-预付费
|
9070
|
+
# @type ProtectType: String
|
9071
|
+
# @param IsOpenStatusHistory: 历史是否开通过自动升级开关
|
9072
|
+
# @type IsOpenStatusHistory: Boolean
|
9073
|
+
# @param UsedLicenseCnt: 已使用授权数
|
9074
|
+
# @type UsedLicenseCnt: Integer
|
9075
|
+
# @param NotExpiredLicenseCnt: 未到期授权数
|
9076
|
+
# @type NotExpiredLicenseCnt: Integer
|
9077
|
+
# @param FlagshipVersionLicenseCnt: 旗舰版总授权数(有效订单)
|
9078
|
+
# @type FlagshipVersionLicenseCnt: Integer
|
9079
|
+
# @param ProVersionLicenseCnt: 专业版总授权数(有效订单)
|
9080
|
+
# @type ProVersionLicenseCnt: Integer
|
9081
|
+
# @param CwpVersionLicenseCnt: 普惠版总授权数(有效订单的授权数)
|
9082
|
+
# @type CwpVersionLicenseCnt: Integer
|
9083
|
+
# @param AvailableLHLicenseCnt: 可用惠普版授权数
|
9084
|
+
# @type AvailableLHLicenseCnt: Integer
|
9085
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9086
|
+
# @type RequestId: String
|
9087
|
+
|
9088
|
+
attr_accessor :LicenseCnt, :AvailableLicenseCnt, :AvailableProVersionLicenseCnt, :AvailableFlagshipVersionLicenseCnt, :NearExpiryLicenseCnt, :ExpireLicenseCnt, :AutoOpenStatus, :ProtectType, :IsOpenStatusHistory, :UsedLicenseCnt, :NotExpiredLicenseCnt, :FlagshipVersionLicenseCnt, :ProVersionLicenseCnt, :CwpVersionLicenseCnt, :AvailableLHLicenseCnt, :RequestId
|
9089
|
+
|
9090
|
+
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, requestid=nil)
|
9091
|
+
@LicenseCnt = licensecnt
|
9092
|
+
@AvailableLicenseCnt = availablelicensecnt
|
9093
|
+
@AvailableProVersionLicenseCnt = availableproversionlicensecnt
|
9094
|
+
@AvailableFlagshipVersionLicenseCnt = availableflagshipversionlicensecnt
|
9095
|
+
@NearExpiryLicenseCnt = nearexpirylicensecnt
|
9096
|
+
@ExpireLicenseCnt = expirelicensecnt
|
9097
|
+
@AutoOpenStatus = autoopenstatus
|
9098
|
+
@ProtectType = protecttype
|
9099
|
+
@IsOpenStatusHistory = isopenstatushistory
|
9100
|
+
@UsedLicenseCnt = usedlicensecnt
|
9101
|
+
@NotExpiredLicenseCnt = notexpiredlicensecnt
|
9102
|
+
@FlagshipVersionLicenseCnt = flagshipversionlicensecnt
|
9103
|
+
@ProVersionLicenseCnt = proversionlicensecnt
|
9104
|
+
@CwpVersionLicenseCnt = cwpversionlicensecnt
|
9105
|
+
@AvailableLHLicenseCnt = availablelhlicensecnt
|
9106
|
+
@RequestId = requestid
|
9107
|
+
end
|
9108
|
+
|
9109
|
+
def deserialize(params)
|
9110
|
+
@LicenseCnt = params['LicenseCnt']
|
9111
|
+
@AvailableLicenseCnt = params['AvailableLicenseCnt']
|
9112
|
+
@AvailableProVersionLicenseCnt = params['AvailableProVersionLicenseCnt']
|
9113
|
+
@AvailableFlagshipVersionLicenseCnt = params['AvailableFlagshipVersionLicenseCnt']
|
9114
|
+
@NearExpiryLicenseCnt = params['NearExpiryLicenseCnt']
|
9115
|
+
@ExpireLicenseCnt = params['ExpireLicenseCnt']
|
9116
|
+
@AutoOpenStatus = params['AutoOpenStatus']
|
9117
|
+
@ProtectType = params['ProtectType']
|
9118
|
+
@IsOpenStatusHistory = params['IsOpenStatusHistory']
|
9119
|
+
@UsedLicenseCnt = params['UsedLicenseCnt']
|
9120
|
+
@NotExpiredLicenseCnt = params['NotExpiredLicenseCnt']
|
9121
|
+
@FlagshipVersionLicenseCnt = params['FlagshipVersionLicenseCnt']
|
9122
|
+
@ProVersionLicenseCnt = params['ProVersionLicenseCnt']
|
9123
|
+
@CwpVersionLicenseCnt = params['CwpVersionLicenseCnt']
|
9124
|
+
@AvailableLHLicenseCnt = params['AvailableLHLicenseCnt']
|
9125
|
+
@RequestId = params['RequestId']
|
9126
|
+
end
|
9127
|
+
end
|
9128
|
+
|
9129
|
+
# DescribeLicenseList请求参数结构体
|
9130
|
+
class DescribeLicenseListRequest < TencentCloud::Common::AbstractModel
|
9131
|
+
# @param Filters: 多个条件筛选时 LicenseStatus,DeadlineStatus,ResourceId,Keywords 取交集
|
9132
|
+
# <li> LicenseStatus 授权状态信息,0 未使用,1 部分使用, 2 已用完, 3 不可用 4 可使用</li>
|
9133
|
+
# <li> BuyTime 购买时间</li>
|
9134
|
+
# <li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li>
|
9135
|
+
# <li>DeadlineStatus 到期状态 NotExpired 未过期, Expire 已过期(包含已销毁) NearExpiry 即将到期</li>
|
9136
|
+
# <li>ResourceId 资源ID</li>
|
9137
|
+
# <li>Keywords IP筛选</li>
|
9138
|
+
# <li>PayMode 付费模式 0 按量计费 , 1 包年包月</li>
|
9139
|
+
# <li>OrderStatus 订单状态 1 正常 2 隔离 3 销毁</li>
|
9140
|
+
# @type Filters: Array
|
9141
|
+
# @param Limit: 限制条数,默认10.
|
9142
|
+
# @type Limit: Integer
|
9143
|
+
# @param Offset: 偏移量,默认0.
|
9144
|
+
# @type Offset: Integer
|
9145
|
+
# @param Tags: 标签筛选,平台标签能力,这里传入 标签键,标签值作为一个对象
|
9146
|
+
# @type Tags: Array
|
9147
|
+
|
9148
|
+
attr_accessor :Filters, :Limit, :Offset, :Tags
|
9149
|
+
|
9150
|
+
def initialize(filters=nil, limit=nil, offset=nil, tags=nil)
|
9151
|
+
@Filters = filters
|
9152
|
+
@Limit = limit
|
9153
|
+
@Offset = offset
|
9154
|
+
@Tags = tags
|
9155
|
+
end
|
9156
|
+
|
9157
|
+
def deserialize(params)
|
9158
|
+
unless params['Filters'].nil?
|
9159
|
+
@Filters = []
|
9160
|
+
params['Filters'].each do |i|
|
9161
|
+
filters_tmp = Filters.new
|
9162
|
+
filters_tmp.deserialize(i)
|
9163
|
+
@Filters << filters_tmp
|
9164
|
+
end
|
9165
|
+
end
|
9166
|
+
@Limit = params['Limit']
|
9167
|
+
@Offset = params['Offset']
|
9168
|
+
unless params['Tags'].nil?
|
9169
|
+
@Tags = []
|
9170
|
+
params['Tags'].each do |i|
|
9171
|
+
tags_tmp = Tags.new
|
9172
|
+
tags_tmp.deserialize(i)
|
9173
|
+
@Tags << tags_tmp
|
9174
|
+
end
|
9175
|
+
end
|
9176
|
+
end
|
9177
|
+
end
|
9178
|
+
|
9179
|
+
# DescribeLicenseList返回参数结构体
|
9180
|
+
class DescribeLicenseListResponse < TencentCloud::Common::AbstractModel
|
9181
|
+
# @param TotalCount: 总条数
|
9182
|
+
# @type TotalCount: Integer
|
9183
|
+
# @param List: 授权数列表信息
|
9184
|
+
# @type List: Array
|
9185
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9186
|
+
# @type RequestId: String
|
9187
|
+
|
9188
|
+
attr_accessor :TotalCount, :List, :RequestId
|
9189
|
+
|
9190
|
+
def initialize(totalcount=nil, list=nil, requestid=nil)
|
9191
|
+
@TotalCount = totalcount
|
9192
|
+
@List = list
|
9193
|
+
@RequestId = requestid
|
9194
|
+
end
|
9195
|
+
|
9196
|
+
def deserialize(params)
|
9197
|
+
@TotalCount = params['TotalCount']
|
9198
|
+
unless params['List'].nil?
|
9199
|
+
@List = []
|
9200
|
+
params['List'].each do |i|
|
9201
|
+
licensedetail_tmp = LicenseDetail.new
|
9202
|
+
licensedetail_tmp.deserialize(i)
|
9203
|
+
@List << licensedetail_tmp
|
9204
|
+
end
|
9205
|
+
end
|
9206
|
+
@RequestId = params['RequestId']
|
9207
|
+
end
|
9208
|
+
end
|
9209
|
+
|
8532
9210
|
# DescribeLogStorageStatistic请求参数结构体
|
8533
9211
|
class DescribeLogStorageStatisticRequest < TencentCloud::Common::AbstractModel
|
8534
9212
|
|
@@ -12615,6 +13293,42 @@ module TencentCloud
|
|
12615
13293
|
end
|
12616
13294
|
end
|
12617
13295
|
|
13296
|
+
# DestroyOrder请求参数结构体
|
13297
|
+
class DestroyOrderRequest < TencentCloud::Common::AbstractModel
|
13298
|
+
# @param ResourceId: 资源ID
|
13299
|
+
# @type ResourceId: String
|
13300
|
+
# @param LicenseType: 授权类型 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
|
13301
|
+
# @type LicenseType: Integer
|
13302
|
+
|
13303
|
+
attr_accessor :ResourceId, :LicenseType
|
13304
|
+
|
13305
|
+
def initialize(resourceid=nil, licensetype=nil)
|
13306
|
+
@ResourceId = resourceid
|
13307
|
+
@LicenseType = licensetype
|
13308
|
+
end
|
13309
|
+
|
13310
|
+
def deserialize(params)
|
13311
|
+
@ResourceId = params['ResourceId']
|
13312
|
+
@LicenseType = params['LicenseType']
|
13313
|
+
end
|
13314
|
+
end
|
13315
|
+
|
13316
|
+
# DestroyOrder返回参数结构体
|
13317
|
+
class DestroyOrderResponse < TencentCloud::Common::AbstractModel
|
13318
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
13319
|
+
# @type RequestId: String
|
13320
|
+
|
13321
|
+
attr_accessor :RequestId
|
13322
|
+
|
13323
|
+
def initialize(requestid=nil)
|
13324
|
+
@RequestId = requestid
|
13325
|
+
end
|
13326
|
+
|
13327
|
+
def deserialize(params)
|
13328
|
+
@RequestId = params['RequestId']
|
13329
|
+
end
|
13330
|
+
end
|
13331
|
+
|
12618
13332
|
# EditBashRules请求参数结构体
|
12619
13333
|
class EditBashRulesRequest < TencentCloud::Common::AbstractModel
|
12620
13334
|
# @param Id: 规则ID(新增时不填)
|
@@ -12967,30 +13681,32 @@ module TencentCloud
|
|
12967
13681
|
|
12968
13682
|
# ExportAssetCoreModuleList请求参数结构体
|
12969
13683
|
class ExportAssetCoreModuleListRequest < TencentCloud::Common::AbstractModel
|
13684
|
+
# @param Uuid: 服务器Uuid
|
13685
|
+
# @type Uuid: String
|
13686
|
+
# @param Quuid: 服务器Quuid
|
13687
|
+
# @type Quuid: String
|
12970
13688
|
# @param Filters: 过滤条件。
|
12971
13689
|
# <li>Name- string - 是否必填:否 - 包名</li>
|
12972
13690
|
# <li>User- string - 是否必填:否 - 用户</li>
|
12973
13691
|
# @type Filters: Array
|
12974
13692
|
# @param Order: 排序方式,asc升序 或 desc降序
|
12975
13693
|
# @type Order: String
|
12976
|
-
# @param By:
|
13694
|
+
# @param By: 排序依据[FirstTime|Size|ProcessCount|ModuleCount]
|
12977
13695
|
# @type By: String
|
12978
|
-
# @param Uuid: 服务器Uuid
|
12979
|
-
# @type Uuid: String
|
12980
|
-
# @param Quuid: 服务器Quuid
|
12981
|
-
# @type Quuid: String
|
12982
13696
|
|
12983
|
-
attr_accessor :
|
13697
|
+
attr_accessor :Uuid, :Quuid, :Filters, :Order, :By
|
12984
13698
|
|
12985
|
-
def initialize(
|
13699
|
+
def initialize(uuid=nil, quuid=nil, filters=nil, order=nil, by=nil)
|
13700
|
+
@Uuid = uuid
|
13701
|
+
@Quuid = quuid
|
12986
13702
|
@Filters = filters
|
12987
13703
|
@Order = order
|
12988
13704
|
@By = by
|
12989
|
-
@Uuid = uuid
|
12990
|
-
@Quuid = quuid
|
12991
13705
|
end
|
12992
13706
|
|
12993
13707
|
def deserialize(params)
|
13708
|
+
@Uuid = params['Uuid']
|
13709
|
+
@Quuid = params['Quuid']
|
12994
13710
|
unless params['Filters'].nil?
|
12995
13711
|
@Filters = []
|
12996
13712
|
params['Filters'].each do |i|
|
@@ -13001,8 +13717,6 @@ module TencentCloud
|
|
13001
13717
|
end
|
13002
13718
|
@Order = params['Order']
|
13003
13719
|
@By = params['By']
|
13004
|
-
@Uuid = params['Uuid']
|
13005
|
-
@Quuid = params['Quuid']
|
13006
13720
|
end
|
13007
13721
|
end
|
13008
13722
|
|
@@ -13028,6 +13742,8 @@ module TencentCloud
|
|
13028
13742
|
|
13029
13743
|
# ExportAssetWebServiceInfoList请求参数结构体
|
13030
13744
|
class ExportAssetWebServiceInfoListRequest < TencentCloud::Common::AbstractModel
|
13745
|
+
# @param Quuid: 查询指定Quuid主机的信息
|
13746
|
+
# @type Quuid: String
|
13031
13747
|
# @param Filters: 过滤条件。
|
13032
13748
|
# <li>User- string - 是否必填:否 - 运行用户</li>
|
13033
13749
|
# <li>Name- string - 是否必填:否 - Web服务名:
|
@@ -13045,21 +13761,20 @@ module TencentCloud
|
|
13045
13761
|
# @type Filters: Array
|
13046
13762
|
# @param Order: 排序方式,asc升序 或 desc降序
|
13047
13763
|
# @type Order: String
|
13048
|
-
# @param By: 可选排序:ProcessCount
|
13764
|
+
# @param By: 可选排序:[FirstTime|ProcessCount]
|
13049
13765
|
# @type By: String
|
13050
|
-
# @param Quuid: 查询指定Quuid主机的信息
|
13051
|
-
# @type Quuid: String
|
13052
13766
|
|
13053
|
-
attr_accessor :Filters, :Order, :By
|
13767
|
+
attr_accessor :Quuid, :Filters, :Order, :By
|
13054
13768
|
|
13055
|
-
def initialize(
|
13769
|
+
def initialize(quuid=nil, filters=nil, order=nil, by=nil)
|
13770
|
+
@Quuid = quuid
|
13056
13771
|
@Filters = filters
|
13057
13772
|
@Order = order
|
13058
13773
|
@By = by
|
13059
|
-
@Quuid = quuid
|
13060
13774
|
end
|
13061
13775
|
|
13062
13776
|
def deserialize(params)
|
13777
|
+
@Quuid = params['Quuid']
|
13063
13778
|
unless params['Filters'].nil?
|
13064
13779
|
@Filters = []
|
13065
13780
|
params['Filters'].each do |i|
|
@@ -13070,7 +13785,6 @@ module TencentCloud
|
|
13070
13785
|
end
|
13071
13786
|
@Order = params['Order']
|
13072
13787
|
@By = params['By']
|
13073
|
-
@Quuid = params['Quuid']
|
13074
13788
|
end
|
13075
13789
|
end
|
13076
13790
|
|
@@ -13464,6 +14178,74 @@ module TencentCloud
|
|
13464
14178
|
end
|
13465
14179
|
end
|
13466
14180
|
|
14181
|
+
# ExportLicenseDetail请求参数结构体
|
14182
|
+
class ExportLicenseDetailRequest < TencentCloud::Common::AbstractModel
|
14183
|
+
# @param Filters: 多个条件筛选时 LicenseStatus,DeadlineStatus,ResourceId,Keywords 取交集
|
14184
|
+
# <li> LicenseType 授权类型, 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月</li>
|
14185
|
+
# <li>ResourceId 资源ID</li>
|
14186
|
+
# @type Filters: Array
|
14187
|
+
# @param IsHistory: 是否导出全部授权详情
|
14188
|
+
# @type IsHistory: Boolean
|
14189
|
+
# @param Tags: 标签筛选,平台标签能力,这里传入 标签键,标签值作为一个对象
|
14190
|
+
# @type Tags: Array
|
14191
|
+
# @param ExportMonth: 导出月份, 该参数仅在IsHistory 时可选.
|
14192
|
+
# @type ExportMonth: String
|
14193
|
+
|
14194
|
+
attr_accessor :Filters, :IsHistory, :Tags, :ExportMonth
|
14195
|
+
|
14196
|
+
def initialize(filters=nil, ishistory=nil, tags=nil, exportmonth=nil)
|
14197
|
+
@Filters = filters
|
14198
|
+
@IsHistory = ishistory
|
14199
|
+
@Tags = tags
|
14200
|
+
@ExportMonth = exportmonth
|
14201
|
+
end
|
14202
|
+
|
14203
|
+
def deserialize(params)
|
14204
|
+
unless params['Filters'].nil?
|
14205
|
+
@Filters = []
|
14206
|
+
params['Filters'].each do |i|
|
14207
|
+
filters_tmp = Filters.new
|
14208
|
+
filters_tmp.deserialize(i)
|
14209
|
+
@Filters << filters_tmp
|
14210
|
+
end
|
14211
|
+
end
|
14212
|
+
@IsHistory = params['IsHistory']
|
14213
|
+
unless params['Tags'].nil?
|
14214
|
+
@Tags = []
|
14215
|
+
params['Tags'].each do |i|
|
14216
|
+
tags_tmp = Tags.new
|
14217
|
+
tags_tmp.deserialize(i)
|
14218
|
+
@Tags << tags_tmp
|
14219
|
+
end
|
14220
|
+
end
|
14221
|
+
@ExportMonth = params['ExportMonth']
|
14222
|
+
end
|
14223
|
+
end
|
14224
|
+
|
14225
|
+
# ExportLicenseDetail返回参数结构体
|
14226
|
+
class ExportLicenseDetailResponse < TencentCloud::Common::AbstractModel
|
14227
|
+
# @param DownloadUrl: 下载地址,该字段废弃
|
14228
|
+
# @type DownloadUrl: String
|
14229
|
+
# @param TaskId: 任务ID,可通过任务ID去查下载任务
|
14230
|
+
# @type TaskId: Integer
|
14231
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14232
|
+
# @type RequestId: String
|
14233
|
+
|
14234
|
+
attr_accessor :DownloadUrl, :TaskId, :RequestId
|
14235
|
+
|
14236
|
+
def initialize(downloadurl=nil, taskid=nil, requestid=nil)
|
14237
|
+
@DownloadUrl = downloadurl
|
14238
|
+
@TaskId = taskid
|
14239
|
+
@RequestId = requestid
|
14240
|
+
end
|
14241
|
+
|
14242
|
+
def deserialize(params)
|
14243
|
+
@DownloadUrl = params['DownloadUrl']
|
14244
|
+
@TaskId = params['TaskId']
|
14245
|
+
@RequestId = params['RequestId']
|
14246
|
+
end
|
14247
|
+
end
|
14248
|
+
|
13467
14249
|
# ExportMaliciousRequests请求参数结构体
|
13468
14250
|
class ExportMaliciousRequestsRequest < TencentCloud::Common::AbstractModel
|
13469
14251
|
# @param Filters: 过滤参数
|
@@ -14490,6 +15272,159 @@ module TencentCloud
|
|
14490
15272
|
end
|
14491
15273
|
end
|
14492
15274
|
|
15275
|
+
# 授权绑定详情信息
|
15276
|
+
class LicenseBindDetail < TencentCloud::Common::AbstractModel
|
15277
|
+
# @param MachineName: 机器别名
|
15278
|
+
# @type MachineName: String
|
15279
|
+
# @param MachineWanIp: 机器公网IP
|
15280
|
+
# @type MachineWanIp: String
|
15281
|
+
# @param MachineIp: 机器内网IP
|
15282
|
+
# @type MachineIp: String
|
15283
|
+
# @param Quuid: 云服务器UUID
|
15284
|
+
# @type Quuid: String
|
15285
|
+
# @param Uuid: 云镜客户端UUID
|
15286
|
+
# @type Uuid: String
|
15287
|
+
# @param Tags: 标签信息
|
15288
|
+
# @type Tags: Array
|
15289
|
+
# @param AgentStatus: 云镜客户端状态,OFFLINE 离线,ONLINE 在线,UNINSTALL 未安装
|
15290
|
+
# @type AgentStatus: String
|
15291
|
+
# @param IsUnBind: 是否允许解绑,false 不允许解绑
|
15292
|
+
# @type IsUnBind: Boolean
|
15293
|
+
# @param IsSwitchBind: 是否允许换绑,false 不允许换绑
|
15294
|
+
# @type IsSwitchBind: Boolean
|
15295
|
+
|
15296
|
+
attr_accessor :MachineName, :MachineWanIp, :MachineIp, :Quuid, :Uuid, :Tags, :AgentStatus, :IsUnBind, :IsSwitchBind
|
15297
|
+
|
15298
|
+
def initialize(machinename=nil, machinewanip=nil, machineip=nil, quuid=nil, uuid=nil, tags=nil, agentstatus=nil, isunbind=nil, isswitchbind=nil)
|
15299
|
+
@MachineName = machinename
|
15300
|
+
@MachineWanIp = machinewanip
|
15301
|
+
@MachineIp = machineip
|
15302
|
+
@Quuid = quuid
|
15303
|
+
@Uuid = uuid
|
15304
|
+
@Tags = tags
|
15305
|
+
@AgentStatus = agentstatus
|
15306
|
+
@IsUnBind = isunbind
|
15307
|
+
@IsSwitchBind = isswitchbind
|
15308
|
+
end
|
15309
|
+
|
15310
|
+
def deserialize(params)
|
15311
|
+
@MachineName = params['MachineName']
|
15312
|
+
@MachineWanIp = params['MachineWanIp']
|
15313
|
+
@MachineIp = params['MachineIp']
|
15314
|
+
@Quuid = params['Quuid']
|
15315
|
+
@Uuid = params['Uuid']
|
15316
|
+
@Tags = params['Tags']
|
15317
|
+
@AgentStatus = params['AgentStatus']
|
15318
|
+
@IsUnBind = params['IsUnBind']
|
15319
|
+
@IsSwitchBind = params['IsSwitchBind']
|
15320
|
+
end
|
15321
|
+
end
|
15322
|
+
|
15323
|
+
# 授权绑定任务详情
|
15324
|
+
class LicenseBindTaskDetail < TencentCloud::Common::AbstractModel
|
15325
|
+
# @param Quuid: 云服务器UUID
|
15326
|
+
# @type Quuid: String
|
15327
|
+
# @param ErrMsg: 错误信息
|
15328
|
+
# @type ErrMsg: String
|
15329
|
+
# @param Status: 0 执行中, 1 成功,2失败
|
15330
|
+
# @type Status: Integer
|
15331
|
+
|
15332
|
+
attr_accessor :Quuid, :ErrMsg, :Status
|
15333
|
+
|
15334
|
+
def initialize(quuid=nil, errmsg=nil, status=nil)
|
15335
|
+
@Quuid = quuid
|
15336
|
+
@ErrMsg = errmsg
|
15337
|
+
@Status = status
|
15338
|
+
end
|
15339
|
+
|
15340
|
+
def deserialize(params)
|
15341
|
+
@Quuid = params['Quuid']
|
15342
|
+
@ErrMsg = params['ErrMsg']
|
15343
|
+
@Status = params['Status']
|
15344
|
+
end
|
15345
|
+
end
|
15346
|
+
|
15347
|
+
# 授权订单列表对象
|
15348
|
+
class LicenseDetail < TencentCloud::Common::AbstractModel
|
15349
|
+
# @param LicenseId: 授权ID
|
15350
|
+
# @type LicenseId: Integer
|
15351
|
+
# @param LicenseType: 授权类型,0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
|
15352
|
+
# @type LicenseType: Integer
|
15353
|
+
# @param LicenseStatus: 授权状态 0 未使用,1 部分使用, 2 已用完, 3 不可用
|
15354
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15355
|
+
# @type LicenseStatus: Integer
|
15356
|
+
# @param LicenseCnt: 总授权数
|
15357
|
+
# @type LicenseCnt: Integer
|
15358
|
+
# @param UsedLicenseCnt: 已使用授权数
|
15359
|
+
# @type UsedLicenseCnt: Integer
|
15360
|
+
# @param OrderStatus: 订单状态 1 正常 2隔离, 3销毁
|
15361
|
+
# @type OrderStatus: Integer
|
15362
|
+
# @param Deadline: 截止日期
|
15363
|
+
# @type Deadline: String
|
15364
|
+
# @param ResourceId: 订单资源ID
|
15365
|
+
# @type ResourceId: String
|
15366
|
+
# @param AutoRenewFlag: 0 初始化,1 自动续费,2 不自动续费
|
15367
|
+
# @type AutoRenewFlag: Integer
|
15368
|
+
# @param ProjectId: 项目ID
|
15369
|
+
# @type ProjectId: Integer
|
15370
|
+
# @param TaskId: 任务ID ,默认0 ,查询绑定进度用
|
15371
|
+
# @type TaskId: Integer
|
15372
|
+
# @param BuyTime: 购买时间
|
15373
|
+
# @type BuyTime: String
|
15374
|
+
# @param SourceType: 是否试用订单.
|
15375
|
+
# @type SourceType: Integer
|
15376
|
+
# @param Alias: 资源别名
|
15377
|
+
# @type Alias: String
|
15378
|
+
# @param Tags: 平台标签
|
15379
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15380
|
+
# @type Tags: Array
|
15381
|
+
|
15382
|
+
attr_accessor :LicenseId, :LicenseType, :LicenseStatus, :LicenseCnt, :UsedLicenseCnt, :OrderStatus, :Deadline, :ResourceId, :AutoRenewFlag, :ProjectId, :TaskId, :BuyTime, :SourceType, :Alias, :Tags
|
15383
|
+
|
15384
|
+
def initialize(licenseid=nil, licensetype=nil, licensestatus=nil, licensecnt=nil, usedlicensecnt=nil, orderstatus=nil, deadline=nil, resourceid=nil, autorenewflag=nil, projectid=nil, taskid=nil, buytime=nil, sourcetype=nil, _alias=nil, tags=nil)
|
15385
|
+
@LicenseId = licenseid
|
15386
|
+
@LicenseType = licensetype
|
15387
|
+
@LicenseStatus = licensestatus
|
15388
|
+
@LicenseCnt = licensecnt
|
15389
|
+
@UsedLicenseCnt = usedlicensecnt
|
15390
|
+
@OrderStatus = orderstatus
|
15391
|
+
@Deadline = deadline
|
15392
|
+
@ResourceId = resourceid
|
15393
|
+
@AutoRenewFlag = autorenewflag
|
15394
|
+
@ProjectId = projectid
|
15395
|
+
@TaskId = taskid
|
15396
|
+
@BuyTime = buytime
|
15397
|
+
@SourceType = sourcetype
|
15398
|
+
@Alias = _alias
|
15399
|
+
@Tags = tags
|
15400
|
+
end
|
15401
|
+
|
15402
|
+
def deserialize(params)
|
15403
|
+
@LicenseId = params['LicenseId']
|
15404
|
+
@LicenseType = params['LicenseType']
|
15405
|
+
@LicenseStatus = params['LicenseStatus']
|
15406
|
+
@LicenseCnt = params['LicenseCnt']
|
15407
|
+
@UsedLicenseCnt = params['UsedLicenseCnt']
|
15408
|
+
@OrderStatus = params['OrderStatus']
|
15409
|
+
@Deadline = params['Deadline']
|
15410
|
+
@ResourceId = params['ResourceId']
|
15411
|
+
@AutoRenewFlag = params['AutoRenewFlag']
|
15412
|
+
@ProjectId = params['ProjectId']
|
15413
|
+
@TaskId = params['TaskId']
|
15414
|
+
@BuyTime = params['BuyTime']
|
15415
|
+
@SourceType = params['SourceType']
|
15416
|
+
@Alias = params['Alias']
|
15417
|
+
unless params['Tags'].nil?
|
15418
|
+
@Tags = []
|
15419
|
+
params['Tags'].each do |i|
|
15420
|
+
tags_tmp = Tags.new
|
15421
|
+
tags_tmp.deserialize(i)
|
15422
|
+
@Tags << tags_tmp
|
15423
|
+
end
|
15424
|
+
end
|
15425
|
+
end
|
15426
|
+
end
|
15427
|
+
|
14493
15428
|
# 授权订单对象内容
|
14494
15429
|
class LicenseOrder < TencentCloud::Common::AbstractModel
|
14495
15430
|
# @param LicenseId: 授权ID
|
@@ -14522,6 +15457,26 @@ module TencentCloud
|
|
14522
15457
|
end
|
14523
15458
|
end
|
14524
15459
|
|
15460
|
+
# 授权解绑信息
|
15461
|
+
class LicenseUnBindRsp < TencentCloud::Common::AbstractModel
|
15462
|
+
# @param Quuid: QUUID 云服务器uuid,轻量服务器uuid,边缘计算 uuid
|
15463
|
+
# @type Quuid: String
|
15464
|
+
# @param ErrMsg: 失败原因
|
15465
|
+
# @type ErrMsg: String
|
15466
|
+
|
15467
|
+
attr_accessor :Quuid, :ErrMsg
|
15468
|
+
|
15469
|
+
def initialize(quuid=nil, errmsg=nil)
|
15470
|
+
@Quuid = quuid
|
15471
|
+
@ErrMsg = errmsg
|
15472
|
+
end
|
15473
|
+
|
15474
|
+
def deserialize(params)
|
15475
|
+
@Quuid = params['Quuid']
|
15476
|
+
@ErrMsg = params['ErrMsg']
|
15477
|
+
end
|
15478
|
+
end
|
15479
|
+
|
14525
15480
|
# 异地登录合并后白名单
|
14526
15481
|
class LoginWhiteCombinedInfo < TencentCloud::Common::AbstractModel
|
14527
15482
|
# @param Places: 白名单地域
|
@@ -15263,6 +16218,111 @@ module TencentCloud
|
|
15263
16218
|
end
|
15264
16219
|
end
|
15265
16220
|
|
16221
|
+
# ModifyLicenseBinds请求参数结构体
|
16222
|
+
class ModifyLicenseBindsRequest < TencentCloud::Common::AbstractModel
|
16223
|
+
# @param ResourceId: 资源ID
|
16224
|
+
# @type ResourceId: String
|
16225
|
+
# @param LicenseType: 授权类型
|
16226
|
+
# @type LicenseType: Integer
|
16227
|
+
# @param IsAll: 是否全部机器(当全部机器数大于当前订单可用授权数时,多余机器会被跳过)
|
16228
|
+
# @type IsAll: Boolean
|
16229
|
+
# @param QuuidList: 需要绑定的机器quuid列表, 当IsAll = false 时必填,反之忽略该参数. 最大长度=2000
|
16230
|
+
# @type QuuidList: Array
|
16231
|
+
|
16232
|
+
attr_accessor :ResourceId, :LicenseType, :IsAll, :QuuidList
|
16233
|
+
|
16234
|
+
def initialize(resourceid=nil, licensetype=nil, isall=nil, quuidlist=nil)
|
16235
|
+
@ResourceId = resourceid
|
16236
|
+
@LicenseType = licensetype
|
16237
|
+
@IsAll = isall
|
16238
|
+
@QuuidList = quuidlist
|
16239
|
+
end
|
16240
|
+
|
16241
|
+
def deserialize(params)
|
16242
|
+
@ResourceId = params['ResourceId']
|
16243
|
+
@LicenseType = params['LicenseType']
|
16244
|
+
@IsAll = params['IsAll']
|
16245
|
+
@QuuidList = params['QuuidList']
|
16246
|
+
end
|
16247
|
+
end
|
16248
|
+
|
16249
|
+
# ModifyLicenseBinds返回参数结构体
|
16250
|
+
class ModifyLicenseBindsResponse < TencentCloud::Common::AbstractModel
|
16251
|
+
# @param TaskId: 任务ID
|
16252
|
+
# @type TaskId: Integer
|
16253
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
16254
|
+
# @type RequestId: String
|
16255
|
+
|
16256
|
+
attr_accessor :TaskId, :RequestId
|
16257
|
+
|
16258
|
+
def initialize(taskid=nil, requestid=nil)
|
16259
|
+
@TaskId = taskid
|
16260
|
+
@RequestId = requestid
|
16261
|
+
end
|
16262
|
+
|
16263
|
+
def deserialize(params)
|
16264
|
+
@TaskId = params['TaskId']
|
16265
|
+
@RequestId = params['RequestId']
|
16266
|
+
end
|
16267
|
+
end
|
16268
|
+
|
16269
|
+
# ModifyLicenseUnBinds请求参数结构体
|
16270
|
+
class ModifyLicenseUnBindsRequest < TencentCloud::Common::AbstractModel
|
16271
|
+
# @param ResourceId: 资源ID
|
16272
|
+
# @type ResourceId: String
|
16273
|
+
# @param LicenseType: 授权类型
|
16274
|
+
# @type LicenseType: Integer
|
16275
|
+
# @param IsAll: 是否全部机器(当全部机器数大于当前订单可用授权数时,多余机器会被跳过)
|
16276
|
+
# @type IsAll: Boolean
|
16277
|
+
# @param QuuidList: 需要绑定的机器quuid列表, 当IsAll = false 时必填,反之忽略该参数.
|
16278
|
+
# 最大长度=100
|
16279
|
+
# @type QuuidList: Array
|
16280
|
+
|
16281
|
+
attr_accessor :ResourceId, :LicenseType, :IsAll, :QuuidList
|
16282
|
+
|
16283
|
+
def initialize(resourceid=nil, licensetype=nil, isall=nil, quuidlist=nil)
|
16284
|
+
@ResourceId = resourceid
|
16285
|
+
@LicenseType = licensetype
|
16286
|
+
@IsAll = isall
|
16287
|
+
@QuuidList = quuidlist
|
16288
|
+
end
|
16289
|
+
|
16290
|
+
def deserialize(params)
|
16291
|
+
@ResourceId = params['ResourceId']
|
16292
|
+
@LicenseType = params['LicenseType']
|
16293
|
+
@IsAll = params['IsAll']
|
16294
|
+
@QuuidList = params['QuuidList']
|
16295
|
+
end
|
16296
|
+
end
|
16297
|
+
|
16298
|
+
# ModifyLicenseUnBinds返回参数结构体
|
16299
|
+
class ModifyLicenseUnBindsResponse < TencentCloud::Common::AbstractModel
|
16300
|
+
# @param ErrMsg: 只有解绑失败的才有该值.
|
16301
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
16302
|
+
# @type ErrMsg: Array
|
16303
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
16304
|
+
# @type RequestId: String
|
16305
|
+
|
16306
|
+
attr_accessor :ErrMsg, :RequestId
|
16307
|
+
|
16308
|
+
def initialize(errmsg=nil, requestid=nil)
|
16309
|
+
@ErrMsg = errmsg
|
16310
|
+
@RequestId = requestid
|
16311
|
+
end
|
16312
|
+
|
16313
|
+
def deserialize(params)
|
16314
|
+
unless params['ErrMsg'].nil?
|
16315
|
+
@ErrMsg = []
|
16316
|
+
params['ErrMsg'].each do |i|
|
16317
|
+
licenseunbindrsp_tmp = LicenseUnBindRsp.new
|
16318
|
+
licenseunbindrsp_tmp.deserialize(i)
|
16319
|
+
@ErrMsg << licenseunbindrsp_tmp
|
16320
|
+
end
|
16321
|
+
end
|
16322
|
+
@RequestId = params['RequestId']
|
16323
|
+
end
|
16324
|
+
end
|
16325
|
+
|
15266
16326
|
# ModifyMalwareTimingScanSettings请求参数结构体
|
15267
16327
|
class ModifyMalwareTimingScanSettingsRequest < TencentCloud::Common::AbstractModel
|
15268
16328
|
# @param CheckPattern: 检测模式 0 全盘检测 1快速检测
|
@@ -15339,6 +16399,50 @@ module TencentCloud
|
|
15339
16399
|
end
|
15340
16400
|
end
|
15341
16401
|
|
16402
|
+
# ModifyOrderAttribute请求参数结构体
|
16403
|
+
class ModifyOrderAttributeRequest < TencentCloud::Common::AbstractModel
|
16404
|
+
# @param LicenseType: 授权类型 0 专业版-按量计费, 1专业版-包年包月 , 2 旗舰版-包年包月
|
16405
|
+
# @type LicenseType: Integer
|
16406
|
+
# @param ResourceId: 资源ID
|
16407
|
+
# @type ResourceId: String
|
16408
|
+
# @param AttrName: 可编辑的属性名称 ,当前支持的有: alias 资源别名
|
16409
|
+
# @type AttrName: String
|
16410
|
+
# @param AttrValue: 属性值
|
16411
|
+
# @type AttrValue: String
|
16412
|
+
|
16413
|
+
attr_accessor :LicenseType, :ResourceId, :AttrName, :AttrValue
|
16414
|
+
|
16415
|
+
def initialize(licensetype=nil, resourceid=nil, attrname=nil, attrvalue=nil)
|
16416
|
+
@LicenseType = licensetype
|
16417
|
+
@ResourceId = resourceid
|
16418
|
+
@AttrName = attrname
|
16419
|
+
@AttrValue = attrvalue
|
16420
|
+
end
|
16421
|
+
|
16422
|
+
def deserialize(params)
|
16423
|
+
@LicenseType = params['LicenseType']
|
16424
|
+
@ResourceId = params['ResourceId']
|
16425
|
+
@AttrName = params['AttrName']
|
16426
|
+
@AttrValue = params['AttrValue']
|
16427
|
+
end
|
16428
|
+
end
|
16429
|
+
|
16430
|
+
# ModifyOrderAttribute返回参数结构体
|
16431
|
+
class ModifyOrderAttributeResponse < TencentCloud::Common::AbstractModel
|
16432
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
16433
|
+
# @type RequestId: String
|
16434
|
+
|
16435
|
+
attr_accessor :RequestId
|
16436
|
+
|
16437
|
+
def initialize(requestid=nil)
|
16438
|
+
@RequestId = requestid
|
16439
|
+
end
|
16440
|
+
|
16441
|
+
def deserialize(params)
|
16442
|
+
@RequestId = params['RequestId']
|
16443
|
+
end
|
16444
|
+
end
|
16445
|
+
|
15342
16446
|
# ModifyWarningSetting请求参数结构体
|
15343
16447
|
class ModifyWarningSettingRequest < TencentCloud::Common::AbstractModel
|
15344
16448
|
# @param WarningObjects: 告警设置的修改内容
|