tencentcloud-sdk-emr 3.0.581 → 3.0.582

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/v20190103/models.rb +43 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 261e36480e0ef620bc32bea22171e40d124aea84
4
- data.tar.gz: 9dbbff1085fe747371bcf7539ce931668c9ad5e1
3
+ metadata.gz: 08e1afa3afafbcc92cc73e4ea55f3422adeb7095
4
+ data.tar.gz: 6f443ccc012330c37c4add55fc0c2043673db0ba
5
5
  SHA512:
6
- metadata.gz: 2061afb4d48b19534c6609ab93274245f45914204db5c527090decb962e0b6c66f96772bea41562bef9a8dcac9a54c7e84f3775ef9c55b837ed847a2d0906599
7
- data.tar.gz: 9cf5ef461cc24cab032701279368bfd6098b8a217521fc671a3a38a97d831f7d8ca94452be26b2848d6f830b4ce670dccd63cf75c553f67a619738b14b77d72d
6
+ metadata.gz: 8ea6fa53fc48183a19eb7175ed4d4de4ba415e6adbcf5a3a3b0a36e5d7e8d5dca1c8f133b94a46ffe3670a5a69c9a8aa7f6912e3c586e74e056c0197c30136b7
7
+ data.tar.gz: 5750564e6bab86bae80e00738f7903b9fe4fe9f50e31ac9e6847e538d7ff481eb559dc292aa36e47164c5a6cd18d25003f9084704a126d4a4f65a3c6f56d64de
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.581
1
+ 3.0.582
@@ -1252,17 +1252,36 @@ module TencentCloud
1252
1252
  # @type InstanceId: String
1253
1253
  # @param UserNameList: 集群用户名列表
1254
1254
  # @type UserNameList: Array
1255
+ # @param TkeClusterId: tke/eks集群id,容器集群传
1256
+ # @type TkeClusterId: String
1257
+ # @param DisplayStrategy: 默认空,容器版传"native"
1258
+ # @type DisplayStrategy: String
1259
+ # @param UserGroupList: 用户组
1260
+ # @type UserGroupList: Array
1255
1261
 
1256
- attr_accessor :InstanceId, :UserNameList
1262
+ attr_accessor :InstanceId, :UserNameList, :TkeClusterId, :DisplayStrategy, :UserGroupList
1257
1263
 
1258
- def initialize(instanceid=nil, usernamelist=nil)
1264
+ def initialize(instanceid=nil, usernamelist=nil, tkeclusterid=nil, displaystrategy=nil, usergrouplist=nil)
1259
1265
  @InstanceId = instanceid
1260
1266
  @UserNameList = usernamelist
1267
+ @TkeClusterId = tkeclusterid
1268
+ @DisplayStrategy = displaystrategy
1269
+ @UserGroupList = usergrouplist
1261
1270
  end
1262
1271
 
1263
1272
  def deserialize(params)
1264
1273
  @InstanceId = params['InstanceId']
1265
1274
  @UserNameList = params['UserNameList']
1275
+ @TkeClusterId = params['TkeClusterId']
1276
+ @DisplayStrategy = params['DisplayStrategy']
1277
+ unless params['UserGroupList'].nil?
1278
+ @UserGroupList = []
1279
+ params['UserGroupList'].each do |i|
1280
+ userandgroup_tmp = UserAndGroup.new
1281
+ userandgroup_tmp.deserialize(i)
1282
+ @UserGroupList << userandgroup_tmp
1283
+ end
1284
+ end
1266
1285
  end
1267
1286
  end
1268
1287
 
@@ -5978,6 +5997,28 @@ module TencentCloud
5978
5997
  end
5979
5998
  end
5980
5999
 
6000
+ # 容器集群用户组信息
6001
+ class UserAndGroup < TencentCloud::Common::AbstractModel
6002
+ # @param UserName: 用户名
6003
+ # 注意:此字段可能返回 null,表示取不到有效值。
6004
+ # @type UserName: String
6005
+ # @param UserGroup: 用户组
6006
+ # 注意:此字段可能返回 null,表示取不到有效值。
6007
+ # @type UserGroup: String
6008
+
6009
+ attr_accessor :UserName, :UserGroup
6010
+
6011
+ def initialize(username=nil, usergroup=nil)
6012
+ @UserName = username
6013
+ @UserGroup = usergroup
6014
+ end
6015
+
6016
+ def deserialize(params)
6017
+ @UserName = params['UserName']
6018
+ @UserGroup = params['UserGroup']
6019
+ end
6020
+ end
6021
+
5981
6022
  # 添加的用户信息列表
5982
6023
  class UserInfoForUserManager < TencentCloud::Common::AbstractModel
5983
6024
  # @param UserName: 用户名
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.581
4
+ version: 3.0.582
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common