tencentcloud-sdk-essbasic 3.0.669 → 3.0.671
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/client.rb +28 -4
- data/lib/v20210526/models.rb +166 -118
- 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: fd73384a67d20e787678cd8328056cd2bc27fc15
|
4
|
+
data.tar.gz: 3c6b588a1853d5da8e2fd24f5a60ffe0fc931bdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ffcf2f211f89fdbee27089c37b076da44731537f00674aacda38cc1894826009fdec68eebc3d8c4a76264f36ac19d9260528013f655192b9d2e5c144ed647fb
|
7
|
+
data.tar.gz: d16cdac377b857e63af339e6a96488afbf1a69bfac32539a2a4c54daecd778dddb449a4dbdb92cab62236471ca3e77f6b1c7e2f573f4a7fd9af48f1aa3c3aea4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.671
|
data/lib/v20210526/client.rb
CHANGED
@@ -571,7 +571,7 @@ module TencentCloud
|
|
571
571
|
|
572
572
|
# 适用场景1:创建当前企业的自定义角色,并且创建时不进行权限的设置(PermissionGroups 参数不传),角色中的权限内容可通过接口 ChannelModifyRole 完成更新。
|
573
573
|
|
574
|
-
# 适用场景2:创建当前企业的自定义角色,并且创建时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles
|
574
|
+
# 适用场景2:创建当前企业的自定义角色,并且创建时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
|
575
575
|
|
576
576
|
# @param request: Request instance for ChannelCreateRole.
|
577
577
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateRoleRequest`
|
@@ -940,7 +940,7 @@ module TencentCloud
|
|
940
940
|
|
941
941
|
# 适用场景1:更新当前企业的自定义角色的名称或描述等其他信息,更新时不进行权限的设置(PermissionGroups 参数不传)。
|
942
942
|
|
943
|
-
# 适用场景2:更新当前企业的自定义角色的权限信息,更新时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles
|
943
|
+
# 适用场景2:更新当前企业的自定义角色的权限信息,更新时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
|
944
944
|
|
945
945
|
# @param request: Request instance for ChannelModifyRole.
|
946
946
|
# @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelModifyRoleRequest`
|
@@ -1037,6 +1037,30 @@ module TencentCloud
|
|
1037
1037
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1038
1038
|
end
|
1039
1039
|
|
1040
|
+
# 此接口(CreateChannelOrganizationInfoChangeUrl)用于创建子客企业信息变更链接,支持创建企业超管变更链接或企业基础信息变更链接,通过入参ChangeType指定。
|
1041
|
+
|
1042
|
+
# @param request: Request instance for CreateChannelOrganizationInfoChangeUrl.
|
1043
|
+
# @type request: :class:`Tencentcloud::essbasic::V20210526::CreateChannelOrganizationInfoChangeUrlRequest`
|
1044
|
+
# @rtype: :class:`Tencentcloud::essbasic::V20210526::CreateChannelOrganizationInfoChangeUrlResponse`
|
1045
|
+
def CreateChannelOrganizationInfoChangeUrl(request)
|
1046
|
+
body = send_request('CreateChannelOrganizationInfoChangeUrl', request.serialize)
|
1047
|
+
response = JSON.parse(body)
|
1048
|
+
if response['Response'].key?('Error') == false
|
1049
|
+
model = CreateChannelOrganizationInfoChangeUrlResponse.new
|
1050
|
+
model.deserialize(response['Response'])
|
1051
|
+
model
|
1052
|
+
else
|
1053
|
+
code = response['Response']['Error']['Code']
|
1054
|
+
message = response['Response']['Error']['Message']
|
1055
|
+
reqid = response['Response']['RequestId']
|
1056
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1057
|
+
end
|
1058
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1059
|
+
raise e
|
1060
|
+
rescue StandardError => e
|
1061
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1062
|
+
end
|
1063
|
+
|
1040
1064
|
# 此接口(CreateConsoleLoginUrl)用于创建第三方平台子客企业控制台Web/移动登录链接。支持web控制台、电子签小程序和H5链接。登录链接是进入子客控制台的唯一入口。
|
1041
1065
|
# 链接访问后,会根据企业的和员工的状态(企业根据ProxyOrganizationOpenId参数,员工根据OpenId参数判断),进入不同的流程,主要情况分类如下:
|
1042
1066
|
# 1. 若子客企业未激活,会进入企业激活流程,首次参与激活流程的经办人会成为超管。
|
@@ -1138,9 +1162,9 @@ module TencentCloud
|
|
1138
1162
|
# 4. 客户小程序直接跳到电子签小程序-->签署完成退出电子签小程序-->回到客户小程序
|
1139
1163
|
# 跳转到小程序的实现,参考官方文档(分为全屏、半屏两种方式)
|
1140
1164
|
# 全屏方式:
|
1141
|
-
# (https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html)
|
1165
|
+
# (https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html )
|
1142
1166
|
# 半屏方式:
|
1143
|
-
# (https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html)
|
1167
|
+
# (https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html )
|
1144
1168
|
# 其中小程序的原始Id,请联系<对接技术人员>获取,或者查看小程序信息自助获取。
|
1145
1169
|
# 使用CreateSignUrls,设置EndPoint为APP,得到path。
|
1146
1170
|
|
data/lib/v20210526/models.rb
CHANGED
@@ -32,8 +32,8 @@ module TencentCloud
|
|
32
32
|
|
33
33
|
attr_accessor :AppId, :ProxyOrganizationOpenId, :ProxyOperator, :ProxyAppId, :ProxyOrganizationId
|
34
34
|
extend Gem::Deprecate
|
35
|
-
deprecate :ProxyOrganizationId, :none, 2023,
|
36
|
-
deprecate :ProxyOrganizationId=, :none, 2023,
|
35
|
+
deprecate :ProxyOrganizationId, :none, 2023, 10
|
36
|
+
deprecate :ProxyOrganizationId=, :none, 2023, 10
|
37
37
|
|
38
38
|
def initialize(appid=nil, proxyorganizationopenid=nil, proxyoperator=nil, proxyappid=nil, proxyorganizationid=nil)
|
39
39
|
@AppId = appid
|
@@ -380,8 +380,8 @@ module TencentCloud
|
|
380
380
|
|
381
381
|
attr_accessor :Agent, :FlowIds, :CancelMessage, :CancelMessageFormat, :Operator
|
382
382
|
extend Gem::Deprecate
|
383
|
-
deprecate :Operator, :none, 2023,
|
384
|
-
deprecate :Operator=, :none, 2023,
|
383
|
+
deprecate :Operator, :none, 2023, 10
|
384
|
+
deprecate :Operator=, :none, 2023, 10
|
385
385
|
|
386
386
|
def initialize(agent=nil, flowids=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
387
387
|
@Agent = agent
|
@@ -445,8 +445,8 @@ module TencentCloud
|
|
445
445
|
|
446
446
|
attr_accessor :FlowId, :Agent, :CancelMessage, :CancelMessageFormat, :Operator
|
447
447
|
extend Gem::Deprecate
|
448
|
-
deprecate :Operator, :none, 2023,
|
449
|
-
deprecate :Operator=, :none, 2023,
|
448
|
+
deprecate :Operator, :none, 2023, 10
|
449
|
+
deprecate :Operator=, :none, 2023, 10
|
450
450
|
|
451
451
|
def initialize(flowid=nil, agent=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
|
452
452
|
@FlowId = flowid
|
@@ -498,8 +498,8 @@ module TencentCloud
|
|
498
498
|
|
499
499
|
attr_accessor :Agent, :QrCodeId, :Operator
|
500
500
|
extend Gem::Deprecate
|
501
|
-
deprecate :Operator, :none, 2023,
|
502
|
-
deprecate :Operator=, :none, 2023,
|
501
|
+
deprecate :Operator, :none, 2023, 10
|
502
|
+
deprecate :Operator=, :none, 2023, 10
|
503
503
|
|
504
504
|
def initialize(agent=nil, qrcodeid=nil, operator=nil)
|
505
505
|
@Agent = agent
|
@@ -600,8 +600,8 @@ module TencentCloud
|
|
600
600
|
|
601
601
|
attr_accessor :Agent, :FlowIds, :Operator
|
602
602
|
extend Gem::Deprecate
|
603
|
-
deprecate :Operator, :none, 2023,
|
604
|
-
deprecate :Operator=, :none, 2023,
|
603
|
+
deprecate :Operator, :none, 2023, 10
|
604
|
+
deprecate :Operator=, :none, 2023, 10
|
605
605
|
|
606
606
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
607
607
|
@Agent = agent
|
@@ -785,8 +785,8 @@ module TencentCloud
|
|
785
785
|
|
786
786
|
attr_accessor :Agent, :FlowIds, :Operator
|
787
787
|
extend Gem::Deprecate
|
788
|
-
deprecate :Operator, :none, 2023,
|
789
|
-
deprecate :Operator=, :none, 2023,
|
788
|
+
deprecate :Operator, :none, 2023, 10
|
789
|
+
deprecate :Operator=, :none, 2023, 10
|
790
790
|
|
791
791
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
792
792
|
@Agent = agent
|
@@ -840,10 +840,10 @@ module TencentCloud
|
|
840
840
|
|
841
841
|
attr_accessor :Agent, :ResourceType, :ResourceName, :ResourceId, :Operator, :Organization
|
842
842
|
extend Gem::Deprecate
|
843
|
-
deprecate :Operator, :none, 2023,
|
844
|
-
deprecate :Operator=, :none, 2023,
|
845
|
-
deprecate :Organization, :none, 2023,
|
846
|
-
deprecate :Organization=, :none, 2023,
|
843
|
+
deprecate :Operator, :none, 2023, 10
|
844
|
+
deprecate :Operator=, :none, 2023, 10
|
845
|
+
deprecate :Organization, :none, 2023, 10
|
846
|
+
deprecate :Organization=, :none, 2023, 10
|
847
847
|
|
848
848
|
def initialize(agent=nil, resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, organization=nil)
|
849
849
|
@Agent = agent
|
@@ -922,8 +922,8 @@ module TencentCloud
|
|
922
922
|
|
923
923
|
attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator
|
924
924
|
extend Gem::Deprecate
|
925
|
-
deprecate :Operator, :none, 2023,
|
926
|
-
deprecate :Operator=, :none, 2023,
|
925
|
+
deprecate :Operator, :none, 2023, 10
|
926
|
+
deprecate :Operator=, :none, 2023, 10
|
927
927
|
|
928
928
|
def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil)
|
929
929
|
@Agent = agent
|
@@ -1026,8 +1026,8 @@ module TencentCloud
|
|
1026
1026
|
|
1027
1027
|
attr_accessor :Agent, :FlowName, :FlowDescription, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator
|
1028
1028
|
extend Gem::Deprecate
|
1029
|
-
deprecate :Operator, :none, 2023,
|
1030
|
-
deprecate :Operator=, :none, 2023,
|
1029
|
+
deprecate :Operator, :none, 2023, 10
|
1030
|
+
deprecate :Operator=, :none, 2023, 10
|
1031
1031
|
|
1032
1032
|
def initialize(agent=nil, flowname=nil, flowdescription=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil)
|
1033
1033
|
@Agent = agent
|
@@ -1154,8 +1154,8 @@ module TencentCloud
|
|
1154
1154
|
|
1155
1155
|
attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :FlowGroupOptions, :Operator
|
1156
1156
|
extend Gem::Deprecate
|
1157
|
-
deprecate :Operator, :none, 2023,
|
1158
|
-
deprecate :Operator=, :none, 2023,
|
1157
|
+
deprecate :Operator, :none, 2023, 10
|
1158
|
+
deprecate :Operator=, :none, 2023, 10
|
1159
1159
|
|
1160
1160
|
def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, flowgroupoptions=nil, operator=nil)
|
1161
1161
|
@FlowFileInfos = flowfileinfos
|
@@ -1418,10 +1418,10 @@ module TencentCloud
|
|
1418
1418
|
|
1419
1419
|
attr_accessor :Agent, :FlowId, :FlowApproverInfos, :Operator, :Organization, :JumpUrl
|
1420
1420
|
extend Gem::Deprecate
|
1421
|
-
deprecate :Operator, :none, 2023,
|
1422
|
-
deprecate :Operator=, :none, 2023,
|
1423
|
-
deprecate :Organization, :none, 2023,
|
1424
|
-
deprecate :Organization=, :none, 2023,
|
1421
|
+
deprecate :Operator, :none, 2023, 10
|
1422
|
+
deprecate :Operator=, :none, 2023, 10
|
1423
|
+
deprecate :Organization, :none, 2023, 10
|
1424
|
+
deprecate :Organization=, :none, 2023, 10
|
1425
1425
|
|
1426
1426
|
def initialize(agent=nil, flowid=nil, flowapproverinfos=nil, operator=nil, organization=nil, jumpurl=nil)
|
1427
1427
|
@Agent = agent
|
@@ -1518,12 +1518,12 @@ module TencentCloud
|
|
1518
1518
|
|
1519
1519
|
attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :CallbackUrl, :ApproverRestrictions, :Operator, :ApproverComponentLimitTypes
|
1520
1520
|
extend Gem::Deprecate
|
1521
|
-
deprecate :CallbackUrl, :none, 2023,
|
1522
|
-
deprecate :CallbackUrl=, :none, 2023,
|
1523
|
-
deprecate :ApproverRestrictions, :none, 2023,
|
1524
|
-
deprecate :ApproverRestrictions=, :none, 2023,
|
1525
|
-
deprecate :Operator, :none, 2023,
|
1526
|
-
deprecate :Operator=, :none, 2023,
|
1521
|
+
deprecate :CallbackUrl, :none, 2023, 10
|
1522
|
+
deprecate :CallbackUrl=, :none, 2023, 10
|
1523
|
+
deprecate :ApproverRestrictions, :none, 2023, 10
|
1524
|
+
deprecate :ApproverRestrictions=, :none, 2023, 10
|
1525
|
+
deprecate :Operator, :none, 2023, 10
|
1526
|
+
deprecate :Operator=, :none, 2023, 10
|
1527
1527
|
|
1528
1528
|
def initialize(agent=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, callbackurl=nil, approverrestrictions=nil, operator=nil, approvercomponentlimittypes=nil)
|
1529
1529
|
@Agent = agent
|
@@ -1675,12 +1675,12 @@ module TencentCloud
|
|
1675
1675
|
|
1676
1676
|
attr_accessor :ResourceId, :ResourceType, :FlowInfo, :Agent, :FlowOption, :FlowApproverList, :FlowId, :NeedPreview, :Organization, :Operator
|
1677
1677
|
extend Gem::Deprecate
|
1678
|
-
deprecate :NeedPreview, :none, 2023,
|
1679
|
-
deprecate :NeedPreview=, :none, 2023,
|
1680
|
-
deprecate :Organization, :none, 2023,
|
1681
|
-
deprecate :Organization=, :none, 2023,
|
1682
|
-
deprecate :Operator, :none, 2023,
|
1683
|
-
deprecate :Operator=, :none, 2023,
|
1678
|
+
deprecate :NeedPreview, :none, 2023, 10
|
1679
|
+
deprecate :NeedPreview=, :none, 2023, 10
|
1680
|
+
deprecate :Organization, :none, 2023, 10
|
1681
|
+
deprecate :Organization=, :none, 2023, 10
|
1682
|
+
deprecate :Operator, :none, 2023, 10
|
1683
|
+
deprecate :Operator=, :none, 2023, 10
|
1684
1684
|
|
1685
1685
|
def initialize(resourceid=nil, resourcetype=nil, flowinfo=nil, agent=nil, flowoption=nil, flowapproverlist=nil, flowid=nil, needpreview=nil, organization=nil, operator=nil)
|
1686
1686
|
@ResourceId = resourceid
|
@@ -1858,10 +1858,10 @@ module TencentCloud
|
|
1858
1858
|
|
1859
1859
|
attr_accessor :Agent, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :CallbackUrl, :Organization, :Operator, :Deadline
|
1860
1860
|
extend Gem::Deprecate
|
1861
|
-
deprecate :Organization, :none, 2023,
|
1862
|
-
deprecate :Organization=, :none, 2023,
|
1863
|
-
deprecate :Operator, :none, 2023,
|
1864
|
-
deprecate :Operator=, :none, 2023,
|
1861
|
+
deprecate :Organization, :none, 2023, 10
|
1862
|
+
deprecate :Organization=, :none, 2023, 10
|
1863
|
+
deprecate :Operator, :none, 2023, 10
|
1864
|
+
deprecate :Operator=, :none, 2023, 10
|
1865
1865
|
|
1866
1866
|
def initialize(agent=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, callbackurl=nil, organization=nil, operator=nil, deadline=nil)
|
1867
1867
|
@Agent = agent
|
@@ -1999,10 +1999,10 @@ module TencentCloud
|
|
1999
1999
|
|
2000
2000
|
attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
|
2001
2001
|
extend Gem::Deprecate
|
2002
|
-
deprecate :Operator, :none, 2023,
|
2003
|
-
deprecate :Operator=, :none, 2023,
|
2004
|
-
deprecate :Organization, :none, 2023,
|
2005
|
-
deprecate :Organization=, :none, 2023,
|
2002
|
+
deprecate :Operator, :none, 2023, 10
|
2003
|
+
deprecate :Operator=, :none, 2023, 10
|
2004
|
+
deprecate :Organization, :none, 2023, 10
|
2005
|
+
deprecate :Organization=, :none, 2023, 10
|
2006
2006
|
|
2007
2007
|
def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
|
2008
2008
|
@Agent = agent
|
@@ -2160,8 +2160,8 @@ module TencentCloud
|
|
2160
2160
|
|
2161
2161
|
attr_accessor :Agent, :RoleIds, :UserIds, :OpenIds, :Operator
|
2162
2162
|
extend Gem::Deprecate
|
2163
|
-
deprecate :Operator, :none, 2023,
|
2164
|
-
deprecate :Operator=, :none, 2023,
|
2163
|
+
deprecate :Operator, :none, 2023, 10
|
2164
|
+
deprecate :Operator=, :none, 2023, 10
|
2165
2165
|
|
2166
2166
|
def initialize(agent=nil, roleids=nil, userids=nil, openids=nil, operator=nil)
|
2167
2167
|
@Agent = agent
|
@@ -2314,8 +2314,8 @@ module TencentCloud
|
|
2314
2314
|
|
2315
2315
|
attr_accessor :Agent, :RoleId, :UserIds, :Operator, :OpenIds
|
2316
2316
|
extend Gem::Deprecate
|
2317
|
-
deprecate :Operator, :none, 2023,
|
2318
|
-
deprecate :Operator=, :none, 2023,
|
2317
|
+
deprecate :Operator, :none, 2023, 10
|
2318
|
+
deprecate :Operator=, :none, 2023, 10
|
2319
2319
|
|
2320
2320
|
def initialize(agent=nil, roleid=nil, userids=nil, operator=nil, openids=nil)
|
2321
2321
|
@Agent = agent
|
@@ -2376,10 +2376,10 @@ module TencentCloud
|
|
2376
2376
|
|
2377
2377
|
attr_accessor :Agent, :SealId, :UserIds, :Organization, :Operator
|
2378
2378
|
extend Gem::Deprecate
|
2379
|
-
deprecate :Organization, :none, 2023,
|
2380
|
-
deprecate :Organization=, :none, 2023,
|
2381
|
-
deprecate :Operator, :none, 2023,
|
2382
|
-
deprecate :Operator=, :none, 2023,
|
2379
|
+
deprecate :Organization, :none, 2023, 10
|
2380
|
+
deprecate :Organization=, :none, 2023, 10
|
2381
|
+
deprecate :Operator, :none, 2023, 10
|
2382
|
+
deprecate :Operator=, :none, 2023, 10
|
2383
2383
|
|
2384
2384
|
def initialize(agent=nil, sealid=nil, userids=nil, organization=nil, operator=nil)
|
2385
2385
|
@Agent = agent
|
@@ -2440,8 +2440,8 @@ module TencentCloud
|
|
2440
2440
|
|
2441
2441
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
2442
2442
|
extend Gem::Deprecate
|
2443
|
-
deprecate :Operator, :none, 2023,
|
2444
|
-
deprecate :Operator=, :none, 2023,
|
2443
|
+
deprecate :Operator, :none, 2023, 10
|
2444
|
+
deprecate :Operator=, :none, 2023, 10
|
2445
2445
|
|
2446
2446
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
2447
2447
|
@Agent = agent
|
@@ -2659,8 +2659,8 @@ module TencentCloud
|
|
2659
2659
|
|
2660
2660
|
attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
|
2661
2661
|
extend Gem::Deprecate
|
2662
|
-
deprecate :Operator, :none, 2023,
|
2663
|
-
deprecate :Operator=, :none, 2023,
|
2662
|
+
deprecate :Operator, :none, 2023, 10
|
2663
|
+
deprecate :Operator=, :none, 2023, 10
|
2664
2664
|
|
2665
2665
|
def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
|
2666
2666
|
@Agent = agent
|
@@ -2869,10 +2869,10 @@ module TencentCloud
|
|
2869
2869
|
|
2870
2870
|
attr_accessor :Agent, :TaskId, :Operator, :Organization
|
2871
2871
|
extend Gem::Deprecate
|
2872
|
-
deprecate :Operator, :none, 2023,
|
2873
|
-
deprecate :Operator=, :none, 2023,
|
2874
|
-
deprecate :Organization, :none, 2023,
|
2875
|
-
deprecate :Organization=, :none, 2023,
|
2872
|
+
deprecate :Operator, :none, 2023, 10
|
2873
|
+
deprecate :Operator=, :none, 2023, 10
|
2874
|
+
deprecate :Organization, :none, 2023, 10
|
2875
|
+
deprecate :Organization=, :none, 2023, 10
|
2876
2876
|
|
2877
2877
|
def initialize(agent=nil, taskid=nil, operator=nil, organization=nil)
|
2878
2878
|
@Agent = agent
|
@@ -2929,8 +2929,8 @@ module TencentCloud
|
|
2929
2929
|
|
2930
2930
|
attr_accessor :TaskId, :TaskStatus, :TaskMessage, :ResourceId, :PreviewUrl, :RequestId
|
2931
2931
|
extend Gem::Deprecate
|
2932
|
-
deprecate :PreviewUrl, :none, 2023,
|
2933
|
-
deprecate :PreviewUrl=, :none, 2023,
|
2932
|
+
deprecate :PreviewUrl, :none, 2023, 10
|
2933
|
+
deprecate :PreviewUrl=, :none, 2023, 10
|
2934
2934
|
|
2935
2935
|
def initialize(taskid=nil, taskstatus=nil, taskmessage=nil, resourceid=nil, previewurl=nil, requestid=nil)
|
2936
2936
|
@TaskId = taskid
|
@@ -3067,8 +3067,8 @@ module TencentCloud
|
|
3067
3067
|
|
3068
3068
|
attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
|
3069
3069
|
extend Gem::Deprecate
|
3070
|
-
deprecate :Operator, :none, 2023,
|
3071
|
-
deprecate :Operator=, :none, 2023,
|
3070
|
+
deprecate :Operator, :none, 2023, 10
|
3071
|
+
deprecate :Operator=, :none, 2023, 10
|
3072
3072
|
|
3073
3073
|
def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
|
3074
3074
|
@Agent = agent
|
@@ -3120,8 +3120,8 @@ module TencentCloud
|
|
3120
3120
|
|
3121
3121
|
attr_accessor :FlowId, :Agent, :Operator
|
3122
3122
|
extend Gem::Deprecate
|
3123
|
-
deprecate :Operator, :none, 2023,
|
3124
|
-
deprecate :Operator=, :none, 2023,
|
3123
|
+
deprecate :Operator, :none, 2023, 10
|
3124
|
+
deprecate :Operator=, :none, 2023, 10
|
3125
3125
|
|
3126
3126
|
def initialize(flowid=nil, agent=nil, operator=nil)
|
3127
3127
|
@FlowId = flowid
|
@@ -3617,8 +3617,8 @@ module TencentCloud
|
|
3617
3617
|
|
3618
3618
|
attr_accessor :Agent, :FlowId, :Operator
|
3619
3619
|
extend Gem::Deprecate
|
3620
|
-
deprecate :Operator, :none, 2023,
|
3621
|
-
deprecate :Operator=, :none, 2023,
|
3620
|
+
deprecate :Operator, :none, 2023, 10
|
3621
|
+
deprecate :Operator=, :none, 2023, 10
|
3622
3622
|
|
3623
3623
|
def initialize(agent=nil, flowid=nil, operator=nil)
|
3624
3624
|
@Agent = agent
|
@@ -3674,6 +3674,54 @@ module TencentCloud
|
|
3674
3674
|
end
|
3675
3675
|
end
|
3676
3676
|
|
3677
|
+
# CreateChannelOrganizationInfoChangeUrl请求参数结构体
|
3678
|
+
class CreateChannelOrganizationInfoChangeUrlRequest < TencentCloud::Common::AbstractModel
|
3679
|
+
# @param Agent: 关于渠道应用的相关信息,包括子客企业及应用编、号等详细内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
|
3680
|
+
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
3681
|
+
# @param ChangeType: 企业信息变更类型,可选类型如下:
|
3682
|
+
# <ul><li>**1**:企业超管变更</li><li>**2**:企业基础信息变更</li></ul>
|
3683
|
+
# @type ChangeType: Integer
|
3684
|
+
|
3685
|
+
attr_accessor :Agent, :ChangeType
|
3686
|
+
|
3687
|
+
def initialize(agent=nil, changetype=nil)
|
3688
|
+
@Agent = agent
|
3689
|
+
@ChangeType = changetype
|
3690
|
+
end
|
3691
|
+
|
3692
|
+
def deserialize(params)
|
3693
|
+
unless params['Agent'].nil?
|
3694
|
+
@Agent = Agent.new
|
3695
|
+
@Agent.deserialize(params['Agent'])
|
3696
|
+
end
|
3697
|
+
@ChangeType = params['ChangeType']
|
3698
|
+
end
|
3699
|
+
end
|
3700
|
+
|
3701
|
+
# CreateChannelOrganizationInfoChangeUrl返回参数结构体
|
3702
|
+
class CreateChannelOrganizationInfoChangeUrlResponse < TencentCloud::Common::AbstractModel
|
3703
|
+
# @param Url: 创建的企业信息变更链接。
|
3704
|
+
# @type Url: String
|
3705
|
+
# @param ExpiredTime: 链接过期时间。链接7天有效。
|
3706
|
+
# @type ExpiredTime: Integer
|
3707
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3708
|
+
# @type RequestId: String
|
3709
|
+
|
3710
|
+
attr_accessor :Url, :ExpiredTime, :RequestId
|
3711
|
+
|
3712
|
+
def initialize(url=nil, expiredtime=nil, requestid=nil)
|
3713
|
+
@Url = url
|
3714
|
+
@ExpiredTime = expiredtime
|
3715
|
+
@RequestId = requestid
|
3716
|
+
end
|
3717
|
+
|
3718
|
+
def deserialize(params)
|
3719
|
+
@Url = params['Url']
|
3720
|
+
@ExpiredTime = params['ExpiredTime']
|
3721
|
+
@RequestId = params['RequestId']
|
3722
|
+
end
|
3723
|
+
end
|
3724
|
+
|
3677
3725
|
# CreateConsoleLoginUrl请求参数结构体
|
3678
3726
|
class CreateConsoleLoginUrlRequest < TencentCloud::Common::AbstractModel
|
3679
3727
|
# @param Agent: 应用信息
|
@@ -3740,8 +3788,8 @@ module TencentCloud
|
|
3740
3788
|
|
3741
3789
|
attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :Operator
|
3742
3790
|
extend Gem::Deprecate
|
3743
|
-
deprecate :Operator, :none, 2023,
|
3744
|
-
deprecate :Operator=, :none, 2023,
|
3791
|
+
deprecate :Operator, :none, 2023, 10
|
3792
|
+
deprecate :Operator=, :none, 2023, 10
|
3745
3793
|
|
3746
3794
|
def initialize(agent=nil, proxyorganizationname=nil, uniformsocialcreditcode=nil, proxyoperatorname=nil, _module=nil, moduleid=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, authorizationtypes=nil, operator=nil)
|
3747
3795
|
@Agent = agent
|
@@ -3868,8 +3916,8 @@ module TencentCloud
|
|
3868
3916
|
|
3869
3917
|
attr_accessor :Agent, :FlowInfos, :NeedPreview, :PreviewType, :Operator
|
3870
3918
|
extend Gem::Deprecate
|
3871
|
-
deprecate :Operator, :none, 2023,
|
3872
|
-
deprecate :Operator=, :none, 2023,
|
3919
|
+
deprecate :Operator, :none, 2023, 10
|
3920
|
+
deprecate :Operator=, :none, 2023, 10
|
3873
3921
|
|
3874
3922
|
def initialize(agent=nil, flowinfos=nil, needpreview=nil, previewtype=nil, operator=nil)
|
3875
3923
|
@Agent = agent
|
@@ -3995,8 +4043,8 @@ module TencentCloud
|
|
3995
4043
|
|
3996
4044
|
attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize
|
3997
4045
|
extend Gem::Deprecate
|
3998
|
-
deprecate :Operator, :none, 2023,
|
3999
|
-
deprecate :Operator=, :none, 2023,
|
4046
|
+
deprecate :Operator, :none, 2023, 10
|
4047
|
+
deprecate :Operator=, :none, 2023, 10
|
4000
4048
|
|
4001
4049
|
def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil)
|
4002
4050
|
@Agent = agent
|
@@ -4109,8 +4157,8 @@ module TencentCloud
|
|
4109
4157
|
|
4110
4158
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator, :Hides, :RecipientIds
|
4111
4159
|
extend Gem::Deprecate
|
4112
|
-
deprecate :Operator, :none, 2023,
|
4113
|
-
deprecate :Operator=, :none, 2023,
|
4160
|
+
deprecate :Operator, :none, 2023, 10
|
4161
|
+
deprecate :Operator=, :none, 2023, 10
|
4114
4162
|
|
4115
4163
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, endpoint=nil, generatetype=nil, organizationname=nil, name=nil, mobile=nil, organizationopenid=nil, openid=nil, autojumpback=nil, jumpurl=nil, operator=nil, hides=nil, recipientids=nil)
|
4116
4164
|
@Agent = agent
|
@@ -4219,8 +4267,8 @@ module TencentCloud
|
|
4219
4267
|
|
4220
4268
|
attr_accessor :Agent, :ReportId, :Operator
|
4221
4269
|
extend Gem::Deprecate
|
4222
|
-
deprecate :Operator, :none, 2023,
|
4223
|
-
deprecate :Operator=, :none, 2023,
|
4270
|
+
deprecate :Operator, :none, 2023, 10
|
4271
|
+
deprecate :Operator=, :none, 2023, 10
|
4224
4272
|
|
4225
4273
|
def initialize(agent=nil, reportid=nil, operator=nil)
|
4226
4274
|
@Agent = agent
|
@@ -4334,8 +4382,8 @@ module TencentCloud
|
|
4334
4382
|
|
4335
4383
|
attr_accessor :Agent, :FlowIds, :FlowGroupId, :Operator
|
4336
4384
|
extend Gem::Deprecate
|
4337
|
-
deprecate :Operator, :none, 2023,
|
4338
|
-
deprecate :Operator=, :none, 2023,
|
4385
|
+
deprecate :Operator, :none, 2023, 10
|
4386
|
+
deprecate :Operator=, :none, 2023, 10
|
4339
4387
|
|
4340
4388
|
def initialize(agent=nil, flowids=nil, flowgroupid=nil, operator=nil)
|
4341
4389
|
@Agent = agent
|
@@ -4416,8 +4464,8 @@ module TencentCloud
|
|
4416
4464
|
|
4417
4465
|
attr_accessor :Agent, :FlowIds, :Operator
|
4418
4466
|
extend Gem::Deprecate
|
4419
|
-
deprecate :Operator, :none, 2023,
|
4420
|
-
deprecate :Operator=, :none, 2023,
|
4467
|
+
deprecate :Operator, :none, 2023, 10
|
4468
|
+
deprecate :Operator=, :none, 2023, 10
|
4421
4469
|
|
4422
4470
|
def initialize(agent=nil, flowids=nil, operator=nil)
|
4423
4471
|
@Agent = agent
|
@@ -4507,8 +4555,8 @@ module TencentCloud
|
|
4507
4555
|
|
4508
4556
|
attr_accessor :Agent, :TemplateId, :ContentType, :Limit, :Offset, :QueryAllComponents, :TemplateName, :WithPreviewUrl, :WithPdfUrl, :ChannelTemplateId, :Operator
|
4509
4557
|
extend Gem::Deprecate
|
4510
|
-
deprecate :Operator, :none, 2023,
|
4511
|
-
deprecate :Operator=, :none, 2023,
|
4558
|
+
deprecate :Operator, :none, 2023, 10
|
4559
|
+
deprecate :Operator=, :none, 2023, 10
|
4512
4560
|
|
4513
4561
|
def initialize(agent=nil, templateid=nil, contenttype=nil, limit=nil, offset=nil, queryallcomponents=nil, templatename=nil, withpreviewurl=nil, withpdfurl=nil, channeltemplateid=nil, operator=nil)
|
4514
4562
|
@Agent = agent
|
@@ -4606,8 +4654,8 @@ module TencentCloud
|
|
4606
4654
|
|
4607
4655
|
attr_accessor :Agent, :StartDate, :EndDate, :NeedAggregate, :Limit, :Offset, :Operator
|
4608
4656
|
extend Gem::Deprecate
|
4609
|
-
deprecate :Operator, :none, 2023,
|
4610
|
-
deprecate :Operator=, :none, 2023,
|
4657
|
+
deprecate :Operator, :none, 2023, 10
|
4658
|
+
deprecate :Operator=, :none, 2023, 10
|
4611
4659
|
|
4612
4660
|
def initialize(agent=nil, startdate=nil, enddate=nil, needaggregate=nil, limit=nil, offset=nil, operator=nil)
|
4613
4661
|
@Agent = agent
|
@@ -4983,8 +5031,8 @@ module TencentCloud
|
|
4983
5031
|
|
4984
5032
|
attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId, :NotifyType, :AddSignComponentsLimits, :ApproverRoleName
|
4985
5033
|
extend Gem::Deprecate
|
4986
|
-
deprecate :CallbackUrl, :none, 2023,
|
4987
|
-
deprecate :CallbackUrl=, :none, 2023,
|
5034
|
+
deprecate :CallbackUrl, :none, 2023, 10
|
5035
|
+
deprecate :CallbackUrl=, :none, 2023, 10
|
4988
5036
|
|
4989
5037
|
def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil, notifytype=nil, addsigncomponentslimits=nil, approverrolename=nil)
|
4990
5038
|
@Name = name
|
@@ -5586,8 +5634,8 @@ module TencentCloud
|
|
5586
5634
|
|
5587
5635
|
attr_accessor :Agent, :DownLoadFlows, :Operator
|
5588
5636
|
extend Gem::Deprecate
|
5589
|
-
deprecate :Operator, :none, 2023,
|
5590
|
-
deprecate :Operator=, :none, 2023,
|
5637
|
+
deprecate :Operator, :none, 2023, 10
|
5638
|
+
deprecate :Operator=, :none, 2023, 10
|
5591
5639
|
|
5592
5640
|
def initialize(agent=nil, downloadflows=nil, operator=nil)
|
5593
5641
|
@Agent = agent
|
@@ -5795,8 +5843,8 @@ module TencentCloud
|
|
5795
5843
|
|
5796
5844
|
attr_accessor :Agent, :OperateType, :TemplateId, :ProxyOrganizationOpenIds, :AuthTag, :Available, :Operator
|
5797
5845
|
extend Gem::Deprecate
|
5798
|
-
deprecate :Operator, :none, 2023,
|
5799
|
-
deprecate :Operator=, :none, 2023,
|
5846
|
+
deprecate :Operator, :none, 2023, 10
|
5847
|
+
deprecate :Operator=, :none, 2023, 10
|
5800
5848
|
|
5801
5849
|
def initialize(agent=nil, operatetype=nil, templateid=nil, proxyorganizationopenids=nil, authtag=nil, available=nil, operator=nil)
|
5802
5850
|
@Agent = agent
|
@@ -5898,10 +5946,10 @@ module TencentCloud
|
|
5898
5946
|
|
5899
5947
|
attr_accessor :OrganizationOpenId, :OrganizationId, :Channel, :ClientIp, :ProxyIp
|
5900
5948
|
extend Gem::Deprecate
|
5901
|
-
deprecate :ClientIp, :none, 2023,
|
5902
|
-
deprecate :ClientIp=, :none, 2023,
|
5903
|
-
deprecate :ProxyIp, :none, 2023,
|
5904
|
-
deprecate :ProxyIp=, :none, 2023,
|
5949
|
+
deprecate :ClientIp, :none, 2023, 10
|
5950
|
+
deprecate :ClientIp=, :none, 2023, 10
|
5951
|
+
deprecate :ProxyIp, :none, 2023, 10
|
5952
|
+
deprecate :ProxyIp=, :none, 2023, 10
|
5905
5953
|
|
5906
5954
|
def initialize(organizationopenid=nil, organizationid=nil, channel=nil, clientip=nil, proxyip=nil)
|
5907
5955
|
@OrganizationOpenId = organizationopenid
|
@@ -6114,8 +6162,8 @@ module TencentCloud
|
|
6114
6162
|
|
6115
6163
|
attr_accessor :Agent, :FlowInfos, :JumpUrl, :Operator
|
6116
6164
|
extend Gem::Deprecate
|
6117
|
-
deprecate :Operator, :none, 2023,
|
6118
|
-
deprecate :Operator=, :none, 2023,
|
6165
|
+
deprecate :Operator, :none, 2023, 10
|
6166
|
+
deprecate :Operator=, :none, 2023, 10
|
6119
6167
|
|
6120
6168
|
def initialize(agent=nil, flowinfos=nil, jumpurl=nil, operator=nil)
|
6121
6169
|
@Agent = agent
|
@@ -6556,8 +6604,8 @@ module TencentCloud
|
|
6556
6604
|
|
6557
6605
|
attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId, :FlowGroupId, :SignQrcodeUrl
|
6558
6606
|
extend Gem::Deprecate
|
6559
|
-
deprecate :CustomUserId, :none, 2023,
|
6560
|
-
deprecate :CustomUserId=, :none, 2023,
|
6607
|
+
deprecate :CustomUserId, :none, 2023, 10
|
6608
|
+
deprecate :CustomUserId=, :none, 2023, 10
|
6561
6609
|
|
6562
6610
|
def initialize(signurl=nil, deadline=nil, signorder=nil, signid=nil, customuserid=nil, name=nil, mobile=nil, organizationname=nil, approvertype=nil, idcardnumber=nil, flowid=nil, openid=nil, flowgroupid=nil, signqrcodeurl=nil)
|
6563
6611
|
@SignUrl = signurl
|
@@ -6721,8 +6769,8 @@ module TencentCloud
|
|
6721
6769
|
|
6722
6770
|
attr_accessor :Agent, :OperatorType, :ProxyOrganizationOperators, :Operator
|
6723
6771
|
extend Gem::Deprecate
|
6724
|
-
deprecate :Operator, :none, 2023,
|
6725
|
-
deprecate :Operator=, :none, 2023,
|
6772
|
+
deprecate :Operator, :none, 2023, 10
|
6773
|
+
deprecate :Operator=, :none, 2023, 10
|
6726
6774
|
|
6727
6775
|
def initialize(agent=nil, operatortype=nil, proxyorganizationoperators=nil, operator=nil)
|
6728
6776
|
@Agent = agent
|
@@ -6809,8 +6857,8 @@ module TencentCloud
|
|
6809
6857
|
|
6810
6858
|
attr_accessor :Agent, :ProxyOrganizationName, :BusinessLicense, :UniformSocialCreditCode, :ProxyLegalName, :Operator, :ProxyLegalIdCardType, :ProxyLegalIdCardNumber
|
6811
6859
|
extend Gem::Deprecate
|
6812
|
-
deprecate :Operator, :none, 2023,
|
6813
|
-
deprecate :Operator=, :none, 2023,
|
6860
|
+
deprecate :Operator, :none, 2023, 10
|
6861
|
+
deprecate :Operator=, :none, 2023, 10
|
6814
6862
|
|
6815
6863
|
def initialize(agent=nil, proxyorganizationname=nil, businesslicense=nil, uniformsocialcreditcode=nil, proxylegalname=nil, operator=nil, proxylegalidcardtype=nil, proxylegalidcardnumber=nil)
|
6816
6864
|
@Agent = agent
|
@@ -6940,8 +6988,8 @@ module TencentCloud
|
|
6940
6988
|
|
6941
6989
|
attr_accessor :TemplateId, :TemplateName, :Description, :Components, :Recipients, :SignComponents, :TemplateType, :IsPromoter, :Creator, :CreatedOn, :PreviewUrl, :PdfUrl, :ChannelTemplateId, :ChannelTemplateName, :ChannelAutoSave, :TemplateVersion, :Available
|
6942
6990
|
extend Gem::Deprecate
|
6943
|
-
deprecate :IsPromoter, :none, 2023,
|
6944
|
-
deprecate :IsPromoter=, :none, 2023,
|
6991
|
+
deprecate :IsPromoter, :none, 2023, 10
|
6992
|
+
deprecate :IsPromoter=, :none, 2023, 10
|
6945
6993
|
|
6946
6994
|
def initialize(templateid=nil, templatename=nil, description=nil, components=nil, recipients=nil, signcomponents=nil, templatetype=nil, ispromoter=nil, creator=nil, createdon=nil, previewurl=nil, pdfurl=nil, channeltemplateid=nil, channeltemplatename=nil, channelautosave=nil, templateversion=nil, available=nil)
|
6947
6995
|
@TemplateId = templateid
|
@@ -7040,8 +7088,8 @@ module TencentCloud
|
|
7040
7088
|
|
7041
7089
|
attr_accessor :Agent, :BusinessType, :FileInfos, :Operator
|
7042
7090
|
extend Gem::Deprecate
|
7043
|
-
deprecate :Operator, :none, 2023,
|
7044
|
-
deprecate :Operator=, :none, 2023,
|
7091
|
+
deprecate :Operator, :none, 2023, 10
|
7092
|
+
deprecate :Operator=, :none, 2023, 10
|
7045
7093
|
|
7046
7094
|
def initialize(agent=nil, businesstype=nil, fileinfos=nil, operator=nil)
|
7047
7095
|
@Agent = agent
|
@@ -7154,14 +7202,14 @@ module TencentCloud
|
|
7154
7202
|
|
7155
7203
|
attr_accessor :OpenId, :Channel, :CustomUserId, :ClientIp, :ProxyIp
|
7156
7204
|
extend Gem::Deprecate
|
7157
|
-
deprecate :Channel, :none, 2023,
|
7158
|
-
deprecate :Channel=, :none, 2023,
|
7159
|
-
deprecate :CustomUserId, :none, 2023,
|
7160
|
-
deprecate :CustomUserId=, :none, 2023,
|
7161
|
-
deprecate :ClientIp, :none, 2023,
|
7162
|
-
deprecate :ClientIp=, :none, 2023,
|
7163
|
-
deprecate :ProxyIp, :none, 2023,
|
7164
|
-
deprecate :ProxyIp=, :none, 2023,
|
7205
|
+
deprecate :Channel, :none, 2023, 10
|
7206
|
+
deprecate :Channel=, :none, 2023, 10
|
7207
|
+
deprecate :CustomUserId, :none, 2023, 10
|
7208
|
+
deprecate :CustomUserId=, :none, 2023, 10
|
7209
|
+
deprecate :ClientIp, :none, 2023, 10
|
7210
|
+
deprecate :ClientIp=, :none, 2023, 10
|
7211
|
+
deprecate :ProxyIp, :none, 2023, 10
|
7212
|
+
deprecate :ProxyIp=, :none, 2023, 10
|
7165
7213
|
|
7166
7214
|
def initialize(openid=nil, channel=nil, customuserid=nil, clientip=nil, proxyip=nil)
|
7167
7215
|
@OpenId = openid
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-essbasic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.671
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|