tencentcloud-sdk-ioa 3.0.1131 → 3.0.1137

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 11b65d4640e97b3288aa998e402b994bc732559a
4
- data.tar.gz: 2b7598ebfbd288602a44518b6ea9e772f6441ecd
3
+ metadata.gz: b00b8a02dc14eb7eb7f58d0c5c22e5d25bf614cb
4
+ data.tar.gz: 68b9382adef5372869d45f268ff5883c98c6faa4
5
5
  SHA512:
6
- metadata.gz: 483c9c134b92d58a6f9778548725940d0900a1c6ec2389f42e10b9ca452886cc711a2606fee97b871d2b7ec6086b192dc288862dc44507f38a9f74b5dbe92e05
7
- data.tar.gz: 56204242f37537a490e61ce569511c07792031c96ae627ff09f8335692c610cdaf35a181bb259b7306dc6ae1bf42f140af47651752ca0af83a619d0095d1ad22
6
+ metadata.gz: 6b520506f77aba837372295c5e64fbe687b418628f0daa901592c728bf912419f0439e164a7eb0523d6767aa0e39e064e9edabe024b9169e87bf6ccdb9c94b30
7
+ data.tar.gz: 91cd7367dc802ad12ddd9d3ed8e276d64442346feff6bad72022c6b3ddd591665cdc868d964db28a046252725aceb8873e026ee2cc5cfbb2f7337d8ca1552c36
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1131
1
+ 3.0.1137
@@ -173,6 +173,54 @@ module TencentCloud
173
173
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
174
174
  end
175
175
 
176
+ # 聚合的软件详情
177
+
178
+ # @param request: Request instance for DescribeAggrSoftDetail.
179
+ # @type request: :class:`Tencentcloud::ioa::V20220601::DescribeAggrSoftDetailRequest`
180
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::DescribeAggrSoftDetailResponse`
181
+ def DescribeAggrSoftDetail(request)
182
+ body = send_request('DescribeAggrSoftDetail', request.serialize)
183
+ response = JSON.parse(body)
184
+ if response['Response'].key?('Error') == false
185
+ model = DescribeAggrSoftDetailResponse.new
186
+ model.deserialize(response['Response'])
187
+ model
188
+ else
189
+ code = response['Response']['Error']['Code']
190
+ message = response['Response']['Error']['Message']
191
+ reqid = response['Response']['RequestId']
192
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
193
+ end
194
+ rescue TencentCloud::Common::TencentCloudSDKException => e
195
+ raise e
196
+ rescue StandardError => e
197
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
198
+ end
199
+
200
+ # 聚合软件的已安装终端列表
201
+
202
+ # @param request: Request instance for DescribeAggrSoftDeviceList.
203
+ # @type request: :class:`Tencentcloud::ioa::V20220601::DescribeAggrSoftDeviceListRequest`
204
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::DescribeAggrSoftDeviceListResponse`
205
+ def DescribeAggrSoftDeviceList(request)
206
+ body = send_request('DescribeAggrSoftDeviceList', request.serialize)
207
+ response = JSON.parse(body)
208
+ if response['Response'].key?('Error') == false
209
+ model = DescribeAggrSoftDeviceListResponse.new
210
+ model.deserialize(response['Response'])
211
+ model
212
+ else
213
+ code = response['Response']['Error']['Code']
214
+ message = response['Response']['Error']['Message']
215
+ reqid = response['Response']['RequestId']
216
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
217
+ end
218
+ rescue TencentCloud::Common::TencentCloudSDKException => e
219
+ raise e
220
+ rescue StandardError => e
221
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
+ end
223
+
176
224
  # webservice查询文件检测结果
177
225
 
178
226
  # @param request: Request instance for DescribeDLPFileDetectResult.
@@ -221,6 +269,30 @@ module TencentCloud
221
269
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
270
  end
223
271
 
272
+ # 基于软件查看终端详情列表,私有化调用path为:capi/Software/DescribeDeviceDetailList
273
+
274
+ # @param request: Request instance for DescribeDeviceDetailList.
275
+ # @type request: :class:`Tencentcloud::ioa::V20220601::DescribeDeviceDetailListRequest`
276
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::DescribeDeviceDetailListResponse`
277
+ def DescribeDeviceDetailList(request)
278
+ body = send_request('DescribeDeviceDetailList', request.serialize)
279
+ response = JSON.parse(body)
280
+ if response['Response'].key?('Error') == false
281
+ model = DescribeDeviceDetailListResponse.new
282
+ model.deserialize(response['Response'])
283
+ model
284
+ else
285
+ code = response['Response']['Error']['Code']
286
+ message = response['Response']['Error']['Message']
287
+ reqid = response['Response']['RequestId']
288
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
289
+ end
290
+ rescue TencentCloud::Common::TencentCloudSDKException => e
291
+ raise e
292
+ rescue StandardError => e
293
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
294
+ end
295
+
224
296
  # 查询满足条件的查询终端硬件信息列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceHardwareInfoList
225
297
 
226
298
  # @param request: Request instance for DescribeDeviceHardwareInfoList.
@@ -437,6 +509,30 @@ module TencentCloud
437
509
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
438
510
  end
439
511
 
512
+ # 导出基于指定终端查看软件信息详情列表查询,私有化调用path为:capi/Software/ExportSoftwareInformationList
513
+
514
+ # @param request: Request instance for ExportSoftwareInformationList.
515
+ # @type request: :class:`Tencentcloud::ioa::V20220601::ExportSoftwareInformationListRequest`
516
+ # @rtype: :class:`Tencentcloud::ioa::V20220601::ExportSoftwareInformationListResponse`
517
+ def ExportSoftwareInformationList(request)
518
+ body = send_request('ExportSoftwareInformationList', request.serialize)
519
+ response = JSON.parse(body)
520
+ if response['Response'].key?('Error') == false
521
+ model = ExportSoftwareInformationListResponse.new
522
+ model.deserialize(response['Response'])
523
+ model
524
+ else
525
+ code = response['Response']['Error']['Code']
526
+ message = response['Response']['Error']['Message']
527
+ reqid = response['Response']['RequestId']
528
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
529
+ end
530
+ rescue TencentCloud::Common::TencentCloudSDKException => e
531
+ raise e
532
+ rescue StandardError => e
533
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
534
+ end
535
+
440
536
  # 终端自定义分组增减终端,私有化调用path为:/capi/Assets/Device/ModifyVirtualDeviceGroups
441
537
 
442
538
  # @param request: Request instance for ModifyVirtualDeviceGroups.
@@ -88,6 +88,105 @@ module TencentCloud
88
88
  end
89
89
  end
90
90
 
91
+ # 聚合软件的已安装终端列表中的一行数据
92
+ class AggrSoftDeviceRow < TencentCloud::Common::AbstractModel
93
+ # @param DeviceName: 终端名
94
+ # 注意:此字段可能返回 null,表示取不到有效值。
95
+ # @type DeviceName: String
96
+ # @param LastLoginAccount: 最近登录账号
97
+ # 注意:此字段可能返回 null,表示取不到有效值。
98
+ # @type LastLoginAccount: String
99
+ # @param DeviceUserName: 终端用户名
100
+ # 注意:此字段可能返回 null,表示取不到有效值。
101
+ # @type DeviceUserName: String
102
+ # @param Version: 软件版本
103
+ # 注意:此字段可能返回 null,表示取不到有效值。
104
+ # @type Version: String
105
+ # @param PiracyRisk: 是否盗版
106
+ # 注意:此字段可能返回 null,表示取不到有效值。
107
+ # @type PiracyRisk: Integer
108
+ # @param PiracyReason: 盗版原因
109
+ # 注意:此字段可能返回 null,表示取不到有效值。
110
+ # @type PiracyReason: String
111
+ # @param InstallTime: 安装时间
112
+ # 注意:此字段可能返回 null,表示取不到有效值。
113
+ # @type InstallTime: String
114
+ # @param UserPath: 用户目录
115
+ # 注意:此字段可能返回 null,表示取不到有效值。
116
+ # @type UserPath: String
117
+ # @param UserGroup: 所在分组
118
+ # 注意:此字段可能返回 null,表示取不到有效值。
119
+ # @type UserGroup: String
120
+ # @param IP: IP
121
+ # 注意:此字段可能返回 null,表示取不到有效值。
122
+ # @type IP: String
123
+ # @param MAC: MAC
124
+ # 注意:此字段可能返回 null,表示取不到有效值。
125
+ # @type MAC: String
126
+ # @param UseTime: 使用时长
127
+ # 注意:此字段可能返回 null,表示取不到有效值。
128
+ # @type UseTime: Integer
129
+ # @param DeviceId: 设备ID
130
+ # 注意:此字段可能返回 null,表示取不到有效值。
131
+ # @type DeviceId: Integer
132
+ # @param FullSoftName: 软件全名
133
+ # 注意:此字段可能返回 null,表示取不到有效值。
134
+ # @type FullSoftName: String
135
+ # @param Id: 数据ID(唯一)
136
+ # 注意:此字段可能返回 null,表示取不到有效值。
137
+ # @type Id: Integer
138
+ # @param NewVersion: 该终端此款软件可升级到的目标版本号
139
+ # @type NewVersion: String
140
+ # @param UpgradeSoftId: 该软件对应运营配置的可升级id
141
+ # @type UpgradeSoftId: Integer
142
+ # @param RemarkName: 终端备注名
143
+ # @type RemarkName: String
144
+
145
+ attr_accessor :DeviceName, :LastLoginAccount, :DeviceUserName, :Version, :PiracyRisk, :PiracyReason, :InstallTime, :UserPath, :UserGroup, :IP, :MAC, :UseTime, :DeviceId, :FullSoftName, :Id, :NewVersion, :UpgradeSoftId, :RemarkName
146
+
147
+ def initialize(devicename=nil, lastloginaccount=nil, deviceusername=nil, version=nil, piracyrisk=nil, piracyreason=nil, installtime=nil, userpath=nil, usergroup=nil, ip=nil, mac=nil, usetime=nil, deviceid=nil, fullsoftname=nil, id=nil, newversion=nil, upgradesoftid=nil, remarkname=nil)
148
+ @DeviceName = devicename
149
+ @LastLoginAccount = lastloginaccount
150
+ @DeviceUserName = deviceusername
151
+ @Version = version
152
+ @PiracyRisk = piracyrisk
153
+ @PiracyReason = piracyreason
154
+ @InstallTime = installtime
155
+ @UserPath = userpath
156
+ @UserGroup = usergroup
157
+ @IP = ip
158
+ @MAC = mac
159
+ @UseTime = usetime
160
+ @DeviceId = deviceid
161
+ @FullSoftName = fullsoftname
162
+ @Id = id
163
+ @NewVersion = newversion
164
+ @UpgradeSoftId = upgradesoftid
165
+ @RemarkName = remarkname
166
+ end
167
+
168
+ def deserialize(params)
169
+ @DeviceName = params['DeviceName']
170
+ @LastLoginAccount = params['LastLoginAccount']
171
+ @DeviceUserName = params['DeviceUserName']
172
+ @Version = params['Version']
173
+ @PiracyRisk = params['PiracyRisk']
174
+ @PiracyReason = params['PiracyReason']
175
+ @InstallTime = params['InstallTime']
176
+ @UserPath = params['UserPath']
177
+ @UserGroup = params['UserGroup']
178
+ @IP = params['IP']
179
+ @MAC = params['MAC']
180
+ @UseTime = params['UseTime']
181
+ @DeviceId = params['DeviceId']
182
+ @FullSoftName = params['FullSoftName']
183
+ @Id = params['Id']
184
+ @NewVersion = params['NewVersion']
185
+ @UpgradeSoftId = params['UpgradeSoftId']
186
+ @RemarkName = params['RemarkName']
187
+ end
188
+ end
189
+
91
190
  # 自动划分规则数据
92
191
  class ComplexRule < TencentCloud::Common::AbstractModel
93
192
  # @param SimpleRules: 简单规则表达式
@@ -678,6 +777,223 @@ module TencentCloud
678
777
  end
679
778
  end
680
779
 
780
+ # 聚合软件详情数据
781
+ class DescribeAggrSoftDetailData < TencentCloud::Common::AbstractModel
782
+ # @param Name: 软件名称
783
+ # 注意:此字段可能返回 null,表示取不到有效值。
784
+ # @type Name: String
785
+ # @param OsType: 平台
786
+ # 注意:此字段可能返回 null,表示取不到有效值。
787
+ # @type OsType: Integer
788
+ # @param PiracyRisk: 盗版风险
789
+ # 注意:此字段可能返回 null,表示取不到有效值。
790
+ # @type PiracyRisk: Integer
791
+ # @param Corp: 厂商
792
+ # 注意:此字段可能返回 null,表示取不到有效值。
793
+ # @type Corp: String
794
+ # @param SoftVersionDist: 已安装版本分布
795
+ # 注意:此字段可能返回 null,表示取不到有效值。
796
+ # @type SoftVersionDist: Array
797
+ # @param PiracyVersionDist: 盗版版本安装
798
+ # 注意:此字段可能返回 null,表示取不到有效值。
799
+ # @type PiracyVersionDist: Array
800
+ # @param InstalledDeviceNum: 安装设备数
801
+ # 注意:此字段可能返回 null,表示取不到有效值。
802
+ # @type InstalledDeviceNum: Integer
803
+ # @param PiracyInstalledDeviceNum: 盗版安装设备数
804
+ # 注意:此字段可能返回 null,表示取不到有效值。
805
+ # @type PiracyInstalledDeviceNum: Integer
806
+ # @param InstalledUserNum: 安装用户数
807
+ # 注意:此字段可能返回 null,表示取不到有效值。
808
+ # @type InstalledUserNum: Integer
809
+ # @param PiracyInstalledUserNum: 盗版安装用户数
810
+ # 注意:此字段可能返回 null,表示取不到有效值。
811
+ # @type PiracyInstalledUserNum: Integer
812
+ # @param AuthNum: 授权数
813
+ # 注意:此字段可能返回 null,表示取不到有效值。
814
+ # @type AuthNum: Integer
815
+ # @param GenuineRate: 正版率
816
+ # 注意:此字段可能返回 null,表示取不到有效值。
817
+ # @type GenuineRate: Float
818
+ # @param UpgradableDeviceNum: 有新版本可升级的设备数量
819
+ # @type UpgradableDeviceNum: Integer
820
+ # @param UpgradableVersions: 当前可升级的最新版本信息, 每一项均为json字符串
821
+ # @type UpgradableVersions: Array
822
+
823
+ attr_accessor :Name, :OsType, :PiracyRisk, :Corp, :SoftVersionDist, :PiracyVersionDist, :InstalledDeviceNum, :PiracyInstalledDeviceNum, :InstalledUserNum, :PiracyInstalledUserNum, :AuthNum, :GenuineRate, :UpgradableDeviceNum, :UpgradableVersions
824
+
825
+ def initialize(name=nil, ostype=nil, piracyrisk=nil, corp=nil, softversiondist=nil, piracyversiondist=nil, installeddevicenum=nil, piracyinstalleddevicenum=nil, installedusernum=nil, piracyinstalledusernum=nil, authnum=nil, genuinerate=nil, upgradabledevicenum=nil, upgradableversions=nil)
826
+ @Name = name
827
+ @OsType = ostype
828
+ @PiracyRisk = piracyrisk
829
+ @Corp = corp
830
+ @SoftVersionDist = softversiondist
831
+ @PiracyVersionDist = piracyversiondist
832
+ @InstalledDeviceNum = installeddevicenum
833
+ @PiracyInstalledDeviceNum = piracyinstalleddevicenum
834
+ @InstalledUserNum = installedusernum
835
+ @PiracyInstalledUserNum = piracyinstalledusernum
836
+ @AuthNum = authnum
837
+ @GenuineRate = genuinerate
838
+ @UpgradableDeviceNum = upgradabledevicenum
839
+ @UpgradableVersions = upgradableversions
840
+ end
841
+
842
+ def deserialize(params)
843
+ @Name = params['Name']
844
+ @OsType = params['OsType']
845
+ @PiracyRisk = params['PiracyRisk']
846
+ @Corp = params['Corp']
847
+ unless params['SoftVersionDist'].nil?
848
+ @SoftVersionDist = []
849
+ params['SoftVersionDist'].each do |i|
850
+ softversionandnum_tmp = SoftVersionAndNum.new
851
+ softversionandnum_tmp.deserialize(i)
852
+ @SoftVersionDist << softversionandnum_tmp
853
+ end
854
+ end
855
+ unless params['PiracyVersionDist'].nil?
856
+ @PiracyVersionDist = []
857
+ params['PiracyVersionDist'].each do |i|
858
+ softversionandnum_tmp = SoftVersionAndNum.new
859
+ softversionandnum_tmp.deserialize(i)
860
+ @PiracyVersionDist << softversionandnum_tmp
861
+ end
862
+ end
863
+ @InstalledDeviceNum = params['InstalledDeviceNum']
864
+ @PiracyInstalledDeviceNum = params['PiracyInstalledDeviceNum']
865
+ @InstalledUserNum = params['InstalledUserNum']
866
+ @PiracyInstalledUserNum = params['PiracyInstalledUserNum']
867
+ @AuthNum = params['AuthNum']
868
+ @GenuineRate = params['GenuineRate']
869
+ @UpgradableDeviceNum = params['UpgradableDeviceNum']
870
+ @UpgradableVersions = params['UpgradableVersions']
871
+ end
872
+ end
873
+
874
+ # DescribeAggrSoftDetail请求参数结构体
875
+ class DescribeAggrSoftDetailRequest < TencentCloud::Common::AbstractModel
876
+ # @param Name: 软件名称
877
+ # @type Name: String
878
+ # @param OsType: 操作系统
879
+ # @type OsType: Integer
880
+
881
+ attr_accessor :Name, :OsType
882
+
883
+ def initialize(name=nil, ostype=nil)
884
+ @Name = name
885
+ @OsType = ostype
886
+ end
887
+
888
+ def deserialize(params)
889
+ @Name = params['Name']
890
+ @OsType = params['OsType']
891
+ end
892
+ end
893
+
894
+ # DescribeAggrSoftDetail返回参数结构体
895
+ class DescribeAggrSoftDetailResponse < TencentCloud::Common::AbstractModel
896
+ # @param Data: 数据
897
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DescribeAggrSoftDetailData`
898
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
899
+ # @type RequestId: String
900
+
901
+ attr_accessor :Data, :RequestId
902
+
903
+ def initialize(data=nil, requestid=nil)
904
+ @Data = data
905
+ @RequestId = requestid
906
+ end
907
+
908
+ def deserialize(params)
909
+ unless params['Data'].nil?
910
+ @Data = DescribeAggrSoftDetailData.new
911
+ @Data.deserialize(params['Data'])
912
+ end
913
+ @RequestId = params['RequestId']
914
+ end
915
+ end
916
+
917
+ # 聚合软件-已安装终端列表
918
+ class DescribeAggrSoftDeviceListData < TencentCloud::Common::AbstractModel
919
+ # @param Page: 分页公共对象
920
+ # 注意:此字段可能返回 null,表示取不到有效值。
921
+ # @type Page: :class:`Tencentcloud::Ioa.v20220601.models.Paging`
922
+ # @param Total: 总数
923
+ # 注意:此字段可能返回 null,表示取不到有效值。
924
+ # @type Total: Integer
925
+ # @param AggrSoftDeviceList: 详情
926
+ # 注意:此字段可能返回 null,表示取不到有效值。
927
+ # @type AggrSoftDeviceList: Array
928
+
929
+ attr_accessor :Page, :Total, :AggrSoftDeviceList
930
+
931
+ def initialize(page=nil, total=nil, aggrsoftdevicelist=nil)
932
+ @Page = page
933
+ @Total = total
934
+ @AggrSoftDeviceList = aggrsoftdevicelist
935
+ end
936
+
937
+ def deserialize(params)
938
+ unless params['Page'].nil?
939
+ @Page = Paging.new
940
+ @Page.deserialize(params['Page'])
941
+ end
942
+ @Total = params['Total']
943
+ unless params['AggrSoftDeviceList'].nil?
944
+ @AggrSoftDeviceList = []
945
+ params['AggrSoftDeviceList'].each do |i|
946
+ aggrsoftdevicerow_tmp = AggrSoftDeviceRow.new
947
+ aggrsoftdevicerow_tmp.deserialize(i)
948
+ @AggrSoftDeviceList << aggrsoftdevicerow_tmp
949
+ end
950
+ end
951
+ end
952
+ end
953
+
954
+ # DescribeAggrSoftDeviceList请求参数结构体
955
+ class DescribeAggrSoftDeviceListRequest < TencentCloud::Common::AbstractModel
956
+ # @param Name: 软件名
957
+ # @type Name: String
958
+ # @param OsType: 操作系统
959
+ # @type OsType: Integer
960
+
961
+ attr_accessor :Name, :OsType
962
+
963
+ def initialize(name=nil, ostype=nil)
964
+ @Name = name
965
+ @OsType = ostype
966
+ end
967
+
968
+ def deserialize(params)
969
+ @Name = params['Name']
970
+ @OsType = params['OsType']
971
+ end
972
+ end
973
+
974
+ # DescribeAggrSoftDeviceList返回参数结构体
975
+ class DescribeAggrSoftDeviceListResponse < TencentCloud::Common::AbstractModel
976
+ # @param Data: 已安装终端列表
977
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DescribeAggrSoftDeviceListData`
978
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
979
+ # @type RequestId: String
980
+
981
+ attr_accessor :Data, :RequestId
982
+
983
+ def initialize(data=nil, requestid=nil)
984
+ @Data = data
985
+ @RequestId = requestid
986
+ end
987
+
988
+ def deserialize(params)
989
+ unless params['Data'].nil?
990
+ @Data = DescribeAggrSoftDeviceListData.new
991
+ @Data.deserialize(params['Data'])
992
+ end
993
+ @RequestId = params['RequestId']
994
+ end
995
+ end
996
+
681
997
  # 查询文件检测结果响应数据
682
998
  class DescribeDLPFileDetectResultData < TencentCloud::Common::AbstractModel
683
999
  # @param FileMd5: 提交任务时的文件md5
@@ -834,6 +1150,187 @@ module TencentCloud
834
1150
  end
835
1151
  end
836
1152
 
1153
+ # 终端详情响应对象集合
1154
+ class DescribeDeviceDetailListData < TencentCloud::Common::AbstractModel
1155
+ # @param UserName: 账号名
1156
+ # 注意:此字段可能返回 null,表示取不到有效值。
1157
+ # @type UserName: String
1158
+ # @param ComputerName: 计算机名
1159
+ # 注意:此字段可能返回 null,表示取不到有效值。
1160
+ # @type ComputerName: String
1161
+ # @param Name: 名称
1162
+ # 注意:此字段可能返回 null,表示取不到有效值。
1163
+ # @type Name: String
1164
+ # @param AccountGroupIdPath: 用户组IdPath
1165
+ # 注意:此字段可能返回 null,表示取不到有效值。
1166
+ # @type AccountGroupIdPath: String
1167
+ # @param AccountGroupId: 用户组id(只支持32位)
1168
+ # 注意:此字段可能返回 null,表示取不到有效值。
1169
+ # @type AccountGroupId: Integer
1170
+ # @param GroupNamePath: 终端组名path
1171
+ # 注意:此字段可能返回 null,表示取不到有效值。
1172
+ # @type GroupNamePath: String
1173
+ # @param Ip: Ip地址
1174
+ # 注意:此字段可能返回 null,表示取不到有效值。
1175
+ # @type Ip: String
1176
+ # @param AccountGroupName: 用户组名
1177
+ # 注意:此字段可能返回 null,表示取不到有效值。
1178
+ # @type AccountGroupName: String
1179
+ # @param GroupIdPath: 终端组IdPath
1180
+ # 注意:此字段可能返回 null,表示取不到有效值。
1181
+ # @type GroupIdPath: String
1182
+ # @param Mid: 唯一标识Mid
1183
+ # 注意:此字段可能返回 null,表示取不到有效值。
1184
+ # @type Mid: String
1185
+ # @param IoaUserName: IOA账号名
1186
+ # 注意:此字段可能返回 null,表示取不到有效值。
1187
+ # @type IoaUserName: String
1188
+ # @param GroupId: 所在分组Id(只支持32位)
1189
+ # 注意:此字段可能返回 null,表示取不到有效值。
1190
+ # @type GroupId: Integer
1191
+ # @param GroupName: 所在分组Name
1192
+ # 注意:此字段可能返回 null,表示取不到有效值。
1193
+ # @type GroupName: String
1194
+ # @param Mac: Mac地址
1195
+ # 注意:此字段可能返回 null,表示取不到有效值。
1196
+ # @type Mac: String
1197
+ # @param Version: 软件版本
1198
+ # 注意:此字段可能返回 null,表示取不到有效值。
1199
+ # @type Version: String
1200
+ # @param AccountGroupNamePath: 用户组名Path
1201
+ # 注意:此字段可能返回 null,表示取不到有效值。
1202
+ # @type AccountGroupNamePath: String
1203
+ # @param Id: 列表Id(只支持32位)
1204
+ # 注意:此字段可能返回 null,表示取不到有效值。
1205
+ # @type Id: Integer
1206
+
1207
+ attr_accessor :UserName, :ComputerName, :Name, :AccountGroupIdPath, :AccountGroupId, :GroupNamePath, :Ip, :AccountGroupName, :GroupIdPath, :Mid, :IoaUserName, :GroupId, :GroupName, :Mac, :Version, :AccountGroupNamePath, :Id
1208
+
1209
+ def initialize(username=nil, computername=nil, name=nil, accountgroupidpath=nil, accountgroupid=nil, groupnamepath=nil, ip=nil, accountgroupname=nil, groupidpath=nil, mid=nil, ioausername=nil, groupid=nil, groupname=nil, mac=nil, version=nil, accountgroupnamepath=nil, id=nil)
1210
+ @UserName = username
1211
+ @ComputerName = computername
1212
+ @Name = name
1213
+ @AccountGroupIdPath = accountgroupidpath
1214
+ @AccountGroupId = accountgroupid
1215
+ @GroupNamePath = groupnamepath
1216
+ @Ip = ip
1217
+ @AccountGroupName = accountgroupname
1218
+ @GroupIdPath = groupidpath
1219
+ @Mid = mid
1220
+ @IoaUserName = ioausername
1221
+ @GroupId = groupid
1222
+ @GroupName = groupname
1223
+ @Mac = mac
1224
+ @Version = version
1225
+ @AccountGroupNamePath = accountgroupnamepath
1226
+ @Id = id
1227
+ end
1228
+
1229
+ def deserialize(params)
1230
+ @UserName = params['UserName']
1231
+ @ComputerName = params['ComputerName']
1232
+ @Name = params['Name']
1233
+ @AccountGroupIdPath = params['AccountGroupIdPath']
1234
+ @AccountGroupId = params['AccountGroupId']
1235
+ @GroupNamePath = params['GroupNamePath']
1236
+ @Ip = params['Ip']
1237
+ @AccountGroupName = params['AccountGroupName']
1238
+ @GroupIdPath = params['GroupIdPath']
1239
+ @Mid = params['Mid']
1240
+ @IoaUserName = params['IoaUserName']
1241
+ @GroupId = params['GroupId']
1242
+ @GroupName = params['GroupName']
1243
+ @Mac = params['Mac']
1244
+ @Version = params['Version']
1245
+ @AccountGroupNamePath = params['AccountGroupNamePath']
1246
+ @Id = params['Id']
1247
+ end
1248
+ end
1249
+
1250
+ # 业务响应数据
1251
+ class DescribeDeviceDetailListPageData < TencentCloud::Common::AbstractModel
1252
+ # @param Items: 终端详情响应对象集合
1253
+ # 注意:此字段可能返回 null,表示取不到有效值。
1254
+ # @type Items: Array
1255
+ # @param Page: 分页公共对象
1256
+ # 注意:此字段可能返回 null,表示取不到有效值。
1257
+ # @type Page: :class:`Tencentcloud::Ioa.v20220601.models.Paging`
1258
+
1259
+ attr_accessor :Items, :Page
1260
+
1261
+ def initialize(items=nil, page=nil)
1262
+ @Items = items
1263
+ @Page = page
1264
+ end
1265
+
1266
+ def deserialize(params)
1267
+ unless params['Items'].nil?
1268
+ @Items = []
1269
+ params['Items'].each do |i|
1270
+ describedevicedetaillistdata_tmp = DescribeDeviceDetailListData.new
1271
+ describedevicedetaillistdata_tmp.deserialize(i)
1272
+ @Items << describedevicedetaillistdata_tmp
1273
+ end
1274
+ end
1275
+ unless params['Page'].nil?
1276
+ @Page = Paging.new
1277
+ @Page.deserialize(params['Page'])
1278
+ end
1279
+ end
1280
+ end
1281
+
1282
+ # DescribeDeviceDetailList请求参数结构体
1283
+ class DescribeDeviceDetailListRequest < TencentCloud::Common::AbstractModel
1284
+ # @param OsType: 系统类型(只支持32位)
1285
+ # @type OsType: Integer
1286
+ # @param GroupId: 终端分组id(只支持32位)
1287
+ # @type GroupId: Integer
1288
+ # @param Condition: 过滤条件、分页参数
1289
+ # <li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>
1290
+ # @type Condition: :class:`Tencentcloud::Ioa.v20220601.models.Condition`
1291
+
1292
+ attr_accessor :OsType, :GroupId, :Condition
1293
+
1294
+ def initialize(ostype=nil, groupid=nil, condition=nil)
1295
+ @OsType = ostype
1296
+ @GroupId = groupid
1297
+ @Condition = condition
1298
+ end
1299
+
1300
+ def deserialize(params)
1301
+ @OsType = params['OsType']
1302
+ @GroupId = params['GroupId']
1303
+ unless params['Condition'].nil?
1304
+ @Condition = Condition.new
1305
+ @Condition.deserialize(params['Condition'])
1306
+ end
1307
+ end
1308
+ end
1309
+
1310
+ # DescribeDeviceDetailList返回参数结构体
1311
+ class DescribeDeviceDetailListResponse < TencentCloud::Common::AbstractModel
1312
+ # @param Data: 业务响应数据
1313
+ # 注意:此字段可能返回 null,表示取不到有效值。
1314
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.DescribeDeviceDetailListPageData`
1315
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1316
+ # @type RequestId: String
1317
+
1318
+ attr_accessor :Data, :RequestId
1319
+
1320
+ def initialize(data=nil, requestid=nil)
1321
+ @Data = data
1322
+ @RequestId = requestid
1323
+ end
1324
+
1325
+ def deserialize(params)
1326
+ unless params['Data'].nil?
1327
+ @Data = DescribeDeviceDetailListPageData.new
1328
+ @Data.deserialize(params['Data'])
1329
+ end
1330
+ @RequestId = params['RequestId']
1331
+ end
1332
+ end
1333
+
837
1334
  # 终端硬件信息列表Item数据
838
1335
  class DescribeDeviceHardwareInfoItem < TencentCloud::Common::AbstractModel
839
1336
  # @param Id: 设备ID
@@ -2400,6 +2897,74 @@ module TencentCloud
2400
2897
  end
2401
2898
  end
2402
2899
 
2900
+ # 业务响应数据
2901
+ class ExportSoftwareDownloadUrlRspData < TencentCloud::Common::AbstractModel
2902
+ # @param DownloadURL: 下载的url
2903
+ # 注意:此字段可能返回 null,表示取不到有效值。
2904
+ # @type DownloadURL: String
2905
+ # @param TaskId: 超过一定时间走异步任务
2906
+ # @type TaskId: Integer
2907
+
2908
+ attr_accessor :DownloadURL, :TaskId
2909
+
2910
+ def initialize(downloadurl=nil, taskid=nil)
2911
+ @DownloadURL = downloadurl
2912
+ @TaskId = taskid
2913
+ end
2914
+
2915
+ def deserialize(params)
2916
+ @DownloadURL = params['DownloadURL']
2917
+ @TaskId = params['TaskId']
2918
+ end
2919
+ end
2920
+
2921
+ # ExportSoftwareInformationList请求参数结构体
2922
+ class ExportSoftwareInformationListRequest < TencentCloud::Common::AbstractModel
2923
+ # @param Mid: 终端唯一标识Mid
2924
+ # @type Mid: String
2925
+ # @param Condition: 过滤条件、分页参数
2926
+ # <li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>
2927
+ # @type Condition: :class:`Tencentcloud::Ioa.v20220601.models.Condition`
2928
+
2929
+ attr_accessor :Mid, :Condition
2930
+
2931
+ def initialize(mid=nil, condition=nil)
2932
+ @Mid = mid
2933
+ @Condition = condition
2934
+ end
2935
+
2936
+ def deserialize(params)
2937
+ @Mid = params['Mid']
2938
+ unless params['Condition'].nil?
2939
+ @Condition = Condition.new
2940
+ @Condition.deserialize(params['Condition'])
2941
+ end
2942
+ end
2943
+ end
2944
+
2945
+ # ExportSoftwareInformationList返回参数结构体
2946
+ class ExportSoftwareInformationListResponse < TencentCloud::Common::AbstractModel
2947
+ # @param Data: 业务响应数据
2948
+ # @type Data: :class:`Tencentcloud::Ioa.v20220601.models.ExportSoftwareDownloadUrlRspData`
2949
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2950
+ # @type RequestId: String
2951
+
2952
+ attr_accessor :Data, :RequestId
2953
+
2954
+ def initialize(data=nil, requestid=nil)
2955
+ @Data = data
2956
+ @RequestId = requestid
2957
+ end
2958
+
2959
+ def deserialize(params)
2960
+ unless params['Data'].nil?
2961
+ @Data = ExportSoftwareDownloadUrlRspData.new
2962
+ @Data.deserialize(params['Data'])
2963
+ end
2964
+ @RequestId = params['RequestId']
2965
+ end
2966
+ end
2967
+
2403
2968
  # Filters 条件过滤
2404
2969
  class Filter < TencentCloud::Common::AbstractModel
2405
2970
  # @param Field: 过滤字段
@@ -2712,6 +3277,28 @@ module TencentCloud
2712
3277
  end
2713
3278
  end
2714
3279
 
3280
+ # 软件版本与安装数量
3281
+ class SoftVersionAndNum < TencentCloud::Common::AbstractModel
3282
+ # @param Version: 软件版本
3283
+ # 注意:此字段可能返回 null,表示取不到有效值。
3284
+ # @type Version: String
3285
+ # @param Num: 安装数
3286
+ # 注意:此字段可能返回 null,表示取不到有效值。
3287
+ # @type Num: Integer
3288
+
3289
+ attr_accessor :Version, :Num
3290
+
3291
+ def initialize(version=nil, num=nil)
3292
+ @Version = version
3293
+ @Num = num
3294
+ end
3295
+
3296
+ def deserialize(params)
3297
+ @Version = params['Version']
3298
+ @Num = params['Num']
3299
+ end
3300
+ end
3301
+
2715
3302
  # 软件详情响应对象集合
2716
3303
  class SoftwareInformationData < TencentCloud::Common::AbstractModel
2717
3304
  # @param Name: 软件名称
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ioa
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1131
4
+ version: 3.0.1137
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-08-27 00:00:00.000000000 Z
11
+ date: 2025-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20220601/client.rb
37
- - lib/v20220601/models.rb
38
36
  - lib/tencentcloud-sdk-ioa.rb
37
+ - lib/v20220601/models.rb
38
+ - lib/v20220601/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: