tencentcloud-sdk-lowcode 3.0.1114 → 3.0.1140

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: eefceb15c92da7847ec6bb6868cdeeeb1da75cf8
4
- data.tar.gz: d3336a52c6839db5cd7f51d968dce1ebc95ea5e8
3
+ metadata.gz: b1a96141a1914d03930dbf95e4c36c2de5618ec2
4
+ data.tar.gz: 0c2ca564862bb736710ca338f8ea4a093ad35f4a
5
5
  SHA512:
6
- metadata.gz: b16f4809726122e7e66dab44a415a60e49fc7d1d6ada9b2443f608677b9f159b4ab80d2a50b099e3c9ea049fc4c5fd6f639ac203a74afa5b93563b93f12a5549
7
- data.tar.gz: 2793b39d9eedfbffa5a2fe6c28d7ff9bb5afad6a98f0eb757ccb4391951048b14a8fb6fc4b8bc4c963cb2f58e9d8a6b22130df9f8ff06ba9b0bf58a97a3fed51
6
+ metadata.gz: 7f3ae6f2a8c5fd314f2acbba5beda890dd9b56a0c37b673f8e7342cecba9124fdcc5ce774780070c817a9f6fdb94c61c90b02335b4036786adbfe9cd811a7b83
7
+ data.tar.gz: dfdcc0217c1595196a15cd3c8fd914168cb8883d182502396401e26dbe5bf05c477dbd749c1241238520164a8842319a2c1fa78aa1853a4f6f843b87c649e1b0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1114
1
+ 3.0.1140
@@ -173,6 +173,30 @@ 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 DescribeApps.
179
+ # @type request: :class:`Tencentcloud::lowcode::V20210108::DescribeAppsRequest`
180
+ # @rtype: :class:`Tencentcloud::lowcode::V20210108::DescribeAppsResponse`
181
+ def DescribeApps(request)
182
+ body = send_request('DescribeApps', request.serialize)
183
+ response = JSON.parse(body)
184
+ if response['Response'].key?('Error') == false
185
+ model = DescribeAppsResponse.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
+
176
200
  # 获取数据源详情列表
177
201
 
178
202
  # @param request: Request instance for DescribeDataSourceList.
@@ -269,6 +293,54 @@ module TencentCloud
269
293
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
270
294
  end
271
295
 
296
+ # 获取角色关联的用户列表
297
+
298
+ # @param request: Request instance for DescribeRelatedUsers.
299
+ # @type request: :class:`Tencentcloud::lowcode::V20210108::DescribeRelatedUsersRequest`
300
+ # @rtype: :class:`Tencentcloud::lowcode::V20210108::DescribeRelatedUsersResponse`
301
+ def DescribeRelatedUsers(request)
302
+ body = send_request('DescribeRelatedUsers', request.serialize)
303
+ response = JSON.parse(body)
304
+ if response['Response'].key?('Error') == false
305
+ model = DescribeRelatedUsersResponse.new
306
+ model.deserialize(response['Response'])
307
+ model
308
+ else
309
+ code = response['Response']['Error']['Code']
310
+ message = response['Response']['Error']['Message']
311
+ reqid = response['Response']['RequestId']
312
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
313
+ end
314
+ rescue TencentCloud::Common::TencentCloudSDKException => e
315
+ raise e
316
+ rescue StandardError => e
317
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
318
+ end
319
+
320
+ # 查询资源关联的角色列表
321
+
322
+ # @param request: Request instance for DescribeResourceRoleList.
323
+ # @type request: :class:`Tencentcloud::lowcode::V20210108::DescribeResourceRoleListRequest`
324
+ # @rtype: :class:`Tencentcloud::lowcode::V20210108::DescribeResourceRoleListResponse`
325
+ def DescribeResourceRoleList(request)
326
+ body = send_request('DescribeResourceRoleList', request.serialize)
327
+ response = JSON.parse(body)
328
+ if response['Response'].key?('Error') == false
329
+ model = DescribeResourceRoleListResponse.new
330
+ model.deserialize(response['Response'])
331
+ model
332
+ else
333
+ code = response['Response']['Error']['Code']
334
+ message = response['Response']['Error']['Message']
335
+ reqid = response['Response']['RequestId']
336
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
337
+ end
338
+ rescue TencentCloud::Common::TencentCloudSDKException => e
339
+ raise e
340
+ rescue StandardError => e
341
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
342
+ end
343
+
272
344
  # 接口提供应用绑定微信ID功能。
273
345
 
274
346
  # @param request: Request instance for PutWxAppIdToWeApp.
@@ -17,6 +17,46 @@
17
17
  module TencentCloud
18
18
  module Lowcode
19
19
  module V20210108
20
+ # 安装应用,任务详情
21
+ class AppJobInfo < TencentCloud::Common::AbstractModel
22
+ # @param Status: 状态
23
+ # 注意:此字段可能返回 null,表示取不到有效值。
24
+ # @type Status: Integer
25
+ # @param Step: 当前步骤
26
+ # 注意:此字段可能返回 null,表示取不到有效值。
27
+ # @type Step: Integer
28
+ # @param Id: 任务id
29
+ # 注意:此字段可能返回 null,表示取不到有效值。
30
+ # @type Id: Integer
31
+ # @param TotalStep: 任务总共步骤数
32
+ # 注意:此字段可能返回 null,表示取不到有效值。
33
+ # @type TotalStep: Integer
34
+ # @param StepDesc: 当前步骤详情
35
+ # @type StepDesc: String
36
+ # @param ErrMsg: 错误信息
37
+ # @type ErrMsg: String
38
+
39
+ attr_accessor :Status, :Step, :Id, :TotalStep, :StepDesc, :ErrMsg
40
+
41
+ def initialize(status=nil, step=nil, id=nil, totalstep=nil, stepdesc=nil, errmsg=nil)
42
+ @Status = status
43
+ @Step = step
44
+ @Id = id
45
+ @TotalStep = totalstep
46
+ @StepDesc = stepdesc
47
+ @ErrMsg = errmsg
48
+ end
49
+
50
+ def deserialize(params)
51
+ @Status = params['Status']
52
+ @Step = params['Step']
53
+ @Id = params['Id']
54
+ @TotalStep = params['TotalStep']
55
+ @StepDesc = params['StepDesc']
56
+ @ErrMsg = params['ErrMsg']
57
+ end
58
+ end
59
+
20
60
  # CheckDeployApp请求参数结构体
21
61
  class CheckDeployAppRequest < TencentCloud::Common::AbstractModel
22
62
  # @param EnvId: 环境ID
@@ -212,8 +252,8 @@ module TencentCloud
212
252
 
213
253
  attr_accessor :Id, :Title, :Name, :Type, :Description, :Schema, :CmsProject, :PkgId, :SchemaVersion, :CreatorId, :CreatedAt, :UpdatedAt, :EnvId, :DataSourceVersion, :AppUsageList, :PublishedAt, :ChildDataSourceIds, :Fun, :ScfStatus, :Methods, :ChildDataSourceNames, :IsNewDataSource, :ViewId, :Configuration, :TemplateCode, :Source, :PublishVersion, :PublishViewId, :SubType, :AuthStatus, :AuthInfo, :PublishStatus, :UpdateVersion, :RelationFieldList, :DbInstanceType, :PreviewTableName, :PublishedTableName, :DbSourceType
214
254
  extend Gem::Deprecate
215
- deprecate :PublishVersion, :none, 2025, 7
216
- deprecate :PublishVersion=, :none, 2025, 7
255
+ deprecate :PublishVersion, :none, 2025, 9
256
+ deprecate :PublishVersion=, :none, 2025, 9
217
257
 
218
258
  def initialize(id=nil, title=nil, name=nil, type=nil, description=nil, schema=nil, cmsproject=nil, pkgid=nil, schemaversion=nil, creatorid=nil, createdat=nil, updatedat=nil, envid=nil, datasourceversion=nil, appusagelist=nil, publishedat=nil, childdatasourceids=nil, fun=nil, scfstatus=nil, methods=nil, childdatasourcenames=nil, isnewdatasource=nil, viewid=nil, configuration=nil, templatecode=nil, source=nil, publishversion=nil, publishviewid=nil, subtype=nil, authstatus=nil, authinfo=nil, publishstatus=nil, updateversion=nil, relationfieldlist=nil, dbinstancetype=nil, previewtablename=nil, publishedtablename=nil, dbsourcetype=nil)
219
259
  @Id = id
@@ -593,6 +633,83 @@ module TencentCloud
593
633
  end
594
634
  end
595
635
 
636
+ # DescribeApps请求参数结构体
637
+ class DescribeAppsRequest < TencentCloud::Common::AbstractModel
638
+ # @param Limit: 分页每页个数
639
+ # @type Limit: Integer
640
+ # @param Offset: 分页Offset
641
+ # @type Offset: Integer
642
+ # @param EnvId: 环境id
643
+ # @type EnvId: String
644
+ # @param Keyword: 搜索关键词
645
+ # @type Keyword: String
646
+ # @param AppIds: 应用id
647
+ # @type AppIds: Array
648
+ # @param Channel: 来源类型
649
+ # @type Channel: String
650
+ # @param Type: 1-自定义应用;2-模型应用
651
+ # @type Type: Integer
652
+ # @param Favorite: 应用是否收藏
653
+ # @type Favorite: Boolean
654
+
655
+ attr_accessor :Limit, :Offset, :EnvId, :Keyword, :AppIds, :Channel, :Type, :Favorite
656
+
657
+ def initialize(limit=nil, offset=nil, envid=nil, keyword=nil, appids=nil, channel=nil, type=nil, favorite=nil)
658
+ @Limit = limit
659
+ @Offset = offset
660
+ @EnvId = envid
661
+ @Keyword = keyword
662
+ @AppIds = appids
663
+ @Channel = channel
664
+ @Type = type
665
+ @Favorite = favorite
666
+ end
667
+
668
+ def deserialize(params)
669
+ @Limit = params['Limit']
670
+ @Offset = params['Offset']
671
+ @EnvId = params['EnvId']
672
+ @Keyword = params['Keyword']
673
+ @AppIds = params['AppIds']
674
+ @Channel = params['Channel']
675
+ @Type = params['Type']
676
+ @Favorite = params['Favorite']
677
+ end
678
+ end
679
+
680
+ # DescribeApps返回参数结构体
681
+ class DescribeAppsResponse < TencentCloud::Common::AbstractModel
682
+ # @param Weapps: 应用列表
683
+ # 注意:此字段可能返回 null,表示取不到有效值。
684
+ # @type Weapps: Array
685
+ # @param Count: 应用个数
686
+ # 注意:此字段可能返回 null,表示取不到有效值。
687
+ # @type Count: Integer
688
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
689
+ # @type RequestId: String
690
+
691
+ attr_accessor :Weapps, :Count, :RequestId
692
+
693
+ def initialize(weapps=nil, count=nil, requestid=nil)
694
+ @Weapps = weapps
695
+ @Count = count
696
+ @RequestId = requestid
697
+ end
698
+
699
+ def deserialize(params)
700
+ unless params['Weapps'].nil?
701
+ @Weapps = []
702
+ params['Weapps'].each do |i|
703
+ weapp_tmp = Weapp.new
704
+ weapp_tmp.deserialize(i)
705
+ @Weapps << weapp_tmp
706
+ end
707
+ end
708
+ @Count = params['Count']
709
+ @RequestId = params['RequestId']
710
+ end
711
+ end
712
+
596
713
  # DescribeDataSourceList请求参数结构体
597
714
  class DescribeDataSourceListRequest < TencentCloud::Common::AbstractModel
598
715
  # @param PageSize: 每页条数
@@ -913,6 +1030,132 @@ module TencentCloud
913
1030
  end
914
1031
  end
915
1032
 
1033
+ # DescribeRelatedUsers请求参数结构体
1034
+ class DescribeRelatedUsersRequest < TencentCloud::Common::AbstractModel
1035
+ # @param RoleId: 角色id
1036
+ # @type RoleId: Integer
1037
+ # @param EnvId: 环境id
1038
+ # @type EnvId: String
1039
+ # @param PageNo: 页码
1040
+ # @type PageNo: Integer
1041
+ # @param PageSize: 页面含量
1042
+ # @type PageSize: Integer
1043
+ # @param EnvType: 环境类型
1044
+ # @type EnvType: String
1045
+
1046
+ attr_accessor :RoleId, :EnvId, :PageNo, :PageSize, :EnvType
1047
+
1048
+ def initialize(roleid=nil, envid=nil, pageno=nil, pagesize=nil, envtype=nil)
1049
+ @RoleId = roleid
1050
+ @EnvId = envid
1051
+ @PageNo = pageno
1052
+ @PageSize = pagesize
1053
+ @EnvType = envtype
1054
+ end
1055
+
1056
+ def deserialize(params)
1057
+ @RoleId = params['RoleId']
1058
+ @EnvId = params['EnvId']
1059
+ @PageNo = params['PageNo']
1060
+ @PageSize = params['PageSize']
1061
+ @EnvType = params['EnvType']
1062
+ end
1063
+ end
1064
+
1065
+ # DescribeRelatedUsers返回参数结构体
1066
+ class DescribeRelatedUsersResponse < TencentCloud::Common::AbstractModel
1067
+ # @param Data: 关联的用户列表
1068
+ # @type Data: Array
1069
+ # @param Total: 总数
1070
+ # @type Total: Integer
1071
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1072
+ # @type RequestId: String
1073
+
1074
+ attr_accessor :Data, :Total, :RequestId
1075
+
1076
+ def initialize(data=nil, total=nil, requestid=nil)
1077
+ @Data = data
1078
+ @Total = total
1079
+ @RequestId = requestid
1080
+ end
1081
+
1082
+ def deserialize(params)
1083
+ unless params['Data'].nil?
1084
+ @Data = []
1085
+ params['Data'].each do |i|
1086
+ wedauser_tmp = WedaUser.new
1087
+ wedauser_tmp.deserialize(i)
1088
+ @Data << wedauser_tmp
1089
+ end
1090
+ end
1091
+ @Total = params['Total']
1092
+ @RequestId = params['RequestId']
1093
+ end
1094
+ end
1095
+
1096
+ # DescribeResourceRoleList请求参数结构体
1097
+ class DescribeResourceRoleListRequest < TencentCloud::Common::AbstractModel
1098
+ # @param ResourceId: 资源id
1099
+ # @type ResourceId: String
1100
+ # @param ResourceType: 资源类型
1101
+ # @type ResourceType: String
1102
+ # @param EnvType: 预览:pre;非预览:prod
1103
+ # @type EnvType: String
1104
+ # @param EnvId: 环境id
1105
+ # @type EnvId: String
1106
+ # @param SubType: 子资源类型
1107
+ # @type SubType: String
1108
+ # @param PageNo: 页码
1109
+ # @type PageNo: Integer
1110
+ # @param PageSize: 分页大小
1111
+ # @type PageSize: Integer
1112
+
1113
+ attr_accessor :ResourceId, :ResourceType, :EnvType, :EnvId, :SubType, :PageNo, :PageSize
1114
+
1115
+ def initialize(resourceid=nil, resourcetype=nil, envtype=nil, envid=nil, subtype=nil, pageno=nil, pagesize=nil)
1116
+ @ResourceId = resourceid
1117
+ @ResourceType = resourcetype
1118
+ @EnvType = envtype
1119
+ @EnvId = envid
1120
+ @SubType = subtype
1121
+ @PageNo = pageno
1122
+ @PageSize = pagesize
1123
+ end
1124
+
1125
+ def deserialize(params)
1126
+ @ResourceId = params['ResourceId']
1127
+ @ResourceType = params['ResourceType']
1128
+ @EnvType = params['EnvType']
1129
+ @EnvId = params['EnvId']
1130
+ @SubType = params['SubType']
1131
+ @PageNo = params['PageNo']
1132
+ @PageSize = params['PageSize']
1133
+ end
1134
+ end
1135
+
1136
+ # DescribeResourceRoleList返回参数结构体
1137
+ class DescribeResourceRoleListResponse < TencentCloud::Common::AbstractModel
1138
+ # @param Data: 角色列表
1139
+ # @type Data: :class:`Tencentcloud::Lowcode.v20210108.models.RoleListPage`
1140
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1141
+ # @type RequestId: String
1142
+
1143
+ attr_accessor :Data, :RequestId
1144
+
1145
+ def initialize(data=nil, requestid=nil)
1146
+ @Data = data
1147
+ @RequestId = requestid
1148
+ end
1149
+
1150
+ def deserialize(params)
1151
+ unless params['Data'].nil?
1152
+ @Data = RoleListPage.new
1153
+ @Data.deserialize(params['Data'])
1154
+ end
1155
+ @RequestId = params['RequestId']
1156
+ end
1157
+ end
1158
+
916
1159
  # 删除文档时查询入参
917
1160
  class DocumentQuery < TencentCloud::Common::AbstractModel
918
1161
  # @param DocumentSetId: 文件ids
@@ -1148,6 +1391,38 @@ module TencentCloud
1148
1391
  end
1149
1392
  end
1150
1393
 
1394
+ # 组织架构返回参数
1395
+ class OrgResp < TencentCloud::Common::AbstractModel
1396
+ # @param OrgId: 部门id
1397
+ # @type OrgId: String
1398
+ # @param OrgName: 部门名称
1399
+ # @type OrgName: String
1400
+ # @param OrgIdentity: 部门标识
1401
+ # @type OrgIdentity: String
1402
+ # @param Level: 部门层级
1403
+ # @type Level: String
1404
+ # @param PrimaryColumn: 主键字段
1405
+ # @type PrimaryColumn: String
1406
+
1407
+ attr_accessor :OrgId, :OrgName, :OrgIdentity, :Level, :PrimaryColumn
1408
+
1409
+ def initialize(orgid=nil, orgname=nil, orgidentity=nil, level=nil, primarycolumn=nil)
1410
+ @OrgId = orgid
1411
+ @OrgName = orgname
1412
+ @OrgIdentity = orgidentity
1413
+ @Level = level
1414
+ @PrimaryColumn = primarycolumn
1415
+ end
1416
+
1417
+ def deserialize(params)
1418
+ @OrgId = params['OrgId']
1419
+ @OrgName = params['OrgName']
1420
+ @OrgIdentity = params['OrgIdentity']
1421
+ @Level = params['Level']
1422
+ @PrimaryColumn = params['PrimaryColumn']
1423
+ end
1424
+ end
1425
+
1151
1426
  # 查询条件
1152
1427
  class PageQuery < TencentCloud::Common::AbstractModel
1153
1428
  # @param DocumentSetId: 文件id数组,表示要查询的文件的所有 ID,支持批量查询,数组元素范围[1,20]。
@@ -1361,6 +1636,85 @@ module TencentCloud
1361
1636
  end
1362
1637
  end
1363
1638
 
1639
+ # 权限组
1640
+ class RoleGroup < TencentCloud::Common::AbstractModel
1641
+ # @param Id: 权限组id
1642
+ # 注意:此字段可能返回 null,表示取不到有效值。
1643
+ # @type Id: Integer
1644
+ # @param Name: 权限组名称
1645
+ # @type Name: String
1646
+ # @param GroupIdentity: 权限组标识
1647
+ # @type GroupIdentity: String
1648
+ # @param GroupDesc: 权限组描述
1649
+ # 注意:此字段可能返回 null,表示取不到有效值。
1650
+ # @type GroupDesc: String
1651
+ # @param CreateTime: 创建时间
1652
+ # 注意:此字段可能返回 null,表示取不到有效值。
1653
+ # @type CreateTime: String
1654
+ # @param UpdateTime: 更新时间
1655
+ # 注意:此字段可能返回 null,表示取不到有效值。
1656
+ # @type UpdateTime: String
1657
+ # @param RoleList: 角色数组
1658
+ # 注意:此字段可能返回 null,表示取不到有效值。
1659
+ # @type RoleList: Array
1660
+
1661
+ attr_accessor :Id, :Name, :GroupIdentity, :GroupDesc, :CreateTime, :UpdateTime, :RoleList
1662
+
1663
+ def initialize(id=nil, name=nil, groupidentity=nil, groupdesc=nil, createtime=nil, updatetime=nil, rolelist=nil)
1664
+ @Id = id
1665
+ @Name = name
1666
+ @GroupIdentity = groupidentity
1667
+ @GroupDesc = groupdesc
1668
+ @CreateTime = createtime
1669
+ @UpdateTime = updatetime
1670
+ @RoleList = rolelist
1671
+ end
1672
+
1673
+ def deserialize(params)
1674
+ @Id = params['Id']
1675
+ @Name = params['Name']
1676
+ @GroupIdentity = params['GroupIdentity']
1677
+ @GroupDesc = params['GroupDesc']
1678
+ @CreateTime = params['CreateTime']
1679
+ @UpdateTime = params['UpdateTime']
1680
+ unless params['RoleList'].nil?
1681
+ @RoleList = []
1682
+ params['RoleList'].each do |i|
1683
+ wedarole_tmp = WedaRole.new
1684
+ wedarole_tmp.deserialize(i)
1685
+ @RoleList << wedarole_tmp
1686
+ end
1687
+ end
1688
+ end
1689
+ end
1690
+
1691
+ # 角色分页
1692
+ class RoleListPage < TencentCloud::Common::AbstractModel
1693
+ # @param RoleList: 角色列表
1694
+ # @type RoleList: Array
1695
+ # @param Total: 总数
1696
+ # @type Total: Integer
1697
+
1698
+ attr_accessor :RoleList, :Total
1699
+
1700
+ def initialize(rolelist=nil, total=nil)
1701
+ @RoleList = rolelist
1702
+ @Total = total
1703
+ end
1704
+
1705
+ def deserialize(params)
1706
+ unless params['RoleList'].nil?
1707
+ @RoleList = []
1708
+ params['RoleList'].each do |i|
1709
+ wedarole_tmp = WedaRole.new
1710
+ wedarole_tmp.deserialize(i)
1711
+ @RoleList << wedarole_tmp
1712
+ end
1713
+ end
1714
+ @Total = params['Total']
1715
+ end
1716
+ end
1717
+
1364
1718
  # 知识库搜索文档信息
1365
1719
  class SearchDocInfo < TencentCloud::Common::AbstractModel
1366
1720
  # @param CollectionViewName: 知识库名称
@@ -1657,8 +2011,8 @@ module TencentCloud
1657
2011
 
1658
2012
  attr_accessor :DocumentSetId, :DocumentSetName, :FileTitle, :FileMetaData, :FileId
1659
2013
  extend Gem::Deprecate
1660
- deprecate :DocumentSetId, :none, 2025, 7
1661
- deprecate :DocumentSetId=, :none, 2025, 7
2014
+ deprecate :DocumentSetId, :none, 2025, 9
2015
+ deprecate :DocumentSetId=, :none, 2025, 9
1662
2016
 
1663
2017
  def initialize(documentsetid=nil, documentsetname=nil, filetitle=nil, filemetadata=nil, fileid=nil)
1664
2018
  @DocumentSetId = documentsetid
@@ -1677,6 +2031,410 @@ module TencentCloud
1677
2031
  end
1678
2032
  end
1679
2033
 
2034
+ # 低码应用详情
2035
+ class Weapp < TencentCloud::Common::AbstractModel
2036
+ # @param Id: 应用id
2037
+ # @type Id: String
2038
+ # @param Owner: 应用所属者
2039
+ # 注意:此字段可能返回 null,表示取不到有效值。
2040
+ # @type Owner: String
2041
+ # @param Name: 标识
2042
+ # @type Name: String
2043
+ # @param Description: 描述
2044
+ # 注意:此字段可能返回 null,表示取不到有效值。
2045
+ # @type Description: String
2046
+ # @param Title: 应用名称
2047
+ # @type Title: String
2048
+ # @param Env: 环境信息
2049
+ # 注意:此字段可能返回 null,表示取不到有效值。
2050
+ # @type Env: String
2051
+ # @param Status: 状态.
2052
+ # 0:已经安装
2053
+ # 3:安装中
2054
+ # 4:安装失败
2055
+ # @type Status: Integer
2056
+ # @param EnvId: 环境信息
2057
+ # @type EnvId: String
2058
+ # @param EnvRegion: 环境地域
2059
+ # @type EnvRegion: String
2060
+ # @param PkgId: 资源包
2061
+ # @type PkgId: String
2062
+ # @param CmsProject: 应用信息是否安装到cms
2063
+ # 注意:此字段可能返回 null,表示取不到有效值。
2064
+ # @type CmsProject: Integer
2065
+ # @param Channel: 渠道
2066
+ # 注意:此字段可能返回 null,表示取不到有效值。
2067
+ # @type Channel: String
2068
+ # @param TemplateId: 模板id
2069
+ # 注意:此字段可能返回 null,表示取不到有效值。
2070
+ # @type TemplateId: String
2071
+ # @param ExpireTime: 过期时间
2072
+ # 注意:此字段可能返回 null,表示取不到有效值。
2073
+ # @type ExpireTime: String
2074
+ # @param CreateTime: 创建时间
2075
+ # @type CreateTime: String
2076
+ # @param UpdateTime: 更新时间
2077
+ # @type UpdateTime: String
2078
+ # @param Source: 来源
2079
+ # 注意:此字段可能返回 null,表示取不到有效值。
2080
+ # @type Source: String
2081
+ # @param IsFree: 是否计费应用
2082
+ # @type IsFree: Boolean
2083
+ # @param ContentType: 应用内容类型
2084
+ # 注意:此字段可能返回 null,表示取不到有效值。
2085
+ # @type ContentType: String
2086
+ # @param AppType: 应用类型,是否为B端应用
2087
+ # 注意:此字段可能返回 null,表示取不到有效值。
2088
+ # @type AppType: Integer
2089
+ # @param AttachAppId: 关联B端一样id
2090
+ # 注意:此字段可能返回 null,表示取不到有效值。
2091
+ # @type AttachAppId: String
2092
+ # @param EType: 应用类型,是否为企业应用
2093
+ # 注意:此字段可能返回 null,表示取不到有效值。
2094
+ # @type EType: Integer
2095
+ # @param EData: 企业应用数据
2096
+ # 注意:此字段可能返回 null,表示取不到有效值。
2097
+ # @type EData: String
2098
+ # @param LastMpCiId: 最新一次小程序构建id
2099
+ # 注意:此字段可能返回 null,表示取不到有效值。
2100
+ # @type LastMpCiId: String
2101
+ # @param LastMpCiStatus: 最新一次小程序状态
2102
+ # 注意:此字段可能返回 null,表示取不到有效值。
2103
+ # @type LastMpCiStatus: String
2104
+ # @param LastWebCiId: 最新一次web构建id
2105
+ # 注意:此字段可能返回 null,表示取不到有效值。
2106
+ # @type LastWebCiId: String
2107
+ # @param LastWebCiStatus: 最新一次web状态
2108
+ # 注意:此字段可能返回 null,表示取不到有效值。
2109
+ # @type LastWebCiStatus: String
2110
+ # @param LastDeployTime: 最新部署时间
2111
+ # 注意:此字段可能返回 null,表示取不到有效值。
2112
+ # @type LastDeployTime: String
2113
+ # @param FlowId: 安装任务id
2114
+ # 注意:此字段可能返回 null,表示取不到有效值。
2115
+ # @type FlowId: Integer
2116
+ # @param JobInfo: 任务详情
2117
+ # 注意:此字段可能返回 null,表示取不到有效值。
2118
+ # @type JobInfo: :class:`Tencentcloud::Lowcode.v20210108.models.AppJobInfo`
2119
+ # @param Platform: 应用端
2120
+ # 注意:此字段可能返回 null,表示取不到有效值。
2121
+ # @type Platform: String
2122
+ # @param LastWebCiMode: 最新一次web构建模式
2123
+ # 注意:此字段可能返回 null,表示取不到有效值。
2124
+ # @type LastWebCiMode: Integer
2125
+ # @param LastMpCiMode: 最新一次小程序构建模式
2126
+ # 注意:此字段可能返回 null,表示取不到有效值。
2127
+ # @type LastMpCiMode: Integer
2128
+ # @param SceneType: 应用场景化入口类型
2129
+ # 注意:此字段可能返回 null,表示取不到有效值。
2130
+ # @type SceneType: String
2131
+ # @param ClientId: client_Id
2132
+ # 注意:此字段可能返回 null,表示取不到有效值。
2133
+ # @type ClientId: String
2134
+ # @param IconUrl: 图标地址
2135
+ # 注意:此字段可能返回 null,表示取不到有效值。
2136
+ # @type IconUrl: String
2137
+ # @param FaviconUrl: 页面图标地址
2138
+ # 注意:此字段可能返回 null,表示取不到有效值。
2139
+ # @type FaviconUrl: String
2140
+ # @param BackgroundColor: 图标背景色
2141
+ # 注意:此字段可能返回 null,表示取不到有效值。
2142
+ # @type BackgroundColor: String
2143
+ # @param Favorite: 应用是否收藏
2144
+ # @type Favorite: Boolean
2145
+ # @param PublishPlatform: 发布平台:web、mp、pc、adminPortal、xPagePC、cloudAdmin
2146
+ # @type PublishPlatform: String
2147
+
2148
+ attr_accessor :Id, :Owner, :Name, :Description, :Title, :Env, :Status, :EnvId, :EnvRegion, :PkgId, :CmsProject, :Channel, :TemplateId, :ExpireTime, :CreateTime, :UpdateTime, :Source, :IsFree, :ContentType, :AppType, :AttachAppId, :EType, :EData, :LastMpCiId, :LastMpCiStatus, :LastWebCiId, :LastWebCiStatus, :LastDeployTime, :FlowId, :JobInfo, :Platform, :LastWebCiMode, :LastMpCiMode, :SceneType, :ClientId, :IconUrl, :FaviconUrl, :BackgroundColor, :Favorite, :PublishPlatform
2149
+
2150
+ def initialize(id=nil, owner=nil, name=nil, description=nil, title=nil, env=nil, status=nil, envid=nil, envregion=nil, pkgid=nil, cmsproject=nil, channel=nil, templateid=nil, expiretime=nil, createtime=nil, updatetime=nil, source=nil, isfree=nil, contenttype=nil, apptype=nil, attachappid=nil, etype=nil, edata=nil, lastmpciid=nil, lastmpcistatus=nil, lastwebciid=nil, lastwebcistatus=nil, lastdeploytime=nil, flowid=nil, jobinfo=nil, platform=nil, lastwebcimode=nil, lastmpcimode=nil, scenetype=nil, clientid=nil, iconurl=nil, faviconurl=nil, backgroundcolor=nil, favorite=nil, publishplatform=nil)
2151
+ @Id = id
2152
+ @Owner = owner
2153
+ @Name = name
2154
+ @Description = description
2155
+ @Title = title
2156
+ @Env = env
2157
+ @Status = status
2158
+ @EnvId = envid
2159
+ @EnvRegion = envregion
2160
+ @PkgId = pkgid
2161
+ @CmsProject = cmsproject
2162
+ @Channel = channel
2163
+ @TemplateId = templateid
2164
+ @ExpireTime = expiretime
2165
+ @CreateTime = createtime
2166
+ @UpdateTime = updatetime
2167
+ @Source = source
2168
+ @IsFree = isfree
2169
+ @ContentType = contenttype
2170
+ @AppType = apptype
2171
+ @AttachAppId = attachappid
2172
+ @EType = etype
2173
+ @EData = edata
2174
+ @LastMpCiId = lastmpciid
2175
+ @LastMpCiStatus = lastmpcistatus
2176
+ @LastWebCiId = lastwebciid
2177
+ @LastWebCiStatus = lastwebcistatus
2178
+ @LastDeployTime = lastdeploytime
2179
+ @FlowId = flowid
2180
+ @JobInfo = jobinfo
2181
+ @Platform = platform
2182
+ @LastWebCiMode = lastwebcimode
2183
+ @LastMpCiMode = lastmpcimode
2184
+ @SceneType = scenetype
2185
+ @ClientId = clientid
2186
+ @IconUrl = iconurl
2187
+ @FaviconUrl = faviconurl
2188
+ @BackgroundColor = backgroundcolor
2189
+ @Favorite = favorite
2190
+ @PublishPlatform = publishplatform
2191
+ end
2192
+
2193
+ def deserialize(params)
2194
+ @Id = params['Id']
2195
+ @Owner = params['Owner']
2196
+ @Name = params['Name']
2197
+ @Description = params['Description']
2198
+ @Title = params['Title']
2199
+ @Env = params['Env']
2200
+ @Status = params['Status']
2201
+ @EnvId = params['EnvId']
2202
+ @EnvRegion = params['EnvRegion']
2203
+ @PkgId = params['PkgId']
2204
+ @CmsProject = params['CmsProject']
2205
+ @Channel = params['Channel']
2206
+ @TemplateId = params['TemplateId']
2207
+ @ExpireTime = params['ExpireTime']
2208
+ @CreateTime = params['CreateTime']
2209
+ @UpdateTime = params['UpdateTime']
2210
+ @Source = params['Source']
2211
+ @IsFree = params['IsFree']
2212
+ @ContentType = params['ContentType']
2213
+ @AppType = params['AppType']
2214
+ @AttachAppId = params['AttachAppId']
2215
+ @EType = params['EType']
2216
+ @EData = params['EData']
2217
+ @LastMpCiId = params['LastMpCiId']
2218
+ @LastMpCiStatus = params['LastMpCiStatus']
2219
+ @LastWebCiId = params['LastWebCiId']
2220
+ @LastWebCiStatus = params['LastWebCiStatus']
2221
+ @LastDeployTime = params['LastDeployTime']
2222
+ @FlowId = params['FlowId']
2223
+ unless params['JobInfo'].nil?
2224
+ @JobInfo = AppJobInfo.new
2225
+ @JobInfo.deserialize(params['JobInfo'])
2226
+ end
2227
+ @Platform = params['Platform']
2228
+ @LastWebCiMode = params['LastWebCiMode']
2229
+ @LastMpCiMode = params['LastMpCiMode']
2230
+ @SceneType = params['SceneType']
2231
+ @ClientId = params['ClientId']
2232
+ @IconUrl = params['IconUrl']
2233
+ @FaviconUrl = params['FaviconUrl']
2234
+ @BackgroundColor = params['BackgroundColor']
2235
+ @Favorite = params['Favorite']
2236
+ @PublishPlatform = params['PublishPlatform']
2237
+ end
2238
+ end
2239
+
2240
+ # weda角色
2241
+ class WedaRole < TencentCloud::Common::AbstractModel
2242
+ # @param Name: 角色名称
2243
+ # @type Name: String
2244
+ # @param RoleIdentity: 角色标识
2245
+ # @type RoleIdentity: String
2246
+ # @param Id: 角色id
2247
+ # @type Id: Integer
2248
+ # @param ParentRoleId: 父角色id
2249
+ # @type ParentRoleId: Integer
2250
+ # @param ChildRoleId: 子角色id
2251
+ # @type ChildRoleId: Integer
2252
+ # @param EnvIdentity: 环境标识
2253
+ # @type EnvIdentity: String
2254
+ # @param IsReleased: 是否已发布
2255
+ # 注意:此字段可能返回 null,表示取不到有效值。
2256
+ # @type IsReleased: Boolean
2257
+
2258
+ attr_accessor :Name, :RoleIdentity, :Id, :ParentRoleId, :ChildRoleId, :EnvIdentity, :IsReleased
2259
+
2260
+ def initialize(name=nil, roleidentity=nil, id=nil, parentroleid=nil, childroleid=nil, envidentity=nil, isreleased=nil)
2261
+ @Name = name
2262
+ @RoleIdentity = roleidentity
2263
+ @Id = id
2264
+ @ParentRoleId = parentroleid
2265
+ @ChildRoleId = childroleid
2266
+ @EnvIdentity = envidentity
2267
+ @IsReleased = isreleased
2268
+ end
2269
+
2270
+ def deserialize(params)
2271
+ @Name = params['Name']
2272
+ @RoleIdentity = params['RoleIdentity']
2273
+ @Id = params['Id']
2274
+ @ParentRoleId = params['ParentRoleId']
2275
+ @ChildRoleId = params['ChildRoleId']
2276
+ @EnvIdentity = params['EnvIdentity']
2277
+ @IsReleased = params['IsReleased']
2278
+ end
2279
+ end
2280
+
2281
+ # weda用户
2282
+ class WedaUser < TencentCloud::Common::AbstractModel
2283
+ # @param Uin: 腾讯云主账号uin
2284
+ # @type Uin: Integer
2285
+ # @param Name: 名字
2286
+ # @type Name: String
2287
+ # @param Env: 环境
2288
+ # @type Env: Integer
2289
+ # @param Type: 类型
2290
+ # @type Type: Integer
2291
+ # @param NickName: 昵称
2292
+ # @type NickName: String
2293
+ # @param Email: 邮箱
2294
+ # @type Email: String
2295
+ # @param Phone: 手机号
2296
+ # @type Phone: String
2297
+ # @param ProjectId: 项目id
2298
+ # @type ProjectId: Integer
2299
+ # @param Uuid: 用户uuid
2300
+ # @type Uuid: String
2301
+ # @param Source: 渠道,1:自建;2:企业微信导入
2302
+ # @type Source: Integer
2303
+ # @param OpenId: 微信openid
2304
+ # 注意:此字段可能返回 null,表示取不到有效值。
2305
+ # @type OpenId: String
2306
+ # @param RelatedRoles: 关联角色
2307
+ # 注意:此字段可能返回 null,表示取不到有效值。
2308
+ # @type RelatedRoles: Array
2309
+ # @param WechatUserId: 企业微信userid
2310
+ # 注意:此字段可能返回 null,表示取不到有效值。
2311
+ # @type WechatUserId: String
2312
+ # @param InternalUserType: 内部用户类型
2313
+ # 注意:此字段可能返回 null,表示取不到有效值。
2314
+ # @type InternalUserType: Integer
2315
+ # @param UserId: 微搭用户id
2316
+ # @type UserId: Integer
2317
+ # @param OrgName: 所属部门名称
2318
+ # @type OrgName: String
2319
+ # @param UserSchema: 用户schema
2320
+ # 注意:此字段可能返回 null,表示取不到有效值。
2321
+ # @type UserSchema: String
2322
+ # @param UserExtend: 用户扩展信息
2323
+ # 注意:此字段可能返回 null,表示取不到有效值。
2324
+ # @type UserExtend: String
2325
+ # @param IsLicensed: 用户是否授权License
2326
+ # 注意:此字段可能返回 null,表示取不到有效值。
2327
+ # @type IsLicensed: Boolean
2328
+ # @param RelatedRoleGroups: 权限组数组
2329
+ # 注意:此字段可能返回 null,表示取不到有效值。
2330
+ # @type RelatedRoleGroups: Array
2331
+ # @param Orgs: 兼岗部门
2332
+ # 注意:此字段可能返回 null,表示取不到有效值。
2333
+ # @type Orgs: Array
2334
+ # @param MainOrg: 主岗部门
2335
+ # 注意:此字段可能返回 null,表示取不到有效值。
2336
+ # @type MainOrg: Array
2337
+ # @param ParentUserId: 直属上级
2338
+ # 注意:此字段可能返回 null,表示取不到有效值。
2339
+ # @type ParentUserId: Integer
2340
+ # @param PrimaryColumn: 主列字段
2341
+ # 注意:此字段可能返回 null,表示取不到有效值。
2342
+ # @type PrimaryColumn: String
2343
+ # @param AvatarUrl: 用户头像
2344
+ # 注意:此字段可能返回 null,表示取不到有效值。
2345
+ # @type AvatarUrl: String
2346
+ # @param LastLoginTime: 最后登录时间
2347
+ # @type LastLoginTime: String
2348
+
2349
+ attr_accessor :Uin, :Name, :Env, :Type, :NickName, :Email, :Phone, :ProjectId, :Uuid, :Source, :OpenId, :RelatedRoles, :WechatUserId, :InternalUserType, :UserId, :OrgName, :UserSchema, :UserExtend, :IsLicensed, :RelatedRoleGroups, :Orgs, :MainOrg, :ParentUserId, :PrimaryColumn, :AvatarUrl, :LastLoginTime
2350
+
2351
+ def initialize(uin=nil, name=nil, env=nil, type=nil, nickname=nil, email=nil, phone=nil, projectid=nil, uuid=nil, source=nil, openid=nil, relatedroles=nil, wechatuserid=nil, internalusertype=nil, userid=nil, orgname=nil, userschema=nil, userextend=nil, islicensed=nil, relatedrolegroups=nil, orgs=nil, mainorg=nil, parentuserid=nil, primarycolumn=nil, avatarurl=nil, lastlogintime=nil)
2352
+ @Uin = uin
2353
+ @Name = name
2354
+ @Env = env
2355
+ @Type = type
2356
+ @NickName = nickname
2357
+ @Email = email
2358
+ @Phone = phone
2359
+ @ProjectId = projectid
2360
+ @Uuid = uuid
2361
+ @Source = source
2362
+ @OpenId = openid
2363
+ @RelatedRoles = relatedroles
2364
+ @WechatUserId = wechatuserid
2365
+ @InternalUserType = internalusertype
2366
+ @UserId = userid
2367
+ @OrgName = orgname
2368
+ @UserSchema = userschema
2369
+ @UserExtend = userextend
2370
+ @IsLicensed = islicensed
2371
+ @RelatedRoleGroups = relatedrolegroups
2372
+ @Orgs = orgs
2373
+ @MainOrg = mainorg
2374
+ @ParentUserId = parentuserid
2375
+ @PrimaryColumn = primarycolumn
2376
+ @AvatarUrl = avatarurl
2377
+ @LastLoginTime = lastlogintime
2378
+ end
2379
+
2380
+ def deserialize(params)
2381
+ @Uin = params['Uin']
2382
+ @Name = params['Name']
2383
+ @Env = params['Env']
2384
+ @Type = params['Type']
2385
+ @NickName = params['NickName']
2386
+ @Email = params['Email']
2387
+ @Phone = params['Phone']
2388
+ @ProjectId = params['ProjectId']
2389
+ @Uuid = params['Uuid']
2390
+ @Source = params['Source']
2391
+ @OpenId = params['OpenId']
2392
+ unless params['RelatedRoles'].nil?
2393
+ @RelatedRoles = []
2394
+ params['RelatedRoles'].each do |i|
2395
+ wedarole_tmp = WedaRole.new
2396
+ wedarole_tmp.deserialize(i)
2397
+ @RelatedRoles << wedarole_tmp
2398
+ end
2399
+ end
2400
+ @WechatUserId = params['WechatUserId']
2401
+ @InternalUserType = params['InternalUserType']
2402
+ @UserId = params['UserId']
2403
+ @OrgName = params['OrgName']
2404
+ @UserSchema = params['UserSchema']
2405
+ @UserExtend = params['UserExtend']
2406
+ @IsLicensed = params['IsLicensed']
2407
+ unless params['RelatedRoleGroups'].nil?
2408
+ @RelatedRoleGroups = []
2409
+ params['RelatedRoleGroups'].each do |i|
2410
+ rolegroup_tmp = RoleGroup.new
2411
+ rolegroup_tmp.deserialize(i)
2412
+ @RelatedRoleGroups << rolegroup_tmp
2413
+ end
2414
+ end
2415
+ unless params['Orgs'].nil?
2416
+ @Orgs = []
2417
+ params['Orgs'].each do |i|
2418
+ orgresp_tmp = OrgResp.new
2419
+ orgresp_tmp.deserialize(i)
2420
+ @Orgs << orgresp_tmp
2421
+ end
2422
+ end
2423
+ unless params['MainOrg'].nil?
2424
+ @MainOrg = []
2425
+ params['MainOrg'].each do |i|
2426
+ orgresp_tmp = OrgResp.new
2427
+ orgresp_tmp.deserialize(i)
2428
+ @MainOrg << orgresp_tmp
2429
+ end
2430
+ end
2431
+ @ParentUserId = params['ParentUserId']
2432
+ @PrimaryColumn = params['PrimaryColumn']
2433
+ @AvatarUrl = params['AvatarUrl']
2434
+ @LastLoginTime = params['LastLoginTime']
2435
+ end
2436
+ end
2437
+
1680
2438
  end
1681
2439
  end
1682
2440
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lowcode
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1114
4
+ version: 3.0.1140
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-30 00:00:00.000000000 Z
11
+ date: 2025-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common