tencentcloud-sdk-batch 3.0.636 → 3.0.638

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/v20170312/models.rb +10 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 827a842300d106a1d2790d6c5fa66c9f879485f2
4
- data.tar.gz: aa3eefad68de50f24dc34e99a7556b1f010b961e
3
+ metadata.gz: 785e21c3b9b3e1ab6e8b99c1d362c166ea18f7c5
4
+ data.tar.gz: 5ccb8536e946fabeff33e18c44bee8757091b916
5
5
  SHA512:
6
- metadata.gz: 78daf0774aba4e404193d6ae582e6f101e5912c3670e2c1db51a7bc99a3110a04c88072d8ccfa032878551b0b1b5b136d2ddf0fb93884658bf482840718d0f31
7
- data.tar.gz: 949d2f7952f4e03c9d30ab32f836a1b760a5b251fd23bdc9b241ef8dedab11f6328b3e384d8f8e052d325a3b943a3ff7eb06867e836f77baab4abef13d877f4c
6
+ metadata.gz: 7ede512c36bb867d1465ac0aa4d9a1543cb9b59f491c93e63eb20153b9531a513657cf7df0f4950828fb2efe01dd5f8dfbdf30b1e1f0b3113b1474050955838a
7
+ data.tar.gz: 3889596618fbd28366d0ca3bea780896b8d67d9f9900d5f15659845a238146db652a79138b3e15f17003d849644d4f77959e740005de78b9d06440ce1f830226
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.636
1
+ 3.0.638
@@ -138,27 +138,31 @@ module TencentCloud
138
138
 
139
139
  # 应用程序信息
140
140
  class Application < TencentCloud::Common::AbstractModel
141
- # @param Command: 任务执行命令
142
- # @type Command: String
143
141
  # @param DeliveryForm: 应用程序的交付方式,包括PACKAGE、LOCAL 两种取值,分别指远程存储的软件包、计算环境本地。
142
+ # 注意:此字段可能返回 null,表示取不到有效值。
144
143
  # @type DeliveryForm: String
144
+ # @param Command: 任务执行命令。与Commands不能同时指定。
145
+ # 注意:此字段可能返回 null,表示取不到有效值。
146
+ # @type Command: String
145
147
  # @param PackagePath: 应用程序软件包的远程存储路径
148
+ # 注意:此字段可能返回 null,表示取不到有效值。
146
149
  # @type PackagePath: String
147
150
  # @param Docker: 应用使用Docker的相关配置。在使用Docker配置的情况下,DeliveryForm 为 LOCAL 表示直接使用Docker镜像内部的应用软件,通过Docker方式运行;DeliveryForm 为 PACKAGE,表示将远程应用包注入到Docker镜像后,通过Docker方式运行。为避免Docker不同版本的兼容性问题,Docker安装包及相关依赖由Batch统一负责,对于已安装Docker的自定义镜像,请卸载后再使用Docker特性。
151
+ # 注意:此字段可能返回 null,表示取不到有效值。
148
152
  # @type Docker: :class:`Tencentcloud::Batch.v20170312.models.Docker`
149
153
 
150
- attr_accessor :Command, :DeliveryForm, :PackagePath, :Docker
154
+ attr_accessor :DeliveryForm, :Command, :PackagePath, :Docker
151
155
 
152
- def initialize(command=nil, deliveryform=nil, packagepath=nil, docker=nil)
153
- @Command = command
156
+ def initialize(deliveryform=nil, command=nil, packagepath=nil, docker=nil)
154
157
  @DeliveryForm = deliveryform
158
+ @Command = command
155
159
  @PackagePath = packagepath
156
160
  @Docker = docker
157
161
  end
158
162
 
159
163
  def deserialize(params)
160
- @Command = params['Command']
161
164
  @DeliveryForm = params['DeliveryForm']
165
+ @Command = params['Command']
162
166
  @PackagePath = params['PackagePath']
163
167
  unless params['Docker'].nil?
164
168
  @Docker = Docker.new
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: 3.0.636
4
+ version: 3.0.638
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-08-15 00:00:00.000000000 Z
11
+ date: 2023-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common