tencentcloud-sdk-gs 3.0.1073 → 3.0.1074

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: 759a539f077a55a1da08c18807f5a21b31cbc69f
4
- data.tar.gz: 514a7af2b852530f0929151df56678282b472d74
3
+ metadata.gz: c130c31f8c80fc664e6114c2b6398438bf1b8909
4
+ data.tar.gz: 5b8cf00df4b2f23d44aed988023939f32a6e6d50
5
5
  SHA512:
6
- metadata.gz: a3bc475afdf922de9fb5dd10db049c911421acf28def27cf80482076e33c94faa9fbb452848e0441ff356428e19174d15856abdc219e7615748e7047b80d0f79
7
- data.tar.gz: 874d33343475c0b052ba6bb44100a5b5f286609b3ccd7970ef41cce89f1878da24a519c6444564587cae9fc68b9d8298d3e179c9af20ca7bab473ee1dec7a7fd
6
+ metadata.gz: 879414c7b421d1361dd8c0fca96289399edf6ebe06ed3ec66d0a0dd38ecf707f8e6e9125afbc438e6790fd137457080cddc419d6406d8848130836e8b18b4028
7
+ data.tar.gz: 312cf8cbe7dceff3b9d8b5e9e1d4b85aa0e1a9304d21c15339be7cb8c4276e86ece74c6fe8484ad8e6b182647db7a9a3023133dce82ac70ff4ecb8b31e29842b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1073
1
+ 3.0.1074
@@ -29,7 +29,7 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
- # 备份云手机到指定存储
32
+ # 备份云手机数据到指定存储,支持 COS 和兼容 AWS S3 协议的对象存储服务。如果是备份到 COS 时,会使用公网流量,授权 COS bucket 请在控制台中操作。
33
33
 
34
34
  # @param request: Request instance for BackUpAndroidInstanceToStorage.
35
35
  # @type request: :class:`Tencentcloud::gs::V20191118::BackUpAndroidInstanceToStorageRequest`
@@ -78,7 +78,7 @@ module TencentCloud
78
78
  end
79
79
 
80
80
  # 复制安卓实例:
81
- # 1. 排除和包含文件只能指定/data下的文件,不指定时复制整个/data目录
81
+ # 1. 排除和包含文件只能指定 /data 下的文件,不指定时复制整个 /data 目录
82
82
  # 2. 源实例和目的实例必须在同一区域
83
83
  # 3. 复制时,源实例和目的实例都会停机,复制完后实例会自动启动
84
84
  # 4. 复制时会产生大量内网流量,请限制并发
@@ -153,6 +153,30 @@ module TencentCloud
153
153
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
154
154
  end
155
155
 
156
+ # 创建云手机实例 ADB 连接信息,请将返回结果的 PrivateKey 字段保存为 pem 文件,并将 pem 文件权限设置为 600,再参考返回结果的 ConnectCommand 使用 adb 连接实例。
157
+
158
+ # @param request: Request instance for CreateAndroidInstanceADB.
159
+ # @type request: :class:`Tencentcloud::gs::V20191118::CreateAndroidInstanceADBRequest`
160
+ # @rtype: :class:`Tencentcloud::gs::V20191118::CreateAndroidInstanceADBResponse`
161
+ def CreateAndroidInstanceADB(request)
162
+ body = send_request('CreateAndroidInstanceADB', request.serialize)
163
+ response = JSON.parse(body)
164
+ if response['Response'].key?('Error') == false
165
+ model = CreateAndroidInstanceADBResponse.new
166
+ model.deserialize(response['Response'])
167
+ model
168
+ else
169
+ code = response['Response']['Error']['Code']
170
+ message = response['Response']['Error']['Message']
171
+ reqid = response['Response']['RequestId']
172
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
173
+ end
174
+ rescue TencentCloud::Common::TencentCloudSDKException => e
175
+ raise e
176
+ rescue StandardError => e
177
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
178
+ end
179
+
156
180
  # 创建安卓实例镜像
157
181
 
158
182
  # @param request: Request instance for CreateAndroidInstanceImage.
@@ -201,7 +225,7 @@ module TencentCloud
201
225
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
202
226
  end
203
227
 
204
- # 创建安卓实例 SSH 连接
228
+ # 创建安卓实例 SSH 连接信息,请将返回结果的 PrivateKey 字段保存为 pem 文件,并将 pem 文件权限设置为 600,再参考返回结果的 ConnectCommand 使用 ssh 连接实例。
205
229
 
206
230
  # @param request: Request instance for CreateAndroidInstanceSSH.
207
231
  # @type request: :class:`Tencentcloud::gs::V20191118::CreateAndroidInstanceSSHRequest`
@@ -225,7 +249,7 @@ module TencentCloud
225
249
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
226
250
  end
227
251
 
228
- # 创建安卓实例 WebShell 连接
252
+ # 创建安卓实例 WebShell 连接信息,返回的 ConnectUrl 可通过浏览器直接打开访问,链接有效期 1 小时,链接打开后可持续使用。
229
253
 
230
254
  # @param request: Request instance for CreateAndroidInstanceWebShell.
231
255
  # @type request: :class:`Tencentcloud::gs::V20191118::CreateAndroidInstanceWebShellRequest`
@@ -633,7 +657,7 @@ module TencentCloud
633
657
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
634
658
  end
635
659
 
636
- # 分发文件到安卓实例
660
+ # 将一个文件批量分发到多个实例,一次接口调用触发一次文件分发,一次文件分发只会从公网下载一次,然后文件会走内网分发到实例列表中的实例。
637
661
 
638
662
  # @param request: Request instance for DistributeFileToAndroidInstances.
639
663
  # @type request: :class:`Tencentcloud::gs::V20191118::DistributeFileToAndroidInstancesRequest`
@@ -681,7 +705,7 @@ module TencentCloud
681
705
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
682
706
  end
683
707
 
684
- # 批量获取安卓实例日志
708
+ # 批量将实例的 logcat 日志文件上传到您已授权的 COS bucket 中,授权 COS bucket 请在控制台中操作。
685
709
 
686
710
  # @param request: Request instance for FetchAndroidInstancesLogs.
687
711
  # @type request: :class:`Tencentcloud::gs::V20191118::FetchAndroidInstancesLogsRequest`
@@ -729,6 +753,30 @@ module TencentCloud
729
753
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
730
754
  end
731
755
 
756
+ # 安装安卓实例应用
757
+
758
+ # @param request: Request instance for InstallAndroidInstancesAppWithURL.
759
+ # @type request: :class:`Tencentcloud::gs::V20191118::InstallAndroidInstancesAppWithURLRequest`
760
+ # @rtype: :class:`Tencentcloud::gs::V20191118::InstallAndroidInstancesAppWithURLResponse`
761
+ def InstallAndroidInstancesAppWithURL(request)
762
+ body = send_request('InstallAndroidInstancesAppWithURL', request.serialize)
763
+ response = JSON.parse(body)
764
+ if response['Response'].key?('Error') == false
765
+ model = InstallAndroidInstancesAppWithURLResponse.new
766
+ model.deserialize(response['Response'])
767
+ model
768
+ else
769
+ code = response['Response']['Error']['Code']
770
+ message = response['Response']['Error']['Message']
771
+ reqid = response['Response']['RequestId']
772
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
773
+ end
774
+ rescue TencentCloud::Common::TencentCloudSDKException => e
775
+ raise e
776
+ rescue StandardError => e
777
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
778
+ end
779
+
732
780
  # 修改安卓应用信息
733
781
 
734
782
  # @param request: Request instance for ModifyAndroidApp.
@@ -873,6 +921,30 @@ module TencentCloud
873
921
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
874
922
  end
875
923
 
924
+ # 批量修改安卓实例属性
925
+
926
+ # @param request: Request instance for ModifyAndroidInstancesProperties.
927
+ # @type request: :class:`Tencentcloud::gs::V20191118::ModifyAndroidInstancesPropertiesRequest`
928
+ # @rtype: :class:`Tencentcloud::gs::V20191118::ModifyAndroidInstancesPropertiesResponse`
929
+ def ModifyAndroidInstancesProperties(request)
930
+ body = send_request('ModifyAndroidInstancesProperties', request.serialize)
931
+ response = JSON.parse(body)
932
+ if response['Response'].key?('Error') == false
933
+ model = ModifyAndroidInstancesPropertiesResponse.new
934
+ model.deserialize(response['Response'])
935
+ model
936
+ else
937
+ code = response['Response']['Error']['Code']
938
+ message = response['Response']['Error']['Message']
939
+ reqid = response['Response']['RequestId']
940
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
941
+ end
942
+ rescue TencentCloud::Common::TencentCloudSDKException => e
943
+ raise e
944
+ rescue StandardError => e
945
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
946
+ end
947
+
876
948
  # 修改安卓实例分辨率。需要注意的是该接口需要重启才能生效。
877
949
 
878
950
  # @param request: Request instance for ModifyAndroidInstancesResolution.
@@ -1020,7 +1092,7 @@ module TencentCloud
1020
1092
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1021
1093
  end
1022
1094
 
1023
- # 指定存储还原云手机
1095
+ # 使用指定存储数据还原云手机,支持 COS 和兼容 AWS S3 协议的对象存储服务。如果还原数据来自 COS 时,会使用公网流量,授权 COS bucket 请在控制台中操作。
1024
1096
 
1025
1097
  # @param request: Request instance for RestoreAndroidInstanceFromStorage.
1026
1098
  # @type request: :class:`Tencentcloud::gs::V20191118::RestoreAndroidInstanceFromStorageRequest`
@@ -1380,7 +1452,7 @@ module TencentCloud
1380
1452
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1381
1453
  end
1382
1454
 
1383
- # 上传文件到安卓实例
1455
+ # 将文件下载到指定实例列表的实例上,每个实例都会从公网下载文件。如果您需要将同一个文件分发到多个实例,建议使用 DistributeFileToAndroidInstances 接口减少公网下载的流量。如果您需要将不同的文件下载到不同的实例,可考虑使用 UploadFilesToAndroidInstances 接口批量将不同文件下载到不同的实例。
1384
1456
 
1385
1457
  # @param request: Request instance for UploadFileToAndroidInstances.
1386
1458
  # @type request: :class:`Tencentcloud::gs::V20191118::UploadFileToAndroidInstancesRequest`
@@ -1404,7 +1476,7 @@ module TencentCloud
1404
1476
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1405
1477
  end
1406
1478
 
1407
- # 批量上传文件到安卓实例
1479
+ # 批量将不同的文件下载到不同的实例,每个实例下载文件都是从公网下载,建议只用在文件下载使用一次的场景。如果您需要将同一个文件分发到不同实例,建议使用 DistributeFileToAndroidInstances 接口。
1408
1480
 
1409
1481
  # @param request: Request instance for UploadFilesToAndroidInstances.
1410
1482
  # @type request: :class:`Tencentcloud::gs::V20191118::UploadFilesToAndroidInstancesRequest`
@@ -98,15 +98,18 @@ module TencentCloud
98
98
  # @type Command: String
99
99
  # @param UninstallCommand: shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
100
100
  # @type UninstallCommand: String
101
+ # @param CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
102
+ # @type CleanupMode: String
101
103
 
102
- attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand
104
+ attr_accessor :AndroidAppVersion, :State, :CreateTime, :Command, :UninstallCommand, :CleanupMode
103
105
 
104
- def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil)
106
+ def initialize(androidappversion=nil, state=nil, createtime=nil, command=nil, uninstallcommand=nil, cleanupmode=nil)
105
107
  @AndroidAppVersion = androidappversion
106
108
  @State = state
107
109
  @CreateTime = createtime
108
110
  @Command = command
109
111
  @UninstallCommand = uninstallcommand
112
+ @CleanupMode = cleanupmode
110
113
  end
111
114
 
112
115
  def deserialize(params)
@@ -115,6 +118,7 @@ module TencentCloud
115
118
  @CreateTime = params['CreateTime']
116
119
  @Command = params['Command']
117
120
  @UninstallCommand = params['UninstallCommand']
121
+ @CleanupMode = params['CleanupMode']
118
122
  end
119
123
  end
120
124
 
@@ -237,6 +241,26 @@ module TencentCloud
237
241
  end
238
242
  end
239
243
 
244
+ # 安卓实例设备信息
245
+ class AndroidInstanceDevice < TencentCloud::Common::AbstractModel
246
+ # @param Brand: 品牌
247
+ # @type Brand: String
248
+ # @param Model: 型号
249
+ # @type Model: String
250
+
251
+ attr_accessor :Brand, :Model
252
+
253
+ def initialize(brand=nil, model=nil)
254
+ @Brand = brand
255
+ @Model = model
256
+ end
257
+
258
+ def deserialize(params)
259
+ @Brand = params['Brand']
260
+ @Model = params['Model']
261
+ end
262
+ end
263
+
240
264
  # 安卓实例镜像信息
241
265
  class AndroidInstanceImage < TencentCloud::Common::AbstractModel
242
266
  # @param AndroidInstanceImageId: 镜像 ID
@@ -305,6 +329,26 @@ module TencentCloud
305
329
  end
306
330
  end
307
331
 
332
+ # 安卓实例属性
333
+ class AndroidInstanceProperty < TencentCloud::Common::AbstractModel
334
+ # @param Key: 属性键
335
+ # @type Key: String
336
+ # @param Value: 属性值
337
+ # @type Value: String
338
+
339
+ attr_accessor :Key, :Value
340
+
341
+ def initialize(key=nil, value=nil)
342
+ @Key = key
343
+ @Value = value
344
+ end
345
+
346
+ def deserialize(params)
347
+ @Key = params['Key']
348
+ @Value = params['Value']
349
+ end
350
+ end
351
+
308
352
  # 安卓实例任务信息
309
353
  class AndroidInstanceTask < TencentCloud::Common::AbstractModel
310
354
  # @param TaskId: 任务ID
@@ -621,14 +665,17 @@ module TencentCloud
621
665
  # @type Command: String
622
666
  # @param UninstallCommand: 应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
623
667
  # @type UninstallCommand: String
668
+ # @param CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
669
+ # @type CleanupMode: String
624
670
 
625
- attr_accessor :AndroidAppId, :DownloadUrl, :Command, :UninstallCommand
671
+ attr_accessor :AndroidAppId, :DownloadUrl, :Command, :UninstallCommand, :CleanupMode
626
672
 
627
- def initialize(androidappid=nil, downloadurl=nil, command=nil, uninstallcommand=nil)
673
+ def initialize(androidappid=nil, downloadurl=nil, command=nil, uninstallcommand=nil, cleanupmode=nil)
628
674
  @AndroidAppId = androidappid
629
675
  @DownloadUrl = downloadurl
630
676
  @Command = command
631
677
  @UninstallCommand = uninstallcommand
678
+ @CleanupMode = cleanupmode
632
679
  end
633
680
 
634
681
  def deserialize(params)
@@ -636,6 +683,7 @@ module TencentCloud
636
683
  @DownloadUrl = params['DownloadUrl']
637
684
  @Command = params['Command']
638
685
  @UninstallCommand = params['UninstallCommand']
686
+ @CleanupMode = params['CleanupMode']
639
687
  end
640
688
  end
641
689
 
@@ -659,6 +707,58 @@ module TencentCloud
659
707
  end
660
708
  end
661
709
 
710
+ # CreateAndroidInstanceADB请求参数结构体
711
+ class CreateAndroidInstanceADBRequest < TencentCloud::Common::AbstractModel
712
+ # @param AndroidInstanceId: 安卓实例 ID
713
+ # @type AndroidInstanceId: String
714
+
715
+ attr_accessor :AndroidInstanceId
716
+
717
+ def initialize(androidinstanceid=nil)
718
+ @AndroidInstanceId = androidinstanceid
719
+ end
720
+
721
+ def deserialize(params)
722
+ @AndroidInstanceId = params['AndroidInstanceId']
723
+ end
724
+ end
725
+
726
+ # CreateAndroidInstanceADB返回参数结构体
727
+ class CreateAndroidInstanceADBResponse < TencentCloud::Common::AbstractModel
728
+ # @param PrivateKey: 连接私钥,需要保存为文件形式,例如 private_key.pem
729
+ # @type PrivateKey: String
730
+ # @param UserName: 用户名称
731
+ # @type UserName: String
732
+ # @param HostName: 连接地址
733
+ # @type HostName: String
734
+ # @param Port: 连接端口
735
+ # @type Port: Integer
736
+ # @param ConnectCommand: 连接参考命令
737
+ # @type ConnectCommand: String
738
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
739
+ # @type RequestId: String
740
+
741
+ attr_accessor :PrivateKey, :UserName, :HostName, :Port, :ConnectCommand, :RequestId
742
+
743
+ def initialize(privatekey=nil, username=nil, hostname=nil, port=nil, connectcommand=nil, requestid=nil)
744
+ @PrivateKey = privatekey
745
+ @UserName = username
746
+ @HostName = hostname
747
+ @Port = port
748
+ @ConnectCommand = connectcommand
749
+ @RequestId = requestid
750
+ end
751
+
752
+ def deserialize(params)
753
+ @PrivateKey = params['PrivateKey']
754
+ @UserName = params['UserName']
755
+ @HostName = params['HostName']
756
+ @Port = params['Port']
757
+ @ConnectCommand = params['ConnectCommand']
758
+ @RequestId = params['RequestId']
759
+ end
760
+ end
761
+
662
762
  # CreateAndroidInstanceImage请求参数结构体
663
763
  class CreateAndroidInstanceImageRequest < TencentCloud::Common::AbstractModel
664
764
  # @param AndroidInstanceImageName: 安卓实例镜像名称
@@ -1949,6 +2049,54 @@ module TencentCloud
1949
2049
  end
1950
2050
  end
1951
2051
 
2052
+ # InstallAndroidInstancesAppWithURL请求参数结构体
2053
+ class InstallAndroidInstancesAppWithURLRequest < TencentCloud::Common::AbstractModel
2054
+ # @param AndroidInstanceIds: 实例ID
2055
+ # @type AndroidInstanceIds: Array
2056
+ # @param AndroidAppURL: 安卓应用下载 URL
2057
+ # @type AndroidAppURL: String
2058
+
2059
+ attr_accessor :AndroidInstanceIds, :AndroidAppURL
2060
+
2061
+ def initialize(androidinstanceids=nil, androidappurl=nil)
2062
+ @AndroidInstanceIds = androidinstanceids
2063
+ @AndroidAppURL = androidappurl
2064
+ end
2065
+
2066
+ def deserialize(params)
2067
+ @AndroidInstanceIds = params['AndroidInstanceIds']
2068
+ @AndroidAppURL = params['AndroidAppURL']
2069
+ end
2070
+ end
2071
+
2072
+ # InstallAndroidInstancesAppWithURL返回参数结构体
2073
+ class InstallAndroidInstancesAppWithURLResponse < TencentCloud::Common::AbstractModel
2074
+ # @param TaskSet: 任务集合
2075
+ # 注意:此字段可能返回 null,表示取不到有效值。
2076
+ # @type TaskSet: Array
2077
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2078
+ # @type RequestId: String
2079
+
2080
+ attr_accessor :TaskSet, :RequestId
2081
+
2082
+ def initialize(taskset=nil, requestid=nil)
2083
+ @TaskSet = taskset
2084
+ @RequestId = requestid
2085
+ end
2086
+
2087
+ def deserialize(params)
2088
+ unless params['TaskSet'].nil?
2089
+ @TaskSet = []
2090
+ params['TaskSet'].each do |i|
2091
+ androidinstancetask_tmp = AndroidInstanceTask.new
2092
+ androidinstancetask_tmp.deserialize(i)
2093
+ @TaskSet << androidinstancetask_tmp
2094
+ end
2095
+ end
2096
+ @RequestId = params['RequestId']
2097
+ end
2098
+ end
2099
+
1952
2100
  # 标签要求
1953
2101
  class LabelRequirement < TencentCloud::Common::AbstractModel
1954
2102
  # @param Key: 标签键
@@ -2247,6 +2395,56 @@ module TencentCloud
2247
2395
  end
2248
2396
  end
2249
2397
 
2398
+ # ModifyAndroidInstancesProperties请求参数结构体
2399
+ class ModifyAndroidInstancesPropertiesRequest < TencentCloud::Common::AbstractModel
2400
+ # @param AndroidInstanceIds: 安卓实例 ID 列表
2401
+ # @type AndroidInstanceIds: Array
2402
+ # @param AndroidInstanceDevice: 安卓实例设备
2403
+ # @type AndroidInstanceDevice: :class:`Tencentcloud::Gs.v20191118.models.AndroidInstanceDevice`
2404
+ # @param AndroidInstanceProperties: 安卓实例其它属性列表
2405
+ # @type AndroidInstanceProperties: Array
2406
+
2407
+ attr_accessor :AndroidInstanceIds, :AndroidInstanceDevice, :AndroidInstanceProperties
2408
+
2409
+ def initialize(androidinstanceids=nil, androidinstancedevice=nil, androidinstanceproperties=nil)
2410
+ @AndroidInstanceIds = androidinstanceids
2411
+ @AndroidInstanceDevice = androidinstancedevice
2412
+ @AndroidInstanceProperties = androidinstanceproperties
2413
+ end
2414
+
2415
+ def deserialize(params)
2416
+ @AndroidInstanceIds = params['AndroidInstanceIds']
2417
+ unless params['AndroidInstanceDevice'].nil?
2418
+ @AndroidInstanceDevice = AndroidInstanceDevice.new
2419
+ @AndroidInstanceDevice.deserialize(params['AndroidInstanceDevice'])
2420
+ end
2421
+ unless params['AndroidInstanceProperties'].nil?
2422
+ @AndroidInstanceProperties = []
2423
+ params['AndroidInstanceProperties'].each do |i|
2424
+ androidinstanceproperty_tmp = AndroidInstanceProperty.new
2425
+ androidinstanceproperty_tmp.deserialize(i)
2426
+ @AndroidInstanceProperties << androidinstanceproperty_tmp
2427
+ end
2428
+ end
2429
+ end
2430
+ end
2431
+
2432
+ # ModifyAndroidInstancesProperties返回参数结构体
2433
+ class ModifyAndroidInstancesPropertiesResponse < TencentCloud::Common::AbstractModel
2434
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2435
+ # @type RequestId: String
2436
+
2437
+ attr_accessor :RequestId
2438
+
2439
+ def initialize(requestid=nil)
2440
+ @RequestId = requestid
2441
+ end
2442
+
2443
+ def deserialize(params)
2444
+ @RequestId = params['RequestId']
2445
+ end
2446
+ end
2447
+
2250
2448
  # ModifyAndroidInstancesResolution请求参数结构体
2251
2449
  class ModifyAndroidInstancesResolutionRequest < TencentCloud::Common::AbstractModel
2252
2450
  # @param AndroidInstanceIds: 安卓实例 ID 列表
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.1073
4
+ version: 3.0.1074
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-03 00:00:00.000000000 Z
11
+ date: 2025-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common