tencentcloud-sdk-ciam 1.0.335 → 1.0.336
Sign up to get free protection for your applications and to get access to all the features.
- 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: f5e9dbfc0b494415edfb95e70c12deec4e904dae
|
4
|
+
data.tar.gz: 976839ac7725e7444e54c0bdd6e9049aeeb8253d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f5e589594541f7d8bd5e34d0486f2215eac8a031d1cbf1ae696a8c0a0fd49a6e71d2daa16630d5152bec63cfcb4ed76fefa4c8799ccd9d46a794a7197b68471
|
7
|
+
data.tar.gz: c07df3e7c99a70f797060a8d5ef12219fa2b11b898dae1cc5c597ad19692cbb3e324f60fe0c7b6a1aaf99194ebdfe5d46757d9eb12ea0ff5ef9bb8916492579b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.336
|
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.336
|
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
|