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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220331/models.rb +29 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86441538e9e8301aa9704e940418a7f5d4b5cd24
4
- data.tar.gz: 048a219e7b544fa4971a843bda3f8aab63789a90
3
+ metadata.gz: f5e9dbfc0b494415edfb95e70c12deec4e904dae
4
+ data.tar.gz: 976839ac7725e7444e54c0bdd6e9049aeeb8253d
5
5
  SHA512:
6
- metadata.gz: 1ef0771c507c8d6789f1de1b443279dec18c551ab6454b6e9844508fad46b75682451595443c19a5643227a63b7f7f4e27616c91b7b0c9f3d54e96f0f2b490fa
7
- data.tar.gz: 2ee7a5d6e404dfba5e6a6a4c40ac268bf16540c5e85d0c254ad968d007784118c3a0fcdbecfd5e58b40c1f219ac6aa1f057f748d645a5d4f899db8d91601f84c
6
+ metadata.gz: 8f5e589594541f7d8bd5e34d0486f2215eac8a031d1cbf1ae696a8c0a0fd49a6e71d2daa16630d5152bec63cfcb4ed76fefa4c8799ccd9d46a794a7197b68471
7
+ data.tar.gz: c07df3e7c99a70f797060a8d5ef12219fa2b11b898dae1cc5c597ad19692cbb3e324f60fe0c7b6a1aaf99194ebdfe5d46757d9eb12ea0ff5ef9bb8916492579b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.335
1
+ 1.0.336
@@ -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.335
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-16 00:00:00.000000000 Z
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