tencentcloud-sdk-python 3.0.973__py2.py3-none-any.whl → 3.0.975__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/asr/v20190614/asr_client.py +11 -10
- tencentcloud/asr/v20190614/models.py +49 -18
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/errorcodes.py +6 -0
- tencentcloud/cdwch/v20200915/models.py +201 -0
- tencentcloud/cfw/v20190904/cfw_client.py +47 -0
- tencentcloud/cfw/v20190904/models.py +322 -11
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/clb/v20180317/models.py +75 -5
- tencentcloud/cls/v20201016/models.py +26 -0
- tencentcloud/cvm/v20170312/cvm_client.py +1 -0
- tencentcloud/cvm/v20170312/models.py +1 -13
- tencentcloud/cynosdb/v20190107/models.py +9 -6
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +867 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +7 -7
- tencentcloud/dnspod/v20210323/models.py +13 -1
- tencentcloud/ecm/v20190719/models.py +15 -2
- tencentcloud/eis/v20210601/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +25 -13
- tencentcloud/ess/v20201111/models.py +162 -120
- tencentcloud/essbasic/v20210526/essbasic_client.py +7 -0
- tencentcloud/essbasic/v20210526/models.py +22 -15
- tencentcloud/faceid/v20180301/models.py +17 -1
- tencentcloud/iotexplorer/v20190423/errorcodes.py +1 -1
- tencentcloud/lcic/v20220817/errorcodes.py +3 -0
- tencentcloud/lcic/v20220817/models.py +74 -0
- tencentcloud/live/v20180801/live_client.py +23 -0
- tencentcloud/live/v20180801/models.py +131 -0
- tencentcloud/monitor/v20180724/models.py +182 -2
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/models.py +304 -0
- tencentcloud/oceanus/v20190422/models.py +15 -1
- tencentcloud/ses/v20201002/models.py +1 -1
- tencentcloud/sqlserver/v20180328/models.py +3 -3
- tencentcloud/sqlserver/v20180328/sqlserver_client.py +0 -1
- tencentcloud/ssl/v20191205/models.py +1836 -50
- tencentcloud/ssl/v20191205/ssl_client.py +69 -0
- tencentcloud/tdmq/v20200217/models.py +587 -1
- tencentcloud/tdmq/v20200217/tdmq_client.py +46 -0
- tencentcloud/tem/v20210701/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/errorcodes.py +21 -0
- tencentcloud/teo/v20220901/models.py +96 -0
- tencentcloud/teo/v20220901/teo_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +121 -0
- tencentcloud/trtc/v20190722/models.py +5 -2
- tencentcloud/tse/v20201207/models.py +13 -0
- tencentcloud/tsf/v20180326/models.py +5 -4
- tencentcloud/tsf/v20180326/tsf_client.py +1 -1
- tencentcloud/vod/v20180717/models.py +1 -1
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- {tencentcloud_sdk_python-3.0.973.dist-info → tencentcloud_sdk_python-3.0.975.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.973.dist-info → tencentcloud_sdk_python-3.0.975.dist-info}/RECORD +58 -58
- {tencentcloud_sdk_python-3.0.973.dist-info → tencentcloud_sdk_python-3.0.975.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.973.dist-info → tencentcloud_sdk_python-3.0.975.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.973.dist-info → tencentcloud_sdk_python-3.0.975.dist-info}/top_level.txt +0 -0
|
@@ -2108,6 +2108,29 @@ class MonitorClient(AbstractClient):
|
|
|
2108
2108
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2109
2109
|
|
|
2110
2110
|
|
|
2111
|
+
def DescribePrometheusRegions(self, request):
|
|
2112
|
+
"""列出 Prometheus 服务所有可用的地域
|
|
2113
|
+
|
|
2114
|
+
:param request: Request instance for DescribePrometheusRegions.
|
|
2115
|
+
:type request: :class:`tencentcloud.monitor.v20180724.models.DescribePrometheusRegionsRequest`
|
|
2116
|
+
:rtype: :class:`tencentcloud.monitor.v20180724.models.DescribePrometheusRegionsResponse`
|
|
2117
|
+
|
|
2118
|
+
"""
|
|
2119
|
+
try:
|
|
2120
|
+
params = request._serialize()
|
|
2121
|
+
headers = request.headers
|
|
2122
|
+
body = self.call("DescribePrometheusRegions", params, headers=headers)
|
|
2123
|
+
response = json.loads(body)
|
|
2124
|
+
model = models.DescribePrometheusRegionsResponse()
|
|
2125
|
+
model._deserialize(response["Response"])
|
|
2126
|
+
return model
|
|
2127
|
+
except Exception as e:
|
|
2128
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2129
|
+
raise
|
|
2130
|
+
else:
|
|
2131
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2132
|
+
|
|
2133
|
+
|
|
2111
2134
|
def DescribePrometheusScrapeJobs(self, request):
|
|
2112
2135
|
"""列出 Prometheus 抓取任务
|
|
2113
2136
|
|
|
@@ -7624,6 +7624,243 @@ class AsrWordsConfigureInfoForUpdate(AbstractModel):
|
|
|
7624
7624
|
|
|
7625
7625
|
|
|
7626
7626
|
|
|
7627
|
+
class AudioBeautifyConfig(AbstractModel):
|
|
7628
|
+
"""音量美化配置
|
|
7629
|
+
|
|
7630
|
+
"""
|
|
7631
|
+
|
|
7632
|
+
def __init__(self):
|
|
7633
|
+
r"""
|
|
7634
|
+
:param _Switch: 能力配置开关,可选值:
|
|
7635
|
+
<li>ON:开启;</li>
|
|
7636
|
+
<li>OFF:关闭。</li>
|
|
7637
|
+
默认值:ON。
|
|
7638
|
+
:type Switch: str
|
|
7639
|
+
:param _Types: 类型,可多选,可选值:
|
|
7640
|
+
<li>declick:杂音去除</li>
|
|
7641
|
+
<li>deesser:齿音压制</li>
|
|
7642
|
+
默认值:declick。
|
|
7643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7644
|
+
:type Types: list of str
|
|
7645
|
+
"""
|
|
7646
|
+
self._Switch = None
|
|
7647
|
+
self._Types = None
|
|
7648
|
+
|
|
7649
|
+
@property
|
|
7650
|
+
def Switch(self):
|
|
7651
|
+
return self._Switch
|
|
7652
|
+
|
|
7653
|
+
@Switch.setter
|
|
7654
|
+
def Switch(self, Switch):
|
|
7655
|
+
self._Switch = Switch
|
|
7656
|
+
|
|
7657
|
+
@property
|
|
7658
|
+
def Types(self):
|
|
7659
|
+
return self._Types
|
|
7660
|
+
|
|
7661
|
+
@Types.setter
|
|
7662
|
+
def Types(self, Types):
|
|
7663
|
+
self._Types = Types
|
|
7664
|
+
|
|
7665
|
+
|
|
7666
|
+
def _deserialize(self, params):
|
|
7667
|
+
self._Switch = params.get("Switch")
|
|
7668
|
+
self._Types = params.get("Types")
|
|
7669
|
+
memeber_set = set(params.keys())
|
|
7670
|
+
for name, value in vars(self).items():
|
|
7671
|
+
property_name = name[1:]
|
|
7672
|
+
if property_name in memeber_set:
|
|
7673
|
+
memeber_set.remove(property_name)
|
|
7674
|
+
if len(memeber_set) > 0:
|
|
7675
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7676
|
+
|
|
7677
|
+
|
|
7678
|
+
|
|
7679
|
+
class AudioDenoiseConfig(AbstractModel):
|
|
7680
|
+
"""音频降噪配置
|
|
7681
|
+
|
|
7682
|
+
"""
|
|
7683
|
+
|
|
7684
|
+
def __init__(self):
|
|
7685
|
+
r"""
|
|
7686
|
+
:param _Switch: 能力配置开关,可选值:
|
|
7687
|
+
<li>ON:开启;</li>
|
|
7688
|
+
<li>OFF:关闭。</li>
|
|
7689
|
+
默认值:ON。
|
|
7690
|
+
:type Switch: str
|
|
7691
|
+
"""
|
|
7692
|
+
self._Switch = None
|
|
7693
|
+
|
|
7694
|
+
@property
|
|
7695
|
+
def Switch(self):
|
|
7696
|
+
return self._Switch
|
|
7697
|
+
|
|
7698
|
+
@Switch.setter
|
|
7699
|
+
def Switch(self, Switch):
|
|
7700
|
+
self._Switch = Switch
|
|
7701
|
+
|
|
7702
|
+
|
|
7703
|
+
def _deserialize(self, params):
|
|
7704
|
+
self._Switch = params.get("Switch")
|
|
7705
|
+
memeber_set = set(params.keys())
|
|
7706
|
+
for name, value in vars(self).items():
|
|
7707
|
+
property_name = name[1:]
|
|
7708
|
+
if property_name in memeber_set:
|
|
7709
|
+
memeber_set.remove(property_name)
|
|
7710
|
+
if len(memeber_set) > 0:
|
|
7711
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7712
|
+
|
|
7713
|
+
|
|
7714
|
+
|
|
7715
|
+
class AudioEnhanceConfig(AbstractModel):
|
|
7716
|
+
"""音频增强配置
|
|
7717
|
+
|
|
7718
|
+
"""
|
|
7719
|
+
|
|
7720
|
+
def __init__(self):
|
|
7721
|
+
r"""
|
|
7722
|
+
:param _Denoise: 音频降噪配置。
|
|
7723
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7724
|
+
:type Denoise: :class:`tencentcloud.mps.v20190612.models.AudioDenoiseConfig`
|
|
7725
|
+
:param _Separate: 音频分离配置。
|
|
7726
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7727
|
+
:type Separate: :class:`tencentcloud.mps.v20190612.models.AudioSeparateConfig`
|
|
7728
|
+
:param _VolumeBalance: 音量均衡配置。
|
|
7729
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7730
|
+
:type VolumeBalance: :class:`tencentcloud.mps.v20190612.models.VolumeBalanceConfig`
|
|
7731
|
+
:param _Beautify: 音频美化配置。
|
|
7732
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7733
|
+
:type Beautify: :class:`tencentcloud.mps.v20190612.models.AudioBeautifyConfig`
|
|
7734
|
+
"""
|
|
7735
|
+
self._Denoise = None
|
|
7736
|
+
self._Separate = None
|
|
7737
|
+
self._VolumeBalance = None
|
|
7738
|
+
self._Beautify = None
|
|
7739
|
+
|
|
7740
|
+
@property
|
|
7741
|
+
def Denoise(self):
|
|
7742
|
+
return self._Denoise
|
|
7743
|
+
|
|
7744
|
+
@Denoise.setter
|
|
7745
|
+
def Denoise(self, Denoise):
|
|
7746
|
+
self._Denoise = Denoise
|
|
7747
|
+
|
|
7748
|
+
@property
|
|
7749
|
+
def Separate(self):
|
|
7750
|
+
return self._Separate
|
|
7751
|
+
|
|
7752
|
+
@Separate.setter
|
|
7753
|
+
def Separate(self, Separate):
|
|
7754
|
+
self._Separate = Separate
|
|
7755
|
+
|
|
7756
|
+
@property
|
|
7757
|
+
def VolumeBalance(self):
|
|
7758
|
+
return self._VolumeBalance
|
|
7759
|
+
|
|
7760
|
+
@VolumeBalance.setter
|
|
7761
|
+
def VolumeBalance(self, VolumeBalance):
|
|
7762
|
+
self._VolumeBalance = VolumeBalance
|
|
7763
|
+
|
|
7764
|
+
@property
|
|
7765
|
+
def Beautify(self):
|
|
7766
|
+
return self._Beautify
|
|
7767
|
+
|
|
7768
|
+
@Beautify.setter
|
|
7769
|
+
def Beautify(self, Beautify):
|
|
7770
|
+
self._Beautify = Beautify
|
|
7771
|
+
|
|
7772
|
+
|
|
7773
|
+
def _deserialize(self, params):
|
|
7774
|
+
if params.get("Denoise") is not None:
|
|
7775
|
+
self._Denoise = AudioDenoiseConfig()
|
|
7776
|
+
self._Denoise._deserialize(params.get("Denoise"))
|
|
7777
|
+
if params.get("Separate") is not None:
|
|
7778
|
+
self._Separate = AudioSeparateConfig()
|
|
7779
|
+
self._Separate._deserialize(params.get("Separate"))
|
|
7780
|
+
if params.get("VolumeBalance") is not None:
|
|
7781
|
+
self._VolumeBalance = VolumeBalanceConfig()
|
|
7782
|
+
self._VolumeBalance._deserialize(params.get("VolumeBalance"))
|
|
7783
|
+
if params.get("Beautify") is not None:
|
|
7784
|
+
self._Beautify = AudioBeautifyConfig()
|
|
7785
|
+
self._Beautify._deserialize(params.get("Beautify"))
|
|
7786
|
+
memeber_set = set(params.keys())
|
|
7787
|
+
for name, value in vars(self).items():
|
|
7788
|
+
property_name = name[1:]
|
|
7789
|
+
if property_name in memeber_set:
|
|
7790
|
+
memeber_set.remove(property_name)
|
|
7791
|
+
if len(memeber_set) > 0:
|
|
7792
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7793
|
+
|
|
7794
|
+
|
|
7795
|
+
|
|
7796
|
+
class AudioSeparateConfig(AbstractModel):
|
|
7797
|
+
"""音频分离配置
|
|
7798
|
+
|
|
7799
|
+
"""
|
|
7800
|
+
|
|
7801
|
+
def __init__(self):
|
|
7802
|
+
r"""
|
|
7803
|
+
:param _Switch: 能力配置开关,可选值:
|
|
7804
|
+
<li>ON:开启;</li>
|
|
7805
|
+
<li>OFF:关闭。</li>
|
|
7806
|
+
默认值:ON。
|
|
7807
|
+
:type Switch: str
|
|
7808
|
+
:param _Type: 场景类型,可选值:
|
|
7809
|
+
<li>normal:人声背景声场景</li>
|
|
7810
|
+
<li>music:演唱伴奏场景</li>
|
|
7811
|
+
默认值:normal。
|
|
7812
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7813
|
+
:type Type: str
|
|
7814
|
+
:param _Track: 输出音轨,可选值:
|
|
7815
|
+
<li>vocal:输出人声</li>
|
|
7816
|
+
<li>background:应用场景为normal时输出背景声,应用场景为music时输出伴奏</li>
|
|
7817
|
+
默认值:vocal。
|
|
7818
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7819
|
+
:type Track: str
|
|
7820
|
+
"""
|
|
7821
|
+
self._Switch = None
|
|
7822
|
+
self._Type = None
|
|
7823
|
+
self._Track = None
|
|
7824
|
+
|
|
7825
|
+
@property
|
|
7826
|
+
def Switch(self):
|
|
7827
|
+
return self._Switch
|
|
7828
|
+
|
|
7829
|
+
@Switch.setter
|
|
7830
|
+
def Switch(self, Switch):
|
|
7831
|
+
self._Switch = Switch
|
|
7832
|
+
|
|
7833
|
+
@property
|
|
7834
|
+
def Type(self):
|
|
7835
|
+
return self._Type
|
|
7836
|
+
|
|
7837
|
+
@Type.setter
|
|
7838
|
+
def Type(self, Type):
|
|
7839
|
+
self._Type = Type
|
|
7840
|
+
|
|
7841
|
+
@property
|
|
7842
|
+
def Track(self):
|
|
7843
|
+
return self._Track
|
|
7844
|
+
|
|
7845
|
+
@Track.setter
|
|
7846
|
+
def Track(self, Track):
|
|
7847
|
+
self._Track = Track
|
|
7848
|
+
|
|
7849
|
+
|
|
7850
|
+
def _deserialize(self, params):
|
|
7851
|
+
self._Switch = params.get("Switch")
|
|
7852
|
+
self._Type = params.get("Type")
|
|
7853
|
+
self._Track = params.get("Track")
|
|
7854
|
+
memeber_set = set(params.keys())
|
|
7855
|
+
for name, value in vars(self).items():
|
|
7856
|
+
property_name = name[1:]
|
|
7857
|
+
if property_name in memeber_set:
|
|
7858
|
+
memeber_set.remove(property_name)
|
|
7859
|
+
if len(memeber_set) > 0:
|
|
7860
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
7861
|
+
|
|
7862
|
+
|
|
7863
|
+
|
|
7627
7864
|
class AudioTemplateInfo(AbstractModel):
|
|
7628
7865
|
"""音频流配置参数
|
|
7629
7866
|
|
|
@@ -19623,8 +19860,12 @@ class EnhanceConfig(AbstractModel):
|
|
|
19623
19860
|
:param _VideoEnhance: 视频增强配置。
|
|
19624
19861
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
19625
19862
|
:type VideoEnhance: :class:`tencentcloud.mps.v20190612.models.VideoEnhanceConfig`
|
|
19863
|
+
:param _AudioEnhance: 音频增强配置。
|
|
19864
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
19865
|
+
:type AudioEnhance: :class:`tencentcloud.mps.v20190612.models.AudioEnhanceConfig`
|
|
19626
19866
|
"""
|
|
19627
19867
|
self._VideoEnhance = None
|
|
19868
|
+
self._AudioEnhance = None
|
|
19628
19869
|
|
|
19629
19870
|
@property
|
|
19630
19871
|
def VideoEnhance(self):
|
|
@@ -19634,11 +19875,22 @@ class EnhanceConfig(AbstractModel):
|
|
|
19634
19875
|
def VideoEnhance(self, VideoEnhance):
|
|
19635
19876
|
self._VideoEnhance = VideoEnhance
|
|
19636
19877
|
|
|
19878
|
+
@property
|
|
19879
|
+
def AudioEnhance(self):
|
|
19880
|
+
return self._AudioEnhance
|
|
19881
|
+
|
|
19882
|
+
@AudioEnhance.setter
|
|
19883
|
+
def AudioEnhance(self, AudioEnhance):
|
|
19884
|
+
self._AudioEnhance = AudioEnhance
|
|
19885
|
+
|
|
19637
19886
|
|
|
19638
19887
|
def _deserialize(self, params):
|
|
19639
19888
|
if params.get("VideoEnhance") is not None:
|
|
19640
19889
|
self._VideoEnhance = VideoEnhanceConfig()
|
|
19641
19890
|
self._VideoEnhance._deserialize(params.get("VideoEnhance"))
|
|
19891
|
+
if params.get("AudioEnhance") is not None:
|
|
19892
|
+
self._AudioEnhance = AudioEnhanceConfig()
|
|
19893
|
+
self._AudioEnhance._deserialize(params.get("AudioEnhance"))
|
|
19642
19894
|
memeber_set = set(params.keys())
|
|
19643
19895
|
for name, value in vars(self).items():
|
|
19644
19896
|
property_name = name[1:]
|
|
@@ -38478,6 +38730,58 @@ class VideoTemplateInfoForUpdate(AbstractModel):
|
|
|
38478
38730
|
|
|
38479
38731
|
|
|
38480
38732
|
|
|
38733
|
+
class VolumeBalanceConfig(AbstractModel):
|
|
38734
|
+
"""音量均衡配置
|
|
38735
|
+
|
|
38736
|
+
"""
|
|
38737
|
+
|
|
38738
|
+
def __init__(self):
|
|
38739
|
+
r"""
|
|
38740
|
+
:param _Switch: 能力配置开关,可选值:
|
|
38741
|
+
<li>ON:开启;</li>
|
|
38742
|
+
<li>OFF:关闭。</li>
|
|
38743
|
+
默认值:ON。
|
|
38744
|
+
:type Switch: str
|
|
38745
|
+
:param _Type: 类型,可选值:
|
|
38746
|
+
<li>loudNorm:响度标准化</li>
|
|
38747
|
+
<li>gainControl:减小突变</li>
|
|
38748
|
+
默认值:loudNorm。
|
|
38749
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
38750
|
+
:type Type: str
|
|
38751
|
+
"""
|
|
38752
|
+
self._Switch = None
|
|
38753
|
+
self._Type = None
|
|
38754
|
+
|
|
38755
|
+
@property
|
|
38756
|
+
def Switch(self):
|
|
38757
|
+
return self._Switch
|
|
38758
|
+
|
|
38759
|
+
@Switch.setter
|
|
38760
|
+
def Switch(self, Switch):
|
|
38761
|
+
self._Switch = Switch
|
|
38762
|
+
|
|
38763
|
+
@property
|
|
38764
|
+
def Type(self):
|
|
38765
|
+
return self._Type
|
|
38766
|
+
|
|
38767
|
+
@Type.setter
|
|
38768
|
+
def Type(self, Type):
|
|
38769
|
+
self._Type = Type
|
|
38770
|
+
|
|
38771
|
+
|
|
38772
|
+
def _deserialize(self, params):
|
|
38773
|
+
self._Switch = params.get("Switch")
|
|
38774
|
+
self._Type = params.get("Type")
|
|
38775
|
+
memeber_set = set(params.keys())
|
|
38776
|
+
for name, value in vars(self).items():
|
|
38777
|
+
property_name = name[1:]
|
|
38778
|
+
if property_name in memeber_set:
|
|
38779
|
+
memeber_set.remove(property_name)
|
|
38780
|
+
if len(memeber_set) > 0:
|
|
38781
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
38782
|
+
|
|
38783
|
+
|
|
38784
|
+
|
|
38481
38785
|
class WatermarkInput(AbstractModel):
|
|
38482
38786
|
"""媒体处理任务中的水印参数类型
|
|
38483
38787
|
|
|
@@ -7060,9 +7060,11 @@ class RunJobDescription(AbstractModel):
|
|
|
7060
7060
|
:type JobId: str
|
|
7061
7061
|
:param _RunType: 运行类型,1:启动,2:恢复
|
|
7062
7062
|
:type RunType: int
|
|
7063
|
-
:param _StartMode: 兼容旧版 SQL
|
|
7063
|
+
:param _StartMode: 兼容旧版 SQL 类型作业启动参数:指定数据源消费起始时间点(建议传值)
|
|
7064
|
+
保证参数为 LATEST、EARLIEST、T+Timestamp (例:T1557394288000)
|
|
7064
7065
|
:type StartMode: str
|
|
7065
7066
|
:param _JobConfigVersion: 当前作业的某个版本
|
|
7067
|
+
(不传默认为非草稿的作业版本)
|
|
7066
7068
|
:type JobConfigVersion: int
|
|
7067
7069
|
:param _SavepointPath: Savepoint路径
|
|
7068
7070
|
:type SavepointPath: str
|
|
@@ -7070,6 +7072,8 @@ class RunJobDescription(AbstractModel):
|
|
|
7070
7072
|
:type SavepointId: str
|
|
7071
7073
|
:param _UseOldSystemConnector: 使用历史版本系统依赖
|
|
7072
7074
|
:type UseOldSystemConnector: bool
|
|
7075
|
+
:param _CustomTimestamp: 自定义时间戳
|
|
7076
|
+
:type CustomTimestamp: int
|
|
7073
7077
|
"""
|
|
7074
7078
|
self._JobId = None
|
|
7075
7079
|
self._RunType = None
|
|
@@ -7078,6 +7082,7 @@ class RunJobDescription(AbstractModel):
|
|
|
7078
7082
|
self._SavepointPath = None
|
|
7079
7083
|
self._SavepointId = None
|
|
7080
7084
|
self._UseOldSystemConnector = None
|
|
7085
|
+
self._CustomTimestamp = None
|
|
7081
7086
|
|
|
7082
7087
|
@property
|
|
7083
7088
|
def JobId(self):
|
|
@@ -7135,6 +7140,14 @@ class RunJobDescription(AbstractModel):
|
|
|
7135
7140
|
def UseOldSystemConnector(self, UseOldSystemConnector):
|
|
7136
7141
|
self._UseOldSystemConnector = UseOldSystemConnector
|
|
7137
7142
|
|
|
7143
|
+
@property
|
|
7144
|
+
def CustomTimestamp(self):
|
|
7145
|
+
return self._CustomTimestamp
|
|
7146
|
+
|
|
7147
|
+
@CustomTimestamp.setter
|
|
7148
|
+
def CustomTimestamp(self, CustomTimestamp):
|
|
7149
|
+
self._CustomTimestamp = CustomTimestamp
|
|
7150
|
+
|
|
7138
7151
|
|
|
7139
7152
|
def _deserialize(self, params):
|
|
7140
7153
|
self._JobId = params.get("JobId")
|
|
@@ -7144,6 +7157,7 @@ class RunJobDescription(AbstractModel):
|
|
|
7144
7157
|
self._SavepointPath = params.get("SavepointPath")
|
|
7145
7158
|
self._SavepointId = params.get("SavepointId")
|
|
7146
7159
|
self._UseOldSystemConnector = params.get("UseOldSystemConnector")
|
|
7160
|
+
self._CustomTimestamp = params.get("CustomTimestamp")
|
|
7147
7161
|
memeber_set = set(params.keys())
|
|
7148
7162
|
for name, value in vars(self).items():
|
|
7149
7163
|
property_name = name[1:]
|
|
@@ -27,7 +27,7 @@ class Attachment(AbstractModel):
|
|
|
27
27
|
r"""
|
|
28
28
|
:param _FileName: 附件名称,最大支持255个字符长度,不支持部分附件类型,详情请参考[附件类型](https://cloud.tencent.com/document/product/1288/51951)。
|
|
29
29
|
:type FileName: str
|
|
30
|
-
:param _Content: Base64
|
|
30
|
+
:param _Content: Base64之后的附件内容,您可以发送的附件大小上限为4M。注意:腾讯云接口请求最大支持 8M 的请求包,附件内容经过 Base64 预期扩大1.5倍。应该控制所有附件的总大小最大在 4M 以内,整体请求超出 8M 接口会返回错误。
|
|
31
31
|
:type Content: str
|
|
32
32
|
"""
|
|
33
33
|
self._FileName = None
|
|
@@ -2859,7 +2859,7 @@ class CreateCloudReadOnlyDBInstancesRequest(AbstractModel):
|
|
|
2859
2859
|
:type ReadOnlyGroupMinInGroup: int
|
|
2860
2860
|
:param _InstanceChargeType: 付费模式,取值支持 PREPAID(预付费),POSTPAID(后付费)。
|
|
2861
2861
|
:type InstanceChargeType: str
|
|
2862
|
-
:param _GoodsNum:
|
|
2862
|
+
:param _GoodsNum: 本次即将购买的实例数量,默认取值2。
|
|
2863
2863
|
:type GoodsNum: int
|
|
2864
2864
|
:param _SubnetId: VPC子网ID,形如subnet-bdoe83fa;SubnetId和VpcId需同时设置或者同时不设置
|
|
2865
2865
|
:type SubnetId: str
|
|
@@ -5474,7 +5474,7 @@ class DBTDEEncrypt(AbstractModel):
|
|
|
5474
5474
|
r"""
|
|
5475
5475
|
:param _DBName: 数据库名称
|
|
5476
5476
|
:type DBName: str
|
|
5477
|
-
:param _Encryption: enable
|
|
5477
|
+
:param _Encryption: enable-开启数据库TDE加密,disable-关闭数据库TDE加密
|
|
5478
5478
|
:type Encryption: str
|
|
5479
5479
|
"""
|
|
5480
5480
|
self._DBName = None
|
|
@@ -12276,7 +12276,7 @@ class InquiryPriceCreateDBInstancesRequest(AbstractModel):
|
|
|
12276
12276
|
:type DBVersion: str
|
|
12277
12277
|
:param _Cpu: 预购买实例的CPU核心数
|
|
12278
12278
|
:type Cpu: int
|
|
12279
|
-
:param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA
|
|
12279
|
+
:param _InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-虚拟机双机高可用,cvmRO-虚拟机只读
|
|
12280
12280
|
:type InstanceType: str
|
|
12281
12281
|
:param _MachineType: 购买实例的宿主机类型,PM-物理机, CLOUD_PREMIUM-虚拟机高性能云盘,CLOUD_SSD-虚拟机SSD云盘,
|
|
12282
12282
|
CLOUD_HSSD-虚拟机加强型SSD云盘,CLOUD_TSSD-虚拟机极速型SSD云盘,CLOUD_BSSD-虚拟机通用型SSD云盘
|
|
@@ -1615,7 +1615,6 @@ class SqlserverClient(AbstractClient):
|
|
|
1615
1615
|
|
|
1616
1616
|
def InquiryPriceUpgradeDBInstance(self, request):
|
|
1617
1617
|
"""本接口(InquiryPriceUpgradeDBInstance)用于查询包年包月实例升级变配的价格。
|
|
1618
|
-
按量计费实例变配后的价格参考InquiryPriceCreateDBInstances接口。
|
|
1619
1618
|
|
|
1620
1619
|
:param request: Request instance for InquiryPriceUpgradeDBInstance.
|
|
1621
1620
|
:type request: :class:`tencentcloud.sqlserver.v20180328.models.InquiryPriceUpgradeDBInstanceRequest`
|