tencentcloud-sdk-ciam 3.0.418 → 3.0.419

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 +131 -17
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33d873088e8d3c8b44a4d4d5b52836147f028411
4
- data.tar.gz: 87d84e83f7158504954c026ecd8884644a9fdbd6
3
+ metadata.gz: 6bb5ddc5d43d7d36348d86c3e81b62b613b12e10
4
+ data.tar.gz: 843c9263a5197d2a5092c2f8414b023aee2524e3
5
5
  SHA512:
6
- metadata.gz: 695c1bd73fcf34e35c097199ee158620af7dd26ff2b9abb4c1d9745a0c68348fd54d70577f11f4b9fa067f0c33a514f7e7252677b91240d8f32b8c32ef33354d
7
- data.tar.gz: 4a0cc06a9d862e8e03c9cdded57e900d55e975f6b5ad630f9a22781d4ee8268831241017d1415edfc70d2ebc77dd5ebd73fa98d669b46456d6b4bbc3feba4b17
6
+ metadata.gz: 1efb4d253ef92375212694524e073b321a27341c6b89431fe24d0ff011887a505a09e80c010190e9e2e05953185e847e034f0abecf7aa22cddeec3ca5c12b59c
7
+ data.tar.gz: a1ff7101673c0b609e4c805299176bd11bd9c917184a729fcc59ff5ba9a878b1860084eb098c1f465df8955a1da4804dac13a5ad33fcbbe48a0b793b84bb34e3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.418
1
+ 3.0.419
@@ -73,7 +73,6 @@ module TencentCloud
73
73
  # @type UserStoreId: String
74
74
  # @param Format: 导出的数据类型
75
75
 
76
- # <li> **JSON** </li> JSON
77
76
  # <li> **NDJSON** </li> New-line Delimited JSON
78
77
  # <li> **CSV** </li> Comma-Separated Values
79
78
  # @type Format: String
@@ -161,10 +160,20 @@ module TencentCloud
161
160
  # @type Birthdate: Integer
162
161
  # @param CustomizationAttributes: 自定义属性
163
162
  # @type CustomizationAttributes: Array
164
-
165
- attr_accessor :UserStoreId, :PhoneNumber, :Email, :Password, :UserName, :Nickname, :Address, :UserGroup, :Birthdate, :CustomizationAttributes
163
+ # @param IndexedAttribute1: 索引字段1
164
+ # @type IndexedAttribute1: String
165
+ # @param IndexedAttribute2: 索引字段2
166
+ # @type IndexedAttribute2: String
167
+ # @param IndexedAttribute3: 索引字段3
168
+ # @type IndexedAttribute3: String
169
+ # @param IndexedAttribute4: 索引字段4
170
+ # @type IndexedAttribute4: String
171
+ # @param IndexedAttribute5: 索引字段5
172
+ # @type IndexedAttribute5: String
173
+
174
+ attr_accessor :UserStoreId, :PhoneNumber, :Email, :Password, :UserName, :Nickname, :Address, :UserGroup, :Birthdate, :CustomizationAttributes, :IndexedAttribute1, :IndexedAttribute2, :IndexedAttribute3, :IndexedAttribute4, :IndexedAttribute5
166
175
 
167
- def initialize(userstoreid=nil, phonenumber=nil, email=nil, password=nil, username=nil, nickname=nil, address=nil, usergroup=nil, birthdate=nil, customizationattributes=nil)
176
+ def initialize(userstoreid=nil, phonenumber=nil, email=nil, password=nil, username=nil, nickname=nil, address=nil, usergroup=nil, birthdate=nil, customizationattributes=nil, indexedattribute1=nil, indexedattribute2=nil, indexedattribute3=nil, indexedattribute4=nil, indexedattribute5=nil)
168
177
  @UserStoreId = userstoreid
169
178
  @PhoneNumber = phonenumber
170
179
  @Email = email
@@ -175,6 +184,11 @@ module TencentCloud
175
184
  @UserGroup = usergroup
176
185
  @Birthdate = birthdate
177
186
  @CustomizationAttributes = customizationattributes
187
+ @IndexedAttribute1 = indexedattribute1
188
+ @IndexedAttribute2 = indexedattribute2
189
+ @IndexedAttribute3 = indexedattribute3
190
+ @IndexedAttribute4 = indexedattribute4
191
+ @IndexedAttribute5 = indexedattribute5
178
192
  end
179
193
 
180
194
  def deserialize(params)
@@ -195,6 +209,11 @@ module TencentCloud
195
209
  @CustomizationAttributes << membermap_tmp
196
210
  end
197
211
  end
212
+ @IndexedAttribute1 = params['IndexedAttribute1']
213
+ @IndexedAttribute2 = params['IndexedAttribute2']
214
+ @IndexedAttribute3 = params['IndexedAttribute3']
215
+ @IndexedAttribute4 = params['IndexedAttribute4']
216
+ @IndexedAttribute5 = params['IndexedAttribute5']
198
217
  end
199
218
  end
200
219
 
@@ -319,14 +338,17 @@ module TencentCloud
319
338
  # @type Filters: Array
320
339
  # @param Original: 是否返回明文
321
340
  # @type Original: Boolean
341
+ # @param Sort: 排序设置
342
+ # @type Sort: :class:`Tencentcloud::Ciam.v20220331.models.Sort`
322
343
 
323
- attr_accessor :UserStoreId, :Pageable, :Filters, :Original
344
+ attr_accessor :UserStoreId, :Pageable, :Filters, :Original, :Sort
324
345
 
325
- def initialize(userstoreid=nil, pageable=nil, filters=nil, original=nil)
346
+ def initialize(userstoreid=nil, pageable=nil, filters=nil, original=nil, sort=nil)
326
347
  @UserStoreId = userstoreid
327
348
  @Pageable = pageable
328
349
  @Filters = filters
329
350
  @Original = original
351
+ @Sort = sort
330
352
  end
331
353
 
332
354
  def deserialize(params)
@@ -344,6 +366,10 @@ module TencentCloud
344
366
  end
345
367
  end
346
368
  @Original = params['Original']
369
+ unless params['Sort'].nil?
370
+ @Sort = Sort.new
371
+ @Sort.deserialize(params['Sort'])
372
+ end
347
373
  end
348
374
  end
349
375
 
@@ -535,10 +561,20 @@ module TencentCloud
535
561
  # @type Salt: :class:`Tencentcloud::Ciam.v20220331.models.Salt`
536
562
  # @param PasswordEncryptTypeEnum: 密码加密方式(SHA1;BCRYPT)
537
563
  # @type PasswordEncryptTypeEnum: String
538
-
539
- attr_accessor :UserName, :PhoneNumber, :Email, :ResidentIdentityCard, :Nickname, :Address, :UserGroup, :QqOpenId, :QqUnionId, :WechatOpenId, :WechatUnionId, :AlipayUserId, :Description, :Birthdate, :Name, :Locale, :Gender, :IdentityVerificationMethod, :IdentityVerified, :Job, :Nationality, :Zone, :Password, :CustomizationAttributes, :Salt, :PasswordEncryptTypeEnum
564
+ # @param IndexedAttribute1: 索引字段1
565
+ # @type IndexedAttribute1: String
566
+ # @param IndexedAttribute2: 索引字段2
567
+ # @type IndexedAttribute2: String
568
+ # @param IndexedAttribute3: 索引字段3
569
+ # @type IndexedAttribute3: String
570
+ # @param IndexedAttribute4: 索引字段4
571
+ # @type IndexedAttribute4: String
572
+ # @param IndexedAttribute5: 索引字段5
573
+ # @type IndexedAttribute5: String
574
+
575
+ attr_accessor :UserName, :PhoneNumber, :Email, :ResidentIdentityCard, :Nickname, :Address, :UserGroup, :QqOpenId, :QqUnionId, :WechatOpenId, :WechatUnionId, :AlipayUserId, :Description, :Birthdate, :Name, :Locale, :Gender, :IdentityVerificationMethod, :IdentityVerified, :Job, :Nationality, :Zone, :Password, :CustomizationAttributes, :Salt, :PasswordEncryptTypeEnum, :IndexedAttribute1, :IndexedAttribute2, :IndexedAttribute3, :IndexedAttribute4, :IndexedAttribute5
540
576
 
541
- def initialize(username=nil, phonenumber=nil, email=nil, residentidentitycard=nil, nickname=nil, address=nil, usergroup=nil, qqopenid=nil, qqunionid=nil, wechatopenid=nil, wechatunionid=nil, alipayuserid=nil, description=nil, birthdate=nil, name=nil, locale=nil, gender=nil, identityverificationmethod=nil, identityverified=nil, job=nil, nationality=nil, zone=nil, password=nil, customizationattributes=nil, salt=nil, passwordencrypttypeenum=nil)
577
+ def initialize(username=nil, phonenumber=nil, email=nil, residentidentitycard=nil, nickname=nil, address=nil, usergroup=nil, qqopenid=nil, qqunionid=nil, wechatopenid=nil, wechatunionid=nil, alipayuserid=nil, description=nil, birthdate=nil, name=nil, locale=nil, gender=nil, identityverificationmethod=nil, identityverified=nil, job=nil, nationality=nil, zone=nil, password=nil, customizationattributes=nil, salt=nil, passwordencrypttypeenum=nil, indexedattribute1=nil, indexedattribute2=nil, indexedattribute3=nil, indexedattribute4=nil, indexedattribute5=nil)
542
578
  @UserName = username
543
579
  @PhoneNumber = phonenumber
544
580
  @Email = email
@@ -565,6 +601,11 @@ module TencentCloud
565
601
  @CustomizationAttributes = customizationattributes
566
602
  @Salt = salt
567
603
  @PasswordEncryptTypeEnum = passwordencrypttypeenum
604
+ @IndexedAttribute1 = indexedattribute1
605
+ @IndexedAttribute2 = indexedattribute2
606
+ @IndexedAttribute3 = indexedattribute3
607
+ @IndexedAttribute4 = indexedattribute4
608
+ @IndexedAttribute5 = indexedattribute5
568
609
  end
569
610
 
570
611
  def deserialize(params)
@@ -604,6 +645,11 @@ module TencentCloud
604
645
  @Salt.deserialize(params['Salt'])
605
646
  end
606
647
  @PasswordEncryptTypeEnum = params['PasswordEncryptTypeEnum']
648
+ @IndexedAttribute1 = params['IndexedAttribute1']
649
+ @IndexedAttribute2 = params['IndexedAttribute2']
650
+ @IndexedAttribute3 = params['IndexedAttribute3']
651
+ @IndexedAttribute4 = params['IndexedAttribute4']
652
+ @IndexedAttribute5 = params['IndexedAttribute5']
607
653
  end
608
654
  end
609
655
 
@@ -627,7 +673,6 @@ module TencentCloud
627
673
  # @type CreatedDate: Integer
628
674
  # @param Format: 任务的数据类型
629
675
 
630
- # <li> **JSON** </li> JSON
631
676
  # <li> **NDJSON** </li> New-line Delimited JSON
632
677
  # <li> **CSV** </li> Comma-Separated Values
633
678
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1148,19 +1193,23 @@ module TencentCloud
1148
1193
  # @type PropertyValue: String
1149
1194
  # @param Logic: 逻辑值,等于true,不等于false
1150
1195
  # @type Logic: Boolean
1196
+ # @param OperateLogic: 操作逻辑符(支持> < = >= <= != between)
1197
+ # @type OperateLogic: String
1151
1198
 
1152
- attr_accessor :PropertyKey, :PropertyValue, :Logic
1199
+ attr_accessor :PropertyKey, :PropertyValue, :Logic, :OperateLogic
1153
1200
 
1154
- def initialize(propertykey=nil, propertyvalue=nil, logic=nil)
1201
+ def initialize(propertykey=nil, propertyvalue=nil, logic=nil, operatelogic=nil)
1155
1202
  @PropertyKey = propertykey
1156
1203
  @PropertyValue = propertyvalue
1157
1204
  @Logic = logic
1205
+ @OperateLogic = operatelogic
1158
1206
  end
1159
1207
 
1160
1208
  def deserialize(params)
1161
1209
  @PropertyKey = params['PropertyKey']
1162
1210
  @PropertyValue = params['PropertyValue']
1163
1211
  @Logic = params['Logic']
1212
+ @OperateLogic = params['OperateLogic']
1164
1213
  end
1165
1214
  end
1166
1215
 
@@ -1306,6 +1355,26 @@ module TencentCloud
1306
1355
  end
1307
1356
  end
1308
1357
 
1358
+ # 查询用户排序
1359
+ class Sort < TencentCloud::Common::AbstractModel
1360
+ # @param PropertyKey: 排序字段的key,参考自定义属性
1361
+ # @type PropertyKey: String
1362
+ # @param Order: 升序或者降序,ASC/DESC
1363
+ # @type Order: String
1364
+
1365
+ attr_accessor :PropertyKey, :Order
1366
+
1367
+ def initialize(propertykey=nil, order=nil)
1368
+ @PropertyKey = propertykey
1369
+ @Order = order
1370
+ end
1371
+
1372
+ def deserialize(params)
1373
+ @PropertyKey = params['PropertyKey']
1374
+ @Order = params['Order']
1375
+ end
1376
+ end
1377
+
1309
1378
  # UpdateUser请求参数结构体
1310
1379
  class UpdateUserRequest < TencentCloud::Common::AbstractModel
1311
1380
  # @param UserId: 用户ID
@@ -1328,10 +1397,20 @@ module TencentCloud
1328
1397
  # @type Birthdate: Integer
1329
1398
  # @param CustomizationAttributes: 自定义属性
1330
1399
  # @type CustomizationAttributes: Array
1331
-
1332
- attr_accessor :UserId, :UserStoreId, :UserName, :PhoneNumber, :Email, :Nickname, :Address, :UserGroup, :Birthdate, :CustomizationAttributes
1400
+ # @param IndexedAttribute1: 索引字段1
1401
+ # @type IndexedAttribute1: String
1402
+ # @param IndexedAttribute2: 索引字段2
1403
+ # @type IndexedAttribute2: String
1404
+ # @param IndexedAttribute3: 索引字段3
1405
+ # @type IndexedAttribute3: String
1406
+ # @param IndexedAttribute4: 索引字段4
1407
+ # @type IndexedAttribute4: String
1408
+ # @param IndexedAttribute5: 索引字段5
1409
+ # @type IndexedAttribute5: String
1410
+
1411
+ attr_accessor :UserId, :UserStoreId, :UserName, :PhoneNumber, :Email, :Nickname, :Address, :UserGroup, :Birthdate, :CustomizationAttributes, :IndexedAttribute1, :IndexedAttribute2, :IndexedAttribute3, :IndexedAttribute4, :IndexedAttribute5
1333
1412
 
1334
- def initialize(userid=nil, userstoreid=nil, username=nil, phonenumber=nil, email=nil, nickname=nil, address=nil, usergroup=nil, birthdate=nil, customizationattributes=nil)
1413
+ def initialize(userid=nil, userstoreid=nil, username=nil, phonenumber=nil, email=nil, nickname=nil, address=nil, usergroup=nil, birthdate=nil, customizationattributes=nil, indexedattribute1=nil, indexedattribute2=nil, indexedattribute3=nil, indexedattribute4=nil, indexedattribute5=nil)
1335
1414
  @UserId = userid
1336
1415
  @UserStoreId = userstoreid
1337
1416
  @UserName = username
@@ -1342,6 +1421,11 @@ module TencentCloud
1342
1421
  @UserGroup = usergroup
1343
1422
  @Birthdate = birthdate
1344
1423
  @CustomizationAttributes = customizationattributes
1424
+ @IndexedAttribute1 = indexedattribute1
1425
+ @IndexedAttribute2 = indexedattribute2
1426
+ @IndexedAttribute3 = indexedattribute3
1427
+ @IndexedAttribute4 = indexedattribute4
1428
+ @IndexedAttribute5 = indexedattribute5
1345
1429
  end
1346
1430
 
1347
1431
  def deserialize(params)
@@ -1362,6 +1446,11 @@ module TencentCloud
1362
1446
  @CustomizationAttributes << membermap_tmp
1363
1447
  end
1364
1448
  end
1449
+ @IndexedAttribute1 = params['IndexedAttribute1']
1450
+ @IndexedAttribute2 = params['IndexedAttribute2']
1451
+ @IndexedAttribute3 = params['IndexedAttribute3']
1452
+ @IndexedAttribute4 = params['IndexedAttribute4']
1453
+ @IndexedAttribute5 = params['IndexedAttribute5']
1365
1454
  end
1366
1455
  end
1367
1456
 
@@ -1539,10 +1628,25 @@ module TencentCloud
1539
1628
  # @param LockTime: 锁定时间点
1540
1629
  # 注意:此字段可能返回 null,表示取不到有效值。
1541
1630
  # @type LockTime: Integer
1631
+ # @param IndexedAttribute1: 索引字段1
1632
+ # 注意:此字段可能返回 null,表示取不到有效值。
1633
+ # @type IndexedAttribute1: String
1634
+ # @param IndexedAttribute2: 索引字段2
1635
+ # 注意:此字段可能返回 null,表示取不到有效值。
1636
+ # @type IndexedAttribute2: String
1637
+ # @param IndexedAttribute3: 索引字段3
1638
+ # 注意:此字段可能返回 null,表示取不到有效值。
1639
+ # @type IndexedAttribute3: String
1640
+ # @param IndexedAttribute4: 索引字段4
1641
+ # 注意:此字段可能返回 null,表示取不到有效值。
1642
+ # @type IndexedAttribute4: String
1643
+ # @param IndexedAttribute5: 索引字段5
1644
+ # 注意:此字段可能返回 null,表示取不到有效值。
1645
+ # @type IndexedAttribute5: String
1542
1646
 
1543
- attr_accessor :UserId, :UserName, :PhoneNumber, :Email, :LastSignOn, :CreatedDate, :Status, :UserDataSourceEnum, :Nickname, :Address, :Birthdate, :UserGroups, :LastModifiedDate, :CustomAttributes, :ResidentIdentityCard, :QqOpenId, :QqUnionId, :WechatOpenId, :WechatUnionId, :AlipayUserId, :Description, :Name, :Locale, :Gender, :IdentityVerificationMethod, :IdentityVerified, :Job, :Nationality, :Primary, :Zone, :AlreadyFirstLogin, :TenantId, :UserStoreId, :Version, :LockType, :LockTime
1647
+ attr_accessor :UserId, :UserName, :PhoneNumber, :Email, :LastSignOn, :CreatedDate, :Status, :UserDataSourceEnum, :Nickname, :Address, :Birthdate, :UserGroups, :LastModifiedDate, :CustomAttributes, :ResidentIdentityCard, :QqOpenId, :QqUnionId, :WechatOpenId, :WechatUnionId, :AlipayUserId, :Description, :Name, :Locale, :Gender, :IdentityVerificationMethod, :IdentityVerified, :Job, :Nationality, :Primary, :Zone, :AlreadyFirstLogin, :TenantId, :UserStoreId, :Version, :LockType, :LockTime, :IndexedAttribute1, :IndexedAttribute2, :IndexedAttribute3, :IndexedAttribute4, :IndexedAttribute5
1544
1648
 
1545
- def initialize(userid=nil, username=nil, phonenumber=nil, email=nil, lastsignon=nil, createddate=nil, status=nil, userdatasourceenum=nil, nickname=nil, address=nil, birthdate=nil, usergroups=nil, lastmodifieddate=nil, customattributes=nil, residentidentitycard=nil, qqopenid=nil, qqunionid=nil, wechatopenid=nil, wechatunionid=nil, alipayuserid=nil, description=nil, name=nil, locale=nil, gender=nil, identityverificationmethod=nil, identityverified=nil, job=nil, nationality=nil, primary=nil, zone=nil, alreadyfirstlogin=nil, tenantid=nil, userstoreid=nil, version=nil, locktype=nil, locktime=nil)
1649
+ def initialize(userid=nil, username=nil, phonenumber=nil, email=nil, lastsignon=nil, createddate=nil, status=nil, userdatasourceenum=nil, nickname=nil, address=nil, birthdate=nil, usergroups=nil, lastmodifieddate=nil, customattributes=nil, residentidentitycard=nil, qqopenid=nil, qqunionid=nil, wechatopenid=nil, wechatunionid=nil, alipayuserid=nil, description=nil, name=nil, locale=nil, gender=nil, identityverificationmethod=nil, identityverified=nil, job=nil, nationality=nil, primary=nil, zone=nil, alreadyfirstlogin=nil, tenantid=nil, userstoreid=nil, version=nil, locktype=nil, locktime=nil, indexedattribute1=nil, indexedattribute2=nil, indexedattribute3=nil, indexedattribute4=nil, indexedattribute5=nil)
1546
1650
  @UserId = userid
1547
1651
  @UserName = username
1548
1652
  @PhoneNumber = phonenumber
@@ -1579,6 +1683,11 @@ module TencentCloud
1579
1683
  @Version = version
1580
1684
  @LockType = locktype
1581
1685
  @LockTime = locktime
1686
+ @IndexedAttribute1 = indexedattribute1
1687
+ @IndexedAttribute2 = indexedattribute2
1688
+ @IndexedAttribute3 = indexedattribute3
1689
+ @IndexedAttribute4 = indexedattribute4
1690
+ @IndexedAttribute5 = indexedattribute5
1582
1691
  end
1583
1692
 
1584
1693
  def deserialize(params)
@@ -1625,6 +1734,11 @@ module TencentCloud
1625
1734
  @Version = params['Version']
1626
1735
  @LockType = params['LockType']
1627
1736
  @LockTime = params['LockTime']
1737
+ @IndexedAttribute1 = params['IndexedAttribute1']
1738
+ @IndexedAttribute2 = params['IndexedAttribute2']
1739
+ @IndexedAttribute3 = params['IndexedAttribute3']
1740
+ @IndexedAttribute4 = params['IndexedAttribute4']
1741
+ @IndexedAttribute5 = params['IndexedAttribute5']
1628
1742
  end
1629
1743
  end
1630
1744
 
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: 3.0.418
4
+ version: 3.0.419
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-09-26 00:00:00.000000000 Z
11
+ date: 2022-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common