tencentcloud-sdk-essbasic 3.0.668 → 3.0.670
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/client.rb +24 -0
- data/lib/v20210526/models.rb +27 -0
- 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: e26e311f73aa90eb4f9c223fb109f329206c2d6c
|
4
|
+
data.tar.gz: 1748bdb76b2c335badbe3786913d623d35ea9a76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d426849ff1c78e9b3b893fc5d85e42698211a42b6061ece2b029ca74998207a77854d4dbcebd26ec216b42acde7b52fc91206c5c378010a67117cb2b321993fb
|
7
|
+
data.tar.gz: 6a49f039e44b835724e1388e1d1b1f1d11b6b7a06c74a44f4248f63880f37f475c8231655263e2f7b2fe456db05db4762230ee24ef3c09711594c528ae354927
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.670
|
data/lib/v20210526/client.rb
CHANGED
@@ -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. 若子客企业未激活,会进入企业激活流程,首次参与激活流程的经办人会成为超管。
|
data/lib/v20210526/models.rb
CHANGED
@@ -3674,6 +3674,33 @@ module TencentCloud
|
|
3674
3674
|
end
|
3675
3675
|
end
|
3676
3676
|
|
3677
|
+
# CreateChannelOrganizationInfoChangeUrl请求参数结构体
|
3678
|
+
class CreateChannelOrganizationInfoChangeUrlRequest < TencentCloud::Common::AbstractModel
|
3679
|
+
|
3680
|
+
|
3681
|
+
def initialize()
|
3682
|
+
end
|
3683
|
+
|
3684
|
+
def deserialize(params)
|
3685
|
+
end
|
3686
|
+
end
|
3687
|
+
|
3688
|
+
# CreateChannelOrganizationInfoChangeUrl返回参数结构体
|
3689
|
+
class CreateChannelOrganizationInfoChangeUrlResponse < TencentCloud::Common::AbstractModel
|
3690
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3691
|
+
# @type RequestId: String
|
3692
|
+
|
3693
|
+
attr_accessor :RequestId
|
3694
|
+
|
3695
|
+
def initialize(requestid=nil)
|
3696
|
+
@RequestId = requestid
|
3697
|
+
end
|
3698
|
+
|
3699
|
+
def deserialize(params)
|
3700
|
+
@RequestId = params['RequestId']
|
3701
|
+
end
|
3702
|
+
end
|
3703
|
+
|
3677
3704
|
# CreateConsoleLoginUrl请求参数结构体
|
3678
3705
|
class CreateConsoleLoginUrlRequest < TencentCloud::Common::AbstractModel
|
3679
3706
|
# @param Agent: 应用信息
|
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.670
|
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-09-
|
11
|
+
date: 2023-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|