tencentcloud-sdk-batch 3.0.956 → 3.0.957

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: 756f7ba8eb4f7c1b1bf0d2f19d31b799fe005621
4
- data.tar.gz: ef635e6226a7ab028e8b7101aceaa3c8bc2c1989
3
+ metadata.gz: 3d1db61af23a974c8bbac80a9e86a83be78c393c
4
+ data.tar.gz: 795f8bf84fdb9cd6e60151843c5d1d7cf1a392ca
5
5
  SHA512:
6
- metadata.gz: 095fd1d4bfbb780def14f2a610101a2e3d3aacab0a861d2d4920c5d0291d5d63630cf8d33e95001b35c0ea1816ad58c3e66ca591f04468107bec5e56dc188811
7
- data.tar.gz: f0a2cee2376c75a31c475c3aa2820652151ff3cf118c8447b5b56599d42e3a9fc6f0be2e2b453bd3952c4d3e9e8a80f6bd50e33a4f900b47a2107673a253aa23
6
+ metadata.gz: 76a3ac92247cc7f9d42776aac54819c4ea3f12dce3fd9e1b95ee5a04d01abc15489fdc13682c13128062159ea5e31f75daa0ab92e22961b46c5e9f99149fd723
7
+ data.tar.gz: d35ae19522b8e20bdb21993b8e39c26617b4e754eb2493605c12bba8d5ea631798e02d7683d6d73fa35212e2cb2fd3dace7be956351c34a51326694d6dbf96dd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.956
1
+ 3.0.957
@@ -2085,12 +2085,12 @@ module TencentCloud
2085
2085
 
2086
2086
  # Docker容器信息
2087
2087
  class Docker < TencentCloud::Common::AbstractModel
2088
- # @param User: Docker Hub 用户名或 Tencent Registry 用户名
2089
- # @type User: String
2090
- # @param Password: Docker Hub 密码或 Tencent Registry 密码
2091
- # @type Password: String
2092
2088
  # @param Image: Docker Hub填写“[user/repo]:[tag]”,Tencent Registry填写“ccr.ccs.tencentyun.com/[namespace/repo]:[tag]”
2093
2089
  # @type Image: String
2090
+ # @param User: Docker Hub 用户名或 Tencent Registry 用户名;公共镜像可不填写此参数。
2091
+ # @type User: String
2092
+ # @param Password: Docker Hub 密码或 Tencent Registry 密码;公共镜像可不填写此参数。
2093
+ # @type Password: String
2094
2094
  # @param Server: Docker Hub 可以不填,但确保具有公网访问能力。或者是 Tencent Registry 服务地址“ccr.ccs.tencentyun.com”
2095
2095
  # @type Server: String
2096
2096
  # @param MaxRetryCount: 拉取Docker镜像重试次数。默认值:0。
@@ -2101,12 +2101,12 @@ module TencentCloud
2101
2101
  # 注意:此字段可能返回 null,表示取不到有效值。
2102
2102
  # @type DockerRunOption: String
2103
2103
 
2104
- attr_accessor :User, :Password, :Image, :Server, :MaxRetryCount, :DelayOnRetry, :DockerRunOption
2104
+ attr_accessor :Image, :User, :Password, :Server, :MaxRetryCount, :DelayOnRetry, :DockerRunOption
2105
2105
 
2106
- def initialize(user=nil, password=nil, image=nil, server=nil, maxretrycount=nil, delayonretry=nil, dockerrunoption=nil)
2106
+ def initialize(image=nil, user=nil, password=nil, server=nil, maxretrycount=nil, delayonretry=nil, dockerrunoption=nil)
2107
+ @Image = image
2107
2108
  @User = user
2108
2109
  @Password = password
2109
- @Image = image
2110
2110
  @Server = server
2111
2111
  @MaxRetryCount = maxretrycount
2112
2112
  @DelayOnRetry = delayonretry
@@ -2114,9 +2114,9 @@ module TencentCloud
2114
2114
  end
2115
2115
 
2116
2116
  def deserialize(params)
2117
+ @Image = params['Image']
2117
2118
  @User = params['User']
2118
2119
  @Password = params['Password']
2119
- @Image = params['Image']
2120
2120
  @Server = params['Server']
2121
2121
  @MaxRetryCount = params['MaxRetryCount']
2122
2122
  @DelayOnRetry = params['DelayOnRetry']
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.956
4
+ version: 3.0.957
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2024-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common