tencentcloud-sdk-python 3.0.1342__py2.py3-none-any.whl → 3.0.1343__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/v20220105/models.py +68 -0
- tencentcloud/billing/v20180709/billing_client.py +3 -1
- tencentcloud/billing/v20180709/models.py +90 -210
- tencentcloud/cdwpg/v20201230/models.py +4 -4
- tencentcloud/cdz/v20221123/models.py +0 -4
- tencentcloud/cfg/v20210820/models.py +0 -192
- tencentcloud/clb/v20180317/clb_client.py +2 -2
- tencentcloud/cwp/v20180228/models.py +61 -18
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
- tencentcloud/dbbrain/v20210527/models.py +1743 -387
- tencentcloud/domain/v20180808/models.py +0 -2
- tencentcloud/dts/v20180330/models.py +0 -6
- tencentcloud/dts/v20211206/models.py +2 -210
- tencentcloud/ess/v20201111/models.py +69 -4
- tencentcloud/essbasic/v20210526/models.py +57 -2
- tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +995 -65
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
- tencentcloud/iotvideo/v20211125/models.py +188 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
- tencentcloud/lighthouse/v20200324/models.py +68 -36
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/lkeap/v20240522/models.py +4 -8
- tencentcloud/mps/v20190612/models.py +170 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +0 -82
- tencentcloud/tcb/v20180608/models.py +0 -4
- tencentcloud/teo/v20220901/models.py +955 -20
- tencentcloud/tione/v20211111/models.py +90 -0
- tencentcloud/vdb/v20230616/models.py +45 -0
- tencentcloud/vdb/v20230616/vdb_client.py +1 -1
- tencentcloud/vrs/v20200824/models.py +32 -0
- tencentcloud/wedata/v20210820/models.py +77 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/RECORD +43 -43
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1343.dist-info}/top_level.txt +0 -0
@@ -1596,6 +1596,100 @@ class CancelAssignTWeCallLicenseResponse(AbstractModel):
|
|
1596
1596
|
self._RequestId = params.get("RequestId")
|
1597
1597
|
|
1598
1598
|
|
1599
|
+
class ChangeP2PRouteRequest(AbstractModel):
|
1600
|
+
"""ChangeP2PRoute请求参数结构体
|
1601
|
+
|
1602
|
+
"""
|
1603
|
+
|
1604
|
+
def __init__(self):
|
1605
|
+
r"""
|
1606
|
+
:param _ProductId: 产品ID
|
1607
|
+
:type ProductId: str
|
1608
|
+
:param _DeviceName: 设备名称
|
1609
|
+
:type DeviceName: str
|
1610
|
+
:param _RouteId: P2P线路
|
1611
|
+
:type RouteId: int
|
1612
|
+
"""
|
1613
|
+
self._ProductId = None
|
1614
|
+
self._DeviceName = None
|
1615
|
+
self._RouteId = None
|
1616
|
+
|
1617
|
+
@property
|
1618
|
+
def ProductId(self):
|
1619
|
+
"""产品ID
|
1620
|
+
:rtype: str
|
1621
|
+
"""
|
1622
|
+
return self._ProductId
|
1623
|
+
|
1624
|
+
@ProductId.setter
|
1625
|
+
def ProductId(self, ProductId):
|
1626
|
+
self._ProductId = ProductId
|
1627
|
+
|
1628
|
+
@property
|
1629
|
+
def DeviceName(self):
|
1630
|
+
"""设备名称
|
1631
|
+
:rtype: str
|
1632
|
+
"""
|
1633
|
+
return self._DeviceName
|
1634
|
+
|
1635
|
+
@DeviceName.setter
|
1636
|
+
def DeviceName(self, DeviceName):
|
1637
|
+
self._DeviceName = DeviceName
|
1638
|
+
|
1639
|
+
@property
|
1640
|
+
def RouteId(self):
|
1641
|
+
"""P2P线路
|
1642
|
+
:rtype: int
|
1643
|
+
"""
|
1644
|
+
return self._RouteId
|
1645
|
+
|
1646
|
+
@RouteId.setter
|
1647
|
+
def RouteId(self, RouteId):
|
1648
|
+
self._RouteId = RouteId
|
1649
|
+
|
1650
|
+
|
1651
|
+
def _deserialize(self, params):
|
1652
|
+
self._ProductId = params.get("ProductId")
|
1653
|
+
self._DeviceName = params.get("DeviceName")
|
1654
|
+
self._RouteId = params.get("RouteId")
|
1655
|
+
memeber_set = set(params.keys())
|
1656
|
+
for name, value in vars(self).items():
|
1657
|
+
property_name = name[1:]
|
1658
|
+
if property_name in memeber_set:
|
1659
|
+
memeber_set.remove(property_name)
|
1660
|
+
if len(memeber_set) > 0:
|
1661
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1662
|
+
|
1663
|
+
|
1664
|
+
|
1665
|
+
class ChangeP2PRouteResponse(AbstractModel):
|
1666
|
+
"""ChangeP2PRoute返回参数结构体
|
1667
|
+
|
1668
|
+
"""
|
1669
|
+
|
1670
|
+
def __init__(self):
|
1671
|
+
r"""
|
1672
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1673
|
+
:type RequestId: str
|
1674
|
+
"""
|
1675
|
+
self._RequestId = None
|
1676
|
+
|
1677
|
+
@property
|
1678
|
+
def RequestId(self):
|
1679
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1680
|
+
:rtype: str
|
1681
|
+
"""
|
1682
|
+
return self._RequestId
|
1683
|
+
|
1684
|
+
@RequestId.setter
|
1685
|
+
def RequestId(self, RequestId):
|
1686
|
+
self._RequestId = RequestId
|
1687
|
+
|
1688
|
+
|
1689
|
+
def _deserialize(self, params):
|
1690
|
+
self._RequestId = params.get("RequestId")
|
1691
|
+
|
1692
|
+
|
1599
1693
|
class CheckFirmwareUpdateRequest(AbstractModel):
|
1600
1694
|
"""CheckFirmwareUpdate请求参数结构体
|
1601
1695
|
|
@@ -12919,6 +13013,100 @@ class DescribeModelDefinitionResponse(AbstractModel):
|
|
12919
13013
|
self._RequestId = params.get("RequestId")
|
12920
13014
|
|
12921
13015
|
|
13016
|
+
class DescribeP2PRouteRequest(AbstractModel):
|
13017
|
+
"""DescribeP2PRoute请求参数结构体
|
13018
|
+
|
13019
|
+
"""
|
13020
|
+
|
13021
|
+
def __init__(self):
|
13022
|
+
r"""
|
13023
|
+
:param _ProductId: 产品ID
|
13024
|
+
:type ProductId: str
|
13025
|
+
:param _DeviceName: 设备名称
|
13026
|
+
:type DeviceName: str
|
13027
|
+
"""
|
13028
|
+
self._ProductId = None
|
13029
|
+
self._DeviceName = None
|
13030
|
+
|
13031
|
+
@property
|
13032
|
+
def ProductId(self):
|
13033
|
+
"""产品ID
|
13034
|
+
:rtype: str
|
13035
|
+
"""
|
13036
|
+
return self._ProductId
|
13037
|
+
|
13038
|
+
@ProductId.setter
|
13039
|
+
def ProductId(self, ProductId):
|
13040
|
+
self._ProductId = ProductId
|
13041
|
+
|
13042
|
+
@property
|
13043
|
+
def DeviceName(self):
|
13044
|
+
"""设备名称
|
13045
|
+
:rtype: str
|
13046
|
+
"""
|
13047
|
+
return self._DeviceName
|
13048
|
+
|
13049
|
+
@DeviceName.setter
|
13050
|
+
def DeviceName(self, DeviceName):
|
13051
|
+
self._DeviceName = DeviceName
|
13052
|
+
|
13053
|
+
|
13054
|
+
def _deserialize(self, params):
|
13055
|
+
self._ProductId = params.get("ProductId")
|
13056
|
+
self._DeviceName = params.get("DeviceName")
|
13057
|
+
memeber_set = set(params.keys())
|
13058
|
+
for name, value in vars(self).items():
|
13059
|
+
property_name = name[1:]
|
13060
|
+
if property_name in memeber_set:
|
13061
|
+
memeber_set.remove(property_name)
|
13062
|
+
if len(memeber_set) > 0:
|
13063
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13064
|
+
|
13065
|
+
|
13066
|
+
|
13067
|
+
class DescribeP2PRouteResponse(AbstractModel):
|
13068
|
+
"""DescribeP2PRoute返回参数结构体
|
13069
|
+
|
13070
|
+
"""
|
13071
|
+
|
13072
|
+
def __init__(self):
|
13073
|
+
r"""
|
13074
|
+
:param _RouteId: 当前p2p线路
|
13075
|
+
:type RouteId: int
|
13076
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13077
|
+
:type RequestId: str
|
13078
|
+
"""
|
13079
|
+
self._RouteId = None
|
13080
|
+
self._RequestId = None
|
13081
|
+
|
13082
|
+
@property
|
13083
|
+
def RouteId(self):
|
13084
|
+
"""当前p2p线路
|
13085
|
+
:rtype: int
|
13086
|
+
"""
|
13087
|
+
return self._RouteId
|
13088
|
+
|
13089
|
+
@RouteId.setter
|
13090
|
+
def RouteId(self, RouteId):
|
13091
|
+
self._RouteId = RouteId
|
13092
|
+
|
13093
|
+
@property
|
13094
|
+
def RequestId(self):
|
13095
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13096
|
+
:rtype: str
|
13097
|
+
"""
|
13098
|
+
return self._RequestId
|
13099
|
+
|
13100
|
+
@RequestId.setter
|
13101
|
+
def RequestId(self, RequestId):
|
13102
|
+
self._RequestId = RequestId
|
13103
|
+
|
13104
|
+
|
13105
|
+
def _deserialize(self, params):
|
13106
|
+
self._RouteId = params.get("RouteId")
|
13107
|
+
self._RequestId = params.get("RequestId")
|
13108
|
+
|
13109
|
+
|
12922
13110
|
class DescribePackageConsumeTaskRequest(AbstractModel):
|
12923
13111
|
"""DescribePackageConsumeTask请求参数结构体
|
12924
13112
|
|
@@ -19649,98 +19837,549 @@ class InvokeExternalSourceAIServiceTaskResponse(AbstractModel):
|
|
19649
19837
|
self._RequestId = params.get("RequestId")
|
19650
19838
|
|
19651
19839
|
|
19652
|
-
class
|
19653
|
-
"""
|
19840
|
+
class IotApplication(AbstractModel):
|
19841
|
+
"""应用信息
|
19654
19842
|
|
19655
19843
|
"""
|
19656
19844
|
|
19657
19845
|
def __init__(self):
|
19658
19846
|
r"""
|
19659
|
-
:param
|
19660
|
-
:type
|
19661
|
-
:param
|
19662
|
-
:type
|
19663
|
-
:param
|
19664
|
-
:type
|
19665
|
-
:param
|
19666
|
-
|
19667
|
-
:
|
19847
|
+
:param _IotAppID: 应用 ID
|
19848
|
+
:type IotAppID: str
|
19849
|
+
:param _AppName: 应用名称
|
19850
|
+
:type AppName: str
|
19851
|
+
:param _Description: 应用说明
|
19852
|
+
:type Description: str
|
19853
|
+
:param _DevMode: 开发模式
|
19854
|
+
:type DevMode: int
|
19855
|
+
:param _IOSAppKey: iOS 平台 AppKey
|
19856
|
+
:type IOSAppKey: str
|
19857
|
+
:param _IOSAppSecret: iOS 平台 AppSecret
|
19858
|
+
:type IOSAppSecret: str
|
19859
|
+
:param _AndroidAppKey: Android 平台 AppKey
|
19860
|
+
:type AndroidAppKey: str
|
19861
|
+
:param _AndroidAppSecret: Android 平台 AppSecret
|
19862
|
+
:type AndroidAppSecret: str
|
19863
|
+
:param _Products: 绑定的产品列表,数据为:ProdcutID 数组 JSON 序列化后的字符串
|
19864
|
+
:type Products: str
|
19865
|
+
:param _CreateTime: 创建时间
|
19866
|
+
:type CreateTime: str
|
19867
|
+
:param _ProjectId: 项目ID
|
19868
|
+
:type ProjectId: str
|
19869
|
+
:param _PushSecretID: 信鸽推送APP ID
|
19870
|
+
:type PushSecretID: str
|
19871
|
+
:param _PushSecretKey: 信鸽推送SECRET KEY
|
19872
|
+
:type PushSecretKey: str
|
19873
|
+
:param _PushEnvironment: iOS平台推送环境
|
19874
|
+
:type PushEnvironment: str
|
19875
|
+
:param _MiniProgramAppKey: 小程序平台 AppKey
|
19876
|
+
:type MiniProgramAppKey: str
|
19877
|
+
:param _MiniProgramAppSecret: 小程序平台 AppSecret
|
19878
|
+
:type MiniProgramAppSecret: str
|
19879
|
+
:param _TPNSiOSAccessID: TPNS服务iOS应用AccessID,TPNS全称为腾讯移动推送(Tencent Push Notification Service),详见:https://cloud.tencent.com/document/product/548
|
19880
|
+
:type TPNSiOSAccessID: str
|
19881
|
+
:param _TPNSiOSSecretKey: TPNS服务iOS应用SecretKey
|
19882
|
+
:type TPNSiOSSecretKey: str
|
19883
|
+
:param _TPNSiOSPushEnvironment: TPNS服务iOS应用推送环境
|
19884
|
+
:type TPNSiOSPushEnvironment: str
|
19885
|
+
:param _TPNSAndroidAccessID: TPNS服务Android应用AccessID
|
19886
|
+
:type TPNSAndroidAccessID: str
|
19887
|
+
:param _TPNSAndroidSecretKey: TPNS服务Android应用SecretKey
|
19888
|
+
:type TPNSAndroidSecretKey: str
|
19889
|
+
:param _TPNSiOSRegion: TPNS服务iOS应用所属地域,详细说明参见 ModifyApplication 同名入参。
|
19890
|
+
:type TPNSiOSRegion: str
|
19891
|
+
:param _TPNSAndroidRegion: TPNS服务Android应用所属地域,详细说明参见 ModifyApplication 同名入参。
|
19892
|
+
:type TPNSAndroidRegion: str
|
19893
|
+
:param _SelfSmsAppId: 自主短信配置APPID
|
19894
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19895
|
+
:type SelfSmsAppId: str
|
19896
|
+
:param _SelfSmsAppKey: 自主短信配置APPKey
|
19897
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19898
|
+
:type SelfSmsAppKey: str
|
19899
|
+
:param _SelfSmsSign: 自主短信配置签名
|
19900
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19901
|
+
:type SelfSmsSign: str
|
19902
|
+
:param _SelfSmsTemplateId: 自主短信配置模板ID
|
19903
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19904
|
+
:type SelfSmsTemplateId: int
|
19905
|
+
:param _WechatNotifyStatus: 第三方小程序强提醒开关 0:关闭;1:开启
|
19906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19907
|
+
:type WechatNotifyStatus: int
|
19668
19908
|
"""
|
19669
|
-
self.
|
19670
|
-
self.
|
19671
|
-
self.
|
19672
|
-
self.
|
19909
|
+
self._IotAppID = None
|
19910
|
+
self._AppName = None
|
19911
|
+
self._Description = None
|
19912
|
+
self._DevMode = None
|
19913
|
+
self._IOSAppKey = None
|
19914
|
+
self._IOSAppSecret = None
|
19915
|
+
self._AndroidAppKey = None
|
19916
|
+
self._AndroidAppSecret = None
|
19917
|
+
self._Products = None
|
19918
|
+
self._CreateTime = None
|
19919
|
+
self._ProjectId = None
|
19920
|
+
self._PushSecretID = None
|
19921
|
+
self._PushSecretKey = None
|
19922
|
+
self._PushEnvironment = None
|
19923
|
+
self._MiniProgramAppKey = None
|
19924
|
+
self._MiniProgramAppSecret = None
|
19925
|
+
self._TPNSiOSAccessID = None
|
19926
|
+
self._TPNSiOSSecretKey = None
|
19927
|
+
self._TPNSiOSPushEnvironment = None
|
19928
|
+
self._TPNSAndroidAccessID = None
|
19929
|
+
self._TPNSAndroidSecretKey = None
|
19930
|
+
self._TPNSiOSRegion = None
|
19931
|
+
self._TPNSAndroidRegion = None
|
19932
|
+
self._SelfSmsAppId = None
|
19933
|
+
self._SelfSmsAppKey = None
|
19934
|
+
self._SelfSmsSign = None
|
19935
|
+
self._SelfSmsTemplateId = None
|
19936
|
+
self._WechatNotifyStatus = None
|
19673
19937
|
|
19674
19938
|
@property
|
19675
|
-
def
|
19676
|
-
"""
|
19939
|
+
def IotAppID(self):
|
19940
|
+
"""应用 ID
|
19677
19941
|
:rtype: str
|
19678
19942
|
"""
|
19679
|
-
return self.
|
19943
|
+
return self._IotAppID
|
19680
19944
|
|
19681
|
-
@
|
19682
|
-
def
|
19683
|
-
self.
|
19945
|
+
@IotAppID.setter
|
19946
|
+
def IotAppID(self, IotAppID):
|
19947
|
+
self._IotAppID = IotAppID
|
19684
19948
|
|
19685
19949
|
@property
|
19686
|
-
def
|
19687
|
-
"""
|
19688
|
-
:rtype:
|
19950
|
+
def AppName(self):
|
19951
|
+
"""应用名称
|
19952
|
+
:rtype: str
|
19689
19953
|
"""
|
19690
|
-
return self.
|
19954
|
+
return self._AppName
|
19691
19955
|
|
19692
|
-
@
|
19693
|
-
def
|
19694
|
-
self.
|
19956
|
+
@AppName.setter
|
19957
|
+
def AppName(self, AppName):
|
19958
|
+
self._AppName = AppName
|
19695
19959
|
|
19696
19960
|
@property
|
19697
|
-
def
|
19698
|
-
"""
|
19699
|
-
:rtype:
|
19961
|
+
def Description(self):
|
19962
|
+
"""应用说明
|
19963
|
+
:rtype: str
|
19700
19964
|
"""
|
19701
|
-
return self.
|
19965
|
+
return self._Description
|
19702
19966
|
|
19703
|
-
@
|
19704
|
-
def
|
19705
|
-
self.
|
19967
|
+
@Description.setter
|
19968
|
+
def Description(self, Description):
|
19969
|
+
self._Description = Description
|
19706
19970
|
|
19707
19971
|
@property
|
19708
|
-
def
|
19709
|
-
"""
|
19710
|
-
|
19711
|
-
:rtype: list of TWeCallLicenseInfo
|
19972
|
+
def DevMode(self):
|
19973
|
+
"""开发模式
|
19974
|
+
:rtype: int
|
19712
19975
|
"""
|
19713
|
-
return self.
|
19714
|
-
|
19715
|
-
@TWeCallLicense.setter
|
19716
|
-
def TWeCallLicense(self, TWeCallLicense):
|
19717
|
-
self._TWeCallLicense = TWeCallLicense
|
19976
|
+
return self._DevMode
|
19718
19977
|
|
19978
|
+
@DevMode.setter
|
19979
|
+
def DevMode(self, DevMode):
|
19980
|
+
self._DevMode = DevMode
|
19719
19981
|
|
19720
|
-
|
19721
|
-
|
19722
|
-
|
19723
|
-
|
19724
|
-
|
19725
|
-
|
19726
|
-
for item in params.get("TWeCallLicense"):
|
19727
|
-
obj = TWeCallLicenseInfo()
|
19728
|
-
obj._deserialize(item)
|
19729
|
-
self._TWeCallLicense.append(obj)
|
19730
|
-
memeber_set = set(params.keys())
|
19731
|
-
for name, value in vars(self).items():
|
19732
|
-
property_name = name[1:]
|
19733
|
-
if property_name in memeber_set:
|
19734
|
-
memeber_set.remove(property_name)
|
19735
|
-
if len(memeber_set) > 0:
|
19736
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
19737
|
-
|
19982
|
+
@property
|
19983
|
+
def IOSAppKey(self):
|
19984
|
+
"""iOS 平台 AppKey
|
19985
|
+
:rtype: str
|
19986
|
+
"""
|
19987
|
+
return self._IOSAppKey
|
19738
19988
|
|
19989
|
+
@IOSAppKey.setter
|
19990
|
+
def IOSAppKey(self, IOSAppKey):
|
19991
|
+
self._IOSAppKey = IOSAppKey
|
19739
19992
|
|
19740
|
-
|
19741
|
-
|
19993
|
+
@property
|
19994
|
+
def IOSAppSecret(self):
|
19995
|
+
"""iOS 平台 AppSecret
|
19996
|
+
:rtype: str
|
19997
|
+
"""
|
19998
|
+
return self._IOSAppSecret
|
19742
19999
|
|
19743
|
-
|
20000
|
+
@IOSAppSecret.setter
|
20001
|
+
def IOSAppSecret(self, IOSAppSecret):
|
20002
|
+
self._IOSAppSecret = IOSAppSecret
|
20003
|
+
|
20004
|
+
@property
|
20005
|
+
def AndroidAppKey(self):
|
20006
|
+
"""Android 平台 AppKey
|
20007
|
+
:rtype: str
|
20008
|
+
"""
|
20009
|
+
return self._AndroidAppKey
|
20010
|
+
|
20011
|
+
@AndroidAppKey.setter
|
20012
|
+
def AndroidAppKey(self, AndroidAppKey):
|
20013
|
+
self._AndroidAppKey = AndroidAppKey
|
20014
|
+
|
20015
|
+
@property
|
20016
|
+
def AndroidAppSecret(self):
|
20017
|
+
"""Android 平台 AppSecret
|
20018
|
+
:rtype: str
|
20019
|
+
"""
|
20020
|
+
return self._AndroidAppSecret
|
20021
|
+
|
20022
|
+
@AndroidAppSecret.setter
|
20023
|
+
def AndroidAppSecret(self, AndroidAppSecret):
|
20024
|
+
self._AndroidAppSecret = AndroidAppSecret
|
20025
|
+
|
20026
|
+
@property
|
20027
|
+
def Products(self):
|
20028
|
+
"""绑定的产品列表,数据为:ProdcutID 数组 JSON 序列化后的字符串
|
20029
|
+
:rtype: str
|
20030
|
+
"""
|
20031
|
+
return self._Products
|
20032
|
+
|
20033
|
+
@Products.setter
|
20034
|
+
def Products(self, Products):
|
20035
|
+
self._Products = Products
|
20036
|
+
|
20037
|
+
@property
|
20038
|
+
def CreateTime(self):
|
20039
|
+
"""创建时间
|
20040
|
+
:rtype: str
|
20041
|
+
"""
|
20042
|
+
return self._CreateTime
|
20043
|
+
|
20044
|
+
@CreateTime.setter
|
20045
|
+
def CreateTime(self, CreateTime):
|
20046
|
+
self._CreateTime = CreateTime
|
20047
|
+
|
20048
|
+
@property
|
20049
|
+
def ProjectId(self):
|
20050
|
+
"""项目ID
|
20051
|
+
:rtype: str
|
20052
|
+
"""
|
20053
|
+
return self._ProjectId
|
20054
|
+
|
20055
|
+
@ProjectId.setter
|
20056
|
+
def ProjectId(self, ProjectId):
|
20057
|
+
self._ProjectId = ProjectId
|
20058
|
+
|
20059
|
+
@property
|
20060
|
+
def PushSecretID(self):
|
20061
|
+
"""信鸽推送APP ID
|
20062
|
+
:rtype: str
|
20063
|
+
"""
|
20064
|
+
return self._PushSecretID
|
20065
|
+
|
20066
|
+
@PushSecretID.setter
|
20067
|
+
def PushSecretID(self, PushSecretID):
|
20068
|
+
self._PushSecretID = PushSecretID
|
20069
|
+
|
20070
|
+
@property
|
20071
|
+
def PushSecretKey(self):
|
20072
|
+
"""信鸽推送SECRET KEY
|
20073
|
+
:rtype: str
|
20074
|
+
"""
|
20075
|
+
return self._PushSecretKey
|
20076
|
+
|
20077
|
+
@PushSecretKey.setter
|
20078
|
+
def PushSecretKey(self, PushSecretKey):
|
20079
|
+
self._PushSecretKey = PushSecretKey
|
20080
|
+
|
20081
|
+
@property
|
20082
|
+
def PushEnvironment(self):
|
20083
|
+
"""iOS平台推送环境
|
20084
|
+
:rtype: str
|
20085
|
+
"""
|
20086
|
+
return self._PushEnvironment
|
20087
|
+
|
20088
|
+
@PushEnvironment.setter
|
20089
|
+
def PushEnvironment(self, PushEnvironment):
|
20090
|
+
self._PushEnvironment = PushEnvironment
|
20091
|
+
|
20092
|
+
@property
|
20093
|
+
def MiniProgramAppKey(self):
|
20094
|
+
"""小程序平台 AppKey
|
20095
|
+
:rtype: str
|
20096
|
+
"""
|
20097
|
+
return self._MiniProgramAppKey
|
20098
|
+
|
20099
|
+
@MiniProgramAppKey.setter
|
20100
|
+
def MiniProgramAppKey(self, MiniProgramAppKey):
|
20101
|
+
self._MiniProgramAppKey = MiniProgramAppKey
|
20102
|
+
|
20103
|
+
@property
|
20104
|
+
def MiniProgramAppSecret(self):
|
20105
|
+
"""小程序平台 AppSecret
|
20106
|
+
:rtype: str
|
20107
|
+
"""
|
20108
|
+
return self._MiniProgramAppSecret
|
20109
|
+
|
20110
|
+
@MiniProgramAppSecret.setter
|
20111
|
+
def MiniProgramAppSecret(self, MiniProgramAppSecret):
|
20112
|
+
self._MiniProgramAppSecret = MiniProgramAppSecret
|
20113
|
+
|
20114
|
+
@property
|
20115
|
+
def TPNSiOSAccessID(self):
|
20116
|
+
"""TPNS服务iOS应用AccessID,TPNS全称为腾讯移动推送(Tencent Push Notification Service),详见:https://cloud.tencent.com/document/product/548
|
20117
|
+
:rtype: str
|
20118
|
+
"""
|
20119
|
+
return self._TPNSiOSAccessID
|
20120
|
+
|
20121
|
+
@TPNSiOSAccessID.setter
|
20122
|
+
def TPNSiOSAccessID(self, TPNSiOSAccessID):
|
20123
|
+
self._TPNSiOSAccessID = TPNSiOSAccessID
|
20124
|
+
|
20125
|
+
@property
|
20126
|
+
def TPNSiOSSecretKey(self):
|
20127
|
+
"""TPNS服务iOS应用SecretKey
|
20128
|
+
:rtype: str
|
20129
|
+
"""
|
20130
|
+
return self._TPNSiOSSecretKey
|
20131
|
+
|
20132
|
+
@TPNSiOSSecretKey.setter
|
20133
|
+
def TPNSiOSSecretKey(self, TPNSiOSSecretKey):
|
20134
|
+
self._TPNSiOSSecretKey = TPNSiOSSecretKey
|
20135
|
+
|
20136
|
+
@property
|
20137
|
+
def TPNSiOSPushEnvironment(self):
|
20138
|
+
"""TPNS服务iOS应用推送环境
|
20139
|
+
:rtype: str
|
20140
|
+
"""
|
20141
|
+
return self._TPNSiOSPushEnvironment
|
20142
|
+
|
20143
|
+
@TPNSiOSPushEnvironment.setter
|
20144
|
+
def TPNSiOSPushEnvironment(self, TPNSiOSPushEnvironment):
|
20145
|
+
self._TPNSiOSPushEnvironment = TPNSiOSPushEnvironment
|
20146
|
+
|
20147
|
+
@property
|
20148
|
+
def TPNSAndroidAccessID(self):
|
20149
|
+
"""TPNS服务Android应用AccessID
|
20150
|
+
:rtype: str
|
20151
|
+
"""
|
20152
|
+
return self._TPNSAndroidAccessID
|
20153
|
+
|
20154
|
+
@TPNSAndroidAccessID.setter
|
20155
|
+
def TPNSAndroidAccessID(self, TPNSAndroidAccessID):
|
20156
|
+
self._TPNSAndroidAccessID = TPNSAndroidAccessID
|
20157
|
+
|
20158
|
+
@property
|
20159
|
+
def TPNSAndroidSecretKey(self):
|
20160
|
+
"""TPNS服务Android应用SecretKey
|
20161
|
+
:rtype: str
|
20162
|
+
"""
|
20163
|
+
return self._TPNSAndroidSecretKey
|
20164
|
+
|
20165
|
+
@TPNSAndroidSecretKey.setter
|
20166
|
+
def TPNSAndroidSecretKey(self, TPNSAndroidSecretKey):
|
20167
|
+
self._TPNSAndroidSecretKey = TPNSAndroidSecretKey
|
20168
|
+
|
20169
|
+
@property
|
20170
|
+
def TPNSiOSRegion(self):
|
20171
|
+
"""TPNS服务iOS应用所属地域,详细说明参见 ModifyApplication 同名入参。
|
20172
|
+
:rtype: str
|
20173
|
+
"""
|
20174
|
+
return self._TPNSiOSRegion
|
20175
|
+
|
20176
|
+
@TPNSiOSRegion.setter
|
20177
|
+
def TPNSiOSRegion(self, TPNSiOSRegion):
|
20178
|
+
self._TPNSiOSRegion = TPNSiOSRegion
|
20179
|
+
|
20180
|
+
@property
|
20181
|
+
def TPNSAndroidRegion(self):
|
20182
|
+
"""TPNS服务Android应用所属地域,详细说明参见 ModifyApplication 同名入参。
|
20183
|
+
:rtype: str
|
20184
|
+
"""
|
20185
|
+
return self._TPNSAndroidRegion
|
20186
|
+
|
20187
|
+
@TPNSAndroidRegion.setter
|
20188
|
+
def TPNSAndroidRegion(self, TPNSAndroidRegion):
|
20189
|
+
self._TPNSAndroidRegion = TPNSAndroidRegion
|
20190
|
+
|
20191
|
+
@property
|
20192
|
+
def SelfSmsAppId(self):
|
20193
|
+
"""自主短信配置APPID
|
20194
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20195
|
+
:rtype: str
|
20196
|
+
"""
|
20197
|
+
return self._SelfSmsAppId
|
20198
|
+
|
20199
|
+
@SelfSmsAppId.setter
|
20200
|
+
def SelfSmsAppId(self, SelfSmsAppId):
|
20201
|
+
self._SelfSmsAppId = SelfSmsAppId
|
20202
|
+
|
20203
|
+
@property
|
20204
|
+
def SelfSmsAppKey(self):
|
20205
|
+
"""自主短信配置APPKey
|
20206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20207
|
+
:rtype: str
|
20208
|
+
"""
|
20209
|
+
return self._SelfSmsAppKey
|
20210
|
+
|
20211
|
+
@SelfSmsAppKey.setter
|
20212
|
+
def SelfSmsAppKey(self, SelfSmsAppKey):
|
20213
|
+
self._SelfSmsAppKey = SelfSmsAppKey
|
20214
|
+
|
20215
|
+
@property
|
20216
|
+
def SelfSmsSign(self):
|
20217
|
+
"""自主短信配置签名
|
20218
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20219
|
+
:rtype: str
|
20220
|
+
"""
|
20221
|
+
return self._SelfSmsSign
|
20222
|
+
|
20223
|
+
@SelfSmsSign.setter
|
20224
|
+
def SelfSmsSign(self, SelfSmsSign):
|
20225
|
+
self._SelfSmsSign = SelfSmsSign
|
20226
|
+
|
20227
|
+
@property
|
20228
|
+
def SelfSmsTemplateId(self):
|
20229
|
+
"""自主短信配置模板ID
|
20230
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20231
|
+
:rtype: int
|
20232
|
+
"""
|
20233
|
+
return self._SelfSmsTemplateId
|
20234
|
+
|
20235
|
+
@SelfSmsTemplateId.setter
|
20236
|
+
def SelfSmsTemplateId(self, SelfSmsTemplateId):
|
20237
|
+
self._SelfSmsTemplateId = SelfSmsTemplateId
|
20238
|
+
|
20239
|
+
@property
|
20240
|
+
def WechatNotifyStatus(self):
|
20241
|
+
"""第三方小程序强提醒开关 0:关闭;1:开启
|
20242
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20243
|
+
:rtype: int
|
20244
|
+
"""
|
20245
|
+
return self._WechatNotifyStatus
|
20246
|
+
|
20247
|
+
@WechatNotifyStatus.setter
|
20248
|
+
def WechatNotifyStatus(self, WechatNotifyStatus):
|
20249
|
+
self._WechatNotifyStatus = WechatNotifyStatus
|
20250
|
+
|
20251
|
+
|
20252
|
+
def _deserialize(self, params):
|
20253
|
+
self._IotAppID = params.get("IotAppID")
|
20254
|
+
self._AppName = params.get("AppName")
|
20255
|
+
self._Description = params.get("Description")
|
20256
|
+
self._DevMode = params.get("DevMode")
|
20257
|
+
self._IOSAppKey = params.get("IOSAppKey")
|
20258
|
+
self._IOSAppSecret = params.get("IOSAppSecret")
|
20259
|
+
self._AndroidAppKey = params.get("AndroidAppKey")
|
20260
|
+
self._AndroidAppSecret = params.get("AndroidAppSecret")
|
20261
|
+
self._Products = params.get("Products")
|
20262
|
+
self._CreateTime = params.get("CreateTime")
|
20263
|
+
self._ProjectId = params.get("ProjectId")
|
20264
|
+
self._PushSecretID = params.get("PushSecretID")
|
20265
|
+
self._PushSecretKey = params.get("PushSecretKey")
|
20266
|
+
self._PushEnvironment = params.get("PushEnvironment")
|
20267
|
+
self._MiniProgramAppKey = params.get("MiniProgramAppKey")
|
20268
|
+
self._MiniProgramAppSecret = params.get("MiniProgramAppSecret")
|
20269
|
+
self._TPNSiOSAccessID = params.get("TPNSiOSAccessID")
|
20270
|
+
self._TPNSiOSSecretKey = params.get("TPNSiOSSecretKey")
|
20271
|
+
self._TPNSiOSPushEnvironment = params.get("TPNSiOSPushEnvironment")
|
20272
|
+
self._TPNSAndroidAccessID = params.get("TPNSAndroidAccessID")
|
20273
|
+
self._TPNSAndroidSecretKey = params.get("TPNSAndroidSecretKey")
|
20274
|
+
self._TPNSiOSRegion = params.get("TPNSiOSRegion")
|
20275
|
+
self._TPNSAndroidRegion = params.get("TPNSAndroidRegion")
|
20276
|
+
self._SelfSmsAppId = params.get("SelfSmsAppId")
|
20277
|
+
self._SelfSmsAppKey = params.get("SelfSmsAppKey")
|
20278
|
+
self._SelfSmsSign = params.get("SelfSmsSign")
|
20279
|
+
self._SelfSmsTemplateId = params.get("SelfSmsTemplateId")
|
20280
|
+
self._WechatNotifyStatus = params.get("WechatNotifyStatus")
|
20281
|
+
memeber_set = set(params.keys())
|
20282
|
+
for name, value in vars(self).items():
|
20283
|
+
property_name = name[1:]
|
20284
|
+
if property_name in memeber_set:
|
20285
|
+
memeber_set.remove(property_name)
|
20286
|
+
if len(memeber_set) > 0:
|
20287
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20288
|
+
|
20289
|
+
|
20290
|
+
|
20291
|
+
class LicenseServiceNumInfo(AbstractModel):
|
20292
|
+
"""增值服务数量统计
|
20293
|
+
|
20294
|
+
"""
|
20295
|
+
|
20296
|
+
def __init__(self):
|
20297
|
+
r"""
|
20298
|
+
:param _LicenseType: 服务类型
|
20299
|
+
:type LicenseType: str
|
20300
|
+
:param _TotalNum: 授权总数
|
20301
|
+
:type TotalNum: int
|
20302
|
+
:param _UsedNum: 已使用授权数
|
20303
|
+
:type UsedNum: int
|
20304
|
+
:param _TWeCallLicense: TWeCall激活码
|
20305
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20306
|
+
:type TWeCallLicense: list of TWeCallLicenseInfo
|
20307
|
+
"""
|
20308
|
+
self._LicenseType = None
|
20309
|
+
self._TotalNum = None
|
20310
|
+
self._UsedNum = None
|
20311
|
+
self._TWeCallLicense = None
|
20312
|
+
|
20313
|
+
@property
|
20314
|
+
def LicenseType(self):
|
20315
|
+
"""服务类型
|
20316
|
+
:rtype: str
|
20317
|
+
"""
|
20318
|
+
return self._LicenseType
|
20319
|
+
|
20320
|
+
@LicenseType.setter
|
20321
|
+
def LicenseType(self, LicenseType):
|
20322
|
+
self._LicenseType = LicenseType
|
20323
|
+
|
20324
|
+
@property
|
20325
|
+
def TotalNum(self):
|
20326
|
+
"""授权总数
|
20327
|
+
:rtype: int
|
20328
|
+
"""
|
20329
|
+
return self._TotalNum
|
20330
|
+
|
20331
|
+
@TotalNum.setter
|
20332
|
+
def TotalNum(self, TotalNum):
|
20333
|
+
self._TotalNum = TotalNum
|
20334
|
+
|
20335
|
+
@property
|
20336
|
+
def UsedNum(self):
|
20337
|
+
"""已使用授权数
|
20338
|
+
:rtype: int
|
20339
|
+
"""
|
20340
|
+
return self._UsedNum
|
20341
|
+
|
20342
|
+
@UsedNum.setter
|
20343
|
+
def UsedNum(self, UsedNum):
|
20344
|
+
self._UsedNum = UsedNum
|
20345
|
+
|
20346
|
+
@property
|
20347
|
+
def TWeCallLicense(self):
|
20348
|
+
"""TWeCall激活码
|
20349
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20350
|
+
:rtype: list of TWeCallLicenseInfo
|
20351
|
+
"""
|
20352
|
+
return self._TWeCallLicense
|
20353
|
+
|
20354
|
+
@TWeCallLicense.setter
|
20355
|
+
def TWeCallLicense(self, TWeCallLicense):
|
20356
|
+
self._TWeCallLicense = TWeCallLicense
|
20357
|
+
|
20358
|
+
|
20359
|
+
def _deserialize(self, params):
|
20360
|
+
self._LicenseType = params.get("LicenseType")
|
20361
|
+
self._TotalNum = params.get("TotalNum")
|
20362
|
+
self._UsedNum = params.get("UsedNum")
|
20363
|
+
if params.get("TWeCallLicense") is not None:
|
20364
|
+
self._TWeCallLicense = []
|
20365
|
+
for item in params.get("TWeCallLicense"):
|
20366
|
+
obj = TWeCallLicenseInfo()
|
20367
|
+
obj._deserialize(item)
|
20368
|
+
self._TWeCallLicense.append(obj)
|
20369
|
+
memeber_set = set(params.keys())
|
20370
|
+
for name, value in vars(self).items():
|
20371
|
+
property_name = name[1:]
|
20372
|
+
if property_name in memeber_set:
|
20373
|
+
memeber_set.remove(property_name)
|
20374
|
+
if len(memeber_set) > 0:
|
20375
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20376
|
+
|
20377
|
+
|
20378
|
+
|
20379
|
+
class ListEventHistoryRequest(AbstractModel):
|
20380
|
+
"""ListEventHistory请求参数结构体
|
20381
|
+
|
20382
|
+
"""
|
19744
20383
|
|
19745
20384
|
def __init__(self):
|
19746
20385
|
r"""
|
@@ -20652,6 +21291,297 @@ class LoRaGatewayLocation(AbstractModel):
|
|
20652
21291
|
|
20653
21292
|
|
20654
21293
|
|
21294
|
+
class ModifyApplicationRequest(AbstractModel):
|
21295
|
+
"""ModifyApplication请求参数结构体
|
21296
|
+
|
21297
|
+
"""
|
21298
|
+
|
21299
|
+
def __init__(self):
|
21300
|
+
r"""
|
21301
|
+
:param _IotAppID: 应用ID
|
21302
|
+
:type IotAppID: str
|
21303
|
+
:param _AppName: 应用名称
|
21304
|
+
:type AppName: str
|
21305
|
+
:param _Description: 应用说明
|
21306
|
+
:type Description: str
|
21307
|
+
:param _Products: 关联的产品
|
21308
|
+
:type Products: str
|
21309
|
+
:param _PushSecretID: 信鸽推送APP ID
|
21310
|
+
:type PushSecretID: str
|
21311
|
+
:param _PushSecretKey: 信鸽推送SECRET KEY
|
21312
|
+
:type PushSecretKey: str
|
21313
|
+
:param _PushEnvironment: iOS平台推送环境
|
21314
|
+
:type PushEnvironment: str
|
21315
|
+
:param _TPNSiOSAccessID: TPNS服务iOS应用AccessID,TPNS全称为腾讯移动推送(Tencent Push Notification Service),详见:https://cloud.tencent.com/document/product/548
|
21316
|
+
:type TPNSiOSAccessID: str
|
21317
|
+
:param _TPNSiOSSecretKey: TPNS服务iOS应用SecretKey
|
21318
|
+
:type TPNSiOSSecretKey: str
|
21319
|
+
:param _TPNSiOSPushEnvironment: TPNS服务iOS应用推送环境
|
21320
|
+
:type TPNSiOSPushEnvironment: str
|
21321
|
+
:param _TPNSAndroidAccessID: TPNS服务Android应用AccessID
|
21322
|
+
:type TPNSAndroidAccessID: str
|
21323
|
+
:param _TPNSAndroidSecretKey: TPNS服务Android应用SecretKey
|
21324
|
+
:type TPNSAndroidSecretKey: str
|
21325
|
+
:param _TPNSiOSRegion: TPNS服务iOS应用所属地域,广州:ap-guangzhou,上海:ap-shanghai,中国香港:ap-hongkong,新加坡:ap-singapore。
|
21326
|
+
:type TPNSiOSRegion: str
|
21327
|
+
:param _TPNSAndroidRegion: TPNS服务Android应用所属地域,广州:ap-guangzhou,上海:ap-shanghai,中国香港:ap-hongkong,新加坡:ap-singapore。
|
21328
|
+
:type TPNSAndroidRegion: str
|
21329
|
+
:param _TurnKeySwitch: TurnKey小程序托管
|
21330
|
+
:type TurnKeySwitch: int
|
21331
|
+
"""
|
21332
|
+
self._IotAppID = None
|
21333
|
+
self._AppName = None
|
21334
|
+
self._Description = None
|
21335
|
+
self._Products = None
|
21336
|
+
self._PushSecretID = None
|
21337
|
+
self._PushSecretKey = None
|
21338
|
+
self._PushEnvironment = None
|
21339
|
+
self._TPNSiOSAccessID = None
|
21340
|
+
self._TPNSiOSSecretKey = None
|
21341
|
+
self._TPNSiOSPushEnvironment = None
|
21342
|
+
self._TPNSAndroidAccessID = None
|
21343
|
+
self._TPNSAndroidSecretKey = None
|
21344
|
+
self._TPNSiOSRegion = None
|
21345
|
+
self._TPNSAndroidRegion = None
|
21346
|
+
self._TurnKeySwitch = None
|
21347
|
+
|
21348
|
+
@property
|
21349
|
+
def IotAppID(self):
|
21350
|
+
"""应用ID
|
21351
|
+
:rtype: str
|
21352
|
+
"""
|
21353
|
+
return self._IotAppID
|
21354
|
+
|
21355
|
+
@IotAppID.setter
|
21356
|
+
def IotAppID(self, IotAppID):
|
21357
|
+
self._IotAppID = IotAppID
|
21358
|
+
|
21359
|
+
@property
|
21360
|
+
def AppName(self):
|
21361
|
+
"""应用名称
|
21362
|
+
:rtype: str
|
21363
|
+
"""
|
21364
|
+
return self._AppName
|
21365
|
+
|
21366
|
+
@AppName.setter
|
21367
|
+
def AppName(self, AppName):
|
21368
|
+
self._AppName = AppName
|
21369
|
+
|
21370
|
+
@property
|
21371
|
+
def Description(self):
|
21372
|
+
"""应用说明
|
21373
|
+
:rtype: str
|
21374
|
+
"""
|
21375
|
+
return self._Description
|
21376
|
+
|
21377
|
+
@Description.setter
|
21378
|
+
def Description(self, Description):
|
21379
|
+
self._Description = Description
|
21380
|
+
|
21381
|
+
@property
|
21382
|
+
def Products(self):
|
21383
|
+
"""关联的产品
|
21384
|
+
:rtype: str
|
21385
|
+
"""
|
21386
|
+
return self._Products
|
21387
|
+
|
21388
|
+
@Products.setter
|
21389
|
+
def Products(self, Products):
|
21390
|
+
self._Products = Products
|
21391
|
+
|
21392
|
+
@property
|
21393
|
+
def PushSecretID(self):
|
21394
|
+
"""信鸽推送APP ID
|
21395
|
+
:rtype: str
|
21396
|
+
"""
|
21397
|
+
return self._PushSecretID
|
21398
|
+
|
21399
|
+
@PushSecretID.setter
|
21400
|
+
def PushSecretID(self, PushSecretID):
|
21401
|
+
self._PushSecretID = PushSecretID
|
21402
|
+
|
21403
|
+
@property
|
21404
|
+
def PushSecretKey(self):
|
21405
|
+
"""信鸽推送SECRET KEY
|
21406
|
+
:rtype: str
|
21407
|
+
"""
|
21408
|
+
return self._PushSecretKey
|
21409
|
+
|
21410
|
+
@PushSecretKey.setter
|
21411
|
+
def PushSecretKey(self, PushSecretKey):
|
21412
|
+
self._PushSecretKey = PushSecretKey
|
21413
|
+
|
21414
|
+
@property
|
21415
|
+
def PushEnvironment(self):
|
21416
|
+
"""iOS平台推送环境
|
21417
|
+
:rtype: str
|
21418
|
+
"""
|
21419
|
+
return self._PushEnvironment
|
21420
|
+
|
21421
|
+
@PushEnvironment.setter
|
21422
|
+
def PushEnvironment(self, PushEnvironment):
|
21423
|
+
self._PushEnvironment = PushEnvironment
|
21424
|
+
|
21425
|
+
@property
|
21426
|
+
def TPNSiOSAccessID(self):
|
21427
|
+
"""TPNS服务iOS应用AccessID,TPNS全称为腾讯移动推送(Tencent Push Notification Service),详见:https://cloud.tencent.com/document/product/548
|
21428
|
+
:rtype: str
|
21429
|
+
"""
|
21430
|
+
return self._TPNSiOSAccessID
|
21431
|
+
|
21432
|
+
@TPNSiOSAccessID.setter
|
21433
|
+
def TPNSiOSAccessID(self, TPNSiOSAccessID):
|
21434
|
+
self._TPNSiOSAccessID = TPNSiOSAccessID
|
21435
|
+
|
21436
|
+
@property
|
21437
|
+
def TPNSiOSSecretKey(self):
|
21438
|
+
"""TPNS服务iOS应用SecretKey
|
21439
|
+
:rtype: str
|
21440
|
+
"""
|
21441
|
+
return self._TPNSiOSSecretKey
|
21442
|
+
|
21443
|
+
@TPNSiOSSecretKey.setter
|
21444
|
+
def TPNSiOSSecretKey(self, TPNSiOSSecretKey):
|
21445
|
+
self._TPNSiOSSecretKey = TPNSiOSSecretKey
|
21446
|
+
|
21447
|
+
@property
|
21448
|
+
def TPNSiOSPushEnvironment(self):
|
21449
|
+
"""TPNS服务iOS应用推送环境
|
21450
|
+
:rtype: str
|
21451
|
+
"""
|
21452
|
+
return self._TPNSiOSPushEnvironment
|
21453
|
+
|
21454
|
+
@TPNSiOSPushEnvironment.setter
|
21455
|
+
def TPNSiOSPushEnvironment(self, TPNSiOSPushEnvironment):
|
21456
|
+
self._TPNSiOSPushEnvironment = TPNSiOSPushEnvironment
|
21457
|
+
|
21458
|
+
@property
|
21459
|
+
def TPNSAndroidAccessID(self):
|
21460
|
+
"""TPNS服务Android应用AccessID
|
21461
|
+
:rtype: str
|
21462
|
+
"""
|
21463
|
+
return self._TPNSAndroidAccessID
|
21464
|
+
|
21465
|
+
@TPNSAndroidAccessID.setter
|
21466
|
+
def TPNSAndroidAccessID(self, TPNSAndroidAccessID):
|
21467
|
+
self._TPNSAndroidAccessID = TPNSAndroidAccessID
|
21468
|
+
|
21469
|
+
@property
|
21470
|
+
def TPNSAndroidSecretKey(self):
|
21471
|
+
"""TPNS服务Android应用SecretKey
|
21472
|
+
:rtype: str
|
21473
|
+
"""
|
21474
|
+
return self._TPNSAndroidSecretKey
|
21475
|
+
|
21476
|
+
@TPNSAndroidSecretKey.setter
|
21477
|
+
def TPNSAndroidSecretKey(self, TPNSAndroidSecretKey):
|
21478
|
+
self._TPNSAndroidSecretKey = TPNSAndroidSecretKey
|
21479
|
+
|
21480
|
+
@property
|
21481
|
+
def TPNSiOSRegion(self):
|
21482
|
+
"""TPNS服务iOS应用所属地域,广州:ap-guangzhou,上海:ap-shanghai,中国香港:ap-hongkong,新加坡:ap-singapore。
|
21483
|
+
:rtype: str
|
21484
|
+
"""
|
21485
|
+
return self._TPNSiOSRegion
|
21486
|
+
|
21487
|
+
@TPNSiOSRegion.setter
|
21488
|
+
def TPNSiOSRegion(self, TPNSiOSRegion):
|
21489
|
+
self._TPNSiOSRegion = TPNSiOSRegion
|
21490
|
+
|
21491
|
+
@property
|
21492
|
+
def TPNSAndroidRegion(self):
|
21493
|
+
"""TPNS服务Android应用所属地域,广州:ap-guangzhou,上海:ap-shanghai,中国香港:ap-hongkong,新加坡:ap-singapore。
|
21494
|
+
:rtype: str
|
21495
|
+
"""
|
21496
|
+
return self._TPNSAndroidRegion
|
21497
|
+
|
21498
|
+
@TPNSAndroidRegion.setter
|
21499
|
+
def TPNSAndroidRegion(self, TPNSAndroidRegion):
|
21500
|
+
self._TPNSAndroidRegion = TPNSAndroidRegion
|
21501
|
+
|
21502
|
+
@property
|
21503
|
+
def TurnKeySwitch(self):
|
21504
|
+
"""TurnKey小程序托管
|
21505
|
+
:rtype: int
|
21506
|
+
"""
|
21507
|
+
return self._TurnKeySwitch
|
21508
|
+
|
21509
|
+
@TurnKeySwitch.setter
|
21510
|
+
def TurnKeySwitch(self, TurnKeySwitch):
|
21511
|
+
self._TurnKeySwitch = TurnKeySwitch
|
21512
|
+
|
21513
|
+
|
21514
|
+
def _deserialize(self, params):
|
21515
|
+
self._IotAppID = params.get("IotAppID")
|
21516
|
+
self._AppName = params.get("AppName")
|
21517
|
+
self._Description = params.get("Description")
|
21518
|
+
self._Products = params.get("Products")
|
21519
|
+
self._PushSecretID = params.get("PushSecretID")
|
21520
|
+
self._PushSecretKey = params.get("PushSecretKey")
|
21521
|
+
self._PushEnvironment = params.get("PushEnvironment")
|
21522
|
+
self._TPNSiOSAccessID = params.get("TPNSiOSAccessID")
|
21523
|
+
self._TPNSiOSSecretKey = params.get("TPNSiOSSecretKey")
|
21524
|
+
self._TPNSiOSPushEnvironment = params.get("TPNSiOSPushEnvironment")
|
21525
|
+
self._TPNSAndroidAccessID = params.get("TPNSAndroidAccessID")
|
21526
|
+
self._TPNSAndroidSecretKey = params.get("TPNSAndroidSecretKey")
|
21527
|
+
self._TPNSiOSRegion = params.get("TPNSiOSRegion")
|
21528
|
+
self._TPNSAndroidRegion = params.get("TPNSAndroidRegion")
|
21529
|
+
self._TurnKeySwitch = params.get("TurnKeySwitch")
|
21530
|
+
memeber_set = set(params.keys())
|
21531
|
+
for name, value in vars(self).items():
|
21532
|
+
property_name = name[1:]
|
21533
|
+
if property_name in memeber_set:
|
21534
|
+
memeber_set.remove(property_name)
|
21535
|
+
if len(memeber_set) > 0:
|
21536
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
21537
|
+
|
21538
|
+
|
21539
|
+
|
21540
|
+
class ModifyApplicationResponse(AbstractModel):
|
21541
|
+
"""ModifyApplication返回参数结构体
|
21542
|
+
|
21543
|
+
"""
|
21544
|
+
|
21545
|
+
def __init__(self):
|
21546
|
+
r"""
|
21547
|
+
:param _Application: 应用信息
|
21548
|
+
:type Application: :class:`tencentcloud.iotexplorer.v20190423.models.IotApplication`
|
21549
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21550
|
+
:type RequestId: str
|
21551
|
+
"""
|
21552
|
+
self._Application = None
|
21553
|
+
self._RequestId = None
|
21554
|
+
|
21555
|
+
@property
|
21556
|
+
def Application(self):
|
21557
|
+
"""应用信息
|
21558
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.IotApplication`
|
21559
|
+
"""
|
21560
|
+
return self._Application
|
21561
|
+
|
21562
|
+
@Application.setter
|
21563
|
+
def Application(self, Application):
|
21564
|
+
self._Application = Application
|
21565
|
+
|
21566
|
+
@property
|
21567
|
+
def RequestId(self):
|
21568
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21569
|
+
:rtype: str
|
21570
|
+
"""
|
21571
|
+
return self._RequestId
|
21572
|
+
|
21573
|
+
@RequestId.setter
|
21574
|
+
def RequestId(self, RequestId):
|
21575
|
+
self._RequestId = RequestId
|
21576
|
+
|
21577
|
+
|
21578
|
+
def _deserialize(self, params):
|
21579
|
+
if params.get("Application") is not None:
|
21580
|
+
self._Application = IotApplication()
|
21581
|
+
self._Application._deserialize(params.get("Application"))
|
21582
|
+
self._RequestId = params.get("RequestId")
|
21583
|
+
|
21584
|
+
|
20655
21585
|
class ModifyCloudStorageAIServiceCallbackRequest(AbstractModel):
|
20656
21586
|
"""ModifyCloudStorageAIServiceCallback请求参数结构体
|
20657
21587
|
|