tencentcloud-sdk-gs 3.0.1082 → 3.0.1088

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/v20191118/models.rb +13 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4ef62a15c8645574da7add24ee213d061f63763
4
- data.tar.gz: aee2b8022b8ce9eeacdeeba9d922dc48c946cf1b
3
+ metadata.gz: 925a4a70639ed53d1bc165c83448531c2816f82f
4
+ data.tar.gz: 6f5b22f5fb0dd741f1eaedba91f54927ad016f04
5
5
  SHA512:
6
- metadata.gz: d31e15f0e47dade1e980ee92739489c03bcfa1bc1be9f25bd7472f1f2c4499601ed81d67332f249a9231ff9adcc02fc0c37bde4b1fb7ad853ab5e549d87fc5f1
7
- data.tar.gz: 53ce094f7dadc5beaa5ba5978fc58d51575d8dfb0ab246da7ce01df54ada4342fb16d70d44458500b66a3800263d3fd8d1377c15e9e0c84747db318b09adaf14
6
+ metadata.gz: c0dcad2c8881b65d22dbed9620c916937b66f2cbb9f9882fdfec0460e1dcb35dd8f627c127818f03f4efc1d6c3a19c43aaa24b7d9633748f7094b2ed1c30684d
7
+ data.tar.gz: c4304c1fa2c94f6a911638ab979be14d78c6632bb81ae0a50fbbb1bd393a4507867e926291b374adc0187466dce94a092b2a102e07b712fd2ffae60101e063f2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1082
1
+ 3.0.1088
@@ -33,10 +33,12 @@ module TencentCloud
33
33
  # @type UserId: String
34
34
  # @param AppMode: 应用模式(NORMAL : 普通模式;ADVANCED : 高级模式)
35
35
  # @type AppMode: String
36
+ # @param UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
37
+ # @type UpdateState: String
36
38
 
37
- attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId, :AppMode
39
+ attr_accessor :AndroidAppId, :Name, :State, :AndroidAppVersionInfo, :CreateTime, :UserId, :AppMode, :UpdateState
38
40
 
39
- def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil, appmode=nil)
41
+ def initialize(androidappid=nil, name=nil, state=nil, androidappversioninfo=nil, createtime=nil, userid=nil, appmode=nil, updatestate=nil)
40
42
  @AndroidAppId = androidappid
41
43
  @Name = name
42
44
  @State = state
@@ -44,6 +46,7 @@ module TencentCloud
44
46
  @CreateTime = createtime
45
47
  @UserId = userid
46
48
  @AppMode = appmode
49
+ @UpdateState = updatestate
47
50
  end
48
51
 
49
52
  def deserialize(params)
@@ -61,6 +64,7 @@ module TencentCloud
61
64
  @CreateTime = params['CreateTime']
62
65
  @UserId = params['UserId']
63
66
  @AppMode = params['AppMode']
67
+ @UpdateState = params['UpdateState']
64
68
  end
65
69
  end
66
70
 
@@ -1582,7 +1586,7 @@ module TencentCloud
1582
1586
  # @type Limit: Integer
1583
1587
  # @param AndroidAppIds: 应用ID数组
1584
1588
  # @type AndroidAppIds: Array
1585
- # @param Filters: 过滤条件,支持过滤的字段有:UserId
1589
+ # @param Filters: 过滤条件,支持过滤的字段有:UserId、State、UpdateState、Name、AppMode 。其中 Name 为模糊匹配,其他参数为精确匹配。
1586
1590
  # @type Filters: Array
1587
1591
 
1588
1592
  attr_accessor :Offset, :Limit, :AndroidAppIds, :Filters
@@ -1687,21 +1691,25 @@ module TencentCloud
1687
1691
  class DescribeAndroidInstanceImagesRequest < TencentCloud::Common::AbstractModel
1688
1692
  # @param AndroidInstanceImageIds: 镜像 ID 列表
1689
1693
  # @type AndroidInstanceImageIds: Array
1694
+ # @param AndroidInstanceImageZones: 镜像可用区列表
1695
+ # @type AndroidInstanceImageZones: Array
1690
1696
  # @param Offset: 偏移量,默认为0
1691
1697
  # @type Offset: Integer
1692
1698
  # @param Limit: 限制量,默认为20,最大值为100
1693
1699
  # @type Limit: Integer
1694
1700
 
1695
- attr_accessor :AndroidInstanceImageIds, :Offset, :Limit
1701
+ attr_accessor :AndroidInstanceImageIds, :AndroidInstanceImageZones, :Offset, :Limit
1696
1702
 
1697
- def initialize(androidinstanceimageids=nil, offset=nil, limit=nil)
1703
+ def initialize(androidinstanceimageids=nil, androidinstanceimagezones=nil, offset=nil, limit=nil)
1698
1704
  @AndroidInstanceImageIds = androidinstanceimageids
1705
+ @AndroidInstanceImageZones = androidinstanceimagezones
1699
1706
  @Offset = offset
1700
1707
  @Limit = limit
1701
1708
  end
1702
1709
 
1703
1710
  def deserialize(params)
1704
1711
  @AndroidInstanceImageIds = params['AndroidInstanceImageIds']
1712
+ @AndroidInstanceImageZones = params['AndroidInstanceImageZones']
1705
1713
  @Offset = params['Offset']
1706
1714
  @Limit = params['Limit']
1707
1715
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-gs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1082
4
+ version: 3.0.1088
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-06-16 00:00:00.000000000 Z
11
+ date: 2025-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common