tencentcloud-sdk-bh 3.0.1138 → 3.0.1168
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/v20230418/client.rb +288 -0
- data/lib/v20230418/models.rb +581 -32
- metadata +3 -3
data/lib/v20230418/models.rb
CHANGED
|
@@ -74,10 +74,10 @@ module TencentCloud
|
|
|
74
74
|
|
|
75
75
|
attr_accessor :Account, :LoginAccount, :LoginPassword, :DeviceId, :InstanceId, :Password, :PrivateKey, :PrivateKeyPassword, :Exe, :Drivers, :Width, :Height, :IntranetAccess, :AutoManageAccessCredential
|
|
76
76
|
extend Gem::Deprecate
|
|
77
|
-
deprecate :LoginAccount, :none, 2025,
|
|
78
|
-
deprecate :LoginAccount=, :none, 2025,
|
|
79
|
-
deprecate :LoginPassword, :none, 2025,
|
|
80
|
-
deprecate :LoginPassword=, :none, 2025,
|
|
77
|
+
deprecate :LoginAccount, :none, 2025, 11
|
|
78
|
+
deprecate :LoginAccount=, :none, 2025, 11
|
|
79
|
+
deprecate :LoginPassword, :none, 2025, 11
|
|
80
|
+
deprecate :LoginPassword=, :none, 2025, 11
|
|
81
81
|
|
|
82
82
|
def initialize(account=nil, loginaccount=nil, loginpassword=nil, deviceid=nil, instanceid=nil, password=nil, privatekey=nil, privatekeypassword=nil, exe=nil, drivers=nil, width=nil, height=nil, intranetaccess=nil, automanageaccesscredential=nil)
|
|
83
83
|
@Account = account
|
|
@@ -265,10 +265,16 @@ module TencentCloud
|
|
|
265
265
|
# @type AllowKeyboardLogger: Boolean
|
|
266
266
|
# @param AppAssetSet: 关联的应用资产列表
|
|
267
267
|
# @type AppAssetSet: Array
|
|
268
|
+
# @param AclType: 权限类型 0-默认普通权限 1-工单权限,2-权限工单权限
|
|
269
|
+
# @type AclType: Integer
|
|
270
|
+
# @param TicketId: 权限所属工单id
|
|
271
|
+
# @type TicketId: String
|
|
272
|
+
# @param TicketName: 权限所属工单名称
|
|
273
|
+
# @type TicketName: String
|
|
268
274
|
|
|
269
|
-
attr_accessor :Id, :Name, :AllowDiskRedirect, :AllowClipFileUp, :AllowClipFileDown, :AllowClipTextUp, :AllowClipTextDown, :AllowFileUp, :MaxFileUpSize, :AllowFileDown, :MaxFileDownSize, :AllowAnyAccount, :UserSet, :UserGroupSet, :DeviceSet, :DeviceGroupSet, :AccountSet, :CmdTemplateSet, :AllowDiskFileUp, :AllowDiskFileDown, :AllowShellFileUp, :AllowShellFileDown, :AllowFileDel, :ValidateFrom, :ValidateTo, :Status, :Department, :AllowAccessCredential, :ACTemplateSet, :WhiteCmds, :AllowKeyboardLogger, :AppAssetSet
|
|
275
|
+
attr_accessor :Id, :Name, :AllowDiskRedirect, :AllowClipFileUp, :AllowClipFileDown, :AllowClipTextUp, :AllowClipTextDown, :AllowFileUp, :MaxFileUpSize, :AllowFileDown, :MaxFileDownSize, :AllowAnyAccount, :UserSet, :UserGroupSet, :DeviceSet, :DeviceGroupSet, :AccountSet, :CmdTemplateSet, :AllowDiskFileUp, :AllowDiskFileDown, :AllowShellFileUp, :AllowShellFileDown, :AllowFileDel, :ValidateFrom, :ValidateTo, :Status, :Department, :AllowAccessCredential, :ACTemplateSet, :WhiteCmds, :AllowKeyboardLogger, :AppAssetSet, :AclType, :TicketId, :TicketName
|
|
270
276
|
|
|
271
|
-
def initialize(id=nil, name=nil, allowdiskredirect=nil, allowclipfileup=nil, allowclipfiledown=nil, allowcliptextup=nil, allowcliptextdown=nil, allowfileup=nil, maxfileupsize=nil, allowfiledown=nil, maxfiledownsize=nil, allowanyaccount=nil, userset=nil, usergroupset=nil, deviceset=nil, devicegroupset=nil, accountset=nil, cmdtemplateset=nil, allowdiskfileup=nil, allowdiskfiledown=nil, allowshellfileup=nil, allowshellfiledown=nil, allowfiledel=nil, validatefrom=nil, validateto=nil, status=nil, department=nil, allowaccesscredential=nil, actemplateset=nil, whitecmds=nil, allowkeyboardlogger=nil, appassetset=nil)
|
|
277
|
+
def initialize(id=nil, name=nil, allowdiskredirect=nil, allowclipfileup=nil, allowclipfiledown=nil, allowcliptextup=nil, allowcliptextdown=nil, allowfileup=nil, maxfileupsize=nil, allowfiledown=nil, maxfiledownsize=nil, allowanyaccount=nil, userset=nil, usergroupset=nil, deviceset=nil, devicegroupset=nil, accountset=nil, cmdtemplateset=nil, allowdiskfileup=nil, allowdiskfiledown=nil, allowshellfileup=nil, allowshellfiledown=nil, allowfiledel=nil, validatefrom=nil, validateto=nil, status=nil, department=nil, allowaccesscredential=nil, actemplateset=nil, whitecmds=nil, allowkeyboardlogger=nil, appassetset=nil, acltype=nil, ticketid=nil, ticketname=nil)
|
|
272
278
|
@Id = id
|
|
273
279
|
@Name = name
|
|
274
280
|
@AllowDiskRedirect = allowdiskredirect
|
|
@@ -301,6 +307,9 @@ module TencentCloud
|
|
|
301
307
|
@WhiteCmds = whitecmds
|
|
302
308
|
@AllowKeyboardLogger = allowkeyboardlogger
|
|
303
309
|
@AppAssetSet = appassetset
|
|
310
|
+
@AclType = acltype
|
|
311
|
+
@TicketId = ticketid
|
|
312
|
+
@TicketName = ticketname
|
|
304
313
|
end
|
|
305
314
|
|
|
306
315
|
def deserialize(params)
|
|
@@ -388,6 +397,9 @@ module TencentCloud
|
|
|
388
397
|
@AppAssetSet << appasset_tmp
|
|
389
398
|
end
|
|
390
399
|
end
|
|
400
|
+
@AclType = params['AclType']
|
|
401
|
+
@TicketId = params['TicketId']
|
|
402
|
+
@TicketName = params['TicketName']
|
|
391
403
|
end
|
|
392
404
|
end
|
|
393
405
|
|
|
@@ -564,6 +576,26 @@ module TencentCloud
|
|
|
564
576
|
end
|
|
565
577
|
end
|
|
566
578
|
|
|
579
|
+
# 资产同步标志
|
|
580
|
+
class AssetSyncFlags < TencentCloud::Common::AbstractModel
|
|
581
|
+
# @param RoleGranted: 是否已完成角色授权
|
|
582
|
+
# @type RoleGranted: Boolean
|
|
583
|
+
# @param AutoSync: 是否已开启自动资产同步
|
|
584
|
+
# @type AutoSync: Boolean
|
|
585
|
+
|
|
586
|
+
attr_accessor :RoleGranted, :AutoSync
|
|
587
|
+
|
|
588
|
+
def initialize(rolegranted=nil, autosync=nil)
|
|
589
|
+
@RoleGranted = rolegranted
|
|
590
|
+
@AutoSync = autosync
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
def deserialize(params)
|
|
594
|
+
@RoleGranted = params['RoleGranted']
|
|
595
|
+
@AutoSync = params['AutoSync']
|
|
596
|
+
end
|
|
597
|
+
end
|
|
598
|
+
|
|
567
599
|
# 资产同步状态
|
|
568
600
|
class AssetSyncStatus < TencentCloud::Common::AbstractModel
|
|
569
601
|
# @param LastTime: 上一次同步完成的时间
|
|
@@ -2408,6 +2440,8 @@ module TencentCloud
|
|
|
2408
2440
|
# @type AuthorizedAppAssetIdSet: Array
|
|
2409
2441
|
# @param Status: 访问权限状态,1 - 已生效,2 - 未生效,3 - 已过期
|
|
2410
2442
|
# @type Status: Integer
|
|
2443
|
+
# @param StatusSet: 访问权限状态,1 - 已生效,2 - 未生效,3 - 已过期
|
|
2444
|
+
# @type StatusSet: Array
|
|
2411
2445
|
# @param DepartmentId: 部门ID,用于过滤属于某个部门的访问权限
|
|
2412
2446
|
# @type DepartmentId: String
|
|
2413
2447
|
# @param ExactAccount: 是否根据AuthorizedDeviceIdSet,对资产账号进行精确匹配,默认false, 设置true时,确保AuthorizedDeviceIdSet只有一个元素
|
|
@@ -2415,9 +2449,9 @@ module TencentCloud
|
|
|
2415
2449
|
# @param Filters: 过滤数组
|
|
2416
2450
|
# @type Filters: Array
|
|
2417
2451
|
|
|
2418
|
-
attr_accessor :IdSet, :Name, :Offset, :Limit, :Exact, :AuthorizedUserIdSet, :AuthorizedDeviceIdSet, :AuthorizedAppAssetIdSet, :Status, :DepartmentId, :ExactAccount, :Filters
|
|
2452
|
+
attr_accessor :IdSet, :Name, :Offset, :Limit, :Exact, :AuthorizedUserIdSet, :AuthorizedDeviceIdSet, :AuthorizedAppAssetIdSet, :Status, :StatusSet, :DepartmentId, :ExactAccount, :Filters
|
|
2419
2453
|
|
|
2420
|
-
def initialize(idset=nil, name=nil, offset=nil, limit=nil, exact=nil, authorizeduseridset=nil, authorizeddeviceidset=nil, authorizedappassetidset=nil, status=nil, departmentid=nil, exactaccount=nil, filters=nil)
|
|
2454
|
+
def initialize(idset=nil, name=nil, offset=nil, limit=nil, exact=nil, authorizeduseridset=nil, authorizeddeviceidset=nil, authorizedappassetidset=nil, status=nil, statusset=nil, departmentid=nil, exactaccount=nil, filters=nil)
|
|
2421
2455
|
@IdSet = idset
|
|
2422
2456
|
@Name = name
|
|
2423
2457
|
@Offset = offset
|
|
@@ -2427,6 +2461,7 @@ module TencentCloud
|
|
|
2427
2461
|
@AuthorizedDeviceIdSet = authorizeddeviceidset
|
|
2428
2462
|
@AuthorizedAppAssetIdSet = authorizedappassetidset
|
|
2429
2463
|
@Status = status
|
|
2464
|
+
@StatusSet = statusset
|
|
2430
2465
|
@DepartmentId = departmentid
|
|
2431
2466
|
@ExactAccount = exactaccount
|
|
2432
2467
|
@Filters = filters
|
|
@@ -2442,6 +2477,7 @@ module TencentCloud
|
|
|
2442
2477
|
@AuthorizedDeviceIdSet = params['AuthorizedDeviceIdSet']
|
|
2443
2478
|
@AuthorizedAppAssetIdSet = params['AuthorizedAppAssetIdSet']
|
|
2444
2479
|
@Status = params['Status']
|
|
2480
|
+
@StatusSet = params['StatusSet']
|
|
2445
2481
|
@DepartmentId = params['DepartmentId']
|
|
2446
2482
|
@ExactAccount = params['ExactAccount']
|
|
2447
2483
|
unless params['Filters'].nil?
|
|
@@ -2486,6 +2522,40 @@ module TencentCloud
|
|
|
2486
2522
|
end
|
|
2487
2523
|
end
|
|
2488
2524
|
|
|
2525
|
+
# DescribeAssetSyncFlag请求参数结构体
|
|
2526
|
+
class DescribeAssetSyncFlagRequest < TencentCloud::Common::AbstractModel
|
|
2527
|
+
|
|
2528
|
+
|
|
2529
|
+
def initialize()
|
|
2530
|
+
end
|
|
2531
|
+
|
|
2532
|
+
def deserialize(params)
|
|
2533
|
+
end
|
|
2534
|
+
end
|
|
2535
|
+
|
|
2536
|
+
# DescribeAssetSyncFlag返回参数结构体
|
|
2537
|
+
class DescribeAssetSyncFlagResponse < TencentCloud::Common::AbstractModel
|
|
2538
|
+
# @param AssetSyncFlags: 资产同步标志
|
|
2539
|
+
# @type AssetSyncFlags: :class:`Tencentcloud::Bh.v20230418.models.AssetSyncFlags`
|
|
2540
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2541
|
+
# @type RequestId: String
|
|
2542
|
+
|
|
2543
|
+
attr_accessor :AssetSyncFlags, :RequestId
|
|
2544
|
+
|
|
2545
|
+
def initialize(assetsyncflags=nil, requestid=nil)
|
|
2546
|
+
@AssetSyncFlags = assetsyncflags
|
|
2547
|
+
@RequestId = requestid
|
|
2548
|
+
end
|
|
2549
|
+
|
|
2550
|
+
def deserialize(params)
|
|
2551
|
+
unless params['AssetSyncFlags'].nil?
|
|
2552
|
+
@AssetSyncFlags = AssetSyncFlags.new
|
|
2553
|
+
@AssetSyncFlags.deserialize(params['AssetSyncFlags'])
|
|
2554
|
+
end
|
|
2555
|
+
@RequestId = params['RequestId']
|
|
2556
|
+
end
|
|
2557
|
+
end
|
|
2558
|
+
|
|
2489
2559
|
# DescribeAssetSyncStatus请求参数结构体
|
|
2490
2560
|
class DescribeAssetSyncStatusRequest < TencentCloud::Common::AbstractModel
|
|
2491
2561
|
# @param Category: 查询的资产同步类型。1 -主机资产, 2 - 数据库资产
|
|
@@ -2669,17 +2739,20 @@ module TencentCloud
|
|
|
2669
2739
|
# @type Name: String
|
|
2670
2740
|
# @param Type: 命令模板类型 1-内置模板 2-自定义模板
|
|
2671
2741
|
# @type Type: Integer
|
|
2742
|
+
# @param TypeSet: 命令模板类型 1-内置模板 2-自定义模板
|
|
2743
|
+
# @type TypeSet: Array
|
|
2672
2744
|
# @param Offset: 分页偏移位置,默认值为0
|
|
2673
2745
|
# @type Offset: Integer
|
|
2674
2746
|
# @param Limit: 每页条目数量,默认20
|
|
2675
2747
|
# @type Limit: Integer
|
|
2676
2748
|
|
|
2677
|
-
attr_accessor :IdSet, :Name, :Type, :Offset, :Limit
|
|
2749
|
+
attr_accessor :IdSet, :Name, :Type, :TypeSet, :Offset, :Limit
|
|
2678
2750
|
|
|
2679
|
-
def initialize(idset=nil, name=nil, type=nil, offset=nil, limit=nil)
|
|
2751
|
+
def initialize(idset=nil, name=nil, type=nil, typeset=nil, offset=nil, limit=nil)
|
|
2680
2752
|
@IdSet = idset
|
|
2681
2753
|
@Name = name
|
|
2682
2754
|
@Type = type
|
|
2755
|
+
@TypeSet = typeset
|
|
2683
2756
|
@Offset = offset
|
|
2684
2757
|
@Limit = limit
|
|
2685
2758
|
end
|
|
@@ -2688,6 +2761,7 @@ module TencentCloud
|
|
|
2688
2761
|
@IdSet = params['IdSet']
|
|
2689
2762
|
@Name = params['Name']
|
|
2690
2763
|
@Type = params['Type']
|
|
2764
|
+
@TypeSet = params['TypeSet']
|
|
2691
2765
|
@Offset = params['Offset']
|
|
2692
2766
|
@Limit = params['Limit']
|
|
2693
2767
|
end
|
|
@@ -2966,15 +3040,21 @@ module TencentCloud
|
|
|
2966
3040
|
# @type ManagedAccount: String
|
|
2967
3041
|
# @param DepartmentId: 过滤条件,可按照部门ID进行过滤
|
|
2968
3042
|
# @type DepartmentId: String
|
|
3043
|
+
# @param AccountIdSet: 资产所属云账号id
|
|
3044
|
+
# @type AccountIdSet: Array
|
|
3045
|
+
# @param ProviderTypeSet: 云厂商类型,1-腾讯云,2-阿里云
|
|
3046
|
+
# @type ProviderTypeSet: Array
|
|
3047
|
+
# @param CloudDeviceStatusSet: 同步的云资产状态,标记同步的资产的状态情况,0-已删除,1-正常,2-已隔离,3-已过期
|
|
3048
|
+
# @type CloudDeviceStatusSet: Array
|
|
2969
3049
|
# @param TagFilters: 过滤条件,可按照标签键、标签进行过滤。如果同时指定标签键和标签过滤条件,它们之间为“AND”的关系
|
|
2970
3050
|
# @type TagFilters: Array
|
|
2971
3051
|
# @param Filters: 过滤数组。支持的Name:
|
|
2972
3052
|
# BindingStatus 绑定状态
|
|
2973
3053
|
# @type Filters: Array
|
|
2974
3054
|
|
|
2975
|
-
attr_accessor :IdSet, :Name, :Ip, :ApCodeSet, :Kind, :Offset, :Limit, :AuthorizedUserIdSet, :ResourceIdSet, :KindSet, :ManagedAccount, :DepartmentId, :TagFilters, :Filters
|
|
3055
|
+
attr_accessor :IdSet, :Name, :Ip, :ApCodeSet, :Kind, :Offset, :Limit, :AuthorizedUserIdSet, :ResourceIdSet, :KindSet, :ManagedAccount, :DepartmentId, :AccountIdSet, :ProviderTypeSet, :CloudDeviceStatusSet, :TagFilters, :Filters
|
|
2976
3056
|
|
|
2977
|
-
def initialize(idset=nil, name=nil, ip=nil, apcodeset=nil, kind=nil, offset=nil, limit=nil, authorizeduseridset=nil, resourceidset=nil, kindset=nil, managedaccount=nil, departmentid=nil, tagfilters=nil, filters=nil)
|
|
3057
|
+
def initialize(idset=nil, name=nil, ip=nil, apcodeset=nil, kind=nil, offset=nil, limit=nil, authorizeduseridset=nil, resourceidset=nil, kindset=nil, managedaccount=nil, departmentid=nil, accountidset=nil, providertypeset=nil, clouddevicestatusset=nil, tagfilters=nil, filters=nil)
|
|
2978
3058
|
@IdSet = idset
|
|
2979
3059
|
@Name = name
|
|
2980
3060
|
@Ip = ip
|
|
@@ -2987,6 +3067,9 @@ module TencentCloud
|
|
|
2987
3067
|
@KindSet = kindset
|
|
2988
3068
|
@ManagedAccount = managedaccount
|
|
2989
3069
|
@DepartmentId = departmentid
|
|
3070
|
+
@AccountIdSet = accountidset
|
|
3071
|
+
@ProviderTypeSet = providertypeset
|
|
3072
|
+
@CloudDeviceStatusSet = clouddevicestatusset
|
|
2990
3073
|
@TagFilters = tagfilters
|
|
2991
3074
|
@Filters = filters
|
|
2992
3075
|
end
|
|
@@ -3004,6 +3087,9 @@ module TencentCloud
|
|
|
3004
3087
|
@KindSet = params['KindSet']
|
|
3005
3088
|
@ManagedAccount = params['ManagedAccount']
|
|
3006
3089
|
@DepartmentId = params['DepartmentId']
|
|
3090
|
+
@AccountIdSet = params['AccountIdSet']
|
|
3091
|
+
@ProviderTypeSet = params['ProviderTypeSet']
|
|
3092
|
+
@CloudDeviceStatusSet = params['CloudDeviceStatusSet']
|
|
3007
3093
|
unless params['TagFilters'].nil?
|
|
3008
3094
|
@TagFilters = []
|
|
3009
3095
|
params['TagFilters'].each do |i|
|
|
@@ -3206,23 +3292,29 @@ module TencentCloud
|
|
|
3206
3292
|
# @type SourceIp: String
|
|
3207
3293
|
# @param Entry: 登录入口:1-字符界面,2-图形界面,3-web页面, 4-API
|
|
3208
3294
|
# @type Entry: Integer
|
|
3295
|
+
# @param EntrySet: 登录入口:1-字符界面,2-图形界面,3-web页面, 4-API
|
|
3296
|
+
# @type EntrySet: Array
|
|
3209
3297
|
# @param Result: 操作结果,1-成功,2-失败
|
|
3210
3298
|
# @type Result: Integer
|
|
3299
|
+
# @param ResultSet: 操作结果,1-成功,2-失败
|
|
3300
|
+
# @type ResultSet: Array
|
|
3211
3301
|
# @param Offset: 分页偏移位置,默认值为0
|
|
3212
3302
|
# @type Offset: Integer
|
|
3213
3303
|
# @param Limit: 分页每页记录数,默认20
|
|
3214
3304
|
# @type Limit: Integer
|
|
3215
3305
|
|
|
3216
|
-
attr_accessor :UserName, :RealName, :StartTime, :EndTime, :SourceIp, :Entry, :Result, :Offset, :Limit
|
|
3306
|
+
attr_accessor :UserName, :RealName, :StartTime, :EndTime, :SourceIp, :Entry, :EntrySet, :Result, :ResultSet, :Offset, :Limit
|
|
3217
3307
|
|
|
3218
|
-
def initialize(username=nil, realname=nil, starttime=nil, endtime=nil, sourceip=nil, entry=nil, result=nil, offset=nil, limit=nil)
|
|
3308
|
+
def initialize(username=nil, realname=nil, starttime=nil, endtime=nil, sourceip=nil, entry=nil, entryset=nil, result=nil, resultset=nil, offset=nil, limit=nil)
|
|
3219
3309
|
@UserName = username
|
|
3220
3310
|
@RealName = realname
|
|
3221
3311
|
@StartTime = starttime
|
|
3222
3312
|
@EndTime = endtime
|
|
3223
3313
|
@SourceIp = sourceip
|
|
3224
3314
|
@Entry = entry
|
|
3315
|
+
@EntrySet = entryset
|
|
3225
3316
|
@Result = result
|
|
3317
|
+
@ResultSet = resultset
|
|
3226
3318
|
@Offset = offset
|
|
3227
3319
|
@Limit = limit
|
|
3228
3320
|
end
|
|
@@ -3234,7 +3326,9 @@ module TencentCloud
|
|
|
3234
3326
|
@EndTime = params['EndTime']
|
|
3235
3327
|
@SourceIp = params['SourceIp']
|
|
3236
3328
|
@Entry = params['Entry']
|
|
3329
|
+
@EntrySet = params['EntrySet']
|
|
3237
3330
|
@Result = params['Result']
|
|
3331
|
+
@ResultSet = params['ResultSet']
|
|
3238
3332
|
@Offset = params['Offset']
|
|
3239
3333
|
@Limit = params['Limit']
|
|
3240
3334
|
end
|
|
@@ -3285,23 +3379,29 @@ module TencentCloud
|
|
|
3285
3379
|
# @type SourceIp: String
|
|
3286
3380
|
# @param Kind: 操作类型,参考DescribeOperationType返回结果
|
|
3287
3381
|
# @type Kind: Integer
|
|
3382
|
+
# @param KindSet: 操作类型,参考DescribeOperationType返回结果
|
|
3383
|
+
# @type KindSet: Array
|
|
3288
3384
|
# @param Result: 操作结果,1-成功,2-失败
|
|
3289
3385
|
# @type Result: Integer
|
|
3386
|
+
# @param ResultSet: 操作结果,1-成功,2-失败
|
|
3387
|
+
# @type ResultSet: Array
|
|
3290
3388
|
# @param Offset: 分页偏移位置,默认值为0
|
|
3291
3389
|
# @type Offset: Integer
|
|
3292
3390
|
# @param Limit: 分页每页记录数,默认20
|
|
3293
3391
|
# @type Limit: Integer
|
|
3294
3392
|
|
|
3295
|
-
attr_accessor :UserName, :RealName, :StartTime, :EndTime, :SourceIp, :Kind, :Result, :Offset, :Limit
|
|
3393
|
+
attr_accessor :UserName, :RealName, :StartTime, :EndTime, :SourceIp, :Kind, :KindSet, :Result, :ResultSet, :Offset, :Limit
|
|
3296
3394
|
|
|
3297
|
-
def initialize(username=nil, realname=nil, starttime=nil, endtime=nil, sourceip=nil, kind=nil, result=nil, offset=nil, limit=nil)
|
|
3395
|
+
def initialize(username=nil, realname=nil, starttime=nil, endtime=nil, sourceip=nil, kind=nil, kindset=nil, result=nil, resultset=nil, offset=nil, limit=nil)
|
|
3298
3396
|
@UserName = username
|
|
3299
3397
|
@RealName = realname
|
|
3300
3398
|
@StartTime = starttime
|
|
3301
3399
|
@EndTime = endtime
|
|
3302
3400
|
@SourceIp = sourceip
|
|
3303
3401
|
@Kind = kind
|
|
3402
|
+
@KindSet = kindset
|
|
3304
3403
|
@Result = result
|
|
3404
|
+
@ResultSet = resultset
|
|
3305
3405
|
@Offset = offset
|
|
3306
3406
|
@Limit = limit
|
|
3307
3407
|
end
|
|
@@ -3313,7 +3413,9 @@ module TencentCloud
|
|
|
3313
3413
|
@EndTime = params['EndTime']
|
|
3314
3414
|
@SourceIp = params['SourceIp']
|
|
3315
3415
|
@Kind = params['Kind']
|
|
3416
|
+
@KindSet = params['KindSet']
|
|
3316
3417
|
@Result = params['Result']
|
|
3418
|
+
@ResultSet = params['ResultSet']
|
|
3317
3419
|
@Offset = params['Offset']
|
|
3318
3420
|
@Limit = params['Limit']
|
|
3319
3421
|
end
|
|
@@ -3472,6 +3574,33 @@ module TencentCloud
|
|
|
3472
3574
|
end
|
|
3473
3575
|
end
|
|
3474
3576
|
|
|
3577
|
+
# DescribeSecuritySetting请求参数结构体
|
|
3578
|
+
class DescribeSecuritySettingRequest < TencentCloud::Common::AbstractModel
|
|
3579
|
+
|
|
3580
|
+
|
|
3581
|
+
def initialize()
|
|
3582
|
+
end
|
|
3583
|
+
|
|
3584
|
+
def deserialize(params)
|
|
3585
|
+
end
|
|
3586
|
+
end
|
|
3587
|
+
|
|
3588
|
+
# DescribeSecuritySetting返回参数结构体
|
|
3589
|
+
class DescribeSecuritySettingResponse < TencentCloud::Common::AbstractModel
|
|
3590
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3591
|
+
# @type RequestId: String
|
|
3592
|
+
|
|
3593
|
+
attr_accessor :RequestId
|
|
3594
|
+
|
|
3595
|
+
def initialize(requestid=nil)
|
|
3596
|
+
@RequestId = requestid
|
|
3597
|
+
end
|
|
3598
|
+
|
|
3599
|
+
def deserialize(params)
|
|
3600
|
+
@RequestId = params['RequestId']
|
|
3601
|
+
end
|
|
3602
|
+
end
|
|
3603
|
+
|
|
3475
3604
|
# DescribeUserGroupMembers请求参数结构体
|
|
3476
3605
|
class DescribeUserGroupMembersRequest < TencentCloud::Common::AbstractModel
|
|
3477
3606
|
# @param Id: 用户组ID
|
|
@@ -3723,6 +3852,8 @@ module TencentCloud
|
|
|
3723
3852
|
# @type PrivateIp: String
|
|
3724
3853
|
# @param ApCode: 地域编码
|
|
3725
3854
|
# @type ApCode: String
|
|
3855
|
+
# @param ApName: 地域名称
|
|
3856
|
+
# @type ApName: String
|
|
3726
3857
|
# @param OsName: 操作系统名称
|
|
3727
3858
|
# @type OsName: String
|
|
3728
3859
|
# @param Kind: 资产类型 1 - Linux, 2 - Windows, 3 - MySQL, 4 - SQLServer
|
|
@@ -3765,16 +3896,27 @@ module TencentCloud
|
|
|
3765
3896
|
# @type SyncPodCount: Integer
|
|
3766
3897
|
# @param TotalPodCount: K8S集群pod总数量
|
|
3767
3898
|
# @type TotalPodCount: Integer
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3899
|
+
# @param CloudAccountId: 云账号id
|
|
3900
|
+
# @type CloudAccountId: Integer
|
|
3901
|
+
# @param CloudAccountName: 云账号名称
|
|
3902
|
+
# @type CloudAccountName: String
|
|
3903
|
+
# @param ProviderType: 云厂商类型1-腾讯云,2-阿里云
|
|
3904
|
+
# @type ProviderType: Integer
|
|
3905
|
+
# @param ProviderName: 云厂商名称
|
|
3906
|
+
# @type ProviderName: String
|
|
3907
|
+
# @param SyncCloudDeviceStatus: 同步的云资产状态,标记同步的资产的状态情况,0-已删除,1-正常,2-已隔离,3-已过期
|
|
3908
|
+
# @type SyncCloudDeviceStatus: Integer
|
|
3909
|
+
|
|
3910
|
+
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :ApName, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName, :IOAId, :ManageDimension, :ManageAccountId, :Namespace, :Workload, :SyncPodCount, :TotalPodCount, :CloudAccountId, :CloudAccountName, :ProviderType, :ProviderName, :SyncCloudDeviceStatus
|
|
3911
|
+
|
|
3912
|
+
def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=nil, apname=nil, osname=nil, kind=nil, port=nil, groupset=nil, accountcount=nil, vpcid=nil, subnetid=nil, resource=nil, department=nil, ipportset=nil, domainid=nil, domainname=nil, enablessl=nil, sslcertname=nil, ioaid=nil, managedimension=nil, manageaccountid=nil, namespace=nil, workload=nil, syncpodcount=nil, totalpodcount=nil, cloudaccountid=nil, cloudaccountname=nil, providertype=nil, providername=nil, syncclouddevicestatus=nil)
|
|
3772
3913
|
@Id = id
|
|
3773
3914
|
@InstanceId = instanceid
|
|
3774
3915
|
@Name = name
|
|
3775
3916
|
@PublicIp = publicip
|
|
3776
3917
|
@PrivateIp = privateip
|
|
3777
3918
|
@ApCode = apcode
|
|
3919
|
+
@ApName = apname
|
|
3778
3920
|
@OsName = osname
|
|
3779
3921
|
@Kind = kind
|
|
3780
3922
|
@Port = port
|
|
@@ -3796,6 +3938,11 @@ module TencentCloud
|
|
|
3796
3938
|
@Workload = workload
|
|
3797
3939
|
@SyncPodCount = syncpodcount
|
|
3798
3940
|
@TotalPodCount = totalpodcount
|
|
3941
|
+
@CloudAccountId = cloudaccountid
|
|
3942
|
+
@CloudAccountName = cloudaccountname
|
|
3943
|
+
@ProviderType = providertype
|
|
3944
|
+
@ProviderName = providername
|
|
3945
|
+
@SyncCloudDeviceStatus = syncclouddevicestatus
|
|
3799
3946
|
end
|
|
3800
3947
|
|
|
3801
3948
|
def deserialize(params)
|
|
@@ -3805,6 +3952,7 @@ module TencentCloud
|
|
|
3805
3952
|
@PublicIp = params['PublicIp']
|
|
3806
3953
|
@PrivateIp = params['PrivateIp']
|
|
3807
3954
|
@ApCode = params['ApCode']
|
|
3955
|
+
@ApName = params['ApName']
|
|
3808
3956
|
@OsName = params['OsName']
|
|
3809
3957
|
@Kind = params['Kind']
|
|
3810
3958
|
@Port = params['Port']
|
|
@@ -3839,6 +3987,11 @@ module TencentCloud
|
|
|
3839
3987
|
@Workload = params['Workload']
|
|
3840
3988
|
@SyncPodCount = params['SyncPodCount']
|
|
3841
3989
|
@TotalPodCount = params['TotalPodCount']
|
|
3990
|
+
@CloudAccountId = params['CloudAccountId']
|
|
3991
|
+
@CloudAccountName = params['CloudAccountName']
|
|
3992
|
+
@ProviderType = params['ProviderType']
|
|
3993
|
+
@ProviderName = params['ProviderName']
|
|
3994
|
+
@SyncCloudDeviceStatus = params['SyncCloudDeviceStatus']
|
|
3842
3995
|
end
|
|
3843
3996
|
end
|
|
3844
3997
|
|
|
@@ -3882,6 +4035,70 @@ module TencentCloud
|
|
|
3882
4035
|
end
|
|
3883
4036
|
end
|
|
3884
4037
|
|
|
4038
|
+
# DisableExternalAccess请求参数结构体
|
|
4039
|
+
class DisableExternalAccessRequest < TencentCloud::Common::AbstractModel
|
|
4040
|
+
# @param ResourceId: 堡垒机id
|
|
4041
|
+
# @type ResourceId: String
|
|
4042
|
+
|
|
4043
|
+
attr_accessor :ResourceId
|
|
4044
|
+
|
|
4045
|
+
def initialize(resourceid=nil)
|
|
4046
|
+
@ResourceId = resourceid
|
|
4047
|
+
end
|
|
4048
|
+
|
|
4049
|
+
def deserialize(params)
|
|
4050
|
+
@ResourceId = params['ResourceId']
|
|
4051
|
+
end
|
|
4052
|
+
end
|
|
4053
|
+
|
|
4054
|
+
# DisableExternalAccess返回参数结构体
|
|
4055
|
+
class DisableExternalAccessResponse < TencentCloud::Common::AbstractModel
|
|
4056
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4057
|
+
# @type RequestId: String
|
|
4058
|
+
|
|
4059
|
+
attr_accessor :RequestId
|
|
4060
|
+
|
|
4061
|
+
def initialize(requestid=nil)
|
|
4062
|
+
@RequestId = requestid
|
|
4063
|
+
end
|
|
4064
|
+
|
|
4065
|
+
def deserialize(params)
|
|
4066
|
+
@RequestId = params['RequestId']
|
|
4067
|
+
end
|
|
4068
|
+
end
|
|
4069
|
+
|
|
4070
|
+
# DisableIntranetAccess请求参数结构体
|
|
4071
|
+
class DisableIntranetAccessRequest < TencentCloud::Common::AbstractModel
|
|
4072
|
+
# @param ResourceId: 堡垒机id
|
|
4073
|
+
# @type ResourceId: String
|
|
4074
|
+
|
|
4075
|
+
attr_accessor :ResourceId
|
|
4076
|
+
|
|
4077
|
+
def initialize(resourceid=nil)
|
|
4078
|
+
@ResourceId = resourceid
|
|
4079
|
+
end
|
|
4080
|
+
|
|
4081
|
+
def deserialize(params)
|
|
4082
|
+
@ResourceId = params['ResourceId']
|
|
4083
|
+
end
|
|
4084
|
+
end
|
|
4085
|
+
|
|
4086
|
+
# DisableIntranetAccess返回参数结构体
|
|
4087
|
+
class DisableIntranetAccessResponse < TencentCloud::Common::AbstractModel
|
|
4088
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4089
|
+
# @type RequestId: String
|
|
4090
|
+
|
|
4091
|
+
attr_accessor :RequestId
|
|
4092
|
+
|
|
4093
|
+
def initialize(requestid=nil)
|
|
4094
|
+
@RequestId = requestid
|
|
4095
|
+
end
|
|
4096
|
+
|
|
4097
|
+
def deserialize(params)
|
|
4098
|
+
@RequestId = params['RequestId']
|
|
4099
|
+
end
|
|
4100
|
+
end
|
|
4101
|
+
|
|
3885
4102
|
# 网络域
|
|
3886
4103
|
class Domain < TencentCloud::Common::AbstractModel
|
|
3887
4104
|
# @param Id: 自增id
|
|
@@ -3930,6 +4147,86 @@ module TencentCloud
|
|
|
3930
4147
|
end
|
|
3931
4148
|
end
|
|
3932
4149
|
|
|
4150
|
+
# EnableExternalAccess请求参数结构体
|
|
4151
|
+
class EnableExternalAccessRequest < TencentCloud::Common::AbstractModel
|
|
4152
|
+
# @param ResourceId: 堡垒机id
|
|
4153
|
+
# @type ResourceId: String
|
|
4154
|
+
|
|
4155
|
+
attr_accessor :ResourceId
|
|
4156
|
+
|
|
4157
|
+
def initialize(resourceid=nil)
|
|
4158
|
+
@ResourceId = resourceid
|
|
4159
|
+
end
|
|
4160
|
+
|
|
4161
|
+
def deserialize(params)
|
|
4162
|
+
@ResourceId = params['ResourceId']
|
|
4163
|
+
end
|
|
4164
|
+
end
|
|
4165
|
+
|
|
4166
|
+
# EnableExternalAccess返回参数结构体
|
|
4167
|
+
class EnableExternalAccessResponse < TencentCloud::Common::AbstractModel
|
|
4168
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4169
|
+
# @type RequestId: String
|
|
4170
|
+
|
|
4171
|
+
attr_accessor :RequestId
|
|
4172
|
+
|
|
4173
|
+
def initialize(requestid=nil)
|
|
4174
|
+
@RequestId = requestid
|
|
4175
|
+
end
|
|
4176
|
+
|
|
4177
|
+
def deserialize(params)
|
|
4178
|
+
@RequestId = params['RequestId']
|
|
4179
|
+
end
|
|
4180
|
+
end
|
|
4181
|
+
|
|
4182
|
+
# EnableIntranetAccess请求参数结构体
|
|
4183
|
+
class EnableIntranetAccessRequest < TencentCloud::Common::AbstractModel
|
|
4184
|
+
# @param ResourceId: 堡垒机实例id
|
|
4185
|
+
# @type ResourceId: String
|
|
4186
|
+
# @param VpcId: 开通内网访问的vpc id
|
|
4187
|
+
# @type VpcId: String
|
|
4188
|
+
# @param VpcCidrBlock: vpc的网段
|
|
4189
|
+
# @type VpcCidrBlock: String
|
|
4190
|
+
# @param SubnetId: 开通内网访问的subnet id
|
|
4191
|
+
# @type SubnetId: String
|
|
4192
|
+
# @param DomainName: 内网ip的自定义域名,可为空
|
|
4193
|
+
# @type DomainName: String
|
|
4194
|
+
|
|
4195
|
+
attr_accessor :ResourceId, :VpcId, :VpcCidrBlock, :SubnetId, :DomainName
|
|
4196
|
+
|
|
4197
|
+
def initialize(resourceid=nil, vpcid=nil, vpccidrblock=nil, subnetid=nil, domainname=nil)
|
|
4198
|
+
@ResourceId = resourceid
|
|
4199
|
+
@VpcId = vpcid
|
|
4200
|
+
@VpcCidrBlock = vpccidrblock
|
|
4201
|
+
@SubnetId = subnetid
|
|
4202
|
+
@DomainName = domainname
|
|
4203
|
+
end
|
|
4204
|
+
|
|
4205
|
+
def deserialize(params)
|
|
4206
|
+
@ResourceId = params['ResourceId']
|
|
4207
|
+
@VpcId = params['VpcId']
|
|
4208
|
+
@VpcCidrBlock = params['VpcCidrBlock']
|
|
4209
|
+
@SubnetId = params['SubnetId']
|
|
4210
|
+
@DomainName = params['DomainName']
|
|
4211
|
+
end
|
|
4212
|
+
end
|
|
4213
|
+
|
|
4214
|
+
# EnableIntranetAccess返回参数结构体
|
|
4215
|
+
class EnableIntranetAccessResponse < TencentCloud::Common::AbstractModel
|
|
4216
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4217
|
+
# @type RequestId: String
|
|
4218
|
+
|
|
4219
|
+
attr_accessor :RequestId
|
|
4220
|
+
|
|
4221
|
+
def initialize(requestid=nil)
|
|
4222
|
+
@RequestId = requestid
|
|
4223
|
+
end
|
|
4224
|
+
|
|
4225
|
+
def deserialize(params)
|
|
4226
|
+
@RequestId = params['RequestId']
|
|
4227
|
+
end
|
|
4228
|
+
end
|
|
4229
|
+
|
|
3933
4230
|
# 主机参数,导入外部主机时使用
|
|
3934
4231
|
class ExternalDevice < TencentCloud::Common::AbstractModel
|
|
3935
4232
|
# @param OsName: 操作系统名称,只能是Linux、Windows或MySQL
|
|
@@ -3950,10 +4247,22 @@ module TencentCloud
|
|
|
3950
4247
|
# @type SSLCert: String
|
|
3951
4248
|
# @param SSLCertName: SSL证书名称,EnableSSL时必填
|
|
3952
4249
|
# @type SSLCertName: String
|
|
4250
|
+
# @param InstanceId: 资产实例id
|
|
4251
|
+
# @type InstanceId: String
|
|
4252
|
+
# @param ApCode: 资产所属地域
|
|
4253
|
+
# @type ApCode: String
|
|
4254
|
+
# @param ApName: 地域名称
|
|
4255
|
+
# @type ApName: String
|
|
4256
|
+
# @param VpcId: 资产所属VPC
|
|
4257
|
+
# @type VpcId: String
|
|
4258
|
+
# @param SubnetId: 资产所属子网
|
|
4259
|
+
# @type SubnetId: String
|
|
4260
|
+
# @param PublicIp: 公网IP
|
|
4261
|
+
# @type PublicIp: String
|
|
3953
4262
|
|
|
3954
|
-
attr_accessor :OsName, :Ip, :Port, :Name, :DepartmentId, :IpPortSet, :EnableSSL, :SSLCert, :SSLCertName
|
|
4263
|
+
attr_accessor :OsName, :Ip, :Port, :Name, :DepartmentId, :IpPortSet, :EnableSSL, :SSLCert, :SSLCertName, :InstanceId, :ApCode, :ApName, :VpcId, :SubnetId, :PublicIp
|
|
3955
4264
|
|
|
3956
|
-
def initialize(osname=nil, ip=nil, port=nil, name=nil, departmentid=nil, ipportset=nil, enablessl=nil, sslcert=nil, sslcertname=nil)
|
|
4265
|
+
def initialize(osname=nil, ip=nil, port=nil, name=nil, departmentid=nil, ipportset=nil, enablessl=nil, sslcert=nil, sslcertname=nil, instanceid=nil, apcode=nil, apname=nil, vpcid=nil, subnetid=nil, publicip=nil)
|
|
3957
4266
|
@OsName = osname
|
|
3958
4267
|
@Ip = ip
|
|
3959
4268
|
@Port = port
|
|
@@ -3963,6 +4272,12 @@ module TencentCloud
|
|
|
3963
4272
|
@EnableSSL = enablessl
|
|
3964
4273
|
@SSLCert = sslcert
|
|
3965
4274
|
@SSLCertName = sslcertname
|
|
4275
|
+
@InstanceId = instanceid
|
|
4276
|
+
@ApCode = apcode
|
|
4277
|
+
@ApName = apname
|
|
4278
|
+
@VpcId = vpcid
|
|
4279
|
+
@SubnetId = subnetid
|
|
4280
|
+
@PublicIp = publicip
|
|
3966
4281
|
end
|
|
3967
4282
|
|
|
3968
4283
|
def deserialize(params)
|
|
@@ -3975,6 +4290,12 @@ module TencentCloud
|
|
|
3975
4290
|
@EnableSSL = params['EnableSSL']
|
|
3976
4291
|
@SSLCert = params['SSLCert']
|
|
3977
4292
|
@SSLCertName = params['SSLCertName']
|
|
4293
|
+
@InstanceId = params['InstanceId']
|
|
4294
|
+
@ApCode = params['ApCode']
|
|
4295
|
+
@ApName = params['ApName']
|
|
4296
|
+
@VpcId = params['VpcId']
|
|
4297
|
+
@SubnetId = params['SubnetId']
|
|
4298
|
+
@PublicIp = params['PublicIp']
|
|
3978
4299
|
end
|
|
3979
4300
|
end
|
|
3980
4301
|
|
|
@@ -4067,11 +4388,14 @@ module TencentCloud
|
|
|
4067
4388
|
class ImportExternalDeviceRequest < TencentCloud::Common::AbstractModel
|
|
4068
4389
|
# @param DeviceSet: 资产参数列表
|
|
4069
4390
|
# @type DeviceSet: Array
|
|
4391
|
+
# @param AccountId: 资产所属云账号id
|
|
4392
|
+
# @type AccountId: Integer
|
|
4070
4393
|
|
|
4071
|
-
attr_accessor :DeviceSet
|
|
4394
|
+
attr_accessor :DeviceSet, :AccountId
|
|
4072
4395
|
|
|
4073
|
-
def initialize(deviceset=nil)
|
|
4396
|
+
def initialize(deviceset=nil, accountid=nil)
|
|
4074
4397
|
@DeviceSet = deviceset
|
|
4398
|
+
@AccountId = accountid
|
|
4075
4399
|
end
|
|
4076
4400
|
|
|
4077
4401
|
def deserialize(params)
|
|
@@ -4083,6 +4407,7 @@ module TencentCloud
|
|
|
4083
4407
|
@DeviceSet << externaldevice_tmp
|
|
4084
4408
|
end
|
|
4085
4409
|
end
|
|
4410
|
+
@AccountId = params['AccountId']
|
|
4086
4411
|
end
|
|
4087
4412
|
end
|
|
4088
4413
|
|
|
@@ -4142,6 +4467,110 @@ module TencentCloud
|
|
|
4142
4467
|
end
|
|
4143
4468
|
end
|
|
4144
4469
|
|
|
4470
|
+
# ModifyAccessWhiteListAutoStatus请求参数结构体
|
|
4471
|
+
class ModifyAccessWhiteListAutoStatusRequest < TencentCloud::Common::AbstractModel
|
|
4472
|
+
# @param AllowAuto: true:放开自动添加IP;false:不放开自动添加IP
|
|
4473
|
+
# @type AllowAuto: Boolean
|
|
4474
|
+
|
|
4475
|
+
attr_accessor :AllowAuto
|
|
4476
|
+
|
|
4477
|
+
def initialize(allowauto=nil)
|
|
4478
|
+
@AllowAuto = allowauto
|
|
4479
|
+
end
|
|
4480
|
+
|
|
4481
|
+
def deserialize(params)
|
|
4482
|
+
@AllowAuto = params['AllowAuto']
|
|
4483
|
+
end
|
|
4484
|
+
end
|
|
4485
|
+
|
|
4486
|
+
# ModifyAccessWhiteListAutoStatus返回参数结构体
|
|
4487
|
+
class ModifyAccessWhiteListAutoStatusResponse < TencentCloud::Common::AbstractModel
|
|
4488
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4489
|
+
# @type RequestId: String
|
|
4490
|
+
|
|
4491
|
+
attr_accessor :RequestId
|
|
4492
|
+
|
|
4493
|
+
def initialize(requestid=nil)
|
|
4494
|
+
@RequestId = requestid
|
|
4495
|
+
end
|
|
4496
|
+
|
|
4497
|
+
def deserialize(params)
|
|
4498
|
+
@RequestId = params['RequestId']
|
|
4499
|
+
end
|
|
4500
|
+
end
|
|
4501
|
+
|
|
4502
|
+
# ModifyAccessWhiteListRule请求参数结构体
|
|
4503
|
+
class ModifyAccessWhiteListRuleRequest < TencentCloud::Common::AbstractModel
|
|
4504
|
+
# @param Id: 白名单规则ID
|
|
4505
|
+
# @type Id: Integer
|
|
4506
|
+
# @param Source: ip或网段信息,如10.10.10.1或10.10.10.0/24,最大长度40字节
|
|
4507
|
+
# @type Source: String
|
|
4508
|
+
# @param Remark: 备注信息,最大长度64字符。
|
|
4509
|
+
# @type Remark: String
|
|
4510
|
+
|
|
4511
|
+
attr_accessor :Id, :Source, :Remark
|
|
4512
|
+
|
|
4513
|
+
def initialize(id=nil, source=nil, remark=nil)
|
|
4514
|
+
@Id = id
|
|
4515
|
+
@Source = source
|
|
4516
|
+
@Remark = remark
|
|
4517
|
+
end
|
|
4518
|
+
|
|
4519
|
+
def deserialize(params)
|
|
4520
|
+
@Id = params['Id']
|
|
4521
|
+
@Source = params['Source']
|
|
4522
|
+
@Remark = params['Remark']
|
|
4523
|
+
end
|
|
4524
|
+
end
|
|
4525
|
+
|
|
4526
|
+
# ModifyAccessWhiteListRule返回参数结构体
|
|
4527
|
+
class ModifyAccessWhiteListRuleResponse < TencentCloud::Common::AbstractModel
|
|
4528
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4529
|
+
# @type RequestId: String
|
|
4530
|
+
|
|
4531
|
+
attr_accessor :RequestId
|
|
4532
|
+
|
|
4533
|
+
def initialize(requestid=nil)
|
|
4534
|
+
@RequestId = requestid
|
|
4535
|
+
end
|
|
4536
|
+
|
|
4537
|
+
def deserialize(params)
|
|
4538
|
+
@RequestId = params['RequestId']
|
|
4539
|
+
end
|
|
4540
|
+
end
|
|
4541
|
+
|
|
4542
|
+
# ModifyAccessWhiteListStatus请求参数结构体
|
|
4543
|
+
class ModifyAccessWhiteListStatusRequest < TencentCloud::Common::AbstractModel
|
|
4544
|
+
# @param AllowAny: true:放开全部来源IP;false:不放开全部来源IP
|
|
4545
|
+
# @type AllowAny: Boolean
|
|
4546
|
+
|
|
4547
|
+
attr_accessor :AllowAny
|
|
4548
|
+
|
|
4549
|
+
def initialize(allowany=nil)
|
|
4550
|
+
@AllowAny = allowany
|
|
4551
|
+
end
|
|
4552
|
+
|
|
4553
|
+
def deserialize(params)
|
|
4554
|
+
@AllowAny = params['AllowAny']
|
|
4555
|
+
end
|
|
4556
|
+
end
|
|
4557
|
+
|
|
4558
|
+
# ModifyAccessWhiteListStatus返回参数结构体
|
|
4559
|
+
class ModifyAccessWhiteListStatusResponse < TencentCloud::Common::AbstractModel
|
|
4560
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4561
|
+
# @type RequestId: String
|
|
4562
|
+
|
|
4563
|
+
attr_accessor :RequestId
|
|
4564
|
+
|
|
4565
|
+
def initialize(requestid=nil)
|
|
4566
|
+
@RequestId = requestid
|
|
4567
|
+
end
|
|
4568
|
+
|
|
4569
|
+
def deserialize(params)
|
|
4570
|
+
@RequestId = params['RequestId']
|
|
4571
|
+
end
|
|
4572
|
+
end
|
|
4573
|
+
|
|
4145
4574
|
# ModifyAcl请求参数结构体
|
|
4146
4575
|
class ModifyAclRequest < TencentCloud::Common::AbstractModel
|
|
4147
4576
|
# @param Name: 访问权限名称,最大32字符,不能包含空白字符
|
|
@@ -4292,6 +4721,74 @@ module TencentCloud
|
|
|
4292
4721
|
end
|
|
4293
4722
|
end
|
|
4294
4723
|
|
|
4724
|
+
# ModifyAssetSyncFlag请求参数结构体
|
|
4725
|
+
class ModifyAssetSyncFlagRequest < TencentCloud::Common::AbstractModel
|
|
4726
|
+
# @param AutoSync: 是否开启资产自动同步,false-不开启,true-开启
|
|
4727
|
+
# @type AutoSync: Boolean
|
|
4728
|
+
|
|
4729
|
+
attr_accessor :AutoSync
|
|
4730
|
+
|
|
4731
|
+
def initialize(autosync=nil)
|
|
4732
|
+
@AutoSync = autosync
|
|
4733
|
+
end
|
|
4734
|
+
|
|
4735
|
+
def deserialize(params)
|
|
4736
|
+
@AutoSync = params['AutoSync']
|
|
4737
|
+
end
|
|
4738
|
+
end
|
|
4739
|
+
|
|
4740
|
+
# ModifyAssetSyncFlag返回参数结构体
|
|
4741
|
+
class ModifyAssetSyncFlagResponse < TencentCloud::Common::AbstractModel
|
|
4742
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4743
|
+
# @type RequestId: String
|
|
4744
|
+
|
|
4745
|
+
attr_accessor :RequestId
|
|
4746
|
+
|
|
4747
|
+
def initialize(requestid=nil)
|
|
4748
|
+
@RequestId = requestid
|
|
4749
|
+
end
|
|
4750
|
+
|
|
4751
|
+
def deserialize(params)
|
|
4752
|
+
@RequestId = params['RequestId']
|
|
4753
|
+
end
|
|
4754
|
+
end
|
|
4755
|
+
|
|
4756
|
+
# ModifyAuthModeSetting请求参数结构体
|
|
4757
|
+
class ModifyAuthModeSettingRequest < TencentCloud::Common::AbstractModel
|
|
4758
|
+
# @param AuthMode: 双因子认证,0-不开启,1-OTP,2-短信,3-USB Key
|
|
4759
|
+
# @type AuthMode: Integer
|
|
4760
|
+
# @param ResourceType: 资源类型,0:普通 1:国密
|
|
4761
|
+
# @type ResourceType: Integer
|
|
4762
|
+
|
|
4763
|
+
attr_accessor :AuthMode, :ResourceType
|
|
4764
|
+
|
|
4765
|
+
def initialize(authmode=nil, resourcetype=nil)
|
|
4766
|
+
@AuthMode = authmode
|
|
4767
|
+
@ResourceType = resourcetype
|
|
4768
|
+
end
|
|
4769
|
+
|
|
4770
|
+
def deserialize(params)
|
|
4771
|
+
@AuthMode = params['AuthMode']
|
|
4772
|
+
@ResourceType = params['ResourceType']
|
|
4773
|
+
end
|
|
4774
|
+
end
|
|
4775
|
+
|
|
4776
|
+
# ModifyAuthModeSetting返回参数结构体
|
|
4777
|
+
class ModifyAuthModeSettingResponse < TencentCloud::Common::AbstractModel
|
|
4778
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4779
|
+
# @type RequestId: String
|
|
4780
|
+
|
|
4781
|
+
attr_accessor :RequestId
|
|
4782
|
+
|
|
4783
|
+
def initialize(requestid=nil)
|
|
4784
|
+
@RequestId = requestid
|
|
4785
|
+
end
|
|
4786
|
+
|
|
4787
|
+
def deserialize(params)
|
|
4788
|
+
@RequestId = params['RequestId']
|
|
4789
|
+
end
|
|
4790
|
+
end
|
|
4791
|
+
|
|
4295
4792
|
# ModifyChangePwdTask请求参数结构体
|
|
4296
4793
|
class ModifyChangePwdTaskRequest < TencentCloud::Common::AbstractModel
|
|
4297
4794
|
# @param OperationId: 改密任务id
|
|
@@ -4777,6 +5274,42 @@ module TencentCloud
|
|
|
4777
5274
|
end
|
|
4778
5275
|
end
|
|
4779
5276
|
|
|
5277
|
+
# ModifyReconnectionSetting请求参数结构体
|
|
5278
|
+
class ModifyReconnectionSettingRequest < TencentCloud::Common::AbstractModel
|
|
5279
|
+
# @param ReconnectionMaxCount: 重试次数,取值范围:0-20
|
|
5280
|
+
# @type ReconnectionMaxCount: Integer
|
|
5281
|
+
# @param Enable: true:限制重连次数,false:不限制重连次数
|
|
5282
|
+
# @type Enable: Boolean
|
|
5283
|
+
|
|
5284
|
+
attr_accessor :ReconnectionMaxCount, :Enable
|
|
5285
|
+
|
|
5286
|
+
def initialize(reconnectionmaxcount=nil, enable=nil)
|
|
5287
|
+
@ReconnectionMaxCount = reconnectionmaxcount
|
|
5288
|
+
@Enable = enable
|
|
5289
|
+
end
|
|
5290
|
+
|
|
5291
|
+
def deserialize(params)
|
|
5292
|
+
@ReconnectionMaxCount = params['ReconnectionMaxCount']
|
|
5293
|
+
@Enable = params['Enable']
|
|
5294
|
+
end
|
|
5295
|
+
end
|
|
5296
|
+
|
|
5297
|
+
# ModifyReconnectionSetting返回参数结构体
|
|
5298
|
+
class ModifyReconnectionSettingResponse < TencentCloud::Common::AbstractModel
|
|
5299
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5300
|
+
# @type RequestId: String
|
|
5301
|
+
|
|
5302
|
+
attr_accessor :RequestId
|
|
5303
|
+
|
|
5304
|
+
def initialize(requestid=nil)
|
|
5305
|
+
@RequestId = requestid
|
|
5306
|
+
end
|
|
5307
|
+
|
|
5308
|
+
def deserialize(params)
|
|
5309
|
+
@RequestId = params['RequestId']
|
|
5310
|
+
end
|
|
5311
|
+
end
|
|
5312
|
+
|
|
4780
5313
|
# ModifyResource请求参数结构体
|
|
4781
5314
|
class ModifyResourceRequest < TencentCloud::Common::AbstractModel
|
|
4782
5315
|
# @param ResourceId: 需要开通服务的资源ID
|
|
@@ -4798,8 +5331,8 @@ module TencentCloud
|
|
|
4798
5331
|
|
|
4799
5332
|
attr_accessor :ResourceId, :Status, :ResourceEdition, :ResourceNode, :AutoRenewFlag, :PackageBandwidth, :PackageNode, :LogDelivery
|
|
4800
5333
|
extend Gem::Deprecate
|
|
4801
|
-
deprecate :Status, :none, 2025,
|
|
4802
|
-
deprecate :Status=, :none, 2025,
|
|
5334
|
+
deprecate :Status, :none, 2025, 11
|
|
5335
|
+
deprecate :Status=, :none, 2025, 11
|
|
4803
5336
|
|
|
4804
5337
|
def initialize(resourceid=nil, status=nil, resourceedition=nil, resourcenode=nil, autorenewflag=nil, packagebandwidth=nil, packagenode=nil, logdelivery=nil)
|
|
4805
5338
|
@ResourceId = resourceid
|
|
@@ -5287,6 +5820,8 @@ module TencentCloud
|
|
|
5287
5820
|
# @type IntranetVpcId: String
|
|
5288
5821
|
# @param IntranetVpcCidr: 开通内网访问vpc的网段
|
|
5289
5822
|
# @type IntranetVpcCidr: String
|
|
5823
|
+
# @param DomainName: 堡垒机内网ip自定义域名
|
|
5824
|
+
# @type DomainName: String
|
|
5290
5825
|
# @param ShareClb: 是否共享clb,true-共享clb,false-独享clb
|
|
5291
5826
|
# @type ShareClb: Boolean
|
|
5292
5827
|
# @param OpenClbId: 共享clb id
|
|
@@ -5312,9 +5847,9 @@ module TencentCloud
|
|
|
5312
5847
|
# @param IOAResourceId: 堡垒机实例对应的零信任实例id
|
|
5313
5848
|
# @type IOAResourceId: String
|
|
5314
5849
|
|
|
5315
|
-
attr_accessor :ResourceId, :ApCode, :SvArgs, :VpcId, :Nodes, :RenewFlag, :ExpireTime, :Status, :ResourceName, :Pid, :CreateTime, :ProductCode, :SubProductCode, :Zone, :Expired, :Deployed, :VpcName, :VpcCidrBlock, :SubnetId, :SubnetName, :CidrBlock, :PublicIpSet, :PrivateIpSet, :ModuleSet, :UsedNodes, :ExtendPoints, :PackageBandwidth, :PackageNode, :LogDeliveryArgs, :ClbSet, :DomainCount, :UsedDomainCount, :Trial, :LogDelivery, :CdcClusterId, :DeployModel, :IntranetAccess, :IntranetPrivateIpSet, :IntranetVpcId, :IntranetVpcCidr, :ShareClb, :OpenClbId, :LbVipIsp, :TUICmdPort, :TUIDirectPort, :WebAccess, :ClientAccess, :ExternalAccess, :IOAResource, :PackageIOAUserCount, :PackageIOABandwidth, :IOAResourceId
|
|
5850
|
+
attr_accessor :ResourceId, :ApCode, :SvArgs, :VpcId, :Nodes, :RenewFlag, :ExpireTime, :Status, :ResourceName, :Pid, :CreateTime, :ProductCode, :SubProductCode, :Zone, :Expired, :Deployed, :VpcName, :VpcCidrBlock, :SubnetId, :SubnetName, :CidrBlock, :PublicIpSet, :PrivateIpSet, :ModuleSet, :UsedNodes, :ExtendPoints, :PackageBandwidth, :PackageNode, :LogDeliveryArgs, :ClbSet, :DomainCount, :UsedDomainCount, :Trial, :LogDelivery, :CdcClusterId, :DeployModel, :IntranetAccess, :IntranetPrivateIpSet, :IntranetVpcId, :IntranetVpcCidr, :DomainName, :ShareClb, :OpenClbId, :LbVipIsp, :TUICmdPort, :TUIDirectPort, :WebAccess, :ClientAccess, :ExternalAccess, :IOAResource, :PackageIOAUserCount, :PackageIOABandwidth, :IOAResourceId
|
|
5316
5851
|
|
|
5317
|
-
def initialize(resourceid=nil, apcode=nil, svargs=nil, vpcid=nil, nodes=nil, renewflag=nil, expiretime=nil, status=nil, resourcename=nil, pid=nil, createtime=nil, productcode=nil, subproductcode=nil, zone=nil, expired=nil, deployed=nil, vpcname=nil, vpccidrblock=nil, subnetid=nil, subnetname=nil, cidrblock=nil, publicipset=nil, privateipset=nil, moduleset=nil, usednodes=nil, extendpoints=nil, packagebandwidth=nil, packagenode=nil, logdeliveryargs=nil, clbset=nil, domaincount=nil, useddomaincount=nil, trial=nil, logdelivery=nil, cdcclusterid=nil, deploymodel=nil, intranetaccess=nil, intranetprivateipset=nil, intranetvpcid=nil, intranetvpccidr=nil, shareclb=nil, openclbid=nil, lbvipisp=nil, tuicmdport=nil, tuidirectport=nil, webaccess=nil, clientaccess=nil, externalaccess=nil, ioaresource=nil, packageioausercount=nil, packageioabandwidth=nil, ioaresourceid=nil)
|
|
5852
|
+
def initialize(resourceid=nil, apcode=nil, svargs=nil, vpcid=nil, nodes=nil, renewflag=nil, expiretime=nil, status=nil, resourcename=nil, pid=nil, createtime=nil, productcode=nil, subproductcode=nil, zone=nil, expired=nil, deployed=nil, vpcname=nil, vpccidrblock=nil, subnetid=nil, subnetname=nil, cidrblock=nil, publicipset=nil, privateipset=nil, moduleset=nil, usednodes=nil, extendpoints=nil, packagebandwidth=nil, packagenode=nil, logdeliveryargs=nil, clbset=nil, domaincount=nil, useddomaincount=nil, trial=nil, logdelivery=nil, cdcclusterid=nil, deploymodel=nil, intranetaccess=nil, intranetprivateipset=nil, intranetvpcid=nil, intranetvpccidr=nil, domainname=nil, shareclb=nil, openclbid=nil, lbvipisp=nil, tuicmdport=nil, tuidirectport=nil, webaccess=nil, clientaccess=nil, externalaccess=nil, ioaresource=nil, packageioausercount=nil, packageioabandwidth=nil, ioaresourceid=nil)
|
|
5318
5853
|
@ResourceId = resourceid
|
|
5319
5854
|
@ApCode = apcode
|
|
5320
5855
|
@SvArgs = svargs
|
|
@@ -5355,6 +5890,7 @@ module TencentCloud
|
|
|
5355
5890
|
@IntranetPrivateIpSet = intranetprivateipset
|
|
5356
5891
|
@IntranetVpcId = intranetvpcid
|
|
5357
5892
|
@IntranetVpcCidr = intranetvpccidr
|
|
5893
|
+
@DomainName = domainname
|
|
5358
5894
|
@ShareClb = shareclb
|
|
5359
5895
|
@OpenClbId = openclbid
|
|
5360
5896
|
@LbVipIsp = lbvipisp
|
|
@@ -5417,6 +5953,7 @@ module TencentCloud
|
|
|
5417
5953
|
@IntranetPrivateIpSet = params['IntranetPrivateIpSet']
|
|
5418
5954
|
@IntranetVpcId = params['IntranetVpcId']
|
|
5419
5955
|
@IntranetVpcCidr = params['IntranetVpcCidr']
|
|
5956
|
+
@DomainName = params['DomainName']
|
|
5420
5957
|
@ShareClb = params['ShareClb']
|
|
5421
5958
|
@OpenClbId = params['OpenClbId']
|
|
5422
5959
|
@LbVipIsp = params['LbVipIsp']
|
|
@@ -5861,18 +6398,21 @@ module TencentCloud
|
|
|
5861
6398
|
# @type Offset: Integer
|
|
5862
6399
|
# @param AuditAction: 1-已执行, 2-被阻断
|
|
5863
6400
|
# @type AuditAction: Integer
|
|
6401
|
+
# @param AuditActionSet: 1-已执行, 2-被阻断
|
|
6402
|
+
# @type AuditActionSet: Array
|
|
5864
6403
|
# @param TypeFilters: 以Protocol和Method为条件查询
|
|
5865
6404
|
# @type TypeFilters: Array
|
|
5866
6405
|
|
|
5867
|
-
attr_accessor :Sid, :AuditLog, :Limit, :FileName, :Offset, :AuditAction, :TypeFilters
|
|
6406
|
+
attr_accessor :Sid, :AuditLog, :Limit, :FileName, :Offset, :AuditAction, :AuditActionSet, :TypeFilters
|
|
5868
6407
|
|
|
5869
|
-
def initialize(sid=nil, auditlog=nil, limit=nil, filename=nil, offset=nil, auditaction=nil, typefilters=nil)
|
|
6408
|
+
def initialize(sid=nil, auditlog=nil, limit=nil, filename=nil, offset=nil, auditaction=nil, auditactionset=nil, typefilters=nil)
|
|
5870
6409
|
@Sid = sid
|
|
5871
6410
|
@AuditLog = auditlog
|
|
5872
6411
|
@Limit = limit
|
|
5873
6412
|
@FileName = filename
|
|
5874
6413
|
@Offset = offset
|
|
5875
6414
|
@AuditAction = auditaction
|
|
6415
|
+
@AuditActionSet = auditactionset
|
|
5876
6416
|
@TypeFilters = typefilters
|
|
5877
6417
|
end
|
|
5878
6418
|
|
|
@@ -5883,6 +6423,7 @@ module TencentCloud
|
|
|
5883
6423
|
@FileName = params['FileName']
|
|
5884
6424
|
@Offset = params['Offset']
|
|
5885
6425
|
@AuditAction = params['AuditAction']
|
|
6426
|
+
@AuditActionSet = params['AuditActionSet']
|
|
5886
6427
|
unless params['TypeFilters'].nil?
|
|
5887
6428
|
@TypeFilters = []
|
|
5888
6429
|
params['TypeFilters'].each do |i|
|
|
@@ -6309,6 +6850,8 @@ module TencentCloud
|
|
|
6309
6850
|
# @type DeviceName: String
|
|
6310
6851
|
# @param Status: 状态,1为活跃,2为结束,3为强制离线,4为其他错误
|
|
6311
6852
|
# @type Status: Integer
|
|
6853
|
+
# @param StatusSet: 状态,1为活跃,2为结束,3为强制离线
|
|
6854
|
+
# @type StatusSet: Array
|
|
6312
6855
|
# @param Id: 若入参为Id,则其他入参字段不作为搜索依据,仅按照Id来搜索会话
|
|
6313
6856
|
# @type Id: String
|
|
6314
6857
|
# @param AppAssetKindSet: 应用资产类型, 1-web
|
|
@@ -6317,10 +6860,12 @@ module TencentCloud
|
|
|
6317
6860
|
# @type AppAssetUrl: String
|
|
6318
6861
|
# @param DeviceKind: 资产类型
|
|
6319
6862
|
# @type DeviceKind: String
|
|
6863
|
+
# @param DeviceKindSet: 资产类型 Linux, EKS,TKE
|
|
6864
|
+
# @type DeviceKindSet: Array
|
|
6320
6865
|
|
|
6321
|
-
attr_accessor :PrivateIp, :PublicIp, :UserName, :Account, :FromIp, :StartTime, :EndTime, :Kind, :Offset, :Limit, :RealName, :DeviceName, :Status, :Id, :AppAssetKindSet, :AppAssetUrl, :DeviceKind
|
|
6866
|
+
attr_accessor :PrivateIp, :PublicIp, :UserName, :Account, :FromIp, :StartTime, :EndTime, :Kind, :Offset, :Limit, :RealName, :DeviceName, :Status, :StatusSet, :Id, :AppAssetKindSet, :AppAssetUrl, :DeviceKind, :DeviceKindSet
|
|
6322
6867
|
|
|
6323
|
-
def initialize(privateip=nil, publicip=nil, username=nil, account=nil, fromip=nil, starttime=nil, endtime=nil, kind=nil, offset=nil, limit=nil, realname=nil, devicename=nil, status=nil, id=nil, appassetkindset=nil, appasseturl=nil, devicekind=nil)
|
|
6868
|
+
def initialize(privateip=nil, publicip=nil, username=nil, account=nil, fromip=nil, starttime=nil, endtime=nil, kind=nil, offset=nil, limit=nil, realname=nil, devicename=nil, status=nil, statusset=nil, id=nil, appassetkindset=nil, appasseturl=nil, devicekind=nil, devicekindset=nil)
|
|
6324
6869
|
@PrivateIp = privateip
|
|
6325
6870
|
@PublicIp = publicip
|
|
6326
6871
|
@UserName = username
|
|
@@ -6334,10 +6879,12 @@ module TencentCloud
|
|
|
6334
6879
|
@RealName = realname
|
|
6335
6880
|
@DeviceName = devicename
|
|
6336
6881
|
@Status = status
|
|
6882
|
+
@StatusSet = statusset
|
|
6337
6883
|
@Id = id
|
|
6338
6884
|
@AppAssetKindSet = appassetkindset
|
|
6339
6885
|
@AppAssetUrl = appasseturl
|
|
6340
6886
|
@DeviceKind = devicekind
|
|
6887
|
+
@DeviceKindSet = devicekindset
|
|
6341
6888
|
end
|
|
6342
6889
|
|
|
6343
6890
|
def deserialize(params)
|
|
@@ -6354,10 +6901,12 @@ module TencentCloud
|
|
|
6354
6901
|
@RealName = params['RealName']
|
|
6355
6902
|
@DeviceName = params['DeviceName']
|
|
6356
6903
|
@Status = params['Status']
|
|
6904
|
+
@StatusSet = params['StatusSet']
|
|
6357
6905
|
@Id = params['Id']
|
|
6358
6906
|
@AppAssetKindSet = params['AppAssetKindSet']
|
|
6359
6907
|
@AppAssetUrl = params['AppAssetUrl']
|
|
6360
6908
|
@DeviceKind = params['DeviceKind']
|
|
6909
|
+
@DeviceKindSet = params['DeviceKindSet']
|
|
6361
6910
|
end
|
|
6362
6911
|
end
|
|
6363
6912
|
|