tencentcloud-sdk-iotexplorer 3.0.1021 → 3.0.1022

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: c038db5d2b7134ce1facbb2b3ba1f171a233499e
4
- data.tar.gz: 9679eaf7d64f2d70a0ed6d1284ad71e89c9af9d0
3
+ metadata.gz: aaaa16c355f73c18e5754626117d99022f4ed20c
4
+ data.tar.gz: 54f6110523aa5d67dcb473676974527b9786a801
5
5
  SHA512:
6
- metadata.gz: 8e6b7b37114702d1c76907858223cecbdeb5be40cf1afe128e1f9e65e61771225cee153fb84723b4dcfe3c24f288d951a8fdac2e4b5c8b4bbe24150d7bc17cfc
7
- data.tar.gz: 0d76eed5e5400b581c2ae3a9ad3d8a306a6fcb8ab48c1c420c4f9381977a8b69ac05986a4b82d6095e41bad0c09ce62dc10cf58a79b450cde719b56902377220
6
+ metadata.gz: eac33482aace95764c5a766394eee0c036bdfec2e61b6e3d84d11120d7dff2533be0eb32f0f33cded7e2024b7bf3f2fcddaebfaab0574141ca0041b9b07386d1
7
+ data.tar.gz: 87a272488de80d2497cef4406c6a4e1c70800d465dd2b380f6fef8dffbb1afae37fa555229625f6b171749f1819050385efc0f91b0a4c0160dbfad85f10d210b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1021
1
+ 3.0.1022
@@ -197,6 +197,30 @@ module TencentCloud
197
197
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
198
198
  end
199
199
 
200
+ # p2p路线切换
201
+
202
+ # @param request: Request instance for ChangeP2PRoute.
203
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::ChangeP2PRouteRequest`
204
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::ChangeP2PRouteResponse`
205
+ def ChangeP2PRoute(request)
206
+ body = send_request('ChangeP2PRoute', request.serialize)
207
+ response = JSON.parse(body)
208
+ if response['Response'].key?('Error') == false
209
+ model = ChangeP2PRouteResponse.new
210
+ model.deserialize(response['Response'])
211
+ model
212
+ else
213
+ code = response['Response']['Error']['Code']
214
+ message = response['Response']['Error']['Message']
215
+ reqid = response['Response']['RequestId']
216
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
217
+ end
218
+ rescue TencentCloud::Common::TencentCloudSDKException => e
219
+ raise e
220
+ rescue StandardError => e
221
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
222
+ end
223
+
200
224
  # 本接口(CheckFirmwareUpdate)用于查询设备可升级固件版本
201
225
 
202
226
  # @param request: Request instance for CheckFirmwareUpdate.
@@ -1973,6 +1997,30 @@ module TencentCloud
1973
1997
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1974
1998
  end
1975
1999
 
2000
+ # 当前p2p线路
2001
+
2002
+ # @param request: Request instance for DescribeP2PRoute.
2003
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::DescribeP2PRouteRequest`
2004
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::DescribeP2PRouteResponse`
2005
+ def DescribeP2PRoute(request)
2006
+ body = send_request('DescribeP2PRoute', request.serialize)
2007
+ response = JSON.parse(body)
2008
+ if response['Response'].key?('Error') == false
2009
+ model = DescribeP2PRouteResponse.new
2010
+ model.deserialize(response['Response'])
2011
+ model
2012
+ else
2013
+ code = response['Response']['Error']['Code']
2014
+ message = response['Response']['Error']['Message']
2015
+ reqid = response['Response']['RequestId']
2016
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2017
+ end
2018
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2019
+ raise e
2020
+ rescue StandardError => e
2021
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2022
+ end
2023
+
1976
2024
  # 查询套餐消耗记录详情
1977
2025
 
1978
2026
  # @param request: Request instance for DescribePackageConsumeTask.
@@ -2885,6 +2933,30 @@ module TencentCloud
2885
2933
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2886
2934
  end
2887
2935
 
2936
+ # 更新应用信息
2937
+
2938
+ # @param request: Request instance for ModifyApplication.
2939
+ # @type request: :class:`Tencentcloud::iotexplorer::V20190423::ModifyApplicationRequest`
2940
+ # @rtype: :class:`Tencentcloud::iotexplorer::V20190423::ModifyApplicationResponse`
2941
+ def ModifyApplication(request)
2942
+ body = send_request('ModifyApplication', request.serialize)
2943
+ response = JSON.parse(body)
2944
+ if response['Response'].key?('Error') == false
2945
+ model = ModifyApplicationResponse.new
2946
+ model.deserialize(response['Response'])
2947
+ model
2948
+ else
2949
+ code = response['Response']['Error']['Code']
2950
+ message = response['Response']['Error']['Message']
2951
+ reqid = response['Response']['RequestId']
2952
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2953
+ end
2954
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2955
+ raise e
2956
+ rescue StandardError => e
2957
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2958
+ end
2959
+
2888
2960
  # 修改指定设备的云存 AI 服务参数配置
2889
2961
 
2890
2962
  # @param request: Request instance for ModifyCloudStorageAIService.
@@ -628,6 +628,46 @@ module TencentCloud
628
628
  end
629
629
  end
630
630
 
631
+ # ChangeP2PRoute请求参数结构体
632
+ class ChangeP2PRouteRequest < TencentCloud::Common::AbstractModel
633
+ # @param ProductId: 产品ID
634
+ # @type ProductId: String
635
+ # @param DeviceName: 设备名称
636
+ # @type DeviceName: String
637
+ # @param RouteId: P2P线路
638
+ # @type RouteId: Integer
639
+
640
+ attr_accessor :ProductId, :DeviceName, :RouteId
641
+
642
+ def initialize(productid=nil, devicename=nil, routeid=nil)
643
+ @ProductId = productid
644
+ @DeviceName = devicename
645
+ @RouteId = routeid
646
+ end
647
+
648
+ def deserialize(params)
649
+ @ProductId = params['ProductId']
650
+ @DeviceName = params['DeviceName']
651
+ @RouteId = params['RouteId']
652
+ end
653
+ end
654
+
655
+ # ChangeP2PRoute返回参数结构体
656
+ class ChangeP2PRouteResponse < TencentCloud::Common::AbstractModel
657
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
658
+ # @type RequestId: String
659
+
660
+ attr_accessor :RequestId
661
+
662
+ def initialize(requestid=nil)
663
+ @RequestId = requestid
664
+ end
665
+
666
+ def deserialize(params)
667
+ @RequestId = params['RequestId']
668
+ end
669
+ end
670
+
631
671
  # CheckFirmwareUpdate请求参数结构体
632
672
  class CheckFirmwareUpdateRequest < TencentCloud::Common::AbstractModel
633
673
  # @param ProductId: 产品ID。
@@ -5068,6 +5108,46 @@ module TencentCloud
5068
5108
  end
5069
5109
  end
5070
5110
 
5111
+ # DescribeP2PRoute请求参数结构体
5112
+ class DescribeP2PRouteRequest < TencentCloud::Common::AbstractModel
5113
+ # @param ProductId: 产品ID
5114
+ # @type ProductId: String
5115
+ # @param DeviceName: 设备名称
5116
+ # @type DeviceName: String
5117
+
5118
+ attr_accessor :ProductId, :DeviceName
5119
+
5120
+ def initialize(productid=nil, devicename=nil)
5121
+ @ProductId = productid
5122
+ @DeviceName = devicename
5123
+ end
5124
+
5125
+ def deserialize(params)
5126
+ @ProductId = params['ProductId']
5127
+ @DeviceName = params['DeviceName']
5128
+ end
5129
+ end
5130
+
5131
+ # DescribeP2PRoute返回参数结构体
5132
+ class DescribeP2PRouteResponse < TencentCloud::Common::AbstractModel
5133
+ # @param RouteId: 当前p2p线路
5134
+ # @type RouteId: Integer
5135
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5136
+ # @type RequestId: String
5137
+
5138
+ attr_accessor :RouteId, :RequestId
5139
+
5140
+ def initialize(routeid=nil, requestid=nil)
5141
+ @RouteId = routeid
5142
+ @RequestId = requestid
5143
+ end
5144
+
5145
+ def deserialize(params)
5146
+ @RouteId = params['RouteId']
5147
+ @RequestId = params['RequestId']
5148
+ end
5149
+ end
5150
+
5071
5151
  # DescribePackageConsumeTask请求参数结构体
5072
5152
  class DescribePackageConsumeTaskRequest < TencentCloud::Common::AbstractModel
5073
5153
  # @param TaskId: 任务id
@@ -7686,6 +7766,135 @@ module TencentCloud
7686
7766
  end
7687
7767
  end
7688
7768
 
7769
+ # 应用信息
7770
+ class IotApplication < TencentCloud::Common::AbstractModel
7771
+ # @param IotAppID: 应用 ID
7772
+ # @type IotAppID: String
7773
+ # @param AppName: 应用名称
7774
+ # @type AppName: String
7775
+ # @param Description: 应用说明
7776
+ # @type Description: String
7777
+ # @param DevMode: 开发模式
7778
+ # @type DevMode: Integer
7779
+ # @param IOSAppKey: iOS 平台 AppKey
7780
+ # @type IOSAppKey: String
7781
+ # @param IOSAppSecret: iOS 平台 AppSecret
7782
+ # @type IOSAppSecret: String
7783
+ # @param AndroidAppKey: Android 平台 AppKey
7784
+ # @type AndroidAppKey: String
7785
+ # @param AndroidAppSecret: Android 平台 AppSecret
7786
+ # @type AndroidAppSecret: String
7787
+ # @param Products: 绑定的产品列表,数据为:ProdcutID 数组 JSON 序列化后的字符串
7788
+ # @type Products: String
7789
+ # @param CreateTime: 创建时间
7790
+ # @type CreateTime: String
7791
+ # @param ProjectId: 项目ID
7792
+ # @type ProjectId: String
7793
+ # @param PushSecretID: 信鸽推送APP ID
7794
+ # @type PushSecretID: String
7795
+ # @param PushSecretKey: 信鸽推送SECRET KEY
7796
+ # @type PushSecretKey: String
7797
+ # @param PushEnvironment: iOS平台推送环境
7798
+ # @type PushEnvironment: String
7799
+ # @param MiniProgramAppKey: 小程序平台 AppKey
7800
+ # @type MiniProgramAppKey: String
7801
+ # @param MiniProgramAppSecret: 小程序平台 AppSecret
7802
+ # @type MiniProgramAppSecret: String
7803
+ # @param TPNSiOSAccessID: TPNS服务iOS应用AccessID,TPNS全称为腾讯移动推送(Tencent Push Notification Service),详见:https://cloud.tencent.com/document/product/548
7804
+ # @type TPNSiOSAccessID: String
7805
+ # @param TPNSiOSSecretKey: TPNS服务iOS应用SecretKey
7806
+ # @type TPNSiOSSecretKey: String
7807
+ # @param TPNSiOSPushEnvironment: TPNS服务iOS应用推送环境
7808
+ # @type TPNSiOSPushEnvironment: String
7809
+ # @param TPNSAndroidAccessID: TPNS服务Android应用AccessID
7810
+ # @type TPNSAndroidAccessID: String
7811
+ # @param TPNSAndroidSecretKey: TPNS服务Android应用SecretKey
7812
+ # @type TPNSAndroidSecretKey: String
7813
+ # @param TPNSiOSRegion: TPNS服务iOS应用所属地域,详细说明参见 ModifyApplication 同名入参。
7814
+ # @type TPNSiOSRegion: String
7815
+ # @param TPNSAndroidRegion: TPNS服务Android应用所属地域,详细说明参见 ModifyApplication 同名入参。
7816
+ # @type TPNSAndroidRegion: String
7817
+ # @param SelfSmsAppId: 自主短信配置APPID
7818
+ # 注意:此字段可能返回 null,表示取不到有效值。
7819
+ # @type SelfSmsAppId: String
7820
+ # @param SelfSmsAppKey: 自主短信配置APPKey
7821
+ # 注意:此字段可能返回 null,表示取不到有效值。
7822
+ # @type SelfSmsAppKey: String
7823
+ # @param SelfSmsSign: 自主短信配置签名
7824
+ # 注意:此字段可能返回 null,表示取不到有效值。
7825
+ # @type SelfSmsSign: String
7826
+ # @param SelfSmsTemplateId: 自主短信配置模板ID
7827
+ # 注意:此字段可能返回 null,表示取不到有效值。
7828
+ # @type SelfSmsTemplateId: Integer
7829
+ # @param WechatNotifyStatus: 第三方小程序强提醒开关 0:关闭;1:开启
7830
+ # 注意:此字段可能返回 null,表示取不到有效值。
7831
+ # @type WechatNotifyStatus: Integer
7832
+
7833
+ attr_accessor :IotAppID, :AppName, :Description, :DevMode, :IOSAppKey, :IOSAppSecret, :AndroidAppKey, :AndroidAppSecret, :Products, :CreateTime, :ProjectId, :PushSecretID, :PushSecretKey, :PushEnvironment, :MiniProgramAppKey, :MiniProgramAppSecret, :TPNSiOSAccessID, :TPNSiOSSecretKey, :TPNSiOSPushEnvironment, :TPNSAndroidAccessID, :TPNSAndroidSecretKey, :TPNSiOSRegion, :TPNSAndroidRegion, :SelfSmsAppId, :SelfSmsAppKey, :SelfSmsSign, :SelfSmsTemplateId, :WechatNotifyStatus
7834
+
7835
+ def initialize(iotappid=nil, appname=nil, description=nil, devmode=nil, iosappkey=nil, iosappsecret=nil, androidappkey=nil, androidappsecret=nil, products=nil, createtime=nil, projectid=nil, pushsecretid=nil, pushsecretkey=nil, pushenvironment=nil, miniprogramappkey=nil, miniprogramappsecret=nil, tpnsiosaccessid=nil, tpnsiossecretkey=nil, tpnsiospushenvironment=nil, tpnsandroidaccessid=nil, tpnsandroidsecretkey=nil, tpnsiosregion=nil, tpnsandroidregion=nil, selfsmsappid=nil, selfsmsappkey=nil, selfsmssign=nil, selfsmstemplateid=nil, wechatnotifystatus=nil)
7836
+ @IotAppID = iotappid
7837
+ @AppName = appname
7838
+ @Description = description
7839
+ @DevMode = devmode
7840
+ @IOSAppKey = iosappkey
7841
+ @IOSAppSecret = iosappsecret
7842
+ @AndroidAppKey = androidappkey
7843
+ @AndroidAppSecret = androidappsecret
7844
+ @Products = products
7845
+ @CreateTime = createtime
7846
+ @ProjectId = projectid
7847
+ @PushSecretID = pushsecretid
7848
+ @PushSecretKey = pushsecretkey
7849
+ @PushEnvironment = pushenvironment
7850
+ @MiniProgramAppKey = miniprogramappkey
7851
+ @MiniProgramAppSecret = miniprogramappsecret
7852
+ @TPNSiOSAccessID = tpnsiosaccessid
7853
+ @TPNSiOSSecretKey = tpnsiossecretkey
7854
+ @TPNSiOSPushEnvironment = tpnsiospushenvironment
7855
+ @TPNSAndroidAccessID = tpnsandroidaccessid
7856
+ @TPNSAndroidSecretKey = tpnsandroidsecretkey
7857
+ @TPNSiOSRegion = tpnsiosregion
7858
+ @TPNSAndroidRegion = tpnsandroidregion
7859
+ @SelfSmsAppId = selfsmsappid
7860
+ @SelfSmsAppKey = selfsmsappkey
7861
+ @SelfSmsSign = selfsmssign
7862
+ @SelfSmsTemplateId = selfsmstemplateid
7863
+ @WechatNotifyStatus = wechatnotifystatus
7864
+ end
7865
+
7866
+ def deserialize(params)
7867
+ @IotAppID = params['IotAppID']
7868
+ @AppName = params['AppName']
7869
+ @Description = params['Description']
7870
+ @DevMode = params['DevMode']
7871
+ @IOSAppKey = params['IOSAppKey']
7872
+ @IOSAppSecret = params['IOSAppSecret']
7873
+ @AndroidAppKey = params['AndroidAppKey']
7874
+ @AndroidAppSecret = params['AndroidAppSecret']
7875
+ @Products = params['Products']
7876
+ @CreateTime = params['CreateTime']
7877
+ @ProjectId = params['ProjectId']
7878
+ @PushSecretID = params['PushSecretID']
7879
+ @PushSecretKey = params['PushSecretKey']
7880
+ @PushEnvironment = params['PushEnvironment']
7881
+ @MiniProgramAppKey = params['MiniProgramAppKey']
7882
+ @MiniProgramAppSecret = params['MiniProgramAppSecret']
7883
+ @TPNSiOSAccessID = params['TPNSiOSAccessID']
7884
+ @TPNSiOSSecretKey = params['TPNSiOSSecretKey']
7885
+ @TPNSiOSPushEnvironment = params['TPNSiOSPushEnvironment']
7886
+ @TPNSAndroidAccessID = params['TPNSAndroidAccessID']
7887
+ @TPNSAndroidSecretKey = params['TPNSAndroidSecretKey']
7888
+ @TPNSiOSRegion = params['TPNSiOSRegion']
7889
+ @TPNSAndroidRegion = params['TPNSAndroidRegion']
7890
+ @SelfSmsAppId = params['SelfSmsAppId']
7891
+ @SelfSmsAppKey = params['SelfSmsAppKey']
7892
+ @SelfSmsSign = params['SelfSmsSign']
7893
+ @SelfSmsTemplateId = params['SelfSmsTemplateId']
7894
+ @WechatNotifyStatus = params['WechatNotifyStatus']
7895
+ end
7896
+ end
7897
+
7689
7898
  # 增值服务数量统计
7690
7899
  class LicenseServiceNumInfo < TencentCloud::Common::AbstractModel
7691
7900
  # @param LicenseType: 服务类型
@@ -8057,6 +8266,101 @@ module TencentCloud
8057
8266
  end
8058
8267
  end
8059
8268
 
8269
+ # ModifyApplication请求参数结构体
8270
+ class ModifyApplicationRequest < TencentCloud::Common::AbstractModel
8271
+ # @param IotAppID: 应用ID
8272
+ # @type IotAppID: String
8273
+ # @param AppName: 应用名称
8274
+ # @type AppName: String
8275
+ # @param Description: 应用说明
8276
+ # @type Description: String
8277
+ # @param Products: 关联的产品
8278
+ # @type Products: String
8279
+ # @param PushSecretID: 信鸽推送APP ID
8280
+ # @type PushSecretID: String
8281
+ # @param PushSecretKey: 信鸽推送SECRET KEY
8282
+ # @type PushSecretKey: String
8283
+ # @param PushEnvironment: iOS平台推送环境
8284
+ # @type PushEnvironment: String
8285
+ # @param TPNSiOSAccessID: TPNS服务iOS应用AccessID,TPNS全称为腾讯移动推送(Tencent Push Notification Service),详见:https://cloud.tencent.com/document/product/548
8286
+ # @type TPNSiOSAccessID: String
8287
+ # @param TPNSiOSSecretKey: TPNS服务iOS应用SecretKey
8288
+ # @type TPNSiOSSecretKey: String
8289
+ # @param TPNSiOSPushEnvironment: TPNS服务iOS应用推送环境
8290
+ # @type TPNSiOSPushEnvironment: String
8291
+ # @param TPNSAndroidAccessID: TPNS服务Android应用AccessID
8292
+ # @type TPNSAndroidAccessID: String
8293
+ # @param TPNSAndroidSecretKey: TPNS服务Android应用SecretKey
8294
+ # @type TPNSAndroidSecretKey: String
8295
+ # @param TPNSiOSRegion: TPNS服务iOS应用所属地域,广州:ap-guangzhou,上海:ap-shanghai,中国香港:ap-hongkong,新加坡:ap-singapore。
8296
+ # @type TPNSiOSRegion: String
8297
+ # @param TPNSAndroidRegion: TPNS服务Android应用所属地域,广州:ap-guangzhou,上海:ap-shanghai,中国香港:ap-hongkong,新加坡:ap-singapore。
8298
+ # @type TPNSAndroidRegion: String
8299
+ # @param TurnKeySwitch: TurnKey小程序托管
8300
+ # @type TurnKeySwitch: Integer
8301
+
8302
+ attr_accessor :IotAppID, :AppName, :Description, :Products, :PushSecretID, :PushSecretKey, :PushEnvironment, :TPNSiOSAccessID, :TPNSiOSSecretKey, :TPNSiOSPushEnvironment, :TPNSAndroidAccessID, :TPNSAndroidSecretKey, :TPNSiOSRegion, :TPNSAndroidRegion, :TurnKeySwitch
8303
+
8304
+ def initialize(iotappid=nil, appname=nil, description=nil, products=nil, pushsecretid=nil, pushsecretkey=nil, pushenvironment=nil, tpnsiosaccessid=nil, tpnsiossecretkey=nil, tpnsiospushenvironment=nil, tpnsandroidaccessid=nil, tpnsandroidsecretkey=nil, tpnsiosregion=nil, tpnsandroidregion=nil, turnkeyswitch=nil)
8305
+ @IotAppID = iotappid
8306
+ @AppName = appname
8307
+ @Description = description
8308
+ @Products = products
8309
+ @PushSecretID = pushsecretid
8310
+ @PushSecretKey = pushsecretkey
8311
+ @PushEnvironment = pushenvironment
8312
+ @TPNSiOSAccessID = tpnsiosaccessid
8313
+ @TPNSiOSSecretKey = tpnsiossecretkey
8314
+ @TPNSiOSPushEnvironment = tpnsiospushenvironment
8315
+ @TPNSAndroidAccessID = tpnsandroidaccessid
8316
+ @TPNSAndroidSecretKey = tpnsandroidsecretkey
8317
+ @TPNSiOSRegion = tpnsiosregion
8318
+ @TPNSAndroidRegion = tpnsandroidregion
8319
+ @TurnKeySwitch = turnkeyswitch
8320
+ end
8321
+
8322
+ def deserialize(params)
8323
+ @IotAppID = params['IotAppID']
8324
+ @AppName = params['AppName']
8325
+ @Description = params['Description']
8326
+ @Products = params['Products']
8327
+ @PushSecretID = params['PushSecretID']
8328
+ @PushSecretKey = params['PushSecretKey']
8329
+ @PushEnvironment = params['PushEnvironment']
8330
+ @TPNSiOSAccessID = params['TPNSiOSAccessID']
8331
+ @TPNSiOSSecretKey = params['TPNSiOSSecretKey']
8332
+ @TPNSiOSPushEnvironment = params['TPNSiOSPushEnvironment']
8333
+ @TPNSAndroidAccessID = params['TPNSAndroidAccessID']
8334
+ @TPNSAndroidSecretKey = params['TPNSAndroidSecretKey']
8335
+ @TPNSiOSRegion = params['TPNSiOSRegion']
8336
+ @TPNSAndroidRegion = params['TPNSAndroidRegion']
8337
+ @TurnKeySwitch = params['TurnKeySwitch']
8338
+ end
8339
+ end
8340
+
8341
+ # ModifyApplication返回参数结构体
8342
+ class ModifyApplicationResponse < TencentCloud::Common::AbstractModel
8343
+ # @param Application: 应用信息
8344
+ # @type Application: :class:`Tencentcloud::Iotexplorer.v20190423.models.IotApplication`
8345
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8346
+ # @type RequestId: String
8347
+
8348
+ attr_accessor :Application, :RequestId
8349
+
8350
+ def initialize(application=nil, requestid=nil)
8351
+ @Application = application
8352
+ @RequestId = requestid
8353
+ end
8354
+
8355
+ def deserialize(params)
8356
+ unless params['Application'].nil?
8357
+ @Application = IotApplication.new
8358
+ @Application.deserialize(params['Application'])
8359
+ end
8360
+ @RequestId = params['RequestId']
8361
+ end
8362
+ end
8363
+
8060
8364
  # ModifyCloudStorageAIServiceCallback请求参数结构体
8061
8365
  class ModifyCloudStorageAIServiceCallbackRequest < TencentCloud::Common::AbstractModel
8062
8366
  # @param ProductId: 产品 ID
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-iotexplorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1021
4
+ version: 3.0.1022
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-03-17 00:00:00.000000000 Z
11
+ date: 2025-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common