tencentcloud-sdk-ctem 3.0.1101 → 3.0.1108
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/v20231128/client.rb +120 -0
- data/lib/v20231128/models.rb +640 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e25757101836a7aacab8f5c7d4963ed0bb9aabc
|
4
|
+
data.tar.gz: 520cff5c3a8e57fd1ea1ed93d0cffb53c6c08085
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1db27ce0c2964c969a8187a3d5b8c5c66b876a43fc4bcdb758d2ec5e95769ed9a83ecfae3b8a6bc4ed308dd462747e02dd88e1b308908421e2d854fcd46924ff
|
7
|
+
data.tar.gz: 2b0f71661fd75ac3f86087fb5436de5f1cc3c4981d98ae1d5b9def70e2813a4d97aad06a7fe630be97900188473a47127ad2950581efae3b625c6c099d7bf7fc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1108
|
data/lib/v20231128/client.rb
CHANGED
@@ -245,6 +245,102 @@ module TencentCloud
|
|
245
245
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
246
|
end
|
247
247
|
|
248
|
+
# 查询仿冒应用
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeFakeApps.
|
251
|
+
# @type request: :class:`Tencentcloud::ctem::V20231128::DescribeFakeAppsRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::ctem::V20231128::DescribeFakeAppsResponse`
|
253
|
+
def DescribeFakeApps(request)
|
254
|
+
body = send_request('DescribeFakeApps', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeFakeAppsResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 查询仿冒小程序
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeFakeMiniPrograms.
|
275
|
+
# @type request: :class:`Tencentcloud::ctem::V20231128::DescribeFakeMiniProgramsRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::ctem::V20231128::DescribeFakeMiniProgramsResponse`
|
277
|
+
def DescribeFakeMiniPrograms(request)
|
278
|
+
body = send_request('DescribeFakeMiniPrograms', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeFakeMiniProgramsResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 查询仿冒网站
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribeFakeWebsites.
|
299
|
+
# @type request: :class:`Tencentcloud::ctem::V20231128::DescribeFakeWebsitesRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::ctem::V20231128::DescribeFakeWebsitesResponse`
|
301
|
+
def DescribeFakeWebsites(request)
|
302
|
+
body = send_request('DescribeFakeWebsites', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeFakeWebsitesResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 查询仿冒公众号
|
321
|
+
|
322
|
+
# @param request: Request instance for DescribeFakeWechatOfficials.
|
323
|
+
# @type request: :class:`Tencentcloud::ctem::V20231128::DescribeFakeWechatOfficialsRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::ctem::V20231128::DescribeFakeWechatOfficialsResponse`
|
325
|
+
def DescribeFakeWechatOfficials(request)
|
326
|
+
body = send_request('DescribeFakeWechatOfficials', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = DescribeFakeWechatOfficialsResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
248
344
|
# 查看Github泄露数据
|
249
345
|
|
250
346
|
# @param request: Request instance for DescribeGithubs.
|
@@ -677,6 +773,30 @@ module TencentCloud
|
|
677
773
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
678
774
|
end
|
679
775
|
|
776
|
+
# 修改标签
|
777
|
+
|
778
|
+
# @param request: Request instance for ModifyLabel.
|
779
|
+
# @type request: :class:`Tencentcloud::ctem::V20231128::ModifyLabelRequest`
|
780
|
+
# @rtype: :class:`Tencentcloud::ctem::V20231128::ModifyLabelResponse`
|
781
|
+
def ModifyLabel(request)
|
782
|
+
body = send_request('ModifyLabel', request.serialize)
|
783
|
+
response = JSON.parse(body)
|
784
|
+
if response['Response'].key?('Error') == false
|
785
|
+
model = ModifyLabelResponse.new
|
786
|
+
model.deserialize(response['Response'])
|
787
|
+
model
|
788
|
+
else
|
789
|
+
code = response['Response']['Error']['Code']
|
790
|
+
message = response['Response']['Error']['Message']
|
791
|
+
reqid = response['Response']['RequestId']
|
792
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
793
|
+
end
|
794
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
795
|
+
raise e
|
796
|
+
rescue StandardError => e
|
797
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
798
|
+
end
|
799
|
+
|
680
800
|
# 停止扫描
|
681
801
|
|
682
802
|
# @param request: Request instance for StopJobRecord.
|
data/lib/v20231128/models.rb
CHANGED
@@ -940,6 +940,402 @@ module TencentCloud
|
|
940
940
|
end
|
941
941
|
end
|
942
942
|
|
943
|
+
# DescribeFakeApps请求参数结构体
|
944
|
+
class DescribeFakeAppsRequest < TencentCloud::Common::AbstractModel
|
945
|
+
# @param IsNew: 是否新增数据
|
946
|
+
# @type IsNew: Boolean
|
947
|
+
# @param CustomerId: 企业ID
|
948
|
+
# @type CustomerId: Integer
|
949
|
+
# @param Limit: 分页大小
|
950
|
+
# @type Limit: Integer
|
951
|
+
# @param Offset: 分页偏移
|
952
|
+
# @type Offset: Integer
|
953
|
+
# @param EnterpriseUidList: 子公司ID列表
|
954
|
+
# @type EnterpriseUidList: Array
|
955
|
+
# @param Format: 数据输出格式:json、file,默认不填为json
|
956
|
+
# @type Format: String
|
957
|
+
# @param CreateAtStart: 创建时间-开始
|
958
|
+
# @type CreateAtStart: String
|
959
|
+
# @param CreateAtEnd: 创建时间-结束
|
960
|
+
# @type CreateAtEnd: String
|
961
|
+
# @param UpdateAtStart: 更新时间-开始
|
962
|
+
# @type UpdateAtStart: String
|
963
|
+
# @param UpdateAtEnd: 更新时间-结束
|
964
|
+
# @type UpdateAtEnd: String
|
965
|
+
# @param Filters: 查询数组
|
966
|
+
# @type Filters: Array
|
967
|
+
# @param Ignored: 是否显示被忽略的数据
|
968
|
+
# @type Ignored: Boolean
|
969
|
+
|
970
|
+
attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
|
971
|
+
|
972
|
+
def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
|
973
|
+
@IsNew = isnew
|
974
|
+
@CustomerId = customerid
|
975
|
+
@Limit = limit
|
976
|
+
@Offset = offset
|
977
|
+
@EnterpriseUidList = enterpriseuidlist
|
978
|
+
@Format = format
|
979
|
+
@CreateAtStart = createatstart
|
980
|
+
@CreateAtEnd = createatend
|
981
|
+
@UpdateAtStart = updateatstart
|
982
|
+
@UpdateAtEnd = updateatend
|
983
|
+
@Filters = filters
|
984
|
+
@Ignored = ignored
|
985
|
+
end
|
986
|
+
|
987
|
+
def deserialize(params)
|
988
|
+
@IsNew = params['IsNew']
|
989
|
+
@CustomerId = params['CustomerId']
|
990
|
+
@Limit = params['Limit']
|
991
|
+
@Offset = params['Offset']
|
992
|
+
@EnterpriseUidList = params['EnterpriseUidList']
|
993
|
+
@Format = params['Format']
|
994
|
+
@CreateAtStart = params['CreateAtStart']
|
995
|
+
@CreateAtEnd = params['CreateAtEnd']
|
996
|
+
@UpdateAtStart = params['UpdateAtStart']
|
997
|
+
@UpdateAtEnd = params['UpdateAtEnd']
|
998
|
+
unless params['Filters'].nil?
|
999
|
+
@Filters = []
|
1000
|
+
params['Filters'].each do |i|
|
1001
|
+
filter_tmp = Filter.new
|
1002
|
+
filter_tmp.deserialize(i)
|
1003
|
+
@Filters << filter_tmp
|
1004
|
+
end
|
1005
|
+
end
|
1006
|
+
@Ignored = params['Ignored']
|
1007
|
+
end
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
# DescribeFakeApps返回参数结构体
|
1011
|
+
class DescribeFakeAppsResponse < TencentCloud::Common::AbstractModel
|
1012
|
+
# @param Total: 总数
|
1013
|
+
# @type Total: Integer
|
1014
|
+
# @param List: 仿冒应用
|
1015
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1016
|
+
# @type List: Array
|
1017
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1018
|
+
# @type RequestId: String
|
1019
|
+
|
1020
|
+
attr_accessor :Total, :List, :RequestId
|
1021
|
+
|
1022
|
+
def initialize(total=nil, list=nil, requestid=nil)
|
1023
|
+
@Total = total
|
1024
|
+
@List = list
|
1025
|
+
@RequestId = requestid
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
def deserialize(params)
|
1029
|
+
@Total = params['Total']
|
1030
|
+
unless params['List'].nil?
|
1031
|
+
@List = []
|
1032
|
+
params['List'].each do |i|
|
1033
|
+
displayfakeapp_tmp = DisplayFakeApp.new
|
1034
|
+
displayfakeapp_tmp.deserialize(i)
|
1035
|
+
@List << displayfakeapp_tmp
|
1036
|
+
end
|
1037
|
+
end
|
1038
|
+
@RequestId = params['RequestId']
|
1039
|
+
end
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
# DescribeFakeMiniPrograms请求参数结构体
|
1043
|
+
class DescribeFakeMiniProgramsRequest < TencentCloud::Common::AbstractModel
|
1044
|
+
# @param IsNew: 是否新增数据
|
1045
|
+
# @type IsNew: Boolean
|
1046
|
+
# @param CustomerId: 企业ID
|
1047
|
+
# @type CustomerId: Integer
|
1048
|
+
# @param Limit: 分页大小
|
1049
|
+
# @type Limit: Integer
|
1050
|
+
# @param Offset: 分页偏移
|
1051
|
+
# @type Offset: Integer
|
1052
|
+
# @param EnterpriseUidList: 子公司ID列表
|
1053
|
+
# @type EnterpriseUidList: Array
|
1054
|
+
# @param Format: 数据输出格式:json、file,默认不填为json
|
1055
|
+
# @type Format: String
|
1056
|
+
# @param CreateAtStart: 创建时间-开始
|
1057
|
+
# @type CreateAtStart: String
|
1058
|
+
# @param CreateAtEnd: 创建时间-结束
|
1059
|
+
# @type CreateAtEnd: String
|
1060
|
+
# @param UpdateAtStart: 更新时间-开始
|
1061
|
+
# @type UpdateAtStart: String
|
1062
|
+
# @param UpdateAtEnd: 更新时间-结束
|
1063
|
+
# @type UpdateAtEnd: String
|
1064
|
+
# @param Filters: 查询数组
|
1065
|
+
# @type Filters: Array
|
1066
|
+
# @param Ignored: 是否显示被忽略的数据
|
1067
|
+
# @type Ignored: Boolean
|
1068
|
+
|
1069
|
+
attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
|
1070
|
+
|
1071
|
+
def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
|
1072
|
+
@IsNew = isnew
|
1073
|
+
@CustomerId = customerid
|
1074
|
+
@Limit = limit
|
1075
|
+
@Offset = offset
|
1076
|
+
@EnterpriseUidList = enterpriseuidlist
|
1077
|
+
@Format = format
|
1078
|
+
@CreateAtStart = createatstart
|
1079
|
+
@CreateAtEnd = createatend
|
1080
|
+
@UpdateAtStart = updateatstart
|
1081
|
+
@UpdateAtEnd = updateatend
|
1082
|
+
@Filters = filters
|
1083
|
+
@Ignored = ignored
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
def deserialize(params)
|
1087
|
+
@IsNew = params['IsNew']
|
1088
|
+
@CustomerId = params['CustomerId']
|
1089
|
+
@Limit = params['Limit']
|
1090
|
+
@Offset = params['Offset']
|
1091
|
+
@EnterpriseUidList = params['EnterpriseUidList']
|
1092
|
+
@Format = params['Format']
|
1093
|
+
@CreateAtStart = params['CreateAtStart']
|
1094
|
+
@CreateAtEnd = params['CreateAtEnd']
|
1095
|
+
@UpdateAtStart = params['UpdateAtStart']
|
1096
|
+
@UpdateAtEnd = params['UpdateAtEnd']
|
1097
|
+
unless params['Filters'].nil?
|
1098
|
+
@Filters = []
|
1099
|
+
params['Filters'].each do |i|
|
1100
|
+
filter_tmp = Filter.new
|
1101
|
+
filter_tmp.deserialize(i)
|
1102
|
+
@Filters << filter_tmp
|
1103
|
+
end
|
1104
|
+
end
|
1105
|
+
@Ignored = params['Ignored']
|
1106
|
+
end
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
# DescribeFakeMiniPrograms返回参数结构体
|
1110
|
+
class DescribeFakeMiniProgramsResponse < TencentCloud::Common::AbstractModel
|
1111
|
+
# @param Total: 总数
|
1112
|
+
# @type Total: Integer
|
1113
|
+
# @param List: 仿冒小程序
|
1114
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1115
|
+
# @type List: Array
|
1116
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1117
|
+
# @type RequestId: String
|
1118
|
+
|
1119
|
+
attr_accessor :Total, :List, :RequestId
|
1120
|
+
|
1121
|
+
def initialize(total=nil, list=nil, requestid=nil)
|
1122
|
+
@Total = total
|
1123
|
+
@List = list
|
1124
|
+
@RequestId = requestid
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
def deserialize(params)
|
1128
|
+
@Total = params['Total']
|
1129
|
+
unless params['List'].nil?
|
1130
|
+
@List = []
|
1131
|
+
params['List'].each do |i|
|
1132
|
+
displayfakeminiprogram_tmp = DisplayFakeMiniProgram.new
|
1133
|
+
displayfakeminiprogram_tmp.deserialize(i)
|
1134
|
+
@List << displayfakeminiprogram_tmp
|
1135
|
+
end
|
1136
|
+
end
|
1137
|
+
@RequestId = params['RequestId']
|
1138
|
+
end
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
# DescribeFakeWebsites请求参数结构体
|
1142
|
+
class DescribeFakeWebsitesRequest < TencentCloud::Common::AbstractModel
|
1143
|
+
# @param IsNew: 是否新增数据
|
1144
|
+
# @type IsNew: Boolean
|
1145
|
+
# @param CustomerId: 企业ID
|
1146
|
+
# @type CustomerId: Integer
|
1147
|
+
# @param Limit: 分页大小
|
1148
|
+
# @type Limit: Integer
|
1149
|
+
# @param Offset: 分页偏移
|
1150
|
+
# @type Offset: Integer
|
1151
|
+
# @param EnterpriseUidList: 子公司ID列表
|
1152
|
+
# @type EnterpriseUidList: Array
|
1153
|
+
# @param Format: 数据输出格式:json、file,默认不填为json
|
1154
|
+
# @type Format: String
|
1155
|
+
# @param CreateAtStart: 创建时间-开始
|
1156
|
+
# @type CreateAtStart: String
|
1157
|
+
# @param CreateAtEnd: 创建时间-结束
|
1158
|
+
# @type CreateAtEnd: String
|
1159
|
+
# @param UpdateAtStart: 更新时间-开始
|
1160
|
+
# @type UpdateAtStart: String
|
1161
|
+
# @param UpdateAtEnd: 更新时间-结束
|
1162
|
+
# @type UpdateAtEnd: String
|
1163
|
+
# @param Filters: 查询数组
|
1164
|
+
# @type Filters: Array
|
1165
|
+
# @param Ignored: 是否显示被忽略的数据
|
1166
|
+
# @type Ignored: Boolean
|
1167
|
+
|
1168
|
+
attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
|
1169
|
+
|
1170
|
+
def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
|
1171
|
+
@IsNew = isnew
|
1172
|
+
@CustomerId = customerid
|
1173
|
+
@Limit = limit
|
1174
|
+
@Offset = offset
|
1175
|
+
@EnterpriseUidList = enterpriseuidlist
|
1176
|
+
@Format = format
|
1177
|
+
@CreateAtStart = createatstart
|
1178
|
+
@CreateAtEnd = createatend
|
1179
|
+
@UpdateAtStart = updateatstart
|
1180
|
+
@UpdateAtEnd = updateatend
|
1181
|
+
@Filters = filters
|
1182
|
+
@Ignored = ignored
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
def deserialize(params)
|
1186
|
+
@IsNew = params['IsNew']
|
1187
|
+
@CustomerId = params['CustomerId']
|
1188
|
+
@Limit = params['Limit']
|
1189
|
+
@Offset = params['Offset']
|
1190
|
+
@EnterpriseUidList = params['EnterpriseUidList']
|
1191
|
+
@Format = params['Format']
|
1192
|
+
@CreateAtStart = params['CreateAtStart']
|
1193
|
+
@CreateAtEnd = params['CreateAtEnd']
|
1194
|
+
@UpdateAtStart = params['UpdateAtStart']
|
1195
|
+
@UpdateAtEnd = params['UpdateAtEnd']
|
1196
|
+
unless params['Filters'].nil?
|
1197
|
+
@Filters = []
|
1198
|
+
params['Filters'].each do |i|
|
1199
|
+
filter_tmp = Filter.new
|
1200
|
+
filter_tmp.deserialize(i)
|
1201
|
+
@Filters << filter_tmp
|
1202
|
+
end
|
1203
|
+
end
|
1204
|
+
@Ignored = params['Ignored']
|
1205
|
+
end
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
# DescribeFakeWebsites返回参数结构体
|
1209
|
+
class DescribeFakeWebsitesResponse < TencentCloud::Common::AbstractModel
|
1210
|
+
# @param Total: 总数
|
1211
|
+
# @type Total: Integer
|
1212
|
+
# @param List: 仿冒网站
|
1213
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1214
|
+
# @type List: Array
|
1215
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1216
|
+
# @type RequestId: String
|
1217
|
+
|
1218
|
+
attr_accessor :Total, :List, :RequestId
|
1219
|
+
|
1220
|
+
def initialize(total=nil, list=nil, requestid=nil)
|
1221
|
+
@Total = total
|
1222
|
+
@List = list
|
1223
|
+
@RequestId = requestid
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
def deserialize(params)
|
1227
|
+
@Total = params['Total']
|
1228
|
+
unless params['List'].nil?
|
1229
|
+
@List = []
|
1230
|
+
params['List'].each do |i|
|
1231
|
+
displayfakewebsite_tmp = DisplayFakeWebsite.new
|
1232
|
+
displayfakewebsite_tmp.deserialize(i)
|
1233
|
+
@List << displayfakewebsite_tmp
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
@RequestId = params['RequestId']
|
1237
|
+
end
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
# DescribeFakeWechatOfficials请求参数结构体
|
1241
|
+
class DescribeFakeWechatOfficialsRequest < TencentCloud::Common::AbstractModel
|
1242
|
+
# @param IsNew: 是否新增数据
|
1243
|
+
# @type IsNew: Boolean
|
1244
|
+
# @param CustomerId: 企业ID
|
1245
|
+
# @type CustomerId: Integer
|
1246
|
+
# @param Limit: 分页大小
|
1247
|
+
# @type Limit: Integer
|
1248
|
+
# @param Offset: 分页偏移
|
1249
|
+
# @type Offset: Integer
|
1250
|
+
# @param EnterpriseUidList: 子公司ID列表
|
1251
|
+
# @type EnterpriseUidList: Array
|
1252
|
+
# @param Format: 数据输出格式:json、file,默认不填为json
|
1253
|
+
# @type Format: String
|
1254
|
+
# @param CreateAtStart: 创建时间-开始
|
1255
|
+
# @type CreateAtStart: String
|
1256
|
+
# @param CreateAtEnd: 创建时间-结束
|
1257
|
+
# @type CreateAtEnd: String
|
1258
|
+
# @param UpdateAtStart: 更新时间-开始
|
1259
|
+
# @type UpdateAtStart: String
|
1260
|
+
# @param UpdateAtEnd: 更新时间-结束
|
1261
|
+
# @type UpdateAtEnd: String
|
1262
|
+
# @param Filters: 查询数组
|
1263
|
+
# @type Filters: Array
|
1264
|
+
# @param Ignored: 是否显示被忽略的数据
|
1265
|
+
# @type Ignored: Boolean
|
1266
|
+
|
1267
|
+
attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
|
1268
|
+
|
1269
|
+
def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
|
1270
|
+
@IsNew = isnew
|
1271
|
+
@CustomerId = customerid
|
1272
|
+
@Limit = limit
|
1273
|
+
@Offset = offset
|
1274
|
+
@EnterpriseUidList = enterpriseuidlist
|
1275
|
+
@Format = format
|
1276
|
+
@CreateAtStart = createatstart
|
1277
|
+
@CreateAtEnd = createatend
|
1278
|
+
@UpdateAtStart = updateatstart
|
1279
|
+
@UpdateAtEnd = updateatend
|
1280
|
+
@Filters = filters
|
1281
|
+
@Ignored = ignored
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
def deserialize(params)
|
1285
|
+
@IsNew = params['IsNew']
|
1286
|
+
@CustomerId = params['CustomerId']
|
1287
|
+
@Limit = params['Limit']
|
1288
|
+
@Offset = params['Offset']
|
1289
|
+
@EnterpriseUidList = params['EnterpriseUidList']
|
1290
|
+
@Format = params['Format']
|
1291
|
+
@CreateAtStart = params['CreateAtStart']
|
1292
|
+
@CreateAtEnd = params['CreateAtEnd']
|
1293
|
+
@UpdateAtStart = params['UpdateAtStart']
|
1294
|
+
@UpdateAtEnd = params['UpdateAtEnd']
|
1295
|
+
unless params['Filters'].nil?
|
1296
|
+
@Filters = []
|
1297
|
+
params['Filters'].each do |i|
|
1298
|
+
filter_tmp = Filter.new
|
1299
|
+
filter_tmp.deserialize(i)
|
1300
|
+
@Filters << filter_tmp
|
1301
|
+
end
|
1302
|
+
end
|
1303
|
+
@Ignored = params['Ignored']
|
1304
|
+
end
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
# DescribeFakeWechatOfficials返回参数结构体
|
1308
|
+
class DescribeFakeWechatOfficialsResponse < TencentCloud::Common::AbstractModel
|
1309
|
+
# @param Total: 总数
|
1310
|
+
# @type Total: Integer
|
1311
|
+
# @param List: 仿冒公众号
|
1312
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1313
|
+
# @type List: Array
|
1314
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1315
|
+
# @type RequestId: String
|
1316
|
+
|
1317
|
+
attr_accessor :Total, :List, :RequestId
|
1318
|
+
|
1319
|
+
def initialize(total=nil, list=nil, requestid=nil)
|
1320
|
+
@Total = total
|
1321
|
+
@List = list
|
1322
|
+
@RequestId = requestid
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
def deserialize(params)
|
1326
|
+
@Total = params['Total']
|
1327
|
+
unless params['List'].nil?
|
1328
|
+
@List = []
|
1329
|
+
params['List'].each do |i|
|
1330
|
+
displayfakewechatofficial_tmp = DisplayFakeWechatOfficial.new
|
1331
|
+
displayfakewechatofficial_tmp.deserialize(i)
|
1332
|
+
@List << displayfakewechatofficial_tmp
|
1333
|
+
end
|
1334
|
+
end
|
1335
|
+
@RequestId = params['RequestId']
|
1336
|
+
end
|
1337
|
+
end
|
1338
|
+
|
943
1339
|
# DescribeGithubs请求参数结构体
|
944
1340
|
class DescribeGithubsRequest < TencentCloud::Common::AbstractModel
|
945
1341
|
# @param IsNew: 是否新增数据
|
@@ -2900,6 +3296,202 @@ module TencentCloud
|
|
2900
3296
|
end
|
2901
3297
|
end
|
2902
3298
|
|
3299
|
+
# 仿冒应用详情
|
3300
|
+
class DisplayFakeApp < TencentCloud::Common::AbstractModel
|
3301
|
+
# @param Id: 主键ID
|
3302
|
+
# @type Id: Integer
|
3303
|
+
# @param DisplayToolCommon: 公共字段
|
3304
|
+
# @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
|
3305
|
+
# @param AppName: 仿冒应用名称
|
3306
|
+
# @type AppName: String
|
3307
|
+
# @param PackageName: 仿冒应用包名称
|
3308
|
+
# @type PackageName: String
|
3309
|
+
# @param DownloadUrl: 下载链接
|
3310
|
+
# @type DownloadUrl: String
|
3311
|
+
# @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
3312
|
+
# @type HandlingStatus: Integer
|
3313
|
+
# @param ShutdownStatus: 关停状态:0-(默认状态) 1-关停审核中 2-已拦截 3-已拒绝 4-下线流程中 5-已下线 6-下线失败
|
3314
|
+
# @type ShutdownStatus: Integer
|
3315
|
+
# @param ShutdownTime: 关停时间
|
3316
|
+
# @type ShutdownTime: String
|
3317
|
+
|
3318
|
+
attr_accessor :Id, :DisplayToolCommon, :AppName, :PackageName, :DownloadUrl, :HandlingStatus, :ShutdownStatus, :ShutdownTime
|
3319
|
+
|
3320
|
+
def initialize(id=nil, displaytoolcommon=nil, appname=nil, packagename=nil, downloadurl=nil, handlingstatus=nil, shutdownstatus=nil, shutdowntime=nil)
|
3321
|
+
@Id = id
|
3322
|
+
@DisplayToolCommon = displaytoolcommon
|
3323
|
+
@AppName = appname
|
3324
|
+
@PackageName = packagename
|
3325
|
+
@DownloadUrl = downloadurl
|
3326
|
+
@HandlingStatus = handlingstatus
|
3327
|
+
@ShutdownStatus = shutdownstatus
|
3328
|
+
@ShutdownTime = shutdowntime
|
3329
|
+
end
|
3330
|
+
|
3331
|
+
def deserialize(params)
|
3332
|
+
@Id = params['Id']
|
3333
|
+
unless params['DisplayToolCommon'].nil?
|
3334
|
+
@DisplayToolCommon = DisplayToolCommon.new
|
3335
|
+
@DisplayToolCommon.deserialize(params['DisplayToolCommon'])
|
3336
|
+
end
|
3337
|
+
@AppName = params['AppName']
|
3338
|
+
@PackageName = params['PackageName']
|
3339
|
+
@DownloadUrl = params['DownloadUrl']
|
3340
|
+
@HandlingStatus = params['HandlingStatus']
|
3341
|
+
@ShutdownStatus = params['ShutdownStatus']
|
3342
|
+
@ShutdownTime = params['ShutdownTime']
|
3343
|
+
end
|
3344
|
+
end
|
3345
|
+
|
3346
|
+
# 仿冒小程序详情
|
3347
|
+
class DisplayFakeMiniProgram < TencentCloud::Common::AbstractModel
|
3348
|
+
# @param Id: 主键ID
|
3349
|
+
# @type Id: Integer
|
3350
|
+
# @param DisplayToolCommon: 公共字段
|
3351
|
+
# @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
|
3352
|
+
# @param ProgramName: 仿冒小程序名称
|
3353
|
+
# @type ProgramName: String
|
3354
|
+
# @param ProgramId: 小程序ID
|
3355
|
+
# @type ProgramId: String
|
3356
|
+
# @param Category: 类别
|
3357
|
+
# @type Category: String
|
3358
|
+
# @param QrCode: 二维码
|
3359
|
+
# @type QrCode: String
|
3360
|
+
# @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
3361
|
+
# @type HandlingStatus: Integer
|
3362
|
+
# @param ShutdownStatus: 关停状态:0-(默认状态) 1-关停审核中 2-已拦截 3-已拒绝 4-下线流程中 5-已下线 6-下线失败
|
3363
|
+
# @type ShutdownStatus: Integer
|
3364
|
+
# @param ShutdownTime: 关停时间
|
3365
|
+
# @type ShutdownTime: String
|
3366
|
+
|
3367
|
+
attr_accessor :Id, :DisplayToolCommon, :ProgramName, :ProgramId, :Category, :QrCode, :HandlingStatus, :ShutdownStatus, :ShutdownTime
|
3368
|
+
|
3369
|
+
def initialize(id=nil, displaytoolcommon=nil, programname=nil, programid=nil, category=nil, qrcode=nil, handlingstatus=nil, shutdownstatus=nil, shutdowntime=nil)
|
3370
|
+
@Id = id
|
3371
|
+
@DisplayToolCommon = displaytoolcommon
|
3372
|
+
@ProgramName = programname
|
3373
|
+
@ProgramId = programid
|
3374
|
+
@Category = category
|
3375
|
+
@QrCode = qrcode
|
3376
|
+
@HandlingStatus = handlingstatus
|
3377
|
+
@ShutdownStatus = shutdownstatus
|
3378
|
+
@ShutdownTime = shutdowntime
|
3379
|
+
end
|
3380
|
+
|
3381
|
+
def deserialize(params)
|
3382
|
+
@Id = params['Id']
|
3383
|
+
unless params['DisplayToolCommon'].nil?
|
3384
|
+
@DisplayToolCommon = DisplayToolCommon.new
|
3385
|
+
@DisplayToolCommon.deserialize(params['DisplayToolCommon'])
|
3386
|
+
end
|
3387
|
+
@ProgramName = params['ProgramName']
|
3388
|
+
@ProgramId = params['ProgramId']
|
3389
|
+
@Category = params['Category']
|
3390
|
+
@QrCode = params['QrCode']
|
3391
|
+
@HandlingStatus = params['HandlingStatus']
|
3392
|
+
@ShutdownStatus = params['ShutdownStatus']
|
3393
|
+
@ShutdownTime = params['ShutdownTime']
|
3394
|
+
end
|
3395
|
+
end
|
3396
|
+
|
3397
|
+
# 仿冒网站详情
|
3398
|
+
class DisplayFakeWebsite < TencentCloud::Common::AbstractModel
|
3399
|
+
# @param Id: 主键ID
|
3400
|
+
# @type Id: Integer
|
3401
|
+
# @param DisplayToolCommon: 公共字段
|
3402
|
+
# @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
|
3403
|
+
# @param Website: 仿冒网站
|
3404
|
+
# @type Website: String
|
3405
|
+
# @param IPLocation: ip位置
|
3406
|
+
# @type IPLocation: String
|
3407
|
+
# @param Screenshot: 截图
|
3408
|
+
# @type Screenshot: String
|
3409
|
+
# @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
3410
|
+
# @type HandlingStatus: Integer
|
3411
|
+
# @param ShutdownStatus: 关停状态:0-(默认状态) 1-关停审核中 2-已拦截 3-已拒绝 4-下线流程中 5-已下线 6-下线失败
|
3412
|
+
# @type ShutdownStatus: Integer
|
3413
|
+
# @param ShutdownTime: 关停时间
|
3414
|
+
# @type ShutdownTime: String
|
3415
|
+
|
3416
|
+
attr_accessor :Id, :DisplayToolCommon, :Website, :IPLocation, :Screenshot, :HandlingStatus, :ShutdownStatus, :ShutdownTime
|
3417
|
+
|
3418
|
+
def initialize(id=nil, displaytoolcommon=nil, website=nil, iplocation=nil, screenshot=nil, handlingstatus=nil, shutdownstatus=nil, shutdowntime=nil)
|
3419
|
+
@Id = id
|
3420
|
+
@DisplayToolCommon = displaytoolcommon
|
3421
|
+
@Website = website
|
3422
|
+
@IPLocation = iplocation
|
3423
|
+
@Screenshot = screenshot
|
3424
|
+
@HandlingStatus = handlingstatus
|
3425
|
+
@ShutdownStatus = shutdownstatus
|
3426
|
+
@ShutdownTime = shutdowntime
|
3427
|
+
end
|
3428
|
+
|
3429
|
+
def deserialize(params)
|
3430
|
+
@Id = params['Id']
|
3431
|
+
unless params['DisplayToolCommon'].nil?
|
3432
|
+
@DisplayToolCommon = DisplayToolCommon.new
|
3433
|
+
@DisplayToolCommon.deserialize(params['DisplayToolCommon'])
|
3434
|
+
end
|
3435
|
+
@Website = params['Website']
|
3436
|
+
@IPLocation = params['IPLocation']
|
3437
|
+
@Screenshot = params['Screenshot']
|
3438
|
+
@HandlingStatus = params['HandlingStatus']
|
3439
|
+
@ShutdownStatus = params['ShutdownStatus']
|
3440
|
+
@ShutdownTime = params['ShutdownTime']
|
3441
|
+
end
|
3442
|
+
end
|
3443
|
+
|
3444
|
+
# 仿冒公众号详情
|
3445
|
+
class DisplayFakeWechatOfficial < TencentCloud::Common::AbstractModel
|
3446
|
+
# @param Id: 主键ID
|
3447
|
+
# @type Id: Integer
|
3448
|
+
# @param DisplayToolCommon: 公共字段
|
3449
|
+
# @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
|
3450
|
+
# @param AccountName: 仿冒公众号名称
|
3451
|
+
# @type AccountName: String
|
3452
|
+
# @param WechatId: 公众号ID
|
3453
|
+
# @type WechatId: String
|
3454
|
+
# @param Avatar: 头像
|
3455
|
+
# @type Avatar: String
|
3456
|
+
# @param QrCode: 二维码
|
3457
|
+
# @type QrCode: String
|
3458
|
+
# @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
|
3459
|
+
# @type HandlingStatus: Integer
|
3460
|
+
# @param ShutdownStatus: 关停状态:0-(默认状态) 1-关停审核中 2-已拦截 3-已拒绝 4-下线流程中 5-已下线 6-下线失败
|
3461
|
+
# @type ShutdownStatus: Integer
|
3462
|
+
# @param ShutdownTime: 关停时间
|
3463
|
+
# @type ShutdownTime: String
|
3464
|
+
|
3465
|
+
attr_accessor :Id, :DisplayToolCommon, :AccountName, :WechatId, :Avatar, :QrCode, :HandlingStatus, :ShutdownStatus, :ShutdownTime
|
3466
|
+
|
3467
|
+
def initialize(id=nil, displaytoolcommon=nil, accountname=nil, wechatid=nil, avatar=nil, qrcode=nil, handlingstatus=nil, shutdownstatus=nil, shutdowntime=nil)
|
3468
|
+
@Id = id
|
3469
|
+
@DisplayToolCommon = displaytoolcommon
|
3470
|
+
@AccountName = accountname
|
3471
|
+
@WechatId = wechatid
|
3472
|
+
@Avatar = avatar
|
3473
|
+
@QrCode = qrcode
|
3474
|
+
@HandlingStatus = handlingstatus
|
3475
|
+
@ShutdownStatus = shutdownstatus
|
3476
|
+
@ShutdownTime = shutdowntime
|
3477
|
+
end
|
3478
|
+
|
3479
|
+
def deserialize(params)
|
3480
|
+
@Id = params['Id']
|
3481
|
+
unless params['DisplayToolCommon'].nil?
|
3482
|
+
@DisplayToolCommon = DisplayToolCommon.new
|
3483
|
+
@DisplayToolCommon.deserialize(params['DisplayToolCommon'])
|
3484
|
+
end
|
3485
|
+
@AccountName = params['AccountName']
|
3486
|
+
@WechatId = params['WechatId']
|
3487
|
+
@Avatar = params['Avatar']
|
3488
|
+
@QrCode = params['QrCode']
|
3489
|
+
@HandlingStatus = params['HandlingStatus']
|
3490
|
+
@ShutdownStatus = params['ShutdownStatus']
|
3491
|
+
@ShutdownTime = params['ShutdownTime']
|
3492
|
+
end
|
3493
|
+
end
|
3494
|
+
|
2903
3495
|
# Github泄露详情
|
2904
3496
|
class DisplayGithub < TencentCloud::Common::AbstractModel
|
2905
3497
|
# @param Id: 主键ID
|
@@ -3966,6 +4558,54 @@ module TencentCloud
|
|
3966
4558
|
end
|
3967
4559
|
end
|
3968
4560
|
|
4561
|
+
# ModifyLabel请求参数结构体
|
4562
|
+
class ModifyLabelRequest < TencentCloud::Common::AbstractModel
|
4563
|
+
# @param Id: 资产或风险主键ID
|
4564
|
+
# @type Id: Integer
|
4565
|
+
# @param CustomerId: 企业ID,在企业管理页面查看
|
4566
|
+
# @type CustomerId: Integer
|
4567
|
+
# @param Module: 模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
|
4568
|
+
# @type Module: String
|
4569
|
+
# @param IsAggregation: 是否聚合数据
|
4570
|
+
# @type IsAggregation: Boolean
|
4571
|
+
# @param Labels: 标签详情
|
4572
|
+
# @type Labels: String
|
4573
|
+
|
4574
|
+
attr_accessor :Id, :CustomerId, :Module, :IsAggregation, :Labels
|
4575
|
+
|
4576
|
+
def initialize(id=nil, customerid=nil, _module=nil, isaggregation=nil, labels=nil)
|
4577
|
+
@Id = id
|
4578
|
+
@CustomerId = customerid
|
4579
|
+
@Module = _module
|
4580
|
+
@IsAggregation = isaggregation
|
4581
|
+
@Labels = labels
|
4582
|
+
end
|
4583
|
+
|
4584
|
+
def deserialize(params)
|
4585
|
+
@Id = params['Id']
|
4586
|
+
@CustomerId = params['CustomerId']
|
4587
|
+
@Module = params['Module']
|
4588
|
+
@IsAggregation = params['IsAggregation']
|
4589
|
+
@Labels = params['Labels']
|
4590
|
+
end
|
4591
|
+
end
|
4592
|
+
|
4593
|
+
# ModifyLabel返回参数结构体
|
4594
|
+
class ModifyLabelResponse < TencentCloud::Common::AbstractModel
|
4595
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4596
|
+
# @type RequestId: String
|
4597
|
+
|
4598
|
+
attr_accessor :RequestId
|
4599
|
+
|
4600
|
+
def initialize(requestid=nil)
|
4601
|
+
@RequestId = requestid
|
4602
|
+
end
|
4603
|
+
|
4604
|
+
def deserialize(params)
|
4605
|
+
@RequestId = params['RequestId']
|
4606
|
+
end
|
4607
|
+
end
|
4608
|
+
|
3969
4609
|
# StopJobRecord请求参数结构体
|
3970
4610
|
class StopJobRecordRequest < TencentCloud::Common::AbstractModel
|
3971
4611
|
# @param CustomerId: 企业ID
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ctem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1108
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|