tencentcloud-sdk-organization 3.0.894 → 3.0.895

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: 4455732c5a521787441553dcaacd1ee4b39821a9
4
- data.tar.gz: b1c0b2f50217a22fd0b6e2e162a445c880d859cc
3
+ metadata.gz: 882481377734ef86db24a274e10570eae193dec1
4
+ data.tar.gz: 2d516ef4d0ef5ed844e2aeac63d5782fe3067ca8
5
5
  SHA512:
6
- metadata.gz: acdedaa60aea02bf9a955c4d8865cf345ddbe2fdccd3a99cc88de4432e6bb7e0ea29ad57fbce5ab25529002b7188ece7de35832c7e6ae850321e952af0c4778c
7
- data.tar.gz: 687e5debb8b635d13c53fd13d520345963d9bf045daff17b8978af6003247ecd422733e192a0aae280a62b99c05d3568530d052d38313683b2e1026ca10e8654
6
+ metadata.gz: ffe4a6a4918e37f876aa245407c21b9acd8887b296f652e72aa29ed9d35182b2a90c63a0facd6154ff90f25a9cd0d3f45e66ab82dc31fea4cee9ee7eed9b6084
7
+ data.tar.gz: 385ac023bb53d230221950bef43fe188690931372169ddc05ae34e3b098c6709d3e93b11870b005763795151953806ece1fa573553eb4d336dccb4987afcdfe4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.894
1
+ 3.0.895
@@ -2477,6 +2477,30 @@ module TencentCloud
2477
2477
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2478
2478
  end
2479
2479
 
2480
+ # 重新发送成员绑定邮箱激活邮件
2481
+
2482
+ # @param request: Request instance for SendOrgMemberAccountBindEmail.
2483
+ # @type request: :class:`Tencentcloud::organization::V20210331::SendOrgMemberAccountBindEmailRequest`
2484
+ # @rtype: :class:`Tencentcloud::organization::V20210331::SendOrgMemberAccountBindEmailResponse`
2485
+ def SendOrgMemberAccountBindEmail(request)
2486
+ body = send_request('SendOrgMemberAccountBindEmail', request.serialize)
2487
+ response = JSON.parse(body)
2488
+ if response['Response'].key?('Error') == false
2489
+ model = SendOrgMemberAccountBindEmailResponse.new
2490
+ model.deserialize(response['Response'])
2491
+ model
2492
+ else
2493
+ code = response['Response']['Error']['Code']
2494
+ message = response['Response']['Error']['Message']
2495
+ reqid = response['Response']['RequestId']
2496
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2497
+ end
2498
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2499
+ raise e
2500
+ rescue StandardError => e
2501
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2502
+ end
2503
+
2480
2504
  # 配置SAML身份提供商信息
2481
2505
 
2482
2506
  # @param request: Request instance for SetExternalSAMLIdentityProvider.
@@ -6906,6 +6906,42 @@ module TencentCloud
6906
6906
  end
6907
6907
  end
6908
6908
 
6909
+ # SendOrgMemberAccountBindEmail请求参数结构体
6910
+ class SendOrgMemberAccountBindEmailRequest < TencentCloud::Common::AbstractModel
6911
+ # @param MemberUin: 成员Uin。
6912
+ # @type MemberUin: Integer
6913
+ # @param BindId: 绑定ID。可以通过[DescribeOrganizationMemberEmailBind](https://cloud.tencent.com/document/product/850/93332)获取
6914
+ # @type BindId: Integer
6915
+
6916
+ attr_accessor :MemberUin, :BindId
6917
+
6918
+ def initialize(memberuin=nil, bindid=nil)
6919
+ @MemberUin = memberuin
6920
+ @BindId = bindid
6921
+ end
6922
+
6923
+ def deserialize(params)
6924
+ @MemberUin = params['MemberUin']
6925
+ @BindId = params['BindId']
6926
+ end
6927
+ end
6928
+
6929
+ # SendOrgMemberAccountBindEmail返回参数结构体
6930
+ class SendOrgMemberAccountBindEmailResponse < TencentCloud::Common::AbstractModel
6931
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6932
+ # @type RequestId: String
6933
+
6934
+ attr_accessor :RequestId
6935
+
6936
+ def initialize(requestid=nil)
6937
+ @RequestId = requestid
6938
+ end
6939
+
6940
+ def deserialize(params)
6941
+ @RequestId = params['RequestId']
6942
+ end
6943
+ end
6944
+
6909
6945
  # SetExternalSAMLIdentityProvider请求参数结构体
6910
6946
  class SetExternalSAMLIdentityProviderRequest < TencentCloud::Common::AbstractModel
6911
6947
  # @param ZoneId: 空间ID。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-organization
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.894
4
+ version: 3.0.895
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-08-26 00:00:00.000000000 Z
11
+ date: 2024-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common