tencentcloud-sdk-python 3.0.1197__py2.py3-none-any.whl → 3.0.1199__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/aiart/v20221229/models.py +10 -12
- tencentcloud/ams/v20201229/models.py +398 -3
- tencentcloud/bi/v20220105/models.py +1 -1
- tencentcloud/cat/v20180409/models.py +12 -0
- tencentcloud/cdb/v20170320/models.py +45 -3
- tencentcloud/cdn/v20180606/models.py +141 -0
- tencentcloud/cfg/v20210820/cfg_client.py +92 -0
- tencentcloud/cfg/v20210820/models.py +1384 -49
- tencentcloud/cfw/v20190904/cfw_client.py +23 -0
- tencentcloud/cfw/v20190904/models.py +354 -0
- tencentcloud/cynosdb/v20190107/models.py +121 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +1 -0
- tencentcloud/ecm/v20190719/models.py +24 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +469 -108
- tencentcloud/essbasic/v20210526/models.py +12 -0
- tencentcloud/hunyuan/v20230901/errorcodes.py +12 -0
- tencentcloud/hunyuan/v20230901/models.py +198 -13
- tencentcloud/lcic/v20220817/lcic_client.py +23 -0
- tencentcloud/lcic/v20220817/models.py +82 -0
- tencentcloud/lke/v20231130/models.py +7 -7
- tencentcloud/ocr/v20181119/models.py +12 -0
- tencentcloud/tke/v20180525/models.py +274 -0
- tencentcloud/tke/v20180525/tke_client.py +23 -0
- tencentcloud/vclm/v20240523/errorcodes.py +18 -0
- tencentcloud/vclm/v20240523/models.py +212 -0
- tencentcloud/vclm/v20240523/vclm_client.py +48 -0
- tencentcloud/vm/v20201229/models.py +253 -4
- tencentcloud/vm/v20201229/vm_client.py +1 -3
- tencentcloud/vm/v20210922/models.py +5 -6
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1199.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1199.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1199.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1199.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1197.dist-info → tencentcloud_sdk_python-3.0.1199.dist-info}/top_level.txt +0 -0
@@ -1178,6 +1178,29 @@ class CfwClient(AbstractClient):
|
|
1178
1178
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1179
1179
|
|
1180
1180
|
|
1181
|
+
def DescribeNatFwDnatRule(self, request):
|
1182
|
+
"""查询Nat防火墙Dnat规则
|
1183
|
+
|
1184
|
+
:param request: Request instance for DescribeNatFwDnatRule.
|
1185
|
+
:type request: :class:`tencentcloud.cfw.v20190904.models.DescribeNatFwDnatRuleRequest`
|
1186
|
+
:rtype: :class:`tencentcloud.cfw.v20190904.models.DescribeNatFwDnatRuleResponse`
|
1187
|
+
|
1188
|
+
"""
|
1189
|
+
try:
|
1190
|
+
params = request._serialize()
|
1191
|
+
headers = request.headers
|
1192
|
+
body = self.call("DescribeNatFwDnatRule", params, headers=headers)
|
1193
|
+
response = json.loads(body)
|
1194
|
+
model = models.DescribeNatFwDnatRuleResponse()
|
1195
|
+
model._deserialize(response["Response"])
|
1196
|
+
return model
|
1197
|
+
except Exception as e:
|
1198
|
+
if isinstance(e, TencentCloudSDKException):
|
1199
|
+
raise
|
1200
|
+
else:
|
1201
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1202
|
+
|
1203
|
+
|
1181
1204
|
def DescribeNatFwInfoCount(self, request):
|
1182
1205
|
"""获取当前用户接入nat防火墙的所有子网数及natfw实例个数
|
1183
1206
|
|
@@ -5670,6 +5670,157 @@ class DescAcItem(AbstractModel):
|
|
5670
5670
|
|
5671
5671
|
|
5672
5672
|
|
5673
|
+
class DescNatDnatRule(AbstractModel):
|
5674
|
+
"""NAT防火墙Dnat规则列表
|
5675
|
+
|
5676
|
+
"""
|
5677
|
+
|
5678
|
+
def __init__(self):
|
5679
|
+
r"""
|
5680
|
+
:param _Id: id
|
5681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5682
|
+
:type Id: int
|
5683
|
+
:param _IpProtocol: 网络协议,可选值:TCP、UDP。
|
5684
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5685
|
+
:type IpProtocol: str
|
5686
|
+
:param _PublicIpAddress: 弹性IP。
|
5687
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5688
|
+
:type PublicIpAddress: str
|
5689
|
+
:param _PublicPort: 公网端口。
|
5690
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5691
|
+
:type PublicPort: int
|
5692
|
+
:param _PrivateIpAddress: 内网地址。
|
5693
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5694
|
+
:type PrivateIpAddress: str
|
5695
|
+
:param _PrivatePort: 内网端口。
|
5696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5697
|
+
:type PrivatePort: int
|
5698
|
+
:param _Description: NAT防火墙转发规则描述。
|
5699
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5700
|
+
:type Description: str
|
5701
|
+
:param _IsReferenced: 是否被关联引用,如被远程运维使用
|
5702
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5703
|
+
:type IsReferenced: int
|
5704
|
+
:param _FwInsId: 所属防火墙实例id
|
5705
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5706
|
+
:type FwInsId: str
|
5707
|
+
:param _NatGwId: 关联的nat网关Id
|
5708
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5709
|
+
:type NatGwId: str
|
5710
|
+
"""
|
5711
|
+
self._Id = None
|
5712
|
+
self._IpProtocol = None
|
5713
|
+
self._PublicIpAddress = None
|
5714
|
+
self._PublicPort = None
|
5715
|
+
self._PrivateIpAddress = None
|
5716
|
+
self._PrivatePort = None
|
5717
|
+
self._Description = None
|
5718
|
+
self._IsReferenced = None
|
5719
|
+
self._FwInsId = None
|
5720
|
+
self._NatGwId = None
|
5721
|
+
|
5722
|
+
@property
|
5723
|
+
def Id(self):
|
5724
|
+
return self._Id
|
5725
|
+
|
5726
|
+
@Id.setter
|
5727
|
+
def Id(self, Id):
|
5728
|
+
self._Id = Id
|
5729
|
+
|
5730
|
+
@property
|
5731
|
+
def IpProtocol(self):
|
5732
|
+
return self._IpProtocol
|
5733
|
+
|
5734
|
+
@IpProtocol.setter
|
5735
|
+
def IpProtocol(self, IpProtocol):
|
5736
|
+
self._IpProtocol = IpProtocol
|
5737
|
+
|
5738
|
+
@property
|
5739
|
+
def PublicIpAddress(self):
|
5740
|
+
return self._PublicIpAddress
|
5741
|
+
|
5742
|
+
@PublicIpAddress.setter
|
5743
|
+
def PublicIpAddress(self, PublicIpAddress):
|
5744
|
+
self._PublicIpAddress = PublicIpAddress
|
5745
|
+
|
5746
|
+
@property
|
5747
|
+
def PublicPort(self):
|
5748
|
+
return self._PublicPort
|
5749
|
+
|
5750
|
+
@PublicPort.setter
|
5751
|
+
def PublicPort(self, PublicPort):
|
5752
|
+
self._PublicPort = PublicPort
|
5753
|
+
|
5754
|
+
@property
|
5755
|
+
def PrivateIpAddress(self):
|
5756
|
+
return self._PrivateIpAddress
|
5757
|
+
|
5758
|
+
@PrivateIpAddress.setter
|
5759
|
+
def PrivateIpAddress(self, PrivateIpAddress):
|
5760
|
+
self._PrivateIpAddress = PrivateIpAddress
|
5761
|
+
|
5762
|
+
@property
|
5763
|
+
def PrivatePort(self):
|
5764
|
+
return self._PrivatePort
|
5765
|
+
|
5766
|
+
@PrivatePort.setter
|
5767
|
+
def PrivatePort(self, PrivatePort):
|
5768
|
+
self._PrivatePort = PrivatePort
|
5769
|
+
|
5770
|
+
@property
|
5771
|
+
def Description(self):
|
5772
|
+
return self._Description
|
5773
|
+
|
5774
|
+
@Description.setter
|
5775
|
+
def Description(self, Description):
|
5776
|
+
self._Description = Description
|
5777
|
+
|
5778
|
+
@property
|
5779
|
+
def IsReferenced(self):
|
5780
|
+
return self._IsReferenced
|
5781
|
+
|
5782
|
+
@IsReferenced.setter
|
5783
|
+
def IsReferenced(self, IsReferenced):
|
5784
|
+
self._IsReferenced = IsReferenced
|
5785
|
+
|
5786
|
+
@property
|
5787
|
+
def FwInsId(self):
|
5788
|
+
return self._FwInsId
|
5789
|
+
|
5790
|
+
@FwInsId.setter
|
5791
|
+
def FwInsId(self, FwInsId):
|
5792
|
+
self._FwInsId = FwInsId
|
5793
|
+
|
5794
|
+
@property
|
5795
|
+
def NatGwId(self):
|
5796
|
+
return self._NatGwId
|
5797
|
+
|
5798
|
+
@NatGwId.setter
|
5799
|
+
def NatGwId(self, NatGwId):
|
5800
|
+
self._NatGwId = NatGwId
|
5801
|
+
|
5802
|
+
|
5803
|
+
def _deserialize(self, params):
|
5804
|
+
self._Id = params.get("Id")
|
5805
|
+
self._IpProtocol = params.get("IpProtocol")
|
5806
|
+
self._PublicIpAddress = params.get("PublicIpAddress")
|
5807
|
+
self._PublicPort = params.get("PublicPort")
|
5808
|
+
self._PrivateIpAddress = params.get("PrivateIpAddress")
|
5809
|
+
self._PrivatePort = params.get("PrivatePort")
|
5810
|
+
self._Description = params.get("Description")
|
5811
|
+
self._IsReferenced = params.get("IsReferenced")
|
5812
|
+
self._FwInsId = params.get("FwInsId")
|
5813
|
+
self._NatGwId = params.get("NatGwId")
|
5814
|
+
memeber_set = set(params.keys())
|
5815
|
+
for name, value in vars(self).items():
|
5816
|
+
property_name = name[1:]
|
5817
|
+
if property_name in memeber_set:
|
5818
|
+
memeber_set.remove(property_name)
|
5819
|
+
if len(memeber_set) > 0:
|
5820
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5821
|
+
|
5822
|
+
|
5823
|
+
|
5673
5824
|
class DescribeAcListsRequest(AbstractModel):
|
5674
5825
|
"""DescribeAcLists请求参数结构体
|
5675
5826
|
|
@@ -8694,6 +8845,183 @@ class DescribeNatAcRuleResponse(AbstractModel):
|
|
8694
8845
|
self._RequestId = params.get("RequestId")
|
8695
8846
|
|
8696
8847
|
|
8848
|
+
class DescribeNatFwDnatRuleRequest(AbstractModel):
|
8849
|
+
"""DescribeNatFwDnatRule请求参数结构体
|
8850
|
+
|
8851
|
+
"""
|
8852
|
+
|
8853
|
+
def __init__(self):
|
8854
|
+
r"""
|
8855
|
+
:param _Index: 需要查询的索引,特定场景使用,可不填
|
8856
|
+
:type Index: str
|
8857
|
+
:param _Filters: 过滤条件组合
|
8858
|
+
:type Filters: list of CommonFilter
|
8859
|
+
:param _Limit: 每页条数
|
8860
|
+
:type Limit: int
|
8861
|
+
:param _Offset: 偏移值
|
8862
|
+
:type Offset: int
|
8863
|
+
:param _StartTime: 检索的起始时间,可不传
|
8864
|
+
:type StartTime: str
|
8865
|
+
:param _EndTime: 检索的截止时间,可不传
|
8866
|
+
:type EndTime: str
|
8867
|
+
:param _Order: desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
|
8868
|
+
:type Order: str
|
8869
|
+
:param _By: 排序所用到的字段
|
8870
|
+
:type By: str
|
8871
|
+
"""
|
8872
|
+
self._Index = None
|
8873
|
+
self._Filters = None
|
8874
|
+
self._Limit = None
|
8875
|
+
self._Offset = None
|
8876
|
+
self._StartTime = None
|
8877
|
+
self._EndTime = None
|
8878
|
+
self._Order = None
|
8879
|
+
self._By = None
|
8880
|
+
|
8881
|
+
@property
|
8882
|
+
def Index(self):
|
8883
|
+
return self._Index
|
8884
|
+
|
8885
|
+
@Index.setter
|
8886
|
+
def Index(self, Index):
|
8887
|
+
self._Index = Index
|
8888
|
+
|
8889
|
+
@property
|
8890
|
+
def Filters(self):
|
8891
|
+
return self._Filters
|
8892
|
+
|
8893
|
+
@Filters.setter
|
8894
|
+
def Filters(self, Filters):
|
8895
|
+
self._Filters = Filters
|
8896
|
+
|
8897
|
+
@property
|
8898
|
+
def Limit(self):
|
8899
|
+
return self._Limit
|
8900
|
+
|
8901
|
+
@Limit.setter
|
8902
|
+
def Limit(self, Limit):
|
8903
|
+
self._Limit = Limit
|
8904
|
+
|
8905
|
+
@property
|
8906
|
+
def Offset(self):
|
8907
|
+
return self._Offset
|
8908
|
+
|
8909
|
+
@Offset.setter
|
8910
|
+
def Offset(self, Offset):
|
8911
|
+
self._Offset = Offset
|
8912
|
+
|
8913
|
+
@property
|
8914
|
+
def StartTime(self):
|
8915
|
+
return self._StartTime
|
8916
|
+
|
8917
|
+
@StartTime.setter
|
8918
|
+
def StartTime(self, StartTime):
|
8919
|
+
self._StartTime = StartTime
|
8920
|
+
|
8921
|
+
@property
|
8922
|
+
def EndTime(self):
|
8923
|
+
return self._EndTime
|
8924
|
+
|
8925
|
+
@EndTime.setter
|
8926
|
+
def EndTime(self, EndTime):
|
8927
|
+
self._EndTime = EndTime
|
8928
|
+
|
8929
|
+
@property
|
8930
|
+
def Order(self):
|
8931
|
+
return self._Order
|
8932
|
+
|
8933
|
+
@Order.setter
|
8934
|
+
def Order(self, Order):
|
8935
|
+
self._Order = Order
|
8936
|
+
|
8937
|
+
@property
|
8938
|
+
def By(self):
|
8939
|
+
return self._By
|
8940
|
+
|
8941
|
+
@By.setter
|
8942
|
+
def By(self, By):
|
8943
|
+
self._By = By
|
8944
|
+
|
8945
|
+
|
8946
|
+
def _deserialize(self, params):
|
8947
|
+
self._Index = params.get("Index")
|
8948
|
+
if params.get("Filters") is not None:
|
8949
|
+
self._Filters = []
|
8950
|
+
for item in params.get("Filters"):
|
8951
|
+
obj = CommonFilter()
|
8952
|
+
obj._deserialize(item)
|
8953
|
+
self._Filters.append(obj)
|
8954
|
+
self._Limit = params.get("Limit")
|
8955
|
+
self._Offset = params.get("Offset")
|
8956
|
+
self._StartTime = params.get("StartTime")
|
8957
|
+
self._EndTime = params.get("EndTime")
|
8958
|
+
self._Order = params.get("Order")
|
8959
|
+
self._By = params.get("By")
|
8960
|
+
memeber_set = set(params.keys())
|
8961
|
+
for name, value in vars(self).items():
|
8962
|
+
property_name = name[1:]
|
8963
|
+
if property_name in memeber_set:
|
8964
|
+
memeber_set.remove(property_name)
|
8965
|
+
if len(memeber_set) > 0:
|
8966
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8967
|
+
|
8968
|
+
|
8969
|
+
|
8970
|
+
class DescribeNatFwDnatRuleResponse(AbstractModel):
|
8971
|
+
"""DescribeNatFwDnatRule返回参数结构体
|
8972
|
+
|
8973
|
+
"""
|
8974
|
+
|
8975
|
+
def __init__(self):
|
8976
|
+
r"""
|
8977
|
+
:param _Data: Dnat规则列表
|
8978
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8979
|
+
:type Data: list of DescNatDnatRule
|
8980
|
+
:param _Total: 列表总数
|
8981
|
+
:type Total: int
|
8982
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8983
|
+
:type RequestId: str
|
8984
|
+
"""
|
8985
|
+
self._Data = None
|
8986
|
+
self._Total = None
|
8987
|
+
self._RequestId = None
|
8988
|
+
|
8989
|
+
@property
|
8990
|
+
def Data(self):
|
8991
|
+
return self._Data
|
8992
|
+
|
8993
|
+
@Data.setter
|
8994
|
+
def Data(self, Data):
|
8995
|
+
self._Data = Data
|
8996
|
+
|
8997
|
+
@property
|
8998
|
+
def Total(self):
|
8999
|
+
return self._Total
|
9000
|
+
|
9001
|
+
@Total.setter
|
9002
|
+
def Total(self, Total):
|
9003
|
+
self._Total = Total
|
9004
|
+
|
9005
|
+
@property
|
9006
|
+
def RequestId(self):
|
9007
|
+
return self._RequestId
|
9008
|
+
|
9009
|
+
@RequestId.setter
|
9010
|
+
def RequestId(self, RequestId):
|
9011
|
+
self._RequestId = RequestId
|
9012
|
+
|
9013
|
+
|
9014
|
+
def _deserialize(self, params):
|
9015
|
+
if params.get("Data") is not None:
|
9016
|
+
self._Data = []
|
9017
|
+
for item in params.get("Data"):
|
9018
|
+
obj = DescNatDnatRule()
|
9019
|
+
obj._deserialize(item)
|
9020
|
+
self._Data.append(obj)
|
9021
|
+
self._Total = params.get("Total")
|
9022
|
+
self._RequestId = params.get("RequestId")
|
9023
|
+
|
9024
|
+
|
8697
9025
|
class DescribeNatFwInfoCountRequest(AbstractModel):
|
8698
9026
|
"""DescribeNatFwInfoCount请求参数结构体
|
8699
9027
|
|
@@ -20333,6 +20661,12 @@ class VpcFwGroupInfo(AbstractModel):
|
|
20333
20661
|
:param _CrossUserMode: 跨租户模式 1管理员 2单边 0 非跨租户
|
20334
20662
|
注意:此字段可能返回 null,表示取不到有效值。
|
20335
20663
|
:type CrossUserMode: str
|
20664
|
+
:param _NeedSwitchCcnOverlap: 云联网模式下,当前实例是否需要开启重叠路由开关,1:需要开启,0:不需要开启
|
20665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20666
|
+
:type NeedSwitchCcnOverlap: int
|
20667
|
+
:param _CcnId: 云联网模式下,实例关联的云联网id
|
20668
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20669
|
+
:type CcnId: str
|
20336
20670
|
"""
|
20337
20671
|
self._FwGroupId = None
|
20338
20672
|
self._FwGroupName = None
|
@@ -20346,6 +20680,8 @@ class VpcFwGroupInfo(AbstractModel):
|
|
20346
20680
|
self._CdcId = None
|
20347
20681
|
self._CdcName = None
|
20348
20682
|
self._CrossUserMode = None
|
20683
|
+
self._NeedSwitchCcnOverlap = None
|
20684
|
+
self._CcnId = None
|
20349
20685
|
|
20350
20686
|
@property
|
20351
20687
|
def FwGroupId(self):
|
@@ -20443,6 +20779,22 @@ class VpcFwGroupInfo(AbstractModel):
|
|
20443
20779
|
def CrossUserMode(self, CrossUserMode):
|
20444
20780
|
self._CrossUserMode = CrossUserMode
|
20445
20781
|
|
20782
|
+
@property
|
20783
|
+
def NeedSwitchCcnOverlap(self):
|
20784
|
+
return self._NeedSwitchCcnOverlap
|
20785
|
+
|
20786
|
+
@NeedSwitchCcnOverlap.setter
|
20787
|
+
def NeedSwitchCcnOverlap(self, NeedSwitchCcnOverlap):
|
20788
|
+
self._NeedSwitchCcnOverlap = NeedSwitchCcnOverlap
|
20789
|
+
|
20790
|
+
@property
|
20791
|
+
def CcnId(self):
|
20792
|
+
return self._CcnId
|
20793
|
+
|
20794
|
+
@CcnId.setter
|
20795
|
+
def CcnId(self, CcnId):
|
20796
|
+
self._CcnId = CcnId
|
20797
|
+
|
20446
20798
|
|
20447
20799
|
def _deserialize(self, params):
|
20448
20800
|
self._FwGroupId = params.get("FwGroupId")
|
@@ -20462,6 +20814,8 @@ class VpcFwGroupInfo(AbstractModel):
|
|
20462
20814
|
self._CdcId = params.get("CdcId")
|
20463
20815
|
self._CdcName = params.get("CdcName")
|
20464
20816
|
self._CrossUserMode = params.get("CrossUserMode")
|
20817
|
+
self._NeedSwitchCcnOverlap = params.get("NeedSwitchCcnOverlap")
|
20818
|
+
self._CcnId = params.get("CcnId")
|
20465
20819
|
memeber_set = set(params.keys())
|
20466
20820
|
for name, value in vars(self).items():
|
20467
20821
|
property_name = name[1:]
|
@@ -4286,9 +4286,15 @@ class CreateCLSDeliveryRequest(AbstractModel):
|
|
4286
4286
|
:type InstanceId: str
|
4287
4287
|
:param _CLSInfoList: 日志投递配置
|
4288
4288
|
:type CLSInfoList: list of CLSInfo
|
4289
|
+
:param _LogType: 日志类型
|
4290
|
+
:type LogType: str
|
4291
|
+
:param _IsInMaintainPeriod: 是否维护时间运行
|
4292
|
+
:type IsInMaintainPeriod: str
|
4289
4293
|
"""
|
4290
4294
|
self._InstanceId = None
|
4291
4295
|
self._CLSInfoList = None
|
4296
|
+
self._LogType = None
|
4297
|
+
self._IsInMaintainPeriod = None
|
4292
4298
|
|
4293
4299
|
@property
|
4294
4300
|
def InstanceId(self):
|
@@ -4306,6 +4312,22 @@ class CreateCLSDeliveryRequest(AbstractModel):
|
|
4306
4312
|
def CLSInfoList(self, CLSInfoList):
|
4307
4313
|
self._CLSInfoList = CLSInfoList
|
4308
4314
|
|
4315
|
+
@property
|
4316
|
+
def LogType(self):
|
4317
|
+
return self._LogType
|
4318
|
+
|
4319
|
+
@LogType.setter
|
4320
|
+
def LogType(self, LogType):
|
4321
|
+
self._LogType = LogType
|
4322
|
+
|
4323
|
+
@property
|
4324
|
+
def IsInMaintainPeriod(self):
|
4325
|
+
return self._IsInMaintainPeriod
|
4326
|
+
|
4327
|
+
@IsInMaintainPeriod.setter
|
4328
|
+
def IsInMaintainPeriod(self, IsInMaintainPeriod):
|
4329
|
+
self._IsInMaintainPeriod = IsInMaintainPeriod
|
4330
|
+
|
4309
4331
|
|
4310
4332
|
def _deserialize(self, params):
|
4311
4333
|
self._InstanceId = params.get("InstanceId")
|
@@ -4315,6 +4337,8 @@ class CreateCLSDeliveryRequest(AbstractModel):
|
|
4315
4337
|
obj = CLSInfo()
|
4316
4338
|
obj._deserialize(item)
|
4317
4339
|
self._CLSInfoList.append(obj)
|
4340
|
+
self._LogType = params.get("LogType")
|
4341
|
+
self._IsInMaintainPeriod = params.get("IsInMaintainPeriod")
|
4318
4342
|
memeber_set = set(params.keys())
|
4319
4343
|
for name, value in vars(self).items():
|
4320
4344
|
property_name = name[1:]
|
@@ -9711,9 +9735,15 @@ class DeleteCLSDeliveryRequest(AbstractModel):
|
|
9711
9735
|
:type InstanceId: str
|
9712
9736
|
:param _CLSTopicIds: 日志主题id
|
9713
9737
|
:type CLSTopicIds: list of str
|
9738
|
+
:param _LogType: 日志类型
|
9739
|
+
:type LogType: str
|
9740
|
+
:param _IsInMaintainPeriod: 是否维护时间运行
|
9741
|
+
:type IsInMaintainPeriod: str
|
9714
9742
|
"""
|
9715
9743
|
self._InstanceId = None
|
9716
9744
|
self._CLSTopicIds = None
|
9745
|
+
self._LogType = None
|
9746
|
+
self._IsInMaintainPeriod = None
|
9717
9747
|
|
9718
9748
|
@property
|
9719
9749
|
def InstanceId(self):
|
@@ -9731,10 +9761,28 @@ class DeleteCLSDeliveryRequest(AbstractModel):
|
|
9731
9761
|
def CLSTopicIds(self, CLSTopicIds):
|
9732
9762
|
self._CLSTopicIds = CLSTopicIds
|
9733
9763
|
|
9764
|
+
@property
|
9765
|
+
def LogType(self):
|
9766
|
+
return self._LogType
|
9767
|
+
|
9768
|
+
@LogType.setter
|
9769
|
+
def LogType(self, LogType):
|
9770
|
+
self._LogType = LogType
|
9771
|
+
|
9772
|
+
@property
|
9773
|
+
def IsInMaintainPeriod(self):
|
9774
|
+
return self._IsInMaintainPeriod
|
9775
|
+
|
9776
|
+
@IsInMaintainPeriod.setter
|
9777
|
+
def IsInMaintainPeriod(self, IsInMaintainPeriod):
|
9778
|
+
self._IsInMaintainPeriod = IsInMaintainPeriod
|
9779
|
+
|
9734
9780
|
|
9735
9781
|
def _deserialize(self, params):
|
9736
9782
|
self._InstanceId = params.get("InstanceId")
|
9737
9783
|
self._CLSTopicIds = params.get("CLSTopicIds")
|
9784
|
+
self._LogType = params.get("LogType")
|
9785
|
+
self._IsInMaintainPeriod = params.get("IsInMaintainPeriod")
|
9738
9786
|
memeber_set = set(params.keys())
|
9739
9787
|
for name, value in vars(self).items():
|
9740
9788
|
property_name = name[1:]
|
@@ -13157,8 +13205,11 @@ class DescribeInstanceCLSLogDeliveryRequest(AbstractModel):
|
|
13157
13205
|
r"""
|
13158
13206
|
:param _InstanceId: 实例id
|
13159
13207
|
:type InstanceId: str
|
13208
|
+
:param _LogType: 日志类型
|
13209
|
+
:type LogType: str
|
13160
13210
|
"""
|
13161
13211
|
self._InstanceId = None
|
13212
|
+
self._LogType = None
|
13162
13213
|
|
13163
13214
|
@property
|
13164
13215
|
def InstanceId(self):
|
@@ -13168,9 +13219,18 @@ class DescribeInstanceCLSLogDeliveryRequest(AbstractModel):
|
|
13168
13219
|
def InstanceId(self, InstanceId):
|
13169
13220
|
self._InstanceId = InstanceId
|
13170
13221
|
|
13222
|
+
@property
|
13223
|
+
def LogType(self):
|
13224
|
+
return self._LogType
|
13225
|
+
|
13226
|
+
@LogType.setter
|
13227
|
+
def LogType(self, LogType):
|
13228
|
+
self._LogType = LogType
|
13229
|
+
|
13171
13230
|
|
13172
13231
|
def _deserialize(self, params):
|
13173
13232
|
self._InstanceId = params.get("InstanceId")
|
13233
|
+
self._LogType = params.get("LogType")
|
13174
13234
|
memeber_set = set(params.keys())
|
13175
13235
|
for name, value in vars(self).items():
|
13176
13236
|
property_name = name[1:]
|
@@ -17884,6 +17944,9 @@ class InstanceCLSDeliveryInfo(AbstractModel):
|
|
17884
17944
|
|
17885
17945
|
注意:此字段可能返回 null,表示取不到有效值。
|
17886
17946
|
:type Status: str
|
17947
|
+
:param _LogType: 日志类型
|
17948
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
17949
|
+
:type LogType: str
|
17887
17950
|
"""
|
17888
17951
|
self._InstanceId = None
|
17889
17952
|
self._InstanceName = None
|
@@ -17893,6 +17956,7 @@ class InstanceCLSDeliveryInfo(AbstractModel):
|
|
17893
17956
|
self._GroupName = None
|
17894
17957
|
self._Region = None
|
17895
17958
|
self._Status = None
|
17959
|
+
self._LogType = None
|
17896
17960
|
|
17897
17961
|
@property
|
17898
17962
|
def InstanceId(self):
|
@@ -17958,6 +18022,14 @@ class InstanceCLSDeliveryInfo(AbstractModel):
|
|
17958
18022
|
def Status(self, Status):
|
17959
18023
|
self._Status = Status
|
17960
18024
|
|
18025
|
+
@property
|
18026
|
+
def LogType(self):
|
18027
|
+
return self._LogType
|
18028
|
+
|
18029
|
+
@LogType.setter
|
18030
|
+
def LogType(self, LogType):
|
18031
|
+
self._LogType = LogType
|
18032
|
+
|
17961
18033
|
|
17962
18034
|
def _deserialize(self, params):
|
17963
18035
|
self._InstanceId = params.get("InstanceId")
|
@@ -17968,6 +18040,7 @@ class InstanceCLSDeliveryInfo(AbstractModel):
|
|
17968
18040
|
self._GroupName = params.get("GroupName")
|
17969
18041
|
self._Region = params.get("Region")
|
17970
18042
|
self._Status = params.get("Status")
|
18043
|
+
self._LogType = params.get("LogType")
|
17971
18044
|
memeber_set = set(params.keys())
|
17972
18045
|
for name, value in vars(self).items():
|
17973
18046
|
property_name = name[1:]
|
@@ -29074,9 +29147,15 @@ class StartCLSDeliveryRequest(AbstractModel):
|
|
29074
29147
|
:type InstanceId: str
|
29075
29148
|
:param _CLSTopicIds: 开通的日志主题id
|
29076
29149
|
:type CLSTopicIds: list of str
|
29150
|
+
:param _LogType: 日志类型
|
29151
|
+
:type LogType: str
|
29152
|
+
:param _IsInMaintainPeriod: 是否维护时间运行
|
29153
|
+
:type IsInMaintainPeriod: str
|
29077
29154
|
"""
|
29078
29155
|
self._InstanceId = None
|
29079
29156
|
self._CLSTopicIds = None
|
29157
|
+
self._LogType = None
|
29158
|
+
self._IsInMaintainPeriod = None
|
29080
29159
|
|
29081
29160
|
@property
|
29082
29161
|
def InstanceId(self):
|
@@ -29094,10 +29173,28 @@ class StartCLSDeliveryRequest(AbstractModel):
|
|
29094
29173
|
def CLSTopicIds(self, CLSTopicIds):
|
29095
29174
|
self._CLSTopicIds = CLSTopicIds
|
29096
29175
|
|
29176
|
+
@property
|
29177
|
+
def LogType(self):
|
29178
|
+
return self._LogType
|
29179
|
+
|
29180
|
+
@LogType.setter
|
29181
|
+
def LogType(self, LogType):
|
29182
|
+
self._LogType = LogType
|
29183
|
+
|
29184
|
+
@property
|
29185
|
+
def IsInMaintainPeriod(self):
|
29186
|
+
return self._IsInMaintainPeriod
|
29187
|
+
|
29188
|
+
@IsInMaintainPeriod.setter
|
29189
|
+
def IsInMaintainPeriod(self, IsInMaintainPeriod):
|
29190
|
+
self._IsInMaintainPeriod = IsInMaintainPeriod
|
29191
|
+
|
29097
29192
|
|
29098
29193
|
def _deserialize(self, params):
|
29099
29194
|
self._InstanceId = params.get("InstanceId")
|
29100
29195
|
self._CLSTopicIds = params.get("CLSTopicIds")
|
29196
|
+
self._LogType = params.get("LogType")
|
29197
|
+
self._IsInMaintainPeriod = params.get("IsInMaintainPeriod")
|
29101
29198
|
memeber_set = set(params.keys())
|
29102
29199
|
for name, value in vars(self).items():
|
29103
29200
|
property_name = name[1:]
|
@@ -29156,9 +29253,15 @@ class StopCLSDeliveryRequest(AbstractModel):
|
|
29156
29253
|
:type InstanceId: str
|
29157
29254
|
:param _CLSTopicIds: 日志主题id
|
29158
29255
|
:type CLSTopicIds: list of str
|
29256
|
+
:param _LogType: 日志类型
|
29257
|
+
:type LogType: str
|
29258
|
+
:param _IsInMaintainPeriod: 是否维护时间运行
|
29259
|
+
:type IsInMaintainPeriod: str
|
29159
29260
|
"""
|
29160
29261
|
self._InstanceId = None
|
29161
29262
|
self._CLSTopicIds = None
|
29263
|
+
self._LogType = None
|
29264
|
+
self._IsInMaintainPeriod = None
|
29162
29265
|
|
29163
29266
|
@property
|
29164
29267
|
def InstanceId(self):
|
@@ -29176,10 +29279,28 @@ class StopCLSDeliveryRequest(AbstractModel):
|
|
29176
29279
|
def CLSTopicIds(self, CLSTopicIds):
|
29177
29280
|
self._CLSTopicIds = CLSTopicIds
|
29178
29281
|
|
29282
|
+
@property
|
29283
|
+
def LogType(self):
|
29284
|
+
return self._LogType
|
29285
|
+
|
29286
|
+
@LogType.setter
|
29287
|
+
def LogType(self, LogType):
|
29288
|
+
self._LogType = LogType
|
29289
|
+
|
29290
|
+
@property
|
29291
|
+
def IsInMaintainPeriod(self):
|
29292
|
+
return self._IsInMaintainPeriod
|
29293
|
+
|
29294
|
+
@IsInMaintainPeriod.setter
|
29295
|
+
def IsInMaintainPeriod(self, IsInMaintainPeriod):
|
29296
|
+
self._IsInMaintainPeriod = IsInMaintainPeriod
|
29297
|
+
|
29179
29298
|
|
29180
29299
|
def _deserialize(self, params):
|
29181
29300
|
self._InstanceId = params.get("InstanceId")
|
29182
29301
|
self._CLSTopicIds = params.get("CLSTopicIds")
|
29302
|
+
self._LogType = params.get("LogType")
|
29303
|
+
self._IsInMaintainPeriod = params.get("IsInMaintainPeriod")
|
29183
29304
|
memeber_set = set(params.keys())
|
29184
29305
|
for name, value in vars(self).items():
|
29185
29306
|
property_name = name[1:]
|
@@ -420,6 +420,7 @@ class DnspodClient(AbstractClient):
|
|
420
420
|
|
421
421
|
def DeleteRecordBatch(self, request):
|
422
422
|
"""批量删除解析记录
|
423
|
+
备注:因存储限制, 建议一次批量删除最多2000条
|
423
424
|
|
424
425
|
:param request: Request instance for DeleteRecordBatch.
|
425
426
|
:type request: :class:`tencentcloud.dnspod.v20210323.models.DeleteRecordBatchRequest`
|