tencentcloud-sdk-batch 1.0.285 → 1.0.288

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ca1c2016cfa44b44f52f59f470d0cc67270f4ea
4
- data.tar.gz: 061202a047ef3f37d9b054d597316ea590b55d58
3
+ metadata.gz: 99584020434ede7342544d39969a8f1497417260
4
+ data.tar.gz: d48e17c59c63c6106f2ce1873d90cbf10d1a3275
5
5
  SHA512:
6
- metadata.gz: 477c2343b88167461d75a65ca82593e54a1a79380e5d5811949aa34a90e8c0bccbc3ab7ee79ed53347f17ce5a85cbcd5afe9a87ad6a9a3f689297a69f5067264
7
- data.tar.gz: 16561c4d0e527ae4fb54260ce87ccb52245210900cfd3e46d7a7ef1e7492366561a9fa82621a53a94fab937c663e3dbf5ad62616bf21a19e1b46333a2342dddc
6
+ metadata.gz: 86900d4f0c3a919104d6ee3dae0457f70854e0a2000be40525307665e577eaed2681243be5bd67e47eaffe490377980180a010b5813bb2c5d11bce1542ec4789
7
+ data.tar.gz: a7fb0dd8b73088c62440079c0eb851a71668453921291cbc88afa7a459f0712eafb834ad4fb3a7fc025d39d97badcd533094e22b0e29449531b9230a1a745ecc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.285
1
+ 1.0.288
@@ -3171,7 +3171,7 @@ module TencentCloud
3171
3171
  # @param AgentRunningMode: agent运行模式,适用于Windows系统
3172
3172
  # @type AgentRunningMode: :class:`Tencentcloud::Batch.v20170312.models.AgentRunningMode`
3173
3173
  # @param Notifications: 通知信息
3174
- # @type Notifications: :class:`Tencentcloud::Batch.v20170312.models.Notification`
3174
+ # @type Notifications: Array
3175
3175
  # @param ActionIfComputeNodeInactive: 非活跃节点处理策略,默认“RECREATE”,即对于实例创建失败或异常退还的计算节点,定期重新创建实例资源。
3176
3176
  # @type ActionIfComputeNodeInactive: String
3177
3177
  # @param ResourceMaxRetryCount: 对于实例创建失败或异常退还的计算节点,定期重新创建实例资源的最大重试次数,最大值11,如果不设置的话,系统会设置一个默认值,当前为7
@@ -3235,8 +3235,12 @@ module TencentCloud
3235
3235
  @AgentRunningMode.deserialize(params['AgentRunningMode'])
3236
3236
  end
3237
3237
  unless params['Notifications'].nil?
3238
- @Notifications = Notification.new
3239
- @Notifications.deserialize(params['Notifications'])
3238
+ @Notifications = []
3239
+ params['Notifications'].each do |i|
3240
+ notification_tmp = Notification.new
3241
+ notification_tmp.deserialize(i)
3242
+ @Notifications << notification_tmp
3243
+ end
3240
3244
  end
3241
3245
  @ActionIfComputeNodeInactive = params['ActionIfComputeNodeInactive']
3242
3246
  @ResourceMaxRetryCount = params['ResourceMaxRetryCount']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.285
4
+ version: 1.0.288
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-03-24 00:00:00.000000000 Z
11
+ date: 2022-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common