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.
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: 735225a3733962bc32df06ed997af08057352b89
4
+ data.tar.gz: f40f4d7ee33d5c9df4a54b78ec71bbee396e5f12
5
5
  SHA512:
6
- metadata.gz: 1ef0771c507c8d6789f1de1b443279dec18c551ab6454b6e9844508fad46b75682451595443c19a5643227a63b7f7f4e27616c91b7b0c9f3d54e96f0f2b490fa
7
- data.tar.gz: 2ee7a5d6e404dfba5e6a6a4c40ac268bf16540c5e85d0c254ad968d007784118c3a0fcdbecfd5e58b40c1f219ac6aa1f057f748d645a5d4f899db8d91601f84c
6
+ metadata.gz: 8054e1c54ed6249a0a3dd5c565153f7a1ec3403ca41ad9ca3925717304b850426432b1bdc144d981a7ca3211e15f67e86c92176ec8bfb67e5bcfd6f92592b2d3
7
+ data.tar.gz: ff0608e52a33ac3cc35e60a9bcd9a2371852a6c42d3dc87620b4b1d53adc3a3adb5b416b9d46bac9602cbed801278dee889eeca34a77ecfce159c74529c21247
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.335
1
+ 1.0.338
@@ -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.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-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