tencentcloud-sdk-bh 3.0.1094 → 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.
@@ -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, 7
78
- deprecate :LoginAccount=, :none, 2025, 7
79
- deprecate :LoginPassword, :none, 2025, 7
80
- deprecate :LoginPassword=, :none, 2025, 7
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: 上一次同步完成的时间
@@ -889,10 +921,12 @@ module TencentCloud
889
921
  # @type IpBackup: String
890
922
  # @param DomainId: 网络域id
891
923
  # @type DomainId: String
924
+ # @param AttributeUserName: 用户名称映射属性
925
+ # @type AttributeUserName: String
892
926
 
893
- attr_accessor :Enable, :Ip, :Port, :EnableSSL, :BaseDN, :AdminAccount, :AdminPassword, :IpBackup, :DomainId
927
+ attr_accessor :Enable, :Ip, :Port, :EnableSSL, :BaseDN, :AdminAccount, :AdminPassword, :IpBackup, :DomainId, :AttributeUserName
894
928
 
895
- def initialize(enable=nil, ip=nil, port=nil, enablessl=nil, basedn=nil, adminaccount=nil, adminpassword=nil, ipbackup=nil, domainid=nil)
929
+ def initialize(enable=nil, ip=nil, port=nil, enablessl=nil, basedn=nil, adminaccount=nil, adminpassword=nil, ipbackup=nil, domainid=nil, attributeusername=nil)
896
930
  @Enable = enable
897
931
  @Ip = ip
898
932
  @Port = port
@@ -902,6 +936,7 @@ module TencentCloud
902
936
  @AdminPassword = adminpassword
903
937
  @IpBackup = ipbackup
904
938
  @DomainId = domainid
939
+ @AttributeUserName = attributeusername
905
940
  end
906
941
 
907
942
  def deserialize(params)
@@ -914,6 +949,7 @@ module TencentCloud
914
949
  @AdminPassword = params['AdminPassword']
915
950
  @IpBackup = params['IpBackup']
916
951
  @DomainId = params['DomainId']
952
+ @AttributeUserName = params['AttributeUserName']
917
953
  end
918
954
  end
919
955
 
@@ -2404,6 +2440,8 @@ module TencentCloud
2404
2440
  # @type AuthorizedAppAssetIdSet: Array
2405
2441
  # @param Status: 访问权限状态,1 - 已生效,2 - 未生效,3 - 已过期
2406
2442
  # @type Status: Integer
2443
+ # @param StatusSet: 访问权限状态,1 - 已生效,2 - 未生效,3 - 已过期
2444
+ # @type StatusSet: Array
2407
2445
  # @param DepartmentId: 部门ID,用于过滤属于某个部门的访问权限
2408
2446
  # @type DepartmentId: String
2409
2447
  # @param ExactAccount: 是否根据AuthorizedDeviceIdSet,对资产账号进行精确匹配,默认false, 设置true时,确保AuthorizedDeviceIdSet只有一个元素
@@ -2411,9 +2449,9 @@ module TencentCloud
2411
2449
  # @param Filters: 过滤数组
2412
2450
  # @type Filters: Array
2413
2451
 
2414
- 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
2415
2453
 
2416
- 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)
2417
2455
  @IdSet = idset
2418
2456
  @Name = name
2419
2457
  @Offset = offset
@@ -2423,6 +2461,7 @@ module TencentCloud
2423
2461
  @AuthorizedDeviceIdSet = authorizeddeviceidset
2424
2462
  @AuthorizedAppAssetIdSet = authorizedappassetidset
2425
2463
  @Status = status
2464
+ @StatusSet = statusset
2426
2465
  @DepartmentId = departmentid
2427
2466
  @ExactAccount = exactaccount
2428
2467
  @Filters = filters
@@ -2438,6 +2477,7 @@ module TencentCloud
2438
2477
  @AuthorizedDeviceIdSet = params['AuthorizedDeviceIdSet']
2439
2478
  @AuthorizedAppAssetIdSet = params['AuthorizedAppAssetIdSet']
2440
2479
  @Status = params['Status']
2480
+ @StatusSet = params['StatusSet']
2441
2481
  @DepartmentId = params['DepartmentId']
2442
2482
  @ExactAccount = params['ExactAccount']
2443
2483
  unless params['Filters'].nil?
@@ -2482,6 +2522,40 @@ module TencentCloud
2482
2522
  end
2483
2523
  end
2484
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
+
2485
2559
  # DescribeAssetSyncStatus请求参数结构体
2486
2560
  class DescribeAssetSyncStatusRequest < TencentCloud::Common::AbstractModel
2487
2561
  # @param Category: 查询的资产同步类型。1 -主机资产, 2 - 数据库资产
@@ -2665,17 +2739,20 @@ module TencentCloud
2665
2739
  # @type Name: String
2666
2740
  # @param Type: 命令模板类型 1-内置模板 2-自定义模板
2667
2741
  # @type Type: Integer
2742
+ # @param TypeSet: 命令模板类型 1-内置模板 2-自定义模板
2743
+ # @type TypeSet: Array
2668
2744
  # @param Offset: 分页偏移位置,默认值为0
2669
2745
  # @type Offset: Integer
2670
2746
  # @param Limit: 每页条目数量,默认20
2671
2747
  # @type Limit: Integer
2672
2748
 
2673
- attr_accessor :IdSet, :Name, :Type, :Offset, :Limit
2749
+ attr_accessor :IdSet, :Name, :Type, :TypeSet, :Offset, :Limit
2674
2750
 
2675
- 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)
2676
2752
  @IdSet = idset
2677
2753
  @Name = name
2678
2754
  @Type = type
2755
+ @TypeSet = typeset
2679
2756
  @Offset = offset
2680
2757
  @Limit = limit
2681
2758
  end
@@ -2684,6 +2761,7 @@ module TencentCloud
2684
2761
  @IdSet = params['IdSet']
2685
2762
  @Name = params['Name']
2686
2763
  @Type = params['Type']
2764
+ @TypeSet = params['TypeSet']
2687
2765
  @Offset = params['Offset']
2688
2766
  @Limit = params['Limit']
2689
2767
  end
@@ -2962,15 +3040,21 @@ module TencentCloud
2962
3040
  # @type ManagedAccount: String
2963
3041
  # @param DepartmentId: 过滤条件,可按照部门ID进行过滤
2964
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
2965
3049
  # @param TagFilters: 过滤条件,可按照标签键、标签进行过滤。如果同时指定标签键和标签过滤条件,它们之间为“AND”的关系
2966
3050
  # @type TagFilters: Array
2967
3051
  # @param Filters: 过滤数组。支持的Name:
2968
3052
  # BindingStatus 绑定状态
2969
3053
  # @type Filters: Array
2970
3054
 
2971
- 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
2972
3056
 
2973
- 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)
2974
3058
  @IdSet = idset
2975
3059
  @Name = name
2976
3060
  @Ip = ip
@@ -2983,6 +3067,9 @@ module TencentCloud
2983
3067
  @KindSet = kindset
2984
3068
  @ManagedAccount = managedaccount
2985
3069
  @DepartmentId = departmentid
3070
+ @AccountIdSet = accountidset
3071
+ @ProviderTypeSet = providertypeset
3072
+ @CloudDeviceStatusSet = clouddevicestatusset
2986
3073
  @TagFilters = tagfilters
2987
3074
  @Filters = filters
2988
3075
  end
@@ -3000,6 +3087,9 @@ module TencentCloud
3000
3087
  @KindSet = params['KindSet']
3001
3088
  @ManagedAccount = params['ManagedAccount']
3002
3089
  @DepartmentId = params['DepartmentId']
3090
+ @AccountIdSet = params['AccountIdSet']
3091
+ @ProviderTypeSet = params['ProviderTypeSet']
3092
+ @CloudDeviceStatusSet = params['CloudDeviceStatusSet']
3003
3093
  unless params['TagFilters'].nil?
3004
3094
  @TagFilters = []
3005
3095
  params['TagFilters'].each do |i|
@@ -3202,23 +3292,29 @@ module TencentCloud
3202
3292
  # @type SourceIp: String
3203
3293
  # @param Entry: 登录入口:1-字符界面,2-图形界面,3-web页面, 4-API
3204
3294
  # @type Entry: Integer
3295
+ # @param EntrySet: 登录入口:1-字符界面,2-图形界面,3-web页面, 4-API
3296
+ # @type EntrySet: Array
3205
3297
  # @param Result: 操作结果,1-成功,2-失败
3206
3298
  # @type Result: Integer
3299
+ # @param ResultSet: 操作结果,1-成功,2-失败
3300
+ # @type ResultSet: Array
3207
3301
  # @param Offset: 分页偏移位置,默认值为0
3208
3302
  # @type Offset: Integer
3209
3303
  # @param Limit: 分页每页记录数,默认20
3210
3304
  # @type Limit: Integer
3211
3305
 
3212
- 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
3213
3307
 
3214
- 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)
3215
3309
  @UserName = username
3216
3310
  @RealName = realname
3217
3311
  @StartTime = starttime
3218
3312
  @EndTime = endtime
3219
3313
  @SourceIp = sourceip
3220
3314
  @Entry = entry
3315
+ @EntrySet = entryset
3221
3316
  @Result = result
3317
+ @ResultSet = resultset
3222
3318
  @Offset = offset
3223
3319
  @Limit = limit
3224
3320
  end
@@ -3230,7 +3326,9 @@ module TencentCloud
3230
3326
  @EndTime = params['EndTime']
3231
3327
  @SourceIp = params['SourceIp']
3232
3328
  @Entry = params['Entry']
3329
+ @EntrySet = params['EntrySet']
3233
3330
  @Result = params['Result']
3331
+ @ResultSet = params['ResultSet']
3234
3332
  @Offset = params['Offset']
3235
3333
  @Limit = params['Limit']
3236
3334
  end
@@ -3281,23 +3379,29 @@ module TencentCloud
3281
3379
  # @type SourceIp: String
3282
3380
  # @param Kind: 操作类型,参考DescribeOperationType返回结果
3283
3381
  # @type Kind: Integer
3382
+ # @param KindSet: 操作类型,参考DescribeOperationType返回结果
3383
+ # @type KindSet: Array
3284
3384
  # @param Result: 操作结果,1-成功,2-失败
3285
3385
  # @type Result: Integer
3386
+ # @param ResultSet: 操作结果,1-成功,2-失败
3387
+ # @type ResultSet: Array
3286
3388
  # @param Offset: 分页偏移位置,默认值为0
3287
3389
  # @type Offset: Integer
3288
3390
  # @param Limit: 分页每页记录数,默认20
3289
3391
  # @type Limit: Integer
3290
3392
 
3291
- 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
3292
3394
 
3293
- 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)
3294
3396
  @UserName = username
3295
3397
  @RealName = realname
3296
3398
  @StartTime = starttime
3297
3399
  @EndTime = endtime
3298
3400
  @SourceIp = sourceip
3299
3401
  @Kind = kind
3402
+ @KindSet = kindset
3300
3403
  @Result = result
3404
+ @ResultSet = resultset
3301
3405
  @Offset = offset
3302
3406
  @Limit = limit
3303
3407
  end
@@ -3309,7 +3413,9 @@ module TencentCloud
3309
3413
  @EndTime = params['EndTime']
3310
3414
  @SourceIp = params['SourceIp']
3311
3415
  @Kind = params['Kind']
3416
+ @KindSet = params['KindSet']
3312
3417
  @Result = params['Result']
3418
+ @ResultSet = params['ResultSet']
3313
3419
  @Offset = params['Offset']
3314
3420
  @Limit = params['Limit']
3315
3421
  end
@@ -3468,6 +3574,33 @@ module TencentCloud
3468
3574
  end
3469
3575
  end
3470
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
+
3471
3604
  # DescribeUserGroupMembers请求参数结构体
3472
3605
  class DescribeUserGroupMembersRequest < TencentCloud::Common::AbstractModel
3473
3606
  # @param Id: 用户组ID
@@ -3719,6 +3852,8 @@ module TencentCloud
3719
3852
  # @type PrivateIp: String
3720
3853
  # @param ApCode: 地域编码
3721
3854
  # @type ApCode: String
3855
+ # @param ApName: 地域名称
3856
+ # @type ApName: String
3722
3857
  # @param OsName: 操作系统名称
3723
3858
  # @type OsName: String
3724
3859
  # @param Kind: 资产类型 1 - Linux, 2 - Windows, 3 - MySQL, 4 - SQLServer
@@ -3761,16 +3896,27 @@ module TencentCloud
3761
3896
  # @type SyncPodCount: Integer
3762
3897
  # @param TotalPodCount: K8S集群pod总数量
3763
3898
  # @type TotalPodCount: Integer
3764
-
3765
- attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName, :IOAId, :ManageDimension, :ManageAccountId, :Namespace, :Workload, :SyncPodCount, :TotalPodCount
3766
-
3767
- def initialize(id=nil, instanceid=nil, name=nil, publicip=nil, privateip=nil, apcode=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)
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)
3768
3913
  @Id = id
3769
3914
  @InstanceId = instanceid
3770
3915
  @Name = name
3771
3916
  @PublicIp = publicip
3772
3917
  @PrivateIp = privateip
3773
3918
  @ApCode = apcode
3919
+ @ApName = apname
3774
3920
  @OsName = osname
3775
3921
  @Kind = kind
3776
3922
  @Port = port
@@ -3792,6 +3938,11 @@ module TencentCloud
3792
3938
  @Workload = workload
3793
3939
  @SyncPodCount = syncpodcount
3794
3940
  @TotalPodCount = totalpodcount
3941
+ @CloudAccountId = cloudaccountid
3942
+ @CloudAccountName = cloudaccountname
3943
+ @ProviderType = providertype
3944
+ @ProviderName = providername
3945
+ @SyncCloudDeviceStatus = syncclouddevicestatus
3795
3946
  end
3796
3947
 
3797
3948
  def deserialize(params)
@@ -3801,6 +3952,7 @@ module TencentCloud
3801
3952
  @PublicIp = params['PublicIp']
3802
3953
  @PrivateIp = params['PrivateIp']
3803
3954
  @ApCode = params['ApCode']
3955
+ @ApName = params['ApName']
3804
3956
  @OsName = params['OsName']
3805
3957
  @Kind = params['Kind']
3806
3958
  @Port = params['Port']
@@ -3835,6 +3987,11 @@ module TencentCloud
3835
3987
  @Workload = params['Workload']
3836
3988
  @SyncPodCount = params['SyncPodCount']
3837
3989
  @TotalPodCount = params['TotalPodCount']
3990
+ @CloudAccountId = params['CloudAccountId']
3991
+ @CloudAccountName = params['CloudAccountName']
3992
+ @ProviderType = params['ProviderType']
3993
+ @ProviderName = params['ProviderName']
3994
+ @SyncCloudDeviceStatus = params['SyncCloudDeviceStatus']
3838
3995
  end
3839
3996
  end
3840
3997
 
@@ -3878,6 +4035,70 @@ module TencentCloud
3878
4035
  end
3879
4036
  end
3880
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
+
3881
4102
  # 网络域
3882
4103
  class Domain < TencentCloud::Common::AbstractModel
3883
4104
  # @param Id: 自增id
@@ -3926,6 +4147,86 @@ module TencentCloud
3926
4147
  end
3927
4148
  end
3928
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
+
3929
4230
  # 主机参数,导入外部主机时使用
3930
4231
  class ExternalDevice < TencentCloud::Common::AbstractModel
3931
4232
  # @param OsName: 操作系统名称,只能是Linux、Windows或MySQL
@@ -3946,10 +4247,22 @@ module TencentCloud
3946
4247
  # @type SSLCert: String
3947
4248
  # @param SSLCertName: SSL证书名称,EnableSSL时必填
3948
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
3949
4262
 
3950
- 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
3951
4264
 
3952
- 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)
3953
4266
  @OsName = osname
3954
4267
  @Ip = ip
3955
4268
  @Port = port
@@ -3959,6 +4272,12 @@ module TencentCloud
3959
4272
  @EnableSSL = enablessl
3960
4273
  @SSLCert = sslcert
3961
4274
  @SSLCertName = sslcertname
4275
+ @InstanceId = instanceid
4276
+ @ApCode = apcode
4277
+ @ApName = apname
4278
+ @VpcId = vpcid
4279
+ @SubnetId = subnetid
4280
+ @PublicIp = publicip
3962
4281
  end
3963
4282
 
3964
4283
  def deserialize(params)
@@ -3971,6 +4290,12 @@ module TencentCloud
3971
4290
  @EnableSSL = params['EnableSSL']
3972
4291
  @SSLCert = params['SSLCert']
3973
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']
3974
4299
  end
3975
4300
  end
3976
4301
 
@@ -4063,11 +4388,14 @@ module TencentCloud
4063
4388
  class ImportExternalDeviceRequest < TencentCloud::Common::AbstractModel
4064
4389
  # @param DeviceSet: 资产参数列表
4065
4390
  # @type DeviceSet: Array
4391
+ # @param AccountId: 资产所属云账号id
4392
+ # @type AccountId: Integer
4066
4393
 
4067
- attr_accessor :DeviceSet
4394
+ attr_accessor :DeviceSet, :AccountId
4068
4395
 
4069
- def initialize(deviceset=nil)
4396
+ def initialize(deviceset=nil, accountid=nil)
4070
4397
  @DeviceSet = deviceset
4398
+ @AccountId = accountid
4071
4399
  end
4072
4400
 
4073
4401
  def deserialize(params)
@@ -4079,6 +4407,7 @@ module TencentCloud
4079
4407
  @DeviceSet << externaldevice_tmp
4080
4408
  end
4081
4409
  end
4410
+ @AccountId = params['AccountId']
4082
4411
  end
4083
4412
  end
4084
4413
 
@@ -4138,6 +4467,110 @@ module TencentCloud
4138
4467
  end
4139
4468
  end
4140
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
+
4141
4574
  # ModifyAcl请求参数结构体
4142
4575
  class ModifyAclRequest < TencentCloud::Common::AbstractModel
4143
4576
  # @param Name: 访问权限名称,最大32字符,不能包含空白字符
@@ -4288,6 +4721,74 @@ module TencentCloud
4288
4721
  end
4289
4722
  end
4290
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
+
4291
4792
  # ModifyChangePwdTask请求参数结构体
4292
4793
  class ModifyChangePwdTaskRequest < TencentCloud::Common::AbstractModel
4293
4794
  # @param OperationId: 改密任务id
@@ -4773,6 +5274,42 @@ module TencentCloud
4773
5274
  end
4774
5275
  end
4775
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
+
4776
5313
  # ModifyResource请求参数结构体
4777
5314
  class ModifyResourceRequest < TencentCloud::Common::AbstractModel
4778
5315
  # @param ResourceId: 需要开通服务的资源ID
@@ -4794,8 +5331,8 @@ module TencentCloud
4794
5331
 
4795
5332
  attr_accessor :ResourceId, :Status, :ResourceEdition, :ResourceNode, :AutoRenewFlag, :PackageBandwidth, :PackageNode, :LogDelivery
4796
5333
  extend Gem::Deprecate
4797
- deprecate :Status, :none, 2025, 7
4798
- deprecate :Status=, :none, 2025, 7
5334
+ deprecate :Status, :none, 2025, 11
5335
+ deprecate :Status=, :none, 2025, 11
4799
5336
 
4800
5337
  def initialize(resourceid=nil, status=nil, resourceedition=nil, resourcenode=nil, autorenewflag=nil, packagebandwidth=nil, packagenode=nil, logdelivery=nil)
4801
5338
  @ResourceId = resourceid
@@ -5283,6 +5820,8 @@ module TencentCloud
5283
5820
  # @type IntranetVpcId: String
5284
5821
  # @param IntranetVpcCidr: 开通内网访问vpc的网段
5285
5822
  # @type IntranetVpcCidr: String
5823
+ # @param DomainName: 堡垒机内网ip自定义域名
5824
+ # @type DomainName: String
5286
5825
  # @param ShareClb: 是否共享clb,true-共享clb,false-独享clb
5287
5826
  # @type ShareClb: Boolean
5288
5827
  # @param OpenClbId: 共享clb id
@@ -5308,9 +5847,9 @@ module TencentCloud
5308
5847
  # @param IOAResourceId: 堡垒机实例对应的零信任实例id
5309
5848
  # @type IOAResourceId: String
5310
5849
 
5311
- 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
5312
5851
 
5313
- 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)
5314
5853
  @ResourceId = resourceid
5315
5854
  @ApCode = apcode
5316
5855
  @SvArgs = svargs
@@ -5351,6 +5890,7 @@ module TencentCloud
5351
5890
  @IntranetPrivateIpSet = intranetprivateipset
5352
5891
  @IntranetVpcId = intranetvpcid
5353
5892
  @IntranetVpcCidr = intranetvpccidr
5893
+ @DomainName = domainname
5354
5894
  @ShareClb = shareclb
5355
5895
  @OpenClbId = openclbid
5356
5896
  @LbVipIsp = lbvipisp
@@ -5413,6 +5953,7 @@ module TencentCloud
5413
5953
  @IntranetPrivateIpSet = params['IntranetPrivateIpSet']
5414
5954
  @IntranetVpcId = params['IntranetVpcId']
5415
5955
  @IntranetVpcCidr = params['IntranetVpcCidr']
5956
+ @DomainName = params['DomainName']
5416
5957
  @ShareClb = params['ShareClb']
5417
5958
  @OpenClbId = params['OpenClbId']
5418
5959
  @LbVipIsp = params['LbVipIsp']
@@ -5857,18 +6398,21 @@ module TencentCloud
5857
6398
  # @type Offset: Integer
5858
6399
  # @param AuditAction: 1-已执行, 2-被阻断
5859
6400
  # @type AuditAction: Integer
6401
+ # @param AuditActionSet: 1-已执行, 2-被阻断
6402
+ # @type AuditActionSet: Array
5860
6403
  # @param TypeFilters: 以Protocol和Method为条件查询
5861
6404
  # @type TypeFilters: Array
5862
6405
 
5863
- attr_accessor :Sid, :AuditLog, :Limit, :FileName, :Offset, :AuditAction, :TypeFilters
6406
+ attr_accessor :Sid, :AuditLog, :Limit, :FileName, :Offset, :AuditAction, :AuditActionSet, :TypeFilters
5864
6407
 
5865
- 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)
5866
6409
  @Sid = sid
5867
6410
  @AuditLog = auditlog
5868
6411
  @Limit = limit
5869
6412
  @FileName = filename
5870
6413
  @Offset = offset
5871
6414
  @AuditAction = auditaction
6415
+ @AuditActionSet = auditactionset
5872
6416
  @TypeFilters = typefilters
5873
6417
  end
5874
6418
 
@@ -5879,6 +6423,7 @@ module TencentCloud
5879
6423
  @FileName = params['FileName']
5880
6424
  @Offset = params['Offset']
5881
6425
  @AuditAction = params['AuditAction']
6426
+ @AuditActionSet = params['AuditActionSet']
5882
6427
  unless params['TypeFilters'].nil?
5883
6428
  @TypeFilters = []
5884
6429
  params['TypeFilters'].each do |i|
@@ -6305,6 +6850,8 @@ module TencentCloud
6305
6850
  # @type DeviceName: String
6306
6851
  # @param Status: 状态,1为活跃,2为结束,3为强制离线,4为其他错误
6307
6852
  # @type Status: Integer
6853
+ # @param StatusSet: 状态,1为活跃,2为结束,3为强制离线
6854
+ # @type StatusSet: Array
6308
6855
  # @param Id: 若入参为Id,则其他入参字段不作为搜索依据,仅按照Id来搜索会话
6309
6856
  # @type Id: String
6310
6857
  # @param AppAssetKindSet: 应用资产类型, 1-web
@@ -6313,10 +6860,12 @@ module TencentCloud
6313
6860
  # @type AppAssetUrl: String
6314
6861
  # @param DeviceKind: 资产类型
6315
6862
  # @type DeviceKind: String
6863
+ # @param DeviceKindSet: 资产类型 Linux, EKS,TKE
6864
+ # @type DeviceKindSet: Array
6316
6865
 
6317
- 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
6318
6867
 
6319
- 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)
6320
6869
  @PrivateIp = privateip
6321
6870
  @PublicIp = publicip
6322
6871
  @UserName = username
@@ -6330,10 +6879,12 @@ module TencentCloud
6330
6879
  @RealName = realname
6331
6880
  @DeviceName = devicename
6332
6881
  @Status = status
6882
+ @StatusSet = statusset
6333
6883
  @Id = id
6334
6884
  @AppAssetKindSet = appassetkindset
6335
6885
  @AppAssetUrl = appasseturl
6336
6886
  @DeviceKind = devicekind
6887
+ @DeviceKindSet = devicekindset
6337
6888
  end
6338
6889
 
6339
6890
  def deserialize(params)
@@ -6350,10 +6901,12 @@ module TencentCloud
6350
6901
  @RealName = params['RealName']
6351
6902
  @DeviceName = params['DeviceName']
6352
6903
  @Status = params['Status']
6904
+ @StatusSet = params['StatusSet']
6353
6905
  @Id = params['Id']
6354
6906
  @AppAssetKindSet = params['AppAssetKindSet']
6355
6907
  @AppAssetUrl = params['AppAssetUrl']
6356
6908
  @DeviceKind = params['DeviceKind']
6909
+ @DeviceKindSet = params['DeviceKindSet']
6357
6910
  end
6358
6911
  end
6359
6912