tencentcloud-sdk-bh 3.0.1059 → 3.0.1060
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/models.rb +82 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 539c477cdb1086ca015459943ee12066e553c2b7
|
4
|
+
data.tar.gz: 9d852b2ff6bfaf0ef67eee980886e7d1b63b037c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cd948ab3c98adc0e50bc7071fa810575334980618a0994735ef86edf1637548473b62cc35fd31c4d58ff91194e0de2f6711b10be6d4d84fac98b7c47904c9aa
|
7
|
+
data.tar.gz: 3e7abb510d0005165bfb25659972b24fa45193f39bba8df11f2565076a3e68336fa896371439be9ecd5f28828ced82943ecba2ba3dd64b3c6575fc8fc5dbe7d4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1060
|
data/lib/v20230418/models.rb
CHANGED
@@ -572,19 +572,23 @@ module TencentCloud
|
|
572
572
|
# @type LastStatus: Integer
|
573
573
|
# @param InProcess: 同步任务是否正在进行中
|
574
574
|
# @type InProcess: Boolean
|
575
|
+
# @param ErrMsg: 任务错误消息
|
576
|
+
# @type ErrMsg: String
|
575
577
|
|
576
|
-
attr_accessor :LastTime, :LastStatus, :InProcess
|
578
|
+
attr_accessor :LastTime, :LastStatus, :InProcess, :ErrMsg
|
577
579
|
|
578
|
-
def initialize(lasttime=nil, laststatus=nil, inprocess=nil)
|
580
|
+
def initialize(lasttime=nil, laststatus=nil, inprocess=nil, errmsg=nil)
|
579
581
|
@LastTime = lasttime
|
580
582
|
@LastStatus = laststatus
|
581
583
|
@InProcess = inprocess
|
584
|
+
@ErrMsg = errmsg
|
582
585
|
end
|
583
586
|
|
584
587
|
def deserialize(params)
|
585
588
|
@LastTime = params['LastTime']
|
586
589
|
@LastStatus = params['LastStatus']
|
587
590
|
@InProcess = params['InProcess']
|
591
|
+
@ErrMsg = params['ErrMsg']
|
588
592
|
end
|
589
593
|
end
|
590
594
|
|
@@ -3355,16 +3359,20 @@ module TencentCloud
|
|
3355
3359
|
# @type AuthorizedDeviceIdSet: Array
|
3356
3360
|
# @param AuthorizedAppAssetIdSet: 查询具有指定应用资产ID访问权限的用户
|
3357
3361
|
# @type AuthorizedAppAssetIdSet: Array
|
3358
|
-
# @param AuthTypeSet: 认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 不传为全部
|
3362
|
+
# @param AuthTypeSet: 认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 3-ioa 不传为全部
|
3359
3363
|
# @type AuthTypeSet: Array
|
3360
3364
|
# @param DepartmentId: 部门ID,用于过滤属于某个部门的用户
|
3361
3365
|
# @type DepartmentId: String
|
3362
3366
|
# @param Filters: 参数过滤数组
|
3363
3367
|
# @type Filters: Array
|
3368
|
+
# @param IsCamUser: 是否获取cam用户, 0-否,1-是
|
3369
|
+
# @type IsCamUser: Integer
|
3370
|
+
# @param UserFromSet: 用户来源,0-bh,1-ioa,不传为全部
|
3371
|
+
# @type UserFromSet: Array
|
3364
3372
|
|
3365
|
-
attr_accessor :IdSet, :Name, :Offset, :Limit, :UserName, :Phone, :Email, :AuthorizedDeviceIdSet, :AuthorizedAppAssetIdSet, :AuthTypeSet, :DepartmentId, :Filters
|
3373
|
+
attr_accessor :IdSet, :Name, :Offset, :Limit, :UserName, :Phone, :Email, :AuthorizedDeviceIdSet, :AuthorizedAppAssetIdSet, :AuthTypeSet, :DepartmentId, :Filters, :IsCamUser, :UserFromSet
|
3366
3374
|
|
3367
|
-
def initialize(idset=nil, name=nil, offset=nil, limit=nil, username=nil, phone=nil, email=nil, authorizeddeviceidset=nil, authorizedappassetidset=nil, authtypeset=nil, departmentid=nil, filters=nil)
|
3375
|
+
def initialize(idset=nil, name=nil, offset=nil, limit=nil, username=nil, phone=nil, email=nil, authorizeddeviceidset=nil, authorizedappassetidset=nil, authtypeset=nil, departmentid=nil, filters=nil, iscamuser=nil, userfromset=nil)
|
3368
3376
|
@IdSet = idset
|
3369
3377
|
@Name = name
|
3370
3378
|
@Offset = offset
|
@@ -3377,6 +3385,8 @@ module TencentCloud
|
|
3377
3385
|
@AuthTypeSet = authtypeset
|
3378
3386
|
@DepartmentId = departmentid
|
3379
3387
|
@Filters = filters
|
3388
|
+
@IsCamUser = iscamuser
|
3389
|
+
@UserFromSet = userfromset
|
3380
3390
|
end
|
3381
3391
|
|
3382
3392
|
def deserialize(params)
|
@@ -3399,6 +3409,8 @@ module TencentCloud
|
|
3399
3409
|
@Filters << filter_tmp
|
3400
3410
|
end
|
3401
3411
|
end
|
3412
|
+
@IsCamUser = params['IsCamUser']
|
3413
|
+
@UserFromSet = params['UserFromSet']
|
3402
3414
|
end
|
3403
3415
|
end
|
3404
3416
|
|
@@ -3475,10 +3487,12 @@ module TencentCloud
|
|
3475
3487
|
# @type EnableSSL: Integer
|
3476
3488
|
# @param SSLCertName: 已上传的SSL证书名称
|
3477
3489
|
# @type SSLCertName: String
|
3490
|
+
# @param IOAId: IOA侧的资源ID
|
3491
|
+
# @type IOAId: Integer
|
3478
3492
|
|
3479
|
-
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName
|
3493
|
+
attr_accessor :Id, :InstanceId, :Name, :PublicIp, :PrivateIp, :ApCode, :OsName, :Kind, :Port, :GroupSet, :AccountCount, :VpcId, :SubnetId, :Resource, :Department, :IpPortSet, :DomainId, :DomainName, :EnableSSL, :SSLCertName, :IOAId
|
3480
3494
|
|
3481
|
-
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)
|
3495
|
+
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)
|
3482
3496
|
@Id = id
|
3483
3497
|
@InstanceId = instanceid
|
3484
3498
|
@Name = name
|
@@ -3499,6 +3513,7 @@ module TencentCloud
|
|
3499
3513
|
@DomainName = domainname
|
3500
3514
|
@EnableSSL = enablessl
|
3501
3515
|
@SSLCertName = sslcertname
|
3516
|
+
@IOAId = ioaid
|
3502
3517
|
end
|
3503
3518
|
|
3504
3519
|
def deserialize(params)
|
@@ -3535,6 +3550,7 @@ module TencentCloud
|
|
3535
3550
|
@DomainName = params['DomainName']
|
3536
3551
|
@EnableSSL = params['EnableSSL']
|
3537
3552
|
@SSLCertName = params['SSLCertName']
|
3553
|
+
@IOAId = params['IOAId']
|
3538
3554
|
end
|
3539
3555
|
end
|
3540
3556
|
|
@@ -3719,6 +3735,38 @@ module TencentCloud
|
|
3719
3735
|
end
|
3720
3736
|
end
|
3721
3737
|
|
3738
|
+
# 同步过来的ioa用户分组信息
|
3739
|
+
class IOAUserGroup < TencentCloud::Common::AbstractModel
|
3740
|
+
# @param OrgId: ioa用户组织id
|
3741
|
+
# @type OrgId: Integer
|
3742
|
+
# @param OrgName: ioa用户组织名称
|
3743
|
+
# @type OrgName: String
|
3744
|
+
# @param OrgIdPath: ioa用户组织id路径
|
3745
|
+
# @type OrgIdPath: String
|
3746
|
+
# @param OrgNamePath: ioa用户组织名称路径
|
3747
|
+
# @type OrgNamePath: String
|
3748
|
+
# @param Source: ioa关联用户源类型
|
3749
|
+
# @type Source: Integer
|
3750
|
+
|
3751
|
+
attr_accessor :OrgId, :OrgName, :OrgIdPath, :OrgNamePath, :Source
|
3752
|
+
|
3753
|
+
def initialize(orgid=nil, orgname=nil, orgidpath=nil, orgnamepath=nil, source=nil)
|
3754
|
+
@OrgId = orgid
|
3755
|
+
@OrgName = orgname
|
3756
|
+
@OrgIdPath = orgidpath
|
3757
|
+
@OrgNamePath = orgnamepath
|
3758
|
+
@Source = source
|
3759
|
+
end
|
3760
|
+
|
3761
|
+
def deserialize(params)
|
3762
|
+
@OrgId = params['OrgId']
|
3763
|
+
@OrgName = params['OrgName']
|
3764
|
+
@OrgIdPath = params['OrgIdPath']
|
3765
|
+
@OrgNamePath = params['OrgNamePath']
|
3766
|
+
@Source = params['Source']
|
3767
|
+
end
|
3768
|
+
end
|
3769
|
+
|
3722
3770
|
# ImportExternalDevice请求参数结构体
|
3723
3771
|
class ImportExternalDeviceRequest < TencentCloud::Common::AbstractModel
|
3724
3772
|
# @param DeviceSet: 资产参数列表
|
@@ -4784,10 +4832,16 @@ module TencentCloud
|
|
4784
4832
|
# @type ClientAccess: Integer
|
4785
4833
|
# @param ExternalAccess: 1 默认值,外网访问开启,0 外网访问关闭,2 外网访问开通中,3 外网访问关闭中
|
4786
4834
|
# @type ExternalAccess: Integer
|
4835
|
+
# @param IOAResource: 0默认值。0-免费版(试用版)ioa,1-付费版ioa
|
4836
|
+
# @type IOAResource: Integer
|
4837
|
+
# @param PackageIOAUserCount: 零信任堡垒机用户扩展包个数。1个扩展包对应20个用户数
|
4838
|
+
# @type PackageIOAUserCount: Integer
|
4839
|
+
# @param PackageIOABandwidth: 零信任堡垒机带宽扩展包个数。一个扩展包表示4M带宽
|
4840
|
+
# @type PackageIOABandwidth: Integer
|
4787
4841
|
|
4788
|
-
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
|
4842
|
+
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
|
4789
4843
|
|
4790
|
-
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)
|
4844
|
+
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)
|
4791
4845
|
@ResourceId = resourceid
|
4792
4846
|
@ApCode = apcode
|
4793
4847
|
@SvArgs = svargs
|
@@ -4836,6 +4890,9 @@ module TencentCloud
|
|
4836
4890
|
@WebAccess = webaccess
|
4837
4891
|
@ClientAccess = clientaccess
|
4838
4892
|
@ExternalAccess = externalaccess
|
4893
|
+
@IOAResource = ioaresource
|
4894
|
+
@PackageIOAUserCount = packageioausercount
|
4895
|
+
@PackageIOABandwidth = packageioabandwidth
|
4839
4896
|
end
|
4840
4897
|
|
4841
4898
|
def deserialize(params)
|
@@ -4894,6 +4951,9 @@ module TencentCloud
|
|
4894
4951
|
@WebAccess = params['WebAccess']
|
4895
4952
|
@ClientAccess = params['ClientAccess']
|
4896
4953
|
@ExternalAccess = params['ExternalAccess']
|
4954
|
+
@IOAResource = params['IOAResource']
|
4955
|
+
@PackageIOAUserCount = params['PackageIOAUserCount']
|
4956
|
+
@PackageIOABandwidth = params['PackageIOABandwidth']
|
4897
4957
|
end
|
4898
4958
|
end
|
4899
4959
|
|
@@ -6174,10 +6234,14 @@ module TencentCloud
|
|
6174
6234
|
# @type Status: String
|
6175
6235
|
# @param AclVersion: 权限版本
|
6176
6236
|
# @type AclVersion: Integer
|
6237
|
+
# @param UserFrom: 用户来源,0-bh,1-ioa
|
6238
|
+
# @type UserFrom: Integer
|
6239
|
+
# @param IOAUserGroup: ioa同步过来的用户相关信息
|
6240
|
+
# @type IOAUserGroup: :class:`Tencentcloud::Bh.v20230418.models.IOAUserGroup`
|
6177
6241
|
|
6178
|
-
attr_accessor :UserName, :RealName, :Id, :Phone, :Email, :ValidateFrom, :ValidateTo, :GroupSet, :AuthType, :ValidateTime, :Department, :DepartmentId, :ActiveStatus, :LockStatus, :UKeyStatus, :Status, :AclVersion
|
6242
|
+
attr_accessor :UserName, :RealName, :Id, :Phone, :Email, :ValidateFrom, :ValidateTo, :GroupSet, :AuthType, :ValidateTime, :Department, :DepartmentId, :ActiveStatus, :LockStatus, :UKeyStatus, :Status, :AclVersion, :UserFrom, :IOAUserGroup
|
6179
6243
|
|
6180
|
-
def initialize(username=nil, realname=nil, id=nil, phone=nil, email=nil, validatefrom=nil, validateto=nil, groupset=nil, authtype=nil, validatetime=nil, department=nil, departmentid=nil, activestatus=nil, lockstatus=nil, ukeystatus=nil, status=nil, aclversion=nil)
|
6244
|
+
def initialize(username=nil, realname=nil, id=nil, phone=nil, email=nil, validatefrom=nil, validateto=nil, groupset=nil, authtype=nil, validatetime=nil, department=nil, departmentid=nil, activestatus=nil, lockstatus=nil, ukeystatus=nil, status=nil, aclversion=nil, userfrom=nil, ioausergroup=nil)
|
6181
6245
|
@UserName = username
|
6182
6246
|
@RealName = realname
|
6183
6247
|
@Id = id
|
@@ -6195,6 +6259,8 @@ module TencentCloud
|
|
6195
6259
|
@UKeyStatus = ukeystatus
|
6196
6260
|
@Status = status
|
6197
6261
|
@AclVersion = aclversion
|
6262
|
+
@UserFrom = userfrom
|
6263
|
+
@IOAUserGroup = ioausergroup
|
6198
6264
|
end
|
6199
6265
|
|
6200
6266
|
def deserialize(params)
|
@@ -6225,6 +6291,11 @@ module TencentCloud
|
|
6225
6291
|
@UKeyStatus = params['UKeyStatus']
|
6226
6292
|
@Status = params['Status']
|
6227
6293
|
@AclVersion = params['AclVersion']
|
6294
|
+
@UserFrom = params['UserFrom']
|
6295
|
+
unless params['IOAUserGroup'].nil?
|
6296
|
+
@IOAUserGroup = IOAUserGroup.new
|
6297
|
+
@IOAUserGroup.deserialize(params['IOAUserGroup'])
|
6298
|
+
end
|
6228
6299
|
end
|
6229
6300
|
end
|
6230
6301
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-bh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1060
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|