tencentcloud-sdk-smh 1.0.300 → 1.0.303
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/v20210712/models.rb +14 -6
- 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: fe084e93b5c80076618ab0739125749257fad248
|
4
|
+
data.tar.gz: b615a01f51cdcc2561321ded8da0836711dfd93f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a660978534b1e0336c297320b0beda68aba0f3252a9284df51530c36e31d7ddab658a2f360ffbac033cd6439e00cf06dfd644ff60f3431b58db164d9ea696283
|
7
|
+
data.tar.gz: f3e59e9bd0b347df72e74e48b2bc9c0854ef3610031374bd4b2ca18a1814a24209c35904bbe7f4d1618183f306a973e1dcb4fd297aa34cba0f859c14037277a4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.303
|
data/lib/v20210712/models.rb
CHANGED
@@ -649,21 +649,25 @@ module TencentCloud
|
|
649
649
|
# @type Purpose: String
|
650
650
|
# @param InstanceId: 官方云盘实例 ID
|
651
651
|
# @type InstanceId: String
|
652
|
-
# @param PhoneNumber:
|
652
|
+
# @param PhoneNumber: 将作为超级管理员账号的手机号码
|
653
653
|
# @type PhoneNumber: String
|
654
|
+
# @param CountryCode: 将作为超级管理员账号的手机号码的国家代码。默认为 +86。
|
655
|
+
# @type CountryCode: String
|
654
656
|
|
655
|
-
attr_accessor :Purpose, :InstanceId, :PhoneNumber
|
657
|
+
attr_accessor :Purpose, :InstanceId, :PhoneNumber, :CountryCode
|
656
658
|
|
657
|
-
def initialize(purpose=nil, instanceid=nil, phonenumber=nil)
|
659
|
+
def initialize(purpose=nil, instanceid=nil, phonenumber=nil, countrycode=nil)
|
658
660
|
@Purpose = purpose
|
659
661
|
@InstanceId = instanceid
|
660
662
|
@PhoneNumber = phonenumber
|
663
|
+
@CountryCode = countrycode
|
661
664
|
end
|
662
665
|
|
663
666
|
def deserialize(params)
|
664
667
|
@Purpose = params['Purpose']
|
665
668
|
@InstanceId = params['InstanceId']
|
666
669
|
@PhoneNumber = params['PhoneNumber']
|
670
|
+
@CountryCode = params['CountryCode']
|
667
671
|
end
|
668
672
|
end
|
669
673
|
|
@@ -743,18 +747,21 @@ module TencentCloud
|
|
743
747
|
# @type Purpose: String
|
744
748
|
# @param InstanceId: 官方云盘实例 ID
|
745
749
|
# @type InstanceId: String
|
746
|
-
# @param PhoneNumber:
|
750
|
+
# @param PhoneNumber: 将作为超级管理员账号的手机号码
|
747
751
|
# @type PhoneNumber: String
|
748
752
|
# @param Code: 短信验证码
|
749
753
|
# @type Code: String
|
754
|
+
# @param CountryCode: 将作为超级管理员账号的手机号码的国家代码。默认为 +86。
|
755
|
+
# @type CountryCode: String
|
750
756
|
|
751
|
-
attr_accessor :Purpose, :InstanceId, :PhoneNumber, :Code
|
757
|
+
attr_accessor :Purpose, :InstanceId, :PhoneNumber, :Code, :CountryCode
|
752
758
|
|
753
|
-
def initialize(purpose=nil, instanceid=nil, phonenumber=nil, code=nil)
|
759
|
+
def initialize(purpose=nil, instanceid=nil, phonenumber=nil, code=nil, countrycode=nil)
|
754
760
|
@Purpose = purpose
|
755
761
|
@InstanceId = instanceid
|
756
762
|
@PhoneNumber = phonenumber
|
757
763
|
@Code = code
|
764
|
+
@CountryCode = countrycode
|
758
765
|
end
|
759
766
|
|
760
767
|
def deserialize(params)
|
@@ -762,6 +769,7 @@ module TencentCloud
|
|
762
769
|
@InstanceId = params['InstanceId']
|
763
770
|
@PhoneNumber = params['PhoneNumber']
|
764
771
|
@Code = params['Code']
|
772
|
+
@CountryCode = params['CountryCode']
|
765
773
|
end
|
766
774
|
end
|
767
775
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-smh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.303
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|