tencentcloud-sdk-emr 3.0.1152 → 3.0.1161
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190103/models.rb +12 -4
- 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: a2eb20d07d23aced3ffc95ead9117c27ff581847
|
|
4
|
+
data.tar.gz: 012e2c2d9a82f589c7d2db52e9219487957f96a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 971bddcbc0721f9e19061071f69076225c8fa3e939eed97faa4d77a91c5c53d371a2ecb87149d2e786c06850a27c63ff564c6c4bd3f9f01006f69bccd1e55226
|
|
7
|
+
data.tar.gz: a4175807e2b344a29c854843faa88b8ee23130d5f26b539544052d20daa5b1bb1bbfece6eb7afad9998a92107da1f4c2bcc28676483eb76d29a47cd469d3c778
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
data/lib/v20190103/models.rb
CHANGED
|
@@ -4150,16 +4150,19 @@ module TencentCloud
|
|
|
4150
4150
|
# @type Asc: Integer
|
|
4151
4151
|
# @param Filters: 自定义查询过滤器。示例:<li>根据ClusterId过滤实例:[{"Name":"ClusterId","Values":["emr-xxxxxxxx"]}]</li><li>根据clusterName过滤实例:[{"Name": "ClusterName","Values": ["cluster_name"]}]</li><li>根据ClusterStatus过滤实例:[{"Name": "ClusterStatus","Values": ["2"]}]</li>
|
|
4152
4152
|
# @type Filters: Array
|
|
4153
|
+
# @param ClusterType: 默认0为普通集群,2为tke集群
|
|
4154
|
+
# @type ClusterType: Integer
|
|
4153
4155
|
|
|
4154
|
-
attr_accessor :DisplayStrategy, :Offset, :Limit, :OrderField, :Asc, :Filters
|
|
4156
|
+
attr_accessor :DisplayStrategy, :Offset, :Limit, :OrderField, :Asc, :Filters, :ClusterType
|
|
4155
4157
|
|
|
4156
|
-
def initialize(displaystrategy=nil, offset=nil, limit=nil, orderfield=nil, asc=nil, filters=nil)
|
|
4158
|
+
def initialize(displaystrategy=nil, offset=nil, limit=nil, orderfield=nil, asc=nil, filters=nil, clustertype=nil)
|
|
4157
4159
|
@DisplayStrategy = displaystrategy
|
|
4158
4160
|
@Offset = offset
|
|
4159
4161
|
@Limit = limit
|
|
4160
4162
|
@OrderField = orderfield
|
|
4161
4163
|
@Asc = asc
|
|
4162
4164
|
@Filters = filters
|
|
4165
|
+
@ClusterType = clustertype
|
|
4163
4166
|
end
|
|
4164
4167
|
|
|
4165
4168
|
def deserialize(params)
|
|
@@ -4176,6 +4179,7 @@ module TencentCloud
|
|
|
4176
4179
|
@Filters << filters_tmp
|
|
4177
4180
|
end
|
|
4178
4181
|
end
|
|
4182
|
+
@ClusterType = params['ClusterType']
|
|
4179
4183
|
end
|
|
4180
4184
|
end
|
|
4181
4185
|
|
|
@@ -9087,19 +9091,23 @@ module TencentCloud
|
|
|
9087
9091
|
# @type UserName: String
|
|
9088
9092
|
# @param PassWord: 密码
|
|
9089
9093
|
# @type PassWord: String
|
|
9094
|
+
# @param SyncPwd: 是否同步密码
|
|
9095
|
+
# @type SyncPwd: Boolean
|
|
9090
9096
|
|
|
9091
|
-
attr_accessor :InstanceId, :UserName, :PassWord
|
|
9097
|
+
attr_accessor :InstanceId, :UserName, :PassWord, :SyncPwd
|
|
9092
9098
|
|
|
9093
|
-
def initialize(instanceid=nil, username=nil, password=nil)
|
|
9099
|
+
def initialize(instanceid=nil, username=nil, password=nil, syncpwd=nil)
|
|
9094
9100
|
@InstanceId = instanceid
|
|
9095
9101
|
@UserName = username
|
|
9096
9102
|
@PassWord = password
|
|
9103
|
+
@SyncPwd = syncpwd
|
|
9097
9104
|
end
|
|
9098
9105
|
|
|
9099
9106
|
def deserialize(params)
|
|
9100
9107
|
@InstanceId = params['InstanceId']
|
|
9101
9108
|
@UserName = params['UserName']
|
|
9102
9109
|
@PassWord = params['PassWord']
|
|
9110
|
+
@SyncPwd = params['SyncPwd']
|
|
9103
9111
|
end
|
|
9104
9112
|
end
|
|
9105
9113
|
|
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.
|
|
4
|
+
version: 3.0.1161
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|