tencentcloud-sdk-python-csip 3.0.953__tar.gz → 3.0.955__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/setup.py +1 -1
  3. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud/csip/v20221121/csip_client.py +23 -0
  5. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud/csip/v20221121/models.py +268 -0
  6. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud_sdk_python_csip.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-csip-3.0.955/tencentcloud_sdk_python_csip.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-csip-3.0.953/tencentcloud_sdk_python_csip.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/README.rst +0 -0
  10. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud/csip/__init__.py +0 -0
  12. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud/csip/v20221121/__init__.py +0 -0
  13. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud/csip/v20221121/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud_sdk_python_csip.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud_sdk_python_csip.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-csip-3.0.953 → tencentcloud-sdk-python-csip-3.0.955}/tencentcloud_sdk_python_csip.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.0.953
3
+ Version: 3.0.955
4
4
  Summary: Tencent Cloud Csip SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-csip',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.953"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.955"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Csip SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.953'
17
+ __version__ = '3.0.955'
@@ -233,6 +233,29 @@ class CsipClient(AbstractClient):
233
233
  raise TencentCloudSDKException(type(e).__name__, str(e))
234
234
 
235
235
 
236
+ def DescribeListenerList(self, request):
237
+ """查询clb监听器列表
238
+
239
+ :param request: Request instance for DescribeListenerList.
240
+ :type request: :class:`tencentcloud.csip.v20221121.models.DescribeListenerListRequest`
241
+ :rtype: :class:`tencentcloud.csip.v20221121.models.DescribeListenerListResponse`
242
+
243
+ """
244
+ try:
245
+ params = request._serialize()
246
+ headers = request.headers
247
+ body = self.call("DescribeListenerList", params, headers=headers)
248
+ response = json.loads(body)
249
+ model = models.DescribeListenerListResponse()
250
+ model._deserialize(response["Response"])
251
+ return model
252
+ except Exception as e:
253
+ if isinstance(e, TencentCloudSDKException):
254
+ raise
255
+ else:
256
+ raise TencentCloudSDKException(type(e).__name__, str(e))
257
+
258
+
236
259
  def DescribePublicIpAssets(self, request):
237
260
  """ip公网列表
238
261
 
@@ -2100,6 +2100,183 @@ class CVMAssetVO(AbstractModel):
2100
2100
 
2101
2101
 
2102
2102
 
2103
+ class ClbListenerListInfo(AbstractModel):
2104
+ """clb实例和监听器信息
2105
+
2106
+ """
2107
+
2108
+ def __init__(self):
2109
+ r"""
2110
+ :param _ListenerId: 监听器id
2111
+ 注意:此字段可能返回 null,表示取不到有效值。
2112
+ :type ListenerId: str
2113
+ :param _ListenerName: 监听器名称
2114
+ 注意:此字段可能返回 null,表示取不到有效值。
2115
+ :type ListenerName: str
2116
+ :param _LoadBalancerId: 负载均衡Id
2117
+ 注意:此字段可能返回 null,表示取不到有效值。
2118
+ :type LoadBalancerId: str
2119
+ :param _LoadBalancerName: 负载均衡名称
2120
+ 注意:此字段可能返回 null,表示取不到有效值。
2121
+ :type LoadBalancerName: str
2122
+ :param _Protocol: 协议
2123
+ 注意:此字段可能返回 null,表示取不到有效值。
2124
+ :type Protocol: str
2125
+ :param _Region: 地域
2126
+ 注意:此字段可能返回 null,表示取不到有效值。
2127
+ :type Region: str
2128
+ :param _Vip: 负载均衡ip
2129
+ 注意:此字段可能返回 null,表示取不到有效值。
2130
+ :type Vip: str
2131
+ :param _VPort: 端口
2132
+ 注意:此字段可能返回 null,表示取不到有效值。
2133
+ :type VPort: int
2134
+ :param _Zone: 区域
2135
+ 注意:此字段可能返回 null,表示取不到有效值。
2136
+ :type Zone: str
2137
+ :param _NumericalVpcId: 私有网络id
2138
+ 注意:此字段可能返回 null,表示取不到有效值。
2139
+ :type NumericalVpcId: int
2140
+ :param _LoadBalancerType: 负载均衡类型
2141
+ 注意:此字段可能返回 null,表示取不到有效值。
2142
+ :type LoadBalancerType: str
2143
+ :param _Domain: 监听器域名
2144
+ 注意:此字段可能返回 null,表示取不到有效值。
2145
+ :type Domain: str
2146
+ """
2147
+ self._ListenerId = None
2148
+ self._ListenerName = None
2149
+ self._LoadBalancerId = None
2150
+ self._LoadBalancerName = None
2151
+ self._Protocol = None
2152
+ self._Region = None
2153
+ self._Vip = None
2154
+ self._VPort = None
2155
+ self._Zone = None
2156
+ self._NumericalVpcId = None
2157
+ self._LoadBalancerType = None
2158
+ self._Domain = None
2159
+
2160
+ @property
2161
+ def ListenerId(self):
2162
+ return self._ListenerId
2163
+
2164
+ @ListenerId.setter
2165
+ def ListenerId(self, ListenerId):
2166
+ self._ListenerId = ListenerId
2167
+
2168
+ @property
2169
+ def ListenerName(self):
2170
+ return self._ListenerName
2171
+
2172
+ @ListenerName.setter
2173
+ def ListenerName(self, ListenerName):
2174
+ self._ListenerName = ListenerName
2175
+
2176
+ @property
2177
+ def LoadBalancerId(self):
2178
+ return self._LoadBalancerId
2179
+
2180
+ @LoadBalancerId.setter
2181
+ def LoadBalancerId(self, LoadBalancerId):
2182
+ self._LoadBalancerId = LoadBalancerId
2183
+
2184
+ @property
2185
+ def LoadBalancerName(self):
2186
+ return self._LoadBalancerName
2187
+
2188
+ @LoadBalancerName.setter
2189
+ def LoadBalancerName(self, LoadBalancerName):
2190
+ self._LoadBalancerName = LoadBalancerName
2191
+
2192
+ @property
2193
+ def Protocol(self):
2194
+ return self._Protocol
2195
+
2196
+ @Protocol.setter
2197
+ def Protocol(self, Protocol):
2198
+ self._Protocol = Protocol
2199
+
2200
+ @property
2201
+ def Region(self):
2202
+ return self._Region
2203
+
2204
+ @Region.setter
2205
+ def Region(self, Region):
2206
+ self._Region = Region
2207
+
2208
+ @property
2209
+ def Vip(self):
2210
+ return self._Vip
2211
+
2212
+ @Vip.setter
2213
+ def Vip(self, Vip):
2214
+ self._Vip = Vip
2215
+
2216
+ @property
2217
+ def VPort(self):
2218
+ return self._VPort
2219
+
2220
+ @VPort.setter
2221
+ def VPort(self, VPort):
2222
+ self._VPort = VPort
2223
+
2224
+ @property
2225
+ def Zone(self):
2226
+ return self._Zone
2227
+
2228
+ @Zone.setter
2229
+ def Zone(self, Zone):
2230
+ self._Zone = Zone
2231
+
2232
+ @property
2233
+ def NumericalVpcId(self):
2234
+ return self._NumericalVpcId
2235
+
2236
+ @NumericalVpcId.setter
2237
+ def NumericalVpcId(self, NumericalVpcId):
2238
+ self._NumericalVpcId = NumericalVpcId
2239
+
2240
+ @property
2241
+ def LoadBalancerType(self):
2242
+ return self._LoadBalancerType
2243
+
2244
+ @LoadBalancerType.setter
2245
+ def LoadBalancerType(self, LoadBalancerType):
2246
+ self._LoadBalancerType = LoadBalancerType
2247
+
2248
+ @property
2249
+ def Domain(self):
2250
+ return self._Domain
2251
+
2252
+ @Domain.setter
2253
+ def Domain(self, Domain):
2254
+ self._Domain = Domain
2255
+
2256
+
2257
+ def _deserialize(self, params):
2258
+ self._ListenerId = params.get("ListenerId")
2259
+ self._ListenerName = params.get("ListenerName")
2260
+ self._LoadBalancerId = params.get("LoadBalancerId")
2261
+ self._LoadBalancerName = params.get("LoadBalancerName")
2262
+ self._Protocol = params.get("Protocol")
2263
+ self._Region = params.get("Region")
2264
+ self._Vip = params.get("Vip")
2265
+ self._VPort = params.get("VPort")
2266
+ self._Zone = params.get("Zone")
2267
+ self._NumericalVpcId = params.get("NumericalVpcId")
2268
+ self._LoadBalancerType = params.get("LoadBalancerType")
2269
+ self._Domain = params.get("Domain")
2270
+ memeber_set = set(params.keys())
2271
+ for name, value in vars(self).items():
2272
+ property_name = name[1:]
2273
+ if property_name in memeber_set:
2274
+ memeber_set.remove(property_name)
2275
+ if len(memeber_set) > 0:
2276
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2277
+
2278
+
2279
+
2103
2280
  class CreateDomainAndIpRequest(AbstractModel):
2104
2281
  """CreateDomainAndIp请求参数结构体
2105
2282
 
@@ -3743,6 +3920,97 @@ class DescribeDomainAssetsResponse(AbstractModel):
3743
3920
  self._RequestId = params.get("RequestId")
3744
3921
 
3745
3922
 
3923
+ class DescribeListenerListRequest(AbstractModel):
3924
+ """DescribeListenerList请求参数结构体
3925
+
3926
+ """
3927
+
3928
+ def __init__(self):
3929
+ r"""
3930
+ :param _Filter: -
3931
+ :type Filter: :class:`tencentcloud.csip.v20221121.models.Filter`
3932
+ """
3933
+ self._Filter = None
3934
+
3935
+ @property
3936
+ def Filter(self):
3937
+ return self._Filter
3938
+
3939
+ @Filter.setter
3940
+ def Filter(self, Filter):
3941
+ self._Filter = Filter
3942
+
3943
+
3944
+ def _deserialize(self, params):
3945
+ if params.get("Filter") is not None:
3946
+ self._Filter = Filter()
3947
+ self._Filter._deserialize(params.get("Filter"))
3948
+ memeber_set = set(params.keys())
3949
+ for name, value in vars(self).items():
3950
+ property_name = name[1:]
3951
+ if property_name in memeber_set:
3952
+ memeber_set.remove(property_name)
3953
+ if len(memeber_set) > 0:
3954
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3955
+
3956
+
3957
+
3958
+ class DescribeListenerListResponse(AbstractModel):
3959
+ """DescribeListenerList返回参数结构体
3960
+
3961
+ """
3962
+
3963
+ def __init__(self):
3964
+ r"""
3965
+ :param _Total: 总数
3966
+ 注意:此字段可能返回 null,表示取不到有效值。
3967
+ :type Total: int
3968
+ :param _Data: 监听器列表
3969
+ 注意:此字段可能返回 null,表示取不到有效值。
3970
+ :type Data: list of ClbListenerListInfo
3971
+ :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3972
+ :type RequestId: str
3973
+ """
3974
+ self._Total = None
3975
+ self._Data = None
3976
+ self._RequestId = None
3977
+
3978
+ @property
3979
+ def Total(self):
3980
+ return self._Total
3981
+
3982
+ @Total.setter
3983
+ def Total(self, Total):
3984
+ self._Total = Total
3985
+
3986
+ @property
3987
+ def Data(self):
3988
+ return self._Data
3989
+
3990
+ @Data.setter
3991
+ def Data(self, Data):
3992
+ self._Data = Data
3993
+
3994
+ @property
3995
+ def RequestId(self):
3996
+ return self._RequestId
3997
+
3998
+ @RequestId.setter
3999
+ def RequestId(self, RequestId):
4000
+ self._RequestId = RequestId
4001
+
4002
+
4003
+ def _deserialize(self, params):
4004
+ self._Total = params.get("Total")
4005
+ if params.get("Data") is not None:
4006
+ self._Data = []
4007
+ for item in params.get("Data"):
4008
+ obj = ClbListenerListInfo()
4009
+ obj._deserialize(item)
4010
+ self._Data.append(obj)
4011
+ self._RequestId = params.get("RequestId")
4012
+
4013
+
3746
4014
  class DescribePublicIpAssetsRequest(AbstractModel):
3747
4015
  """DescribePublicIpAssets请求参数结构体
3748
4016
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-csip
3
- Version: 3.0.953
3
+ Version: 3.0.955
4
4
  Summary: Tencent Cloud Csip SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.955
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.953