tencentcloud-sdk-python 3.0.1444__py2.py3-none-any.whl → 3.0.1446__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/cbs/v20170312/models.py +17 -2
- tencentcloud/ccc/v20200210/models.py +21 -0
- tencentcloud/cls/v20201016/models.py +393 -62
- tencentcloud/dlc/v20210125/dlc_client.py +161 -0
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +1019 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/es/v20180416/models.py +85 -0
- tencentcloud/ess/v20201111/models.py +137 -0
- tencentcloud/essbasic/v20210526/models.py +122 -0
- tencentcloud/ioa/v20220601/models.py +78 -50
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +1998 -50
- tencentcloud/mps/v20190612/models.py +55 -10
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/partners/v20180321/models.py +4 -4
- tencentcloud/postgres/v20170312/models.py +2 -2
- tencentcloud/sqlserver/v20180328/models.py +6 -6
- tencentcloud/tbaas/v20180416/models.py +12 -12
- tencentcloud/tcaplusdb/v20190823/models.py +0 -328
- tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
- tencentcloud/tdmq/v20200217/models.py +51 -17
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/trabbit/v20230418/models.py +15 -0
- tencentcloud/trocket/v20230308/models.py +2 -2
- tencentcloud/tse/v20201207/models.py +15 -0
- tencentcloud/tsf/v20180326/errorcodes.py +6 -0
- tencentcloud/tsf/v20180326/models.py +240 -82
- tencentcloud/tsf/v20180326/tsf_client.py +1 -1
- tencentcloud/vod/v20180717/models.py +505 -6
- tencentcloud/vod/v20180717/vod_client.py +101 -0
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/RECORD +37 -37
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1444.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/top_level.txt +0 -0
|
@@ -18013,11 +18013,14 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
18013
18013
|
:type Name: str
|
|
18014
18014
|
:param _Comment: 模板描述信息,长度限制:256 个字符。
|
|
18015
18015
|
:type Comment: str
|
|
18016
|
+
:param _RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。不填时默认值为video。
|
|
18017
|
+
:type RecordType: str
|
|
18016
18018
|
"""
|
|
18017
18019
|
self._HLSConfigure = None
|
|
18018
18020
|
self._MP4Configure = None
|
|
18019
18021
|
self._Name = None
|
|
18020
18022
|
self._Comment = None
|
|
18023
|
+
self._RecordType = None
|
|
18021
18024
|
|
|
18022
18025
|
@property
|
|
18023
18026
|
def HLSConfigure(self):
|
|
@@ -18063,6 +18066,17 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
18063
18066
|
def Comment(self, Comment):
|
|
18064
18067
|
self._Comment = Comment
|
|
18065
18068
|
|
|
18069
|
+
@property
|
|
18070
|
+
def RecordType(self):
|
|
18071
|
+
"""录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。不填时默认值为video。
|
|
18072
|
+
:rtype: str
|
|
18073
|
+
"""
|
|
18074
|
+
return self._RecordType
|
|
18075
|
+
|
|
18076
|
+
@RecordType.setter
|
|
18077
|
+
def RecordType(self, RecordType):
|
|
18078
|
+
self._RecordType = RecordType
|
|
18079
|
+
|
|
18066
18080
|
|
|
18067
18081
|
def _deserialize(self, params):
|
|
18068
18082
|
if params.get("HLSConfigure") is not None:
|
|
@@ -18073,6 +18087,7 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
18073
18087
|
self._MP4Configure._deserialize(params.get("MP4Configure"))
|
|
18074
18088
|
self._Name = params.get("Name")
|
|
18075
18089
|
self._Comment = params.get("Comment")
|
|
18090
|
+
self._RecordType = params.get("RecordType")
|
|
18076
18091
|
memeber_set = set(params.keys())
|
|
18077
18092
|
for name, value in vars(self).items():
|
|
18078
18093
|
property_name = name[1:]
|
|
@@ -38613,6 +38628,8 @@ class LiveRecordTemplate(AbstractModel):
|
|
|
38613
38628
|
:type CreateTime: str
|
|
38614
38629
|
:param _UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
38615
38630
|
:type UpdateTime: str
|
|
38631
|
+
:param _RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
|
|
38632
|
+
:type RecordType: str
|
|
38616
38633
|
"""
|
|
38617
38634
|
self._Definition = None
|
|
38618
38635
|
self._HLSConfigure = None
|
|
@@ -38622,6 +38639,7 @@ class LiveRecordTemplate(AbstractModel):
|
|
|
38622
38639
|
self._Type = None
|
|
38623
38640
|
self._CreateTime = None
|
|
38624
38641
|
self._UpdateTime = None
|
|
38642
|
+
self._RecordType = None
|
|
38625
38643
|
|
|
38626
38644
|
@property
|
|
38627
38645
|
def Definition(self):
|
|
@@ -38713,6 +38731,17 @@ class LiveRecordTemplate(AbstractModel):
|
|
|
38713
38731
|
def UpdateTime(self, UpdateTime):
|
|
38714
38732
|
self._UpdateTime = UpdateTime
|
|
38715
38733
|
|
|
38734
|
+
@property
|
|
38735
|
+
def RecordType(self):
|
|
38736
|
+
"""录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
|
|
38737
|
+
:rtype: str
|
|
38738
|
+
"""
|
|
38739
|
+
return self._RecordType
|
|
38740
|
+
|
|
38741
|
+
@RecordType.setter
|
|
38742
|
+
def RecordType(self, RecordType):
|
|
38743
|
+
self._RecordType = RecordType
|
|
38744
|
+
|
|
38716
38745
|
|
|
38717
38746
|
def _deserialize(self, params):
|
|
38718
38747
|
self._Definition = params.get("Definition")
|
|
@@ -38727,6 +38756,7 @@ class LiveRecordTemplate(AbstractModel):
|
|
|
38727
38756
|
self._Type = params.get("Type")
|
|
38728
38757
|
self._CreateTime = params.get("CreateTime")
|
|
38729
38758
|
self._UpdateTime = params.get("UpdateTime")
|
|
38759
|
+
self._RecordType = params.get("RecordType")
|
|
38730
38760
|
memeber_set = set(params.keys())
|
|
38731
38761
|
for name, value in vars(self).items():
|
|
38732
38762
|
property_name = name[1:]
|
|
@@ -41229,20 +41259,20 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
41229
41259
|
def __init__(self):
|
|
41230
41260
|
r"""
|
|
41231
41261
|
:param _NotifyType: 通知类型:
|
|
41232
|
-
|
|
41262
|
+
TDMQ-CMQ:消息队列
|
|
41233
41263
|
"URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
|
|
41234
41264
|
|
|
41235
41265
|
<font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
|
41236
41266
|
:type NotifyType: str
|
|
41237
41267
|
:param _NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
|
|
41238
41268
|
:type NotifyUrl: str
|
|
41239
|
-
:param _CmqModel:
|
|
41269
|
+
:param _CmqModel: 有 Queue 和 Topic 两种模型。
|
|
41240
41270
|
:type CmqModel: str
|
|
41241
|
-
:param _CmqRegion: CMQ 的园区,如 sh,bj 等。
|
|
41271
|
+
:param _CmqRegion: TDMQ-CMQ 的园区,如 sh,bj 等。
|
|
41242
41272
|
:type CmqRegion: str
|
|
41243
|
-
:param _QueueName: 当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
|
|
41273
|
+
:param _QueueName: 当模型为 Queue 时有效,表示接收事件通知的 TDMQ-CMQ 的队列名。
|
|
41244
41274
|
:type QueueName: str
|
|
41245
|
-
:param _TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
|
|
41275
|
+
:param _TopicName: 当模型为 Topic 时有效,表示接收事件通知的 TDMQ-CMQ 的主题名。
|
|
41246
41276
|
:type TopicName: str
|
|
41247
41277
|
:param _NotifyKey: 用于生成回调签名的 Key。
|
|
41248
41278
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -41259,7 +41289,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
41259
41289
|
@property
|
|
41260
41290
|
def NotifyType(self):
|
|
41261
41291
|
"""通知类型:
|
|
41262
|
-
|
|
41292
|
+
TDMQ-CMQ:消息队列
|
|
41263
41293
|
"URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
|
|
41264
41294
|
|
|
41265
41295
|
<font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
|
@@ -41284,7 +41314,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
41284
41314
|
|
|
41285
41315
|
@property
|
|
41286
41316
|
def CmqModel(self):
|
|
41287
|
-
"""
|
|
41317
|
+
"""有 Queue 和 Topic 两种模型。
|
|
41288
41318
|
:rtype: str
|
|
41289
41319
|
"""
|
|
41290
41320
|
return self._CmqModel
|
|
@@ -41295,7 +41325,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
41295
41325
|
|
|
41296
41326
|
@property
|
|
41297
41327
|
def CmqRegion(self):
|
|
41298
|
-
"""CMQ 的园区,如 sh,bj 等。
|
|
41328
|
+
"""TDMQ-CMQ 的园区,如 sh,bj 等。
|
|
41299
41329
|
:rtype: str
|
|
41300
41330
|
"""
|
|
41301
41331
|
return self._CmqRegion
|
|
@@ -41306,7 +41336,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
41306
41336
|
|
|
41307
41337
|
@property
|
|
41308
41338
|
def QueueName(self):
|
|
41309
|
-
"""当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
|
|
41339
|
+
"""当模型为 Queue 时有效,表示接收事件通知的 TDMQ-CMQ 的队列名。
|
|
41310
41340
|
:rtype: str
|
|
41311
41341
|
"""
|
|
41312
41342
|
return self._QueueName
|
|
@@ -41317,7 +41347,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
41317
41347
|
|
|
41318
41348
|
@property
|
|
41319
41349
|
def TopicName(self):
|
|
41320
|
-
"""当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
|
|
41350
|
+
"""当模型为 Topic 时有效,表示接收事件通知的 TDMQ-CMQ 的主题名。
|
|
41321
41351
|
:rtype: str
|
|
41322
41352
|
"""
|
|
41323
41353
|
return self._TopicName
|
|
@@ -47193,12 +47223,15 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
|
47193
47223
|
:type Name: str
|
|
47194
47224
|
:param _Comment: 模板描述信息,长度限制:256 个字符。
|
|
47195
47225
|
:type Comment: str
|
|
47226
|
+
:param _RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
|
|
47227
|
+
:type RecordType: str
|
|
47196
47228
|
"""
|
|
47197
47229
|
self._Definition = None
|
|
47198
47230
|
self._HLSConfigure = None
|
|
47199
47231
|
self._MP4Configure = None
|
|
47200
47232
|
self._Name = None
|
|
47201
47233
|
self._Comment = None
|
|
47234
|
+
self._RecordType = None
|
|
47202
47235
|
|
|
47203
47236
|
@property
|
|
47204
47237
|
def Definition(self):
|
|
@@ -47255,6 +47288,17 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
|
47255
47288
|
def Comment(self, Comment):
|
|
47256
47289
|
self._Comment = Comment
|
|
47257
47290
|
|
|
47291
|
+
@property
|
|
47292
|
+
def RecordType(self):
|
|
47293
|
+
"""录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
|
|
47294
|
+
:rtype: str
|
|
47295
|
+
"""
|
|
47296
|
+
return self._RecordType
|
|
47297
|
+
|
|
47298
|
+
@RecordType.setter
|
|
47299
|
+
def RecordType(self, RecordType):
|
|
47300
|
+
self._RecordType = RecordType
|
|
47301
|
+
|
|
47258
47302
|
|
|
47259
47303
|
def _deserialize(self, params):
|
|
47260
47304
|
self._Definition = params.get("Definition")
|
|
@@ -47266,6 +47310,7 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
|
47266
47310
|
self._MP4Configure._deserialize(params.get("MP4Configure"))
|
|
47267
47311
|
self._Name = params.get("Name")
|
|
47268
47312
|
self._Comment = params.get("Comment")
|
|
47313
|
+
self._RecordType = params.get("RecordType")
|
|
47269
47314
|
memeber_set = set(params.keys())
|
|
47270
47315
|
for name, value in vars(self).items():
|
|
47271
47316
|
property_name = name[1:]
|
|
@@ -36801,6 +36801,8 @@ class VatElectronicInfo(AbstractModel):
|
|
|
36801
36801
|
:type TaxMark: str
|
|
36802
36802
|
:param _CompanySealMark: 是否有公司印章(0:没有,1:有)
|
|
36803
36803
|
:type CompanySealMark: int
|
|
36804
|
+
:param _InvoicePageIndex: 全电类型的多页pdf票据中,支持输出票面页码:当前第几页,一共第几页。
|
|
36805
|
+
:type InvoicePageIndex: str
|
|
36804
36806
|
"""
|
|
36805
36807
|
self._Title = None
|
|
36806
36808
|
self._Number = None
|
|
@@ -36824,6 +36826,7 @@ class VatElectronicInfo(AbstractModel):
|
|
|
36824
36826
|
self._PretaxAmountMark = None
|
|
36825
36827
|
self._TaxMark = None
|
|
36826
36828
|
self._CompanySealMark = None
|
|
36829
|
+
self._InvoicePageIndex = None
|
|
36827
36830
|
|
|
36828
36831
|
@property
|
|
36829
36832
|
def Title(self):
|
|
@@ -37067,6 +37070,17 @@ class VatElectronicInfo(AbstractModel):
|
|
|
37067
37070
|
def CompanySealMark(self, CompanySealMark):
|
|
37068
37071
|
self._CompanySealMark = CompanySealMark
|
|
37069
37072
|
|
|
37073
|
+
@property
|
|
37074
|
+
def InvoicePageIndex(self):
|
|
37075
|
+
"""全电类型的多页pdf票据中,支持输出票面页码:当前第几页,一共第几页。
|
|
37076
|
+
:rtype: str
|
|
37077
|
+
"""
|
|
37078
|
+
return self._InvoicePageIndex
|
|
37079
|
+
|
|
37080
|
+
@InvoicePageIndex.setter
|
|
37081
|
+
def InvoicePageIndex(self, InvoicePageIndex):
|
|
37082
|
+
self._InvoicePageIndex = InvoicePageIndex
|
|
37083
|
+
|
|
37070
37084
|
|
|
37071
37085
|
def _deserialize(self, params):
|
|
37072
37086
|
self._Title = params.get("Title")
|
|
@@ -37096,6 +37110,7 @@ class VatElectronicInfo(AbstractModel):
|
|
|
37096
37110
|
self._PretaxAmountMark = params.get("PretaxAmountMark")
|
|
37097
37111
|
self._TaxMark = params.get("TaxMark")
|
|
37098
37112
|
self._CompanySealMark = params.get("CompanySealMark")
|
|
37113
|
+
self._InvoicePageIndex = params.get("InvoicePageIndex")
|
|
37099
37114
|
memeber_set = set(params.keys())
|
|
37100
37115
|
for name, value in vars(self).items():
|
|
37101
37116
|
property_name = name[1:]
|
|
@@ -2076,9 +2076,9 @@ class DescribeAgentAuditedClientsRequest(AbstractModel):
|
|
|
2076
2076
|
:type HasOverdueBill: int
|
|
2077
2077
|
:param _ClientRemark: 客户备注
|
|
2078
2078
|
:type ClientRemark: str
|
|
2079
|
-
:param _Offset: 偏移量
|
|
2079
|
+
:param _Offset: 偏移量 请保持必传
|
|
2080
2080
|
:type Offset: int
|
|
2081
|
-
:param _Limit: 限制数目
|
|
2081
|
+
:param _Limit: 限制数目 请保持必传,最大2000
|
|
2082
2082
|
:type Limit: int
|
|
2083
2083
|
:param _ClientType: 可以为new(自拓)/assign(指派)/old(官网)/direct(直销)/direct_newopp(直销(新商机))/空
|
|
2084
2084
|
:type ClientType: str
|
|
@@ -2182,7 +2182,7 @@ class DescribeAgentAuditedClientsRequest(AbstractModel):
|
|
|
2182
2182
|
|
|
2183
2183
|
@property
|
|
2184
2184
|
def Offset(self):
|
|
2185
|
-
"""偏移量
|
|
2185
|
+
"""偏移量 请保持必传
|
|
2186
2186
|
:rtype: int
|
|
2187
2187
|
"""
|
|
2188
2188
|
return self._Offset
|
|
@@ -2193,7 +2193,7 @@ class DescribeAgentAuditedClientsRequest(AbstractModel):
|
|
|
2193
2193
|
|
|
2194
2194
|
@property
|
|
2195
2195
|
def Limit(self):
|
|
2196
|
-
"""限制数目
|
|
2196
|
+
"""限制数目 请保持必传,最大2000
|
|
2197
2197
|
:rtype: int
|
|
2198
2198
|
"""
|
|
2199
2199
|
return self._Limit
|
|
@@ -12950,14 +12950,14 @@ class IsolateDBInstancesRequest(AbstractModel):
|
|
|
12950
12950
|
|
|
12951
12951
|
def __init__(self):
|
|
12952
12952
|
r"""
|
|
12953
|
-
:param _DBInstanceIdSet: 实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)
|
|
12953
|
+
:param _DBInstanceIdSet: 实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取。注意:不推荐同时隔离多个实例。建议每次操作仅传入单个实例ID。
|
|
12954
12954
|
:type DBInstanceIdSet: list of str
|
|
12955
12955
|
"""
|
|
12956
12956
|
self._DBInstanceIdSet = None
|
|
12957
12957
|
|
|
12958
12958
|
@property
|
|
12959
12959
|
def DBInstanceIdSet(self):
|
|
12960
|
-
"""实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)
|
|
12960
|
+
"""实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取。注意:不推荐同时隔离多个实例。建议每次操作仅传入单个实例ID。
|
|
12961
12961
|
:rtype: list of str
|
|
12962
12962
|
"""
|
|
12963
12963
|
return self._DBInstanceIdSet
|
|
@@ -2263,7 +2263,7 @@ class CreateBackupRequest(AbstractModel):
|
|
|
2263
2263
|
:type Strategy: int
|
|
2264
2264
|
:param _DBNames: 需要备份库名的列表(多库备份才填写)
|
|
2265
2265
|
:type DBNames: list of str
|
|
2266
|
-
:param _InstanceId: 实例ID
|
|
2266
|
+
:param _InstanceId: 实例ID,形如mssql-i1z41iwd
|
|
2267
2267
|
:type InstanceId: str
|
|
2268
2268
|
:param _BackupName: 备份名称,若不填则自动生成“实例ID_备份开始时间戳”
|
|
2269
2269
|
:type BackupName: str
|
|
@@ -2300,7 +2300,7 @@ class CreateBackupRequest(AbstractModel):
|
|
|
2300
2300
|
|
|
2301
2301
|
@property
|
|
2302
2302
|
def InstanceId(self):
|
|
2303
|
-
"""实例ID
|
|
2303
|
+
"""实例ID,形如mssql-i1z41iwd
|
|
2304
2304
|
:rtype: str
|
|
2305
2305
|
"""
|
|
2306
2306
|
return self._InstanceId
|
|
@@ -11425,7 +11425,7 @@ class DescribeCrossBackupStatisticalRequest(AbstractModel):
|
|
|
11425
11425
|
:type CrossBackupStatus: str
|
|
11426
11426
|
:param _CrossRegion: 跨地域备份目标地域
|
|
11427
11427
|
:type CrossRegion: str
|
|
11428
|
-
:param _OrderBy: 排序字段,默认default-按照备份空间降序排序,data-按照数据备份排序,log
|
|
11428
|
+
:param _OrderBy: 排序字段,默认default-按照备份空间降序排序,data-按照数据备份排序,log-按照日志备份
|
|
11429
11429
|
:type OrderBy: str
|
|
11430
11430
|
:param _OrderByType: 排序规则(desc-降序,asc-升序),默认desc
|
|
11431
11431
|
:type OrderByType: str
|
|
@@ -11507,7 +11507,7 @@ class DescribeCrossBackupStatisticalRequest(AbstractModel):
|
|
|
11507
11507
|
|
|
11508
11508
|
@property
|
|
11509
11509
|
def OrderBy(self):
|
|
11510
|
-
"""排序字段,默认default-按照备份空间降序排序,data-按照数据备份排序,log
|
|
11510
|
+
"""排序字段,默认default-按照备份空间降序排序,data-按照数据备份排序,log-按照日志备份
|
|
11511
11511
|
:rtype: str
|
|
11512
11512
|
"""
|
|
11513
11513
|
return self._OrderBy
|
|
@@ -22685,7 +22685,7 @@ class ModifyBackupStrategyRequest(AbstractModel):
|
|
|
22685
22685
|
:type BackupTime: int
|
|
22686
22686
|
:param _BackupDay: BackupType取值为daily时,表示备份间隔天数。当前取值只能为1
|
|
22687
22687
|
:type BackupDay: int
|
|
22688
|
-
:param _BackupModel:
|
|
22688
|
+
:param _BackupModel: 备份模式,master_pkg-主节点上打包备份文件;master_no_pkg-主节点单库备份文件;slave_pkg-从节点上打包备份文件;slave_no_pkg-从节点上单库备份文件,从节点上备份只有在always on容灾模式下支持。
|
|
22689
22689
|
:type BackupModel: str
|
|
22690
22690
|
:param _BackupCycle: BackupType取值为weekly时,表示每周的星期N做备份。(如果数据备份保留时间<7天,则取值[1,2,3,4,5,6,7]。如果数据备份保留时间>=7天,则备份周期取值至少是一周的任意2天)
|
|
22691
22691
|
:type BackupCycle: list of int non-negative
|
|
@@ -22761,7 +22761,7 @@ class ModifyBackupStrategyRequest(AbstractModel):
|
|
|
22761
22761
|
|
|
22762
22762
|
@property
|
|
22763
22763
|
def BackupModel(self):
|
|
22764
|
-
"""
|
|
22764
|
+
"""备份模式,master_pkg-主节点上打包备份文件;master_no_pkg-主节点单库备份文件;slave_pkg-从节点上打包备份文件;slave_no_pkg-从节点上单库备份文件,从节点上备份只有在always on容灾模式下支持。
|
|
22765
22765
|
:rtype: str
|
|
22766
22766
|
"""
|
|
22767
22767
|
return self._BackupModel
|
|
@@ -3094,9 +3094,9 @@ class InvokeChainMakerDemoContractRequest(AbstractModel):
|
|
|
3094
3094
|
:type ChainId: str
|
|
3095
3095
|
:param _ContractName: 合约名称,可在合约管理中获取
|
|
3096
3096
|
:type ContractName: str
|
|
3097
|
-
:param _FuncName:
|
|
3097
|
+
:param _FuncName: 合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
3098
3098
|
:type FuncName: str
|
|
3099
|
-
:param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map
|
|
3099
|
+
:param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
3100
3100
|
:type FuncParam: str
|
|
3101
3101
|
:param _AsyncFlag: 是否异步执行,1为是,否则为0;如果异步执行,可使用返回值中的交易TxID查询执行结果
|
|
3102
3102
|
:type AsyncFlag: int
|
|
@@ -3143,7 +3143,7 @@ class InvokeChainMakerDemoContractRequest(AbstractModel):
|
|
|
3143
3143
|
|
|
3144
3144
|
@property
|
|
3145
3145
|
def FuncName(self):
|
|
3146
|
-
"""
|
|
3146
|
+
"""合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
3147
3147
|
:rtype: str
|
|
3148
3148
|
"""
|
|
3149
3149
|
return self._FuncName
|
|
@@ -3154,7 +3154,7 @@ class InvokeChainMakerDemoContractRequest(AbstractModel):
|
|
|
3154
3154
|
|
|
3155
3155
|
@property
|
|
3156
3156
|
def FuncParam(self):
|
|
3157
|
-
"""合约方法入参,json格式字符串,key/value都是string类型的map
|
|
3157
|
+
"""合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
3158
3158
|
:rtype: str
|
|
3159
3159
|
"""
|
|
3160
3160
|
return self._FuncParam
|
|
@@ -3897,9 +3897,9 @@ class QueryChainMakerContractRequest(AbstractModel):
|
|
|
3897
3897
|
:type ChainId: str
|
|
3898
3898
|
:param _ContractName: 合约名称,可在合约管理中获取
|
|
3899
3899
|
:type ContractName: str
|
|
3900
|
-
:param _FuncName:
|
|
3900
|
+
:param _FuncName: 合约方法名,由合约代码定义
|
|
3901
3901
|
:type FuncName: str
|
|
3902
|
-
:param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map
|
|
3902
|
+
:param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义
|
|
3903
3903
|
:type FuncParam: str
|
|
3904
3904
|
"""
|
|
3905
3905
|
self._ClusterId = None
|
|
@@ -3943,7 +3943,7 @@ class QueryChainMakerContractRequest(AbstractModel):
|
|
|
3943
3943
|
|
|
3944
3944
|
@property
|
|
3945
3945
|
def FuncName(self):
|
|
3946
|
-
"""
|
|
3946
|
+
"""合约方法名,由合约代码定义
|
|
3947
3947
|
:rtype: str
|
|
3948
3948
|
"""
|
|
3949
3949
|
return self._FuncName
|
|
@@ -3954,7 +3954,7 @@ class QueryChainMakerContractRequest(AbstractModel):
|
|
|
3954
3954
|
|
|
3955
3955
|
@property
|
|
3956
3956
|
def FuncParam(self):
|
|
3957
|
-
"""合约方法入参,json格式字符串,key/value都是string类型的map
|
|
3957
|
+
"""合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义
|
|
3958
3958
|
:rtype: str
|
|
3959
3959
|
"""
|
|
3960
3960
|
return self._FuncParam
|
|
@@ -4197,9 +4197,9 @@ class QueryChainMakerDemoContractRequest(AbstractModel):
|
|
|
4197
4197
|
:type ChainId: str
|
|
4198
4198
|
:param _ContractName: 合约名称,可在合约管理中获取
|
|
4199
4199
|
:type ContractName: str
|
|
4200
|
-
:param _FuncName:
|
|
4200
|
+
:param _FuncName: 合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
4201
4201
|
:type FuncName: str
|
|
4202
|
-
:param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map
|
|
4202
|
+
:param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
4203
4203
|
:type FuncParam: str
|
|
4204
4204
|
"""
|
|
4205
4205
|
self._ClusterId = None
|
|
@@ -4243,7 +4243,7 @@ class QueryChainMakerDemoContractRequest(AbstractModel):
|
|
|
4243
4243
|
|
|
4244
4244
|
@property
|
|
4245
4245
|
def FuncName(self):
|
|
4246
|
-
"""
|
|
4246
|
+
"""合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
4247
4247
|
:rtype: str
|
|
4248
4248
|
"""
|
|
4249
4249
|
return self._FuncName
|
|
@@ -4254,7 +4254,7 @@ class QueryChainMakerDemoContractRequest(AbstractModel):
|
|
|
4254
4254
|
|
|
4255
4255
|
@property
|
|
4256
4256
|
def FuncParam(self):
|
|
4257
|
-
"""合约方法入参,json格式字符串,key/value都是string类型的map
|
|
4257
|
+
"""合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
|
|
4258
4258
|
:rtype: str
|
|
4259
4259
|
"""
|
|
4260
4260
|
return self._FuncParam
|