tencentcloud-sdk-ctem 3.0.1101 → 3.0.1102
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 +96 -0
- data/lib/v20231128/models.rb +592 -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: 9357d42f796f751b29707c0b53cb1a611cf5d594
|
4
|
+
data.tar.gz: 44df7dd0031a45373d5244831d63688342e1ffbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bbaa823a683e6cab56e63e7ca91b6ae3abb5e2128d05ff990c0c1e03a0c00b997944a93edc237baac1a8ac6358f64399852a34451e792553b1fabf2240fe7f0
|
7
|
+
data.tar.gz: e4d2e357e5991efe3401931fc88c16bbafa8cf8bc5ba923aaa145cadbd12c1bd993f866d9da6b7727685767f455d7d966b77a68a7eda3cb6aa8ae5539233f2b0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1102
|
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.
|
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
|
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.1102
|
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-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|