tencentcloud-sdk-python 3.0.1240__py2.py3-none-any.whl → 3.0.1246__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/apm/v20210622/errorcodes.py +3 -3
 - tencentcloud/apm/v20210622/models.py +16 -15
 - tencentcloud/autoscaling/v20180419/models.py +39 -3
 - tencentcloud/ca/__init__.py +0 -0
 - tencentcloud/ca/v20230228/__init__.py +0 -0
 - tencentcloud/ca/v20230228/ca_client.py +95 -0
 - tencentcloud/ca/v20230228/errorcodes.py +30 -0
 - tencentcloud/ca/v20230228/models.py +398 -0
 - tencentcloud/ccc/v20200210/ccc_client.py +46 -0
 - tencentcloud/ccc/v20200210/errorcodes.py +6 -0
 - tencentcloud/ccc/v20200210/models.py +291 -0
 - tencentcloud/cdn/v20180606/models.py +32 -0
 - tencentcloud/cdwdoris/v20211228/models.py +105 -1
 - tencentcloud/cls/v20201016/models.py +12 -0
 - tencentcloud/cvm/v20170312/cvm_client.py +23 -0
 - tencentcloud/cvm/v20170312/errorcodes.py +4 -1
 - tencentcloud/cvm/v20170312/models.py +202 -4
 - tencentcloud/cynosdb/v20190107/cynosdb_client.py +48 -48
 - tencentcloud/cynosdb/v20190107/models.py +7 -4
 - tencentcloud/dts/v20211206/models.py +12 -12
 - tencentcloud/emr/v20190103/models.py +12 -0
 - tencentcloud/ess/v20201111/ess_client.py +1 -2
 - tencentcloud/ess/v20201111/models.py +21 -17
 - tencentcloud/essbasic/v20210526/essbasic_client.py +37 -0
 - tencentcloud/essbasic/v20210526/models.py +129 -8
 - tencentcloud/lcic/v20220817/models.py +1 -1
 - tencentcloud/lighthouse/v20200324/models.py +2 -2
 - tencentcloud/mariadb/v20170312/mariadb_client.py +23 -0
 - tencentcloud/mariadb/v20170312/models.py +94 -0
 - tencentcloud/mqtt/v20240516/models.py +1 -1
 - tencentcloud/mrs/v20200910/models.py +158 -27
 - tencentcloud/ocr/v20181119/models.py +19 -0
 - tencentcloud/scf/v20180416/errorcodes.py +9 -12
 - tencentcloud/ses/v20201002/models.py +65 -0
 - tencentcloud/sqlserver/v20180328/models.py +1 -1
 - tencentcloud/ssl/v20191205/models.py +39 -0
 - tencentcloud/tcss/v20201101/models.py +12 -0
 - tencentcloud/teo/v20220901/errorcodes.py +33 -0
 - tencentcloud/teo/v20220901/models.py +2993 -1598
 - tencentcloud/teo/v20220901/teo_client.py +254 -0
 - tencentcloud/tke/v20180525/models.py +2 -2
 - tencentcloud/vclm/v20240523/models.py +25 -0
 - tencentcloud/vpc/v20170312/errorcodes.py +6 -0
 - tencentcloud/vpc/v20170312/models.py +2162 -188
 - tencentcloud/vpc/v20170312/vpc_client.py +506 -0
 - tencentcloud/waf/v20180125/models.py +447 -12
 - {tencentcloud_sdk_python-3.0.1240.dist-info → tencentcloud_sdk_python-3.0.1246.dist-info}/METADATA +1 -1
 - {tencentcloud_sdk_python-3.0.1240.dist-info → tencentcloud_sdk_python-3.0.1246.dist-info}/RECORD +52 -47
 - {tencentcloud_sdk_python-3.0.1240.dist-info → tencentcloud_sdk_python-3.0.1246.dist-info}/LICENSE +0 -0
 - {tencentcloud_sdk_python-3.0.1240.dist-info → tencentcloud_sdk_python-3.0.1246.dist-info}/WHEEL +0 -0
 - {tencentcloud_sdk_python-3.0.1240.dist-info → tencentcloud_sdk_python-3.0.1246.dist-info}/top_level.txt +0 -0
 
| 
         @@ -0,0 +1,398 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # -*- coding: utf8 -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
         
     | 
| 
      
 3 
     | 
    
         
            +
            #
         
     | 
| 
      
 4 
     | 
    
         
            +
            # Licensed under the Apache License, Version 2.0 (the "License");
         
     | 
| 
      
 5 
     | 
    
         
            +
            # you may not use this file except in compliance with the License.
         
     | 
| 
      
 6 
     | 
    
         
            +
            # You may obtain a copy of the License at
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            #    http://www.apache.org/licenses/LICENSE-2.0
         
     | 
| 
      
 9 
     | 
    
         
            +
            #
         
     | 
| 
      
 10 
     | 
    
         
            +
            # Unless required by applicable law or agreed to in writing, software
         
     | 
| 
      
 11 
     | 
    
         
            +
            # distributed under the License is distributed on an "AS IS" BASIS,
         
     | 
| 
      
 12 
     | 
    
         
            +
            # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         
     | 
| 
      
 13 
     | 
    
         
            +
            # See the License for the specific language governing permissions and
         
     | 
| 
      
 14 
     | 
    
         
            +
            # limitations under the License.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            import warnings
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            from tencentcloud.common.abstract_model import AbstractModel
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            class CreateVerifyReportRequest(AbstractModel):
         
     | 
| 
      
 22 
     | 
    
         
            +
                """CreateVerifyReport请求参数结构体
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                """
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 27 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 28 
     | 
    
         
            +
                    :param _ApplyCustomerType: 申请者类型 1:个人,2:企业
         
     | 
| 
      
 29 
     | 
    
         
            +
                    :type ApplyCustomerType: str
         
     | 
| 
      
 30 
     | 
    
         
            +
                    :param _ApplyCustomerName: 申请企业 or 自然人名称
         
     | 
| 
      
 31 
     | 
    
         
            +
                    :type ApplyCustomerName: str
         
     | 
| 
      
 32 
     | 
    
         
            +
                    :param _ApplyName: 验签申请经办人姓名
         
     | 
| 
      
 33 
     | 
    
         
            +
                    :type ApplyName: str
         
     | 
| 
      
 34 
     | 
    
         
            +
                    :param _ApplyMobile: 验签申请经办人电话
         
     | 
| 
      
 35 
     | 
    
         
            +
                    :type ApplyMobile: str
         
     | 
| 
      
 36 
     | 
    
         
            +
                    :param _FileId: 验签文件id
         
     | 
| 
      
 37 
     | 
    
         
            +
                    :type FileId: str
         
     | 
| 
      
 38 
     | 
    
         
            +
                    :param _ApplyEmail: 验签申请经办人邮箱
         
     | 
| 
      
 39 
     | 
    
         
            +
                    :type ApplyEmail: str
         
     | 
| 
      
 40 
     | 
    
         
            +
                    """
         
     | 
| 
      
 41 
     | 
    
         
            +
                    self._ApplyCustomerType = None
         
     | 
| 
      
 42 
     | 
    
         
            +
                    self._ApplyCustomerName = None
         
     | 
| 
      
 43 
     | 
    
         
            +
                    self._ApplyName = None
         
     | 
| 
      
 44 
     | 
    
         
            +
                    self._ApplyMobile = None
         
     | 
| 
      
 45 
     | 
    
         
            +
                    self._FileId = None
         
     | 
| 
      
 46 
     | 
    
         
            +
                    self._ApplyEmail = None
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
                @property
         
     | 
| 
      
 49 
     | 
    
         
            +
                def ApplyCustomerType(self):
         
     | 
| 
      
 50 
     | 
    
         
            +
                    return self._ApplyCustomerType
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
                @ApplyCustomerType.setter
         
     | 
| 
      
 53 
     | 
    
         
            +
                def ApplyCustomerType(self, ApplyCustomerType):
         
     | 
| 
      
 54 
     | 
    
         
            +
                    self._ApplyCustomerType = ApplyCustomerType
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                @property
         
     | 
| 
      
 57 
     | 
    
         
            +
                def ApplyCustomerName(self):
         
     | 
| 
      
 58 
     | 
    
         
            +
                    return self._ApplyCustomerName
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                @ApplyCustomerName.setter
         
     | 
| 
      
 61 
     | 
    
         
            +
                def ApplyCustomerName(self, ApplyCustomerName):
         
     | 
| 
      
 62 
     | 
    
         
            +
                    self._ApplyCustomerName = ApplyCustomerName
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                @property
         
     | 
| 
      
 65 
     | 
    
         
            +
                def ApplyName(self):
         
     | 
| 
      
 66 
     | 
    
         
            +
                    return self._ApplyName
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                @ApplyName.setter
         
     | 
| 
      
 69 
     | 
    
         
            +
                def ApplyName(self, ApplyName):
         
     | 
| 
      
 70 
     | 
    
         
            +
                    self._ApplyName = ApplyName
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                @property
         
     | 
| 
      
 73 
     | 
    
         
            +
                def ApplyMobile(self):
         
     | 
| 
      
 74 
     | 
    
         
            +
                    return self._ApplyMobile
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                @ApplyMobile.setter
         
     | 
| 
      
 77 
     | 
    
         
            +
                def ApplyMobile(self, ApplyMobile):
         
     | 
| 
      
 78 
     | 
    
         
            +
                    self._ApplyMobile = ApplyMobile
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                @property
         
     | 
| 
      
 81 
     | 
    
         
            +
                def FileId(self):
         
     | 
| 
      
 82 
     | 
    
         
            +
                    return self._FileId
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
                @FileId.setter
         
     | 
| 
      
 85 
     | 
    
         
            +
                def FileId(self, FileId):
         
     | 
| 
      
 86 
     | 
    
         
            +
                    self._FileId = FileId
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
                @property
         
     | 
| 
      
 89 
     | 
    
         
            +
                def ApplyEmail(self):
         
     | 
| 
      
 90 
     | 
    
         
            +
                    return self._ApplyEmail
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                @ApplyEmail.setter
         
     | 
| 
      
 93 
     | 
    
         
            +
                def ApplyEmail(self, ApplyEmail):
         
     | 
| 
      
 94 
     | 
    
         
            +
                    self._ApplyEmail = ApplyEmail
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 98 
     | 
    
         
            +
                    self._ApplyCustomerType = params.get("ApplyCustomerType")
         
     | 
| 
      
 99 
     | 
    
         
            +
                    self._ApplyCustomerName = params.get("ApplyCustomerName")
         
     | 
| 
      
 100 
     | 
    
         
            +
                    self._ApplyName = params.get("ApplyName")
         
     | 
| 
      
 101 
     | 
    
         
            +
                    self._ApplyMobile = params.get("ApplyMobile")
         
     | 
| 
      
 102 
     | 
    
         
            +
                    self._FileId = params.get("FileId")
         
     | 
| 
      
 103 
     | 
    
         
            +
                    self._ApplyEmail = params.get("ApplyEmail")
         
     | 
| 
      
 104 
     | 
    
         
            +
                    memeber_set = set(params.keys())
         
     | 
| 
      
 105 
     | 
    
         
            +
                    for name, value in vars(self).items():
         
     | 
| 
      
 106 
     | 
    
         
            +
                        property_name = name[1:]
         
     | 
| 
      
 107 
     | 
    
         
            +
                        if property_name in memeber_set:
         
     | 
| 
      
 108 
     | 
    
         
            +
                            memeber_set.remove(property_name)
         
     | 
| 
      
 109 
     | 
    
         
            +
                    if len(memeber_set) > 0:
         
     | 
| 
      
 110 
     | 
    
         
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         
     | 
| 
      
 111 
     | 
    
         
            +
                    
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
            class CreateVerifyReportResponse(AbstractModel):
         
     | 
| 
      
 115 
     | 
    
         
            +
                """CreateVerifyReport返回参数结构体
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
                """
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 120 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 121 
     | 
    
         
            +
                    :param _SignatureId: 签名id
         
     | 
| 
      
 122 
     | 
    
         
            +
                    :type SignatureId: str
         
     | 
| 
      
 123 
     | 
    
         
            +
                    :param _Code: code
         
     | 
| 
      
 124 
     | 
    
         
            +
                    :type Code: str
         
     | 
| 
      
 125 
     | 
    
         
            +
                    :param _Message: message
         
     | 
| 
      
 126 
     | 
    
         
            +
                    :type Message: str
         
     | 
| 
      
 127 
     | 
    
         
            +
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         
     | 
| 
      
 128 
     | 
    
         
            +
                    :type RequestId: str
         
     | 
| 
      
 129 
     | 
    
         
            +
                    """
         
     | 
| 
      
 130 
     | 
    
         
            +
                    self._SignatureId = None
         
     | 
| 
      
 131 
     | 
    
         
            +
                    self._Code = None
         
     | 
| 
      
 132 
     | 
    
         
            +
                    self._Message = None
         
     | 
| 
      
 133 
     | 
    
         
            +
                    self._RequestId = None
         
     | 
| 
      
 134 
     | 
    
         
            +
             
     | 
| 
      
 135 
     | 
    
         
            +
                @property
         
     | 
| 
      
 136 
     | 
    
         
            +
                def SignatureId(self):
         
     | 
| 
      
 137 
     | 
    
         
            +
                    return self._SignatureId
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
                @SignatureId.setter
         
     | 
| 
      
 140 
     | 
    
         
            +
                def SignatureId(self, SignatureId):
         
     | 
| 
      
 141 
     | 
    
         
            +
                    self._SignatureId = SignatureId
         
     | 
| 
      
 142 
     | 
    
         
            +
             
     | 
| 
      
 143 
     | 
    
         
            +
                @property
         
     | 
| 
      
 144 
     | 
    
         
            +
                def Code(self):
         
     | 
| 
      
 145 
     | 
    
         
            +
                    return self._Code
         
     | 
| 
      
 146 
     | 
    
         
            +
             
     | 
| 
      
 147 
     | 
    
         
            +
                @Code.setter
         
     | 
| 
      
 148 
     | 
    
         
            +
                def Code(self, Code):
         
     | 
| 
      
 149 
     | 
    
         
            +
                    self._Code = Code
         
     | 
| 
      
 150 
     | 
    
         
            +
             
     | 
| 
      
 151 
     | 
    
         
            +
                @property
         
     | 
| 
      
 152 
     | 
    
         
            +
                def Message(self):
         
     | 
| 
      
 153 
     | 
    
         
            +
                    return self._Message
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
                @Message.setter
         
     | 
| 
      
 156 
     | 
    
         
            +
                def Message(self, Message):
         
     | 
| 
      
 157 
     | 
    
         
            +
                    self._Message = Message
         
     | 
| 
      
 158 
     | 
    
         
            +
             
     | 
| 
      
 159 
     | 
    
         
            +
                @property
         
     | 
| 
      
 160 
     | 
    
         
            +
                def RequestId(self):
         
     | 
| 
      
 161 
     | 
    
         
            +
                    return self._RequestId
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
                @RequestId.setter
         
     | 
| 
      
 164 
     | 
    
         
            +
                def RequestId(self, RequestId):
         
     | 
| 
      
 165 
     | 
    
         
            +
                    self._RequestId = RequestId
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
             
     | 
| 
      
 168 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 169 
     | 
    
         
            +
                    self._SignatureId = params.get("SignatureId")
         
     | 
| 
      
 170 
     | 
    
         
            +
                    self._Code = params.get("Code")
         
     | 
| 
      
 171 
     | 
    
         
            +
                    self._Message = params.get("Message")
         
     | 
| 
      
 172 
     | 
    
         
            +
                    self._RequestId = params.get("RequestId")
         
     | 
| 
      
 173 
     | 
    
         
            +
             
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
            class DescribeVerifyReportRequest(AbstractModel):
         
     | 
| 
      
 176 
     | 
    
         
            +
                """DescribeVerifyReport请求参数结构体
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
                """
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 181 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 182 
     | 
    
         
            +
                    :param _SignatureId: 签名id
         
     | 
| 
      
 183 
     | 
    
         
            +
                    :type SignatureId: str
         
     | 
| 
      
 184 
     | 
    
         
            +
                    """
         
     | 
| 
      
 185 
     | 
    
         
            +
                    self._SignatureId = None
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
                @property
         
     | 
| 
      
 188 
     | 
    
         
            +
                def SignatureId(self):
         
     | 
| 
      
 189 
     | 
    
         
            +
                    return self._SignatureId
         
     | 
| 
      
 190 
     | 
    
         
            +
             
     | 
| 
      
 191 
     | 
    
         
            +
                @SignatureId.setter
         
     | 
| 
      
 192 
     | 
    
         
            +
                def SignatureId(self, SignatureId):
         
     | 
| 
      
 193 
     | 
    
         
            +
                    self._SignatureId = SignatureId
         
     | 
| 
      
 194 
     | 
    
         
            +
             
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 197 
     | 
    
         
            +
                    self._SignatureId = params.get("SignatureId")
         
     | 
| 
      
 198 
     | 
    
         
            +
                    memeber_set = set(params.keys())
         
     | 
| 
      
 199 
     | 
    
         
            +
                    for name, value in vars(self).items():
         
     | 
| 
      
 200 
     | 
    
         
            +
                        property_name = name[1:]
         
     | 
| 
      
 201 
     | 
    
         
            +
                        if property_name in memeber_set:
         
     | 
| 
      
 202 
     | 
    
         
            +
                            memeber_set.remove(property_name)
         
     | 
| 
      
 203 
     | 
    
         
            +
                    if len(memeber_set) > 0:
         
     | 
| 
      
 204 
     | 
    
         
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         
     | 
| 
      
 205 
     | 
    
         
            +
                    
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
            class DescribeVerifyReportResponse(AbstractModel):
         
     | 
| 
      
 209 
     | 
    
         
            +
                """DescribeVerifyReport返回参数结构体
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
                """
         
     | 
| 
      
 212 
     | 
    
         
            +
             
     | 
| 
      
 213 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 214 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 215 
     | 
    
         
            +
                    :param _ReportUrl: 下载url
         
     | 
| 
      
 216 
     | 
    
         
            +
                    :type ReportUrl: str
         
     | 
| 
      
 217 
     | 
    
         
            +
                    :param _Code: code
         
     | 
| 
      
 218 
     | 
    
         
            +
                    :type Code: str
         
     | 
| 
      
 219 
     | 
    
         
            +
                    :param _Message: message
         
     | 
| 
      
 220 
     | 
    
         
            +
                    :type Message: str
         
     | 
| 
      
 221 
     | 
    
         
            +
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         
     | 
| 
      
 222 
     | 
    
         
            +
                    :type RequestId: str
         
     | 
| 
      
 223 
     | 
    
         
            +
                    """
         
     | 
| 
      
 224 
     | 
    
         
            +
                    self._ReportUrl = None
         
     | 
| 
      
 225 
     | 
    
         
            +
                    self._Code = None
         
     | 
| 
      
 226 
     | 
    
         
            +
                    self._Message = None
         
     | 
| 
      
 227 
     | 
    
         
            +
                    self._RequestId = None
         
     | 
| 
      
 228 
     | 
    
         
            +
             
     | 
| 
      
 229 
     | 
    
         
            +
                @property
         
     | 
| 
      
 230 
     | 
    
         
            +
                def ReportUrl(self):
         
     | 
| 
      
 231 
     | 
    
         
            +
                    return self._ReportUrl
         
     | 
| 
      
 232 
     | 
    
         
            +
             
     | 
| 
      
 233 
     | 
    
         
            +
                @ReportUrl.setter
         
     | 
| 
      
 234 
     | 
    
         
            +
                def ReportUrl(self, ReportUrl):
         
     | 
| 
      
 235 
     | 
    
         
            +
                    self._ReportUrl = ReportUrl
         
     | 
| 
      
 236 
     | 
    
         
            +
             
     | 
| 
      
 237 
     | 
    
         
            +
                @property
         
     | 
| 
      
 238 
     | 
    
         
            +
                def Code(self):
         
     | 
| 
      
 239 
     | 
    
         
            +
                    return self._Code
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
                @Code.setter
         
     | 
| 
      
 242 
     | 
    
         
            +
                def Code(self, Code):
         
     | 
| 
      
 243 
     | 
    
         
            +
                    self._Code = Code
         
     | 
| 
      
 244 
     | 
    
         
            +
             
     | 
| 
      
 245 
     | 
    
         
            +
                @property
         
     | 
| 
      
 246 
     | 
    
         
            +
                def Message(self):
         
     | 
| 
      
 247 
     | 
    
         
            +
                    return self._Message
         
     | 
| 
      
 248 
     | 
    
         
            +
             
     | 
| 
      
 249 
     | 
    
         
            +
                @Message.setter
         
     | 
| 
      
 250 
     | 
    
         
            +
                def Message(self, Message):
         
     | 
| 
      
 251 
     | 
    
         
            +
                    self._Message = Message
         
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
                @property
         
     | 
| 
      
 254 
     | 
    
         
            +
                def RequestId(self):
         
     | 
| 
      
 255 
     | 
    
         
            +
                    return self._RequestId
         
     | 
| 
      
 256 
     | 
    
         
            +
             
     | 
| 
      
 257 
     | 
    
         
            +
                @RequestId.setter
         
     | 
| 
      
 258 
     | 
    
         
            +
                def RequestId(self, RequestId):
         
     | 
| 
      
 259 
     | 
    
         
            +
                    self._RequestId = RequestId
         
     | 
| 
      
 260 
     | 
    
         
            +
             
     | 
| 
      
 261 
     | 
    
         
            +
             
     | 
| 
      
 262 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 263 
     | 
    
         
            +
                    self._ReportUrl = params.get("ReportUrl")
         
     | 
| 
      
 264 
     | 
    
         
            +
                    self._Code = params.get("Code")
         
     | 
| 
      
 265 
     | 
    
         
            +
                    self._Message = params.get("Message")
         
     | 
| 
      
 266 
     | 
    
         
            +
                    self._RequestId = params.get("RequestId")
         
     | 
| 
      
 267 
     | 
    
         
            +
             
     | 
| 
      
 268 
     | 
    
         
            +
             
     | 
| 
      
 269 
     | 
    
         
            +
            class FileInfo(AbstractModel):
         
     | 
| 
      
 270 
     | 
    
         
            +
                """文件列表信息
         
     | 
| 
      
 271 
     | 
    
         
            +
             
     | 
| 
      
 272 
     | 
    
         
            +
                """
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 275 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 276 
     | 
    
         
            +
                    :param _FileBody: BASE64编码后的文件内容
         
     | 
| 
      
 277 
     | 
    
         
            +
                    :type FileBody: str
         
     | 
| 
      
 278 
     | 
    
         
            +
                    :param _FileName: 文件名及类型,最大长度不超过200字符
         
     | 
| 
      
 279 
     | 
    
         
            +
                    :type FileName: str
         
     | 
| 
      
 280 
     | 
    
         
            +
                    """
         
     | 
| 
      
 281 
     | 
    
         
            +
                    self._FileBody = None
         
     | 
| 
      
 282 
     | 
    
         
            +
                    self._FileName = None
         
     | 
| 
      
 283 
     | 
    
         
            +
             
     | 
| 
      
 284 
     | 
    
         
            +
                @property
         
     | 
| 
      
 285 
     | 
    
         
            +
                def FileBody(self):
         
     | 
| 
      
 286 
     | 
    
         
            +
                    return self._FileBody
         
     | 
| 
      
 287 
     | 
    
         
            +
             
     | 
| 
      
 288 
     | 
    
         
            +
                @FileBody.setter
         
     | 
| 
      
 289 
     | 
    
         
            +
                def FileBody(self, FileBody):
         
     | 
| 
      
 290 
     | 
    
         
            +
                    self._FileBody = FileBody
         
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
                @property
         
     | 
| 
      
 293 
     | 
    
         
            +
                def FileName(self):
         
     | 
| 
      
 294 
     | 
    
         
            +
                    return self._FileName
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
                @FileName.setter
         
     | 
| 
      
 297 
     | 
    
         
            +
                def FileName(self, FileName):
         
     | 
| 
      
 298 
     | 
    
         
            +
                    self._FileName = FileName
         
     | 
| 
      
 299 
     | 
    
         
            +
             
     | 
| 
      
 300 
     | 
    
         
            +
             
     | 
| 
      
 301 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 302 
     | 
    
         
            +
                    self._FileBody = params.get("FileBody")
         
     | 
| 
      
 303 
     | 
    
         
            +
                    self._FileName = params.get("FileName")
         
     | 
| 
      
 304 
     | 
    
         
            +
                    memeber_set = set(params.keys())
         
     | 
| 
      
 305 
     | 
    
         
            +
                    for name, value in vars(self).items():
         
     | 
| 
      
 306 
     | 
    
         
            +
                        property_name = name[1:]
         
     | 
| 
      
 307 
     | 
    
         
            +
                        if property_name in memeber_set:
         
     | 
| 
      
 308 
     | 
    
         
            +
                            memeber_set.remove(property_name)
         
     | 
| 
      
 309 
     | 
    
         
            +
                    if len(memeber_set) > 0:
         
     | 
| 
      
 310 
     | 
    
         
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         
     | 
| 
      
 311 
     | 
    
         
            +
                    
         
     | 
| 
      
 312 
     | 
    
         
            +
             
     | 
| 
      
 313 
     | 
    
         
            +
             
     | 
| 
      
 314 
     | 
    
         
            +
            class UploadFileRequest(AbstractModel):
         
     | 
| 
      
 315 
     | 
    
         
            +
                """UploadFile请求参数结构体
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
                """
         
     | 
| 
      
 318 
     | 
    
         
            +
             
     | 
| 
      
 319 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 320 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 321 
     | 
    
         
            +
                    :param _FileInfos: 验签源文件信息列表
         
     | 
| 
      
 322 
     | 
    
         
            +
                    :type FileInfos: list of FileInfo
         
     | 
| 
      
 323 
     | 
    
         
            +
                    """
         
     | 
| 
      
 324 
     | 
    
         
            +
                    self._FileInfos = None
         
     | 
| 
      
 325 
     | 
    
         
            +
             
     | 
| 
      
 326 
     | 
    
         
            +
                @property
         
     | 
| 
      
 327 
     | 
    
         
            +
                def FileInfos(self):
         
     | 
| 
      
 328 
     | 
    
         
            +
                    return self._FileInfos
         
     | 
| 
      
 329 
     | 
    
         
            +
             
     | 
| 
      
 330 
     | 
    
         
            +
                @FileInfos.setter
         
     | 
| 
      
 331 
     | 
    
         
            +
                def FileInfos(self, FileInfos):
         
     | 
| 
      
 332 
     | 
    
         
            +
                    self._FileInfos = FileInfos
         
     | 
| 
      
 333 
     | 
    
         
            +
             
     | 
| 
      
 334 
     | 
    
         
            +
             
     | 
| 
      
 335 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 336 
     | 
    
         
            +
                    if params.get("FileInfos") is not None:
         
     | 
| 
      
 337 
     | 
    
         
            +
                        self._FileInfos = []
         
     | 
| 
      
 338 
     | 
    
         
            +
                        for item in params.get("FileInfos"):
         
     | 
| 
      
 339 
     | 
    
         
            +
                            obj = FileInfo()
         
     | 
| 
      
 340 
     | 
    
         
            +
                            obj._deserialize(item)
         
     | 
| 
      
 341 
     | 
    
         
            +
                            self._FileInfos.append(obj)
         
     | 
| 
      
 342 
     | 
    
         
            +
                    memeber_set = set(params.keys())
         
     | 
| 
      
 343 
     | 
    
         
            +
                    for name, value in vars(self).items():
         
     | 
| 
      
 344 
     | 
    
         
            +
                        property_name = name[1:]
         
     | 
| 
      
 345 
     | 
    
         
            +
                        if property_name in memeber_set:
         
     | 
| 
      
 346 
     | 
    
         
            +
                            memeber_set.remove(property_name)
         
     | 
| 
      
 347 
     | 
    
         
            +
                    if len(memeber_set) > 0:
         
     | 
| 
      
 348 
     | 
    
         
            +
                        warnings.warn("%s fileds are useless." % ",".join(memeber_set))
         
     | 
| 
      
 349 
     | 
    
         
            +
                    
         
     | 
| 
      
 350 
     | 
    
         
            +
             
     | 
| 
      
 351 
     | 
    
         
            +
             
     | 
| 
      
 352 
     | 
    
         
            +
            class UploadFileResponse(AbstractModel):
         
     | 
| 
      
 353 
     | 
    
         
            +
                """UploadFile返回参数结构体
         
     | 
| 
      
 354 
     | 
    
         
            +
             
     | 
| 
      
 355 
     | 
    
         
            +
                """
         
     | 
| 
      
 356 
     | 
    
         
            +
             
     | 
| 
      
 357 
     | 
    
         
            +
                def __init__(self):
         
     | 
| 
      
 358 
     | 
    
         
            +
                    r"""
         
     | 
| 
      
 359 
     | 
    
         
            +
                    :param _FileIds: 文件id列表
         
     | 
| 
      
 360 
     | 
    
         
            +
                    :type FileIds: list of str
         
     | 
| 
      
 361 
     | 
    
         
            +
                    :param _TotalCount: 文件id总数
         
     | 
| 
      
 362 
     | 
    
         
            +
                    :type TotalCount: int
         
     | 
| 
      
 363 
     | 
    
         
            +
                    :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
         
     | 
| 
      
 364 
     | 
    
         
            +
                    :type RequestId: str
         
     | 
| 
      
 365 
     | 
    
         
            +
                    """
         
     | 
| 
      
 366 
     | 
    
         
            +
                    self._FileIds = None
         
     | 
| 
      
 367 
     | 
    
         
            +
                    self._TotalCount = None
         
     | 
| 
      
 368 
     | 
    
         
            +
                    self._RequestId = None
         
     | 
| 
      
 369 
     | 
    
         
            +
             
     | 
| 
      
 370 
     | 
    
         
            +
                @property
         
     | 
| 
      
 371 
     | 
    
         
            +
                def FileIds(self):
         
     | 
| 
      
 372 
     | 
    
         
            +
                    return self._FileIds
         
     | 
| 
      
 373 
     | 
    
         
            +
             
     | 
| 
      
 374 
     | 
    
         
            +
                @FileIds.setter
         
     | 
| 
      
 375 
     | 
    
         
            +
                def FileIds(self, FileIds):
         
     | 
| 
      
 376 
     | 
    
         
            +
                    self._FileIds = FileIds
         
     | 
| 
      
 377 
     | 
    
         
            +
             
     | 
| 
      
 378 
     | 
    
         
            +
                @property
         
     | 
| 
      
 379 
     | 
    
         
            +
                def TotalCount(self):
         
     | 
| 
      
 380 
     | 
    
         
            +
                    return self._TotalCount
         
     | 
| 
      
 381 
     | 
    
         
            +
             
     | 
| 
      
 382 
     | 
    
         
            +
                @TotalCount.setter
         
     | 
| 
      
 383 
     | 
    
         
            +
                def TotalCount(self, TotalCount):
         
     | 
| 
      
 384 
     | 
    
         
            +
                    self._TotalCount = TotalCount
         
     | 
| 
      
 385 
     | 
    
         
            +
             
     | 
| 
      
 386 
     | 
    
         
            +
                @property
         
     | 
| 
      
 387 
     | 
    
         
            +
                def RequestId(self):
         
     | 
| 
      
 388 
     | 
    
         
            +
                    return self._RequestId
         
     | 
| 
      
 389 
     | 
    
         
            +
             
     | 
| 
      
 390 
     | 
    
         
            +
                @RequestId.setter
         
     | 
| 
      
 391 
     | 
    
         
            +
                def RequestId(self, RequestId):
         
     | 
| 
      
 392 
     | 
    
         
            +
                    self._RequestId = RequestId
         
     | 
| 
      
 393 
     | 
    
         
            +
             
     | 
| 
      
 394 
     | 
    
         
            +
             
     | 
| 
      
 395 
     | 
    
         
            +
                def _deserialize(self, params):
         
     | 
| 
      
 396 
     | 
    
         
            +
                    self._FileIds = params.get("FileIds")
         
     | 
| 
      
 397 
     | 
    
         
            +
                    self._TotalCount = params.get("TotalCount")
         
     | 
| 
      
 398 
     | 
    
         
            +
                    self._RequestId = params.get("RequestId")
         
     | 
| 
         @@ -302,6 +302,29 @@ class CccClient(AbstractClient): 
     | 
|
| 
       302 
302 
     | 
    
         
             
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         
     | 
| 
       303 
303 
     | 
    
         | 
| 
       304 
304 
     | 
    
         | 
| 
      
 305 
     | 
    
         
            +
                def CreateOwnNumberApply(self, request):
         
     | 
| 
      
 306 
     | 
    
         
            +
                    """创建客户自携号码接入审核
         
     | 
| 
      
 307 
     | 
    
         
            +
             
     | 
| 
      
 308 
     | 
    
         
            +
                    :param request: Request instance for CreateOwnNumberApply.
         
     | 
| 
      
 309 
     | 
    
         
            +
                    :type request: :class:`tencentcloud.ccc.v20200210.models.CreateOwnNumberApplyRequest`
         
     | 
| 
      
 310 
     | 
    
         
            +
                    :rtype: :class:`tencentcloud.ccc.v20200210.models.CreateOwnNumberApplyResponse`
         
     | 
| 
      
 311 
     | 
    
         
            +
             
     | 
| 
      
 312 
     | 
    
         
            +
                    """
         
     | 
| 
      
 313 
     | 
    
         
            +
                    try:
         
     | 
| 
      
 314 
     | 
    
         
            +
                        params = request._serialize()
         
     | 
| 
      
 315 
     | 
    
         
            +
                        headers = request.headers
         
     | 
| 
      
 316 
     | 
    
         
            +
                        body = self.call("CreateOwnNumberApply", params, headers=headers)
         
     | 
| 
      
 317 
     | 
    
         
            +
                        response = json.loads(body)
         
     | 
| 
      
 318 
     | 
    
         
            +
                        model = models.CreateOwnNumberApplyResponse()
         
     | 
| 
      
 319 
     | 
    
         
            +
                        model._deserialize(response["Response"])
         
     | 
| 
      
 320 
     | 
    
         
            +
                        return model
         
     | 
| 
      
 321 
     | 
    
         
            +
                    except Exception as e:
         
     | 
| 
      
 322 
     | 
    
         
            +
                        if isinstance(e, TencentCloudSDKException):
         
     | 
| 
      
 323 
     | 
    
         
            +
                            raise
         
     | 
| 
      
 324 
     | 
    
         
            +
                        else:
         
     | 
| 
      
 325 
     | 
    
         
            +
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         
     | 
| 
      
 326 
     | 
    
         
            +
             
     | 
| 
      
 327 
     | 
    
         
            +
             
     | 
| 
       305 
328 
     | 
    
         
             
                def CreatePredictiveDialingCampaign(self, request):
         
     | 
| 
       306 
329 
     | 
    
         
             
                    """创建预测式外呼任务
         
     | 
| 
       307 
330 
     | 
    
         | 
| 
         @@ -1132,6 +1155,29 @@ class CccClient(AbstractClient): 
     | 
|
| 
       1132 
1155 
     | 
    
         
             
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         
     | 
| 
       1133 
1156 
     | 
    
         | 
| 
       1134 
1157 
     | 
    
         | 
| 
      
 1158 
     | 
    
         
            +
                def ModifyOwnNumberApply(self, request):
         
     | 
| 
      
 1159 
     | 
    
         
            +
                    """修改客户自携号码审批单
         
     | 
| 
      
 1160 
     | 
    
         
            +
             
     | 
| 
      
 1161 
     | 
    
         
            +
                    :param request: Request instance for ModifyOwnNumberApply.
         
     | 
| 
      
 1162 
     | 
    
         
            +
                    :type request: :class:`tencentcloud.ccc.v20200210.models.ModifyOwnNumberApplyRequest`
         
     | 
| 
      
 1163 
     | 
    
         
            +
                    :rtype: :class:`tencentcloud.ccc.v20200210.models.ModifyOwnNumberApplyResponse`
         
     | 
| 
      
 1164 
     | 
    
         
            +
             
     | 
| 
      
 1165 
     | 
    
         
            +
                    """
         
     | 
| 
      
 1166 
     | 
    
         
            +
                    try:
         
     | 
| 
      
 1167 
     | 
    
         
            +
                        params = request._serialize()
         
     | 
| 
      
 1168 
     | 
    
         
            +
                        headers = request.headers
         
     | 
| 
      
 1169 
     | 
    
         
            +
                        body = self.call("ModifyOwnNumberApply", params, headers=headers)
         
     | 
| 
      
 1170 
     | 
    
         
            +
                        response = json.loads(body)
         
     | 
| 
      
 1171 
     | 
    
         
            +
                        model = models.ModifyOwnNumberApplyResponse()
         
     | 
| 
      
 1172 
     | 
    
         
            +
                        model._deserialize(response["Response"])
         
     | 
| 
      
 1173 
     | 
    
         
            +
                        return model
         
     | 
| 
      
 1174 
     | 
    
         
            +
                    except Exception as e:
         
     | 
| 
      
 1175 
     | 
    
         
            +
                        if isinstance(e, TencentCloudSDKException):
         
     | 
| 
      
 1176 
     | 
    
         
            +
                            raise
         
     | 
| 
      
 1177 
     | 
    
         
            +
                        else:
         
     | 
| 
      
 1178 
     | 
    
         
            +
                            raise TencentCloudSDKException(type(e).__name__, str(e))
         
     | 
| 
      
 1179 
     | 
    
         
            +
             
     | 
| 
      
 1180 
     | 
    
         
            +
             
     | 
| 
       1135 
1181 
     | 
    
         
             
                def ModifyStaff(self, request):
         
     | 
| 
       1136 
1182 
     | 
    
         
             
                    """修改客服账号
         
     | 
| 
       1137 
1183 
     | 
    
         | 
| 
         @@ -119,9 +119,15 @@ INVALIDPARAMETERVALUE_APPLYIDNOTEXIST = 'InvalidParameterValue.ApplyIDNotExist' 
     | 
|
| 
       119 
119 
     | 
    
         
             
            # 公司信息已经存在。
         
     | 
| 
       120 
120 
     | 
    
         
             
            INVALIDPARAMETERVALUE_COMPANYEXIST = 'InvalidParameterValue.CompanyExist'
         
     | 
| 
       121 
121 
     | 
    
         | 
| 
      
 122 
     | 
    
         
            +
            # 审核单状态错误。
         
     | 
| 
      
 123 
     | 
    
         
            +
            INVALIDPARAMETERVALUE_ERRORAPPLYSTATUS = 'InvalidParameterValue.ErrorApplyStatus'
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
       122 
125 
     | 
    
         
             
            # 实例不存在。
         
     | 
| 
       123 
126 
     | 
    
         
             
            INVALIDPARAMETERVALUE_INSTANCENOTEXIST = 'InvalidParameterValue.InstanceNotExist'
         
     | 
| 
       124 
127 
     | 
    
         | 
| 
      
 128 
     | 
    
         
            +
            # 号码状态无效。
         
     | 
| 
      
 129 
     | 
    
         
            +
            INVALIDPARAMETERVALUE_PHONENUMINVALID = 'InvalidParameterValue.PhoneNumInvalid'
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
       125 
131 
     | 
    
         
             
            # 号码已经绑定别的账号。
         
     | 
| 
       126 
132 
     | 
    
         
             
            INVALIDPARAMETERVALUE_PHONENUMISBOUNDOTHERACCOUNT = 'InvalidParameterValue.PhoneNumIsBoundOtherAccount'
         
     | 
| 
       127 
133 
     | 
    
         |