tencentcloud-sdk-ciam 1.0.335 → 1.0.338
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/v20220331/models.rb +29 -1
- 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: 735225a3733962bc32df06ed997af08057352b89
|
4
|
+
data.tar.gz: f40f4d7ee33d5c9df4a54b78ec71bbee396e5f12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8054e1c54ed6249a0a3dd5c565153f7a1ec3403ca41ad9ca3925717304b850426432b1bdc144d981a7ca3211e15f67e86c92176ec8bfb67e5bcfd6f92592b2d3
|
7
|
+
data.tar.gz: ff0608e52a33ac3cc35e60a9bcd9a2371852a6c42d3dc87620b4b1d53adc3a3adb5b416b9d46bac9602cbed801278dee889eeca34a77ecfce159c74529c21247
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.338
|
data/lib/v20220331/models.rb
CHANGED
@@ -933,12 +933,40 @@ module TencentCloud
|
|
933
933
|
|
934
934
|
# 盐位
|
935
935
|
class SaltLocation < TencentCloud::Common::AbstractModel
|
936
|
+
# @param SaltLocationTypeEnum: 密码加盐的类型(HEAD,TAIL,OTHER)
|
937
|
+
# @type SaltLocationTypeEnum: String
|
938
|
+
# @param SaltLocationRule: 加盐规则
|
939
|
+
# @type SaltLocationRule: :class:`Tencentcloud::Ciam.v20220331.models.SaltLocationRule`
|
936
940
|
|
941
|
+
attr_accessor :SaltLocationTypeEnum, :SaltLocationRule
|
937
942
|
|
938
|
-
def initialize()
|
943
|
+
def initialize(saltlocationtypeenum=nil, saltlocationrule=nil)
|
944
|
+
@SaltLocationTypeEnum = saltlocationtypeenum
|
945
|
+
@SaltLocationRule = saltlocationrule
|
939
946
|
end
|
940
947
|
|
941
948
|
def deserialize(params)
|
949
|
+
@SaltLocationTypeEnum = params['SaltLocationTypeEnum']
|
950
|
+
unless params['SaltLocationRule'].nil?
|
951
|
+
@SaltLocationRule = SaltLocationRule.new
|
952
|
+
@SaltLocationRule.deserialize(params['SaltLocationRule'])
|
953
|
+
end
|
954
|
+
end
|
955
|
+
end
|
956
|
+
|
957
|
+
# 盐位规则
|
958
|
+
class SaltLocationRule < TencentCloud::Common::AbstractModel
|
959
|
+
# @param Regex: 表达式
|
960
|
+
# @type Regex: String
|
961
|
+
|
962
|
+
attr_accessor :Regex
|
963
|
+
|
964
|
+
def initialize(regex=nil)
|
965
|
+
@Regex = regex
|
966
|
+
end
|
967
|
+
|
968
|
+
def deserialize(params)
|
969
|
+
@Regex = params['Regex']
|
942
970
|
end
|
943
971
|
end
|
944
972
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ciam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.338
|
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-06-
|
11
|
+
date: 2022-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|