tencentcloud-sdk-essbasic 3.0.946 → 3.0.947
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210526/models.rb +18 -4
- 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: e24baebb2ed107d6f506e3e428410e5c3e68a552
|
|
4
|
+
data.tar.gz: 0d9e05036b627cffcb3233e573e1f826651fc52d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afa9c182df0735482376165ad19f492fd81f10079bab6f48525183664328cf153db77baad87dd1d381145e3f5651afecbc8eaa45c27708f99f1b3d9db8a6dc21
|
|
7
|
+
data.tar.gz: 04d51cf04f3a90043bcea81d390075f8702da3a67f5e48616c2ae2d7ecfca94a2bac593330ebdd5479a4648aa4f274d171299265336ba6c58986f9c87a14d43d
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.947
|
data/lib/v20210526/models.rb
CHANGED
|
@@ -5199,18 +5199,30 @@ module TencentCloud
|
|
|
5199
5199
|
# @param Agent: 应用相关信息。 此接口Agent.AppId 必填。
|
|
5200
5200
|
# @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
|
|
5201
5201
|
# @param OperateTypes: 初始化操作类型
|
|
5202
|
-
# <ul
|
|
5203
|
-
# <li>
|
|
5202
|
+
# <ul>
|
|
5203
|
+
# <li>CREATE_SEAL : 创建印章</li>
|
|
5204
|
+
# <li>OPEN_AUTO_SIGN :开通企业自动签署</li>
|
|
5205
|
+
# <li>PARTNER_AUTO_SIGN_AUTH :合作方企业或应用平台方授权自动签</li>
|
|
5206
|
+
# </ul>
|
|
5204
5207
|
# @type OperateTypes: Array
|
|
5205
5208
|
# @param ProxyOrganizationOpenIds: 批量操作的企业列表在第三方平台的企业Id列表,即ProxyOrganizationOpenId列表,最大支持50个
|
|
5206
5209
|
# @type ProxyOrganizationOpenIds: Array
|
|
5210
|
+
# @param IsAuthorizePlatformApplication: 当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且是给应用平台方授权自动签时传true。
|
|
5211
|
+
# 
|
|
5212
|
+
# @type IsAuthorizePlatformApplication: Boolean
|
|
5213
|
+
# @param AuthorizedProxyOrganizationOpenId: 被授权的合作方企业在第三方平台子客企业标识,即ProxyOrganizationOpenId,当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且要进行合作方企业授权自动签时必传。
|
|
5214
|
+
|
|
5215
|
+
|
|
5216
|
+
# @type AuthorizedProxyOrganizationOpenId: String
|
|
5207
5217
|
|
|
5208
|
-
attr_accessor :Agent, :OperateTypes, :ProxyOrganizationOpenIds
|
|
5218
|
+
attr_accessor :Agent, :OperateTypes, :ProxyOrganizationOpenIds, :IsAuthorizePlatformApplication, :AuthorizedProxyOrganizationOpenId
|
|
5209
5219
|
|
|
5210
|
-
def initialize(agent=nil, operatetypes=nil, proxyorganizationopenids=nil)
|
|
5220
|
+
def initialize(agent=nil, operatetypes=nil, proxyorganizationopenids=nil, isauthorizeplatformapplication=nil, authorizedproxyorganizationopenid=nil)
|
|
5211
5221
|
@Agent = agent
|
|
5212
5222
|
@OperateTypes = operatetypes
|
|
5213
5223
|
@ProxyOrganizationOpenIds = proxyorganizationopenids
|
|
5224
|
+
@IsAuthorizePlatformApplication = isauthorizeplatformapplication
|
|
5225
|
+
@AuthorizedProxyOrganizationOpenId = authorizedproxyorganizationopenid
|
|
5214
5226
|
end
|
|
5215
5227
|
|
|
5216
5228
|
def deserialize(params)
|
|
@@ -5220,6 +5232,8 @@ module TencentCloud
|
|
|
5220
5232
|
end
|
|
5221
5233
|
@OperateTypes = params['OperateTypes']
|
|
5222
5234
|
@ProxyOrganizationOpenIds = params['ProxyOrganizationOpenIds']
|
|
5235
|
+
@IsAuthorizePlatformApplication = params['IsAuthorizePlatformApplication']
|
|
5236
|
+
@AuthorizedProxyOrganizationOpenId = params['AuthorizedProxyOrganizationOpenId']
|
|
5223
5237
|
end
|
|
5224
5238
|
end
|
|
5225
5239
|
|
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.947
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-11-
|
|
11
|
+
date: 2024-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|