tencentcloud-sdk-scf 3.0.893 → 3.0.894

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/v20180416/models.rb +19 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef06739ee45b6e5efacd2d473e09f3664deec1a9
4
- data.tar.gz: e26e04e71acc25aa9d4ae252b7ab58b25feea5af
3
+ metadata.gz: 420cc9fb6f9bb26629356974df378cc68ca50ee0
4
+ data.tar.gz: 488341ecdbc6dd89b50c8f98773275a02ea092da
5
5
  SHA512:
6
- metadata.gz: 6cdf9c820085878da170dc7b395cef20f768140e6247a75baacdb5ac9f5d84e97715d468725becff496d04eb57bddb9aad1c84206a41008c13f08368ebeb6b99
7
- data.tar.gz: 4a7ddd289f5b5d503f3970e2282400c105026503686ca87dfd7ab09ea3671f10241b28d96fe259aea1660db3b21d90dd2389a088ff5682ebbed3a517abb038a2
6
+ metadata.gz: 434dff7b376f62bebe689fd89af90ea3bbc5bb3f19bcd95b18a9a61b2b37e3884898d28c2a5745059f469b23325485c9d9e1e5d05c648b836efd59961a02a18a
7
+ data.tar.gz: 72f7a73d9bc7fbf0ceeb5870949da6e47689a2afbbd6821ae93e1834fcf0cfe763fa8e670bb636ed72dfb7f0953c71c8afd670ec1107bf709eb08eed513ceecf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.893
1
+ 3.0.894
@@ -2256,10 +2256,12 @@ module TencentCloud
2256
2256
  # @param ContainerImageAccelerate: 镜像加速开关,默认False
2257
2257
  # 注意:此字段可能返回 null,表示取不到有效值。
2258
2258
  # @type ContainerImageAccelerate: Boolean
2259
- # @param ImagePort: 镜像函数端口设置
2260
- # 默认值: 9000
2261
- # -1: 无端口镜像函数
2262
- # 其他: 取值范围 0 ~ 65535
2259
+ # @param ImagePort: 镜像函数端口设置,可指定镜像类型
2260
+ # Web Server镜像:9000
2261
+ # Job 镜像:-1
2262
+ # 注意:此字段可能返回 null,表示取不到有效值。
2263
+ # 默认值:9000
2264
+ # 示例值:9000
2263
2265
  # 注意:此字段可能返回 null,表示取不到有效值。
2264
2266
  # @type ImagePort: Integer
2265
2267
 
@@ -3541,15 +3543,18 @@ module TencentCloud
3541
3543
  # @type Description: String
3542
3544
  # @param LicenseInfo: 层的软件许可证
3543
3545
  # @type LicenseInfo: String
3546
+ # @param Tags: 层Tag 参数,以键值对数组形式传入
3547
+ # @type Tags: Array
3544
3548
 
3545
- attr_accessor :LayerName, :CompatibleRuntimes, :Content, :Description, :LicenseInfo
3549
+ attr_accessor :LayerName, :CompatibleRuntimes, :Content, :Description, :LicenseInfo, :Tags
3546
3550
 
3547
- def initialize(layername=nil, compatibleruntimes=nil, content=nil, description=nil, licenseinfo=nil)
3551
+ def initialize(layername=nil, compatibleruntimes=nil, content=nil, description=nil, licenseinfo=nil, tags=nil)
3548
3552
  @LayerName = layername
3549
3553
  @CompatibleRuntimes = compatibleruntimes
3550
3554
  @Content = content
3551
3555
  @Description = description
3552
3556
  @LicenseInfo = licenseinfo
3557
+ @Tags = tags
3553
3558
  end
3554
3559
 
3555
3560
  def deserialize(params)
@@ -3561,6 +3566,14 @@ module TencentCloud
3561
3566
  end
3562
3567
  @Description = params['Description']
3563
3568
  @LicenseInfo = params['LicenseInfo']
3569
+ unless params['Tags'].nil?
3570
+ @Tags = []
3571
+ params['Tags'].each do |i|
3572
+ tag_tmp = Tag.new
3573
+ tag_tmp.deserialize(i)
3574
+ @Tags << tag_tmp
3575
+ end
3576
+ end
3564
3577
  end
3565
3578
  end
3566
3579
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-scf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.893
4
+ version: 3.0.894
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-08-25 00:00:00.000000000 Z
11
+ date: 2024-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common