tencentcloud-sdk-python 3.0.1332__py2.py3-none-any.whl → 3.0.1334__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 +2 -0
- tencentcloud/antiddos/v20200309/models.py +2 -2
- tencentcloud/apm/v20210622/models.py +63 -55
- tencentcloud/billing/v20180709/models.py +30 -474
- tencentcloud/cat/v20180409/models.py +4 -4
- tencentcloud/cdwpg/v20201230/cdwpg_client.py +368 -0
- tencentcloud/cdwpg/v20201230/models.py +5699 -1484
- tencentcloud/ciam/v20220331/models.py +0 -92
- tencentcloud/cls/v20201016/models.py +0 -2
- tencentcloud/common/abstract_client.py +3 -0
- tencentcloud/controlcenter/v20230110/models.py +0 -4
- tencentcloud/csip/v20221121/models.py +94 -4
- tencentcloud/cvm/v20170312/models.py +49 -212
- tencentcloud/dbbrain/v20191016/models.py +0 -6
- tencentcloud/dbbrain/v20210527/models.py +0 -12
- tencentcloud/dlc/v20210125/models.py +32 -0
- tencentcloud/emr/v20190103/models.py +17 -0
- tencentcloud/es/v20180416/models.py +15 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/goosefs/v20220519/models.py +0 -10
- tencentcloud/gwlb/v20240906/models.py +34 -2
- tencentcloud/iotcloud/v20210408/models.py +15 -15
- tencentcloud/keewidb/v20220308/models.py +0 -76
- tencentcloud/live/v20180801/models.py +8 -58
- tencentcloud/lke/v20231130/lke_client.py +46 -0
- tencentcloud/lke/v20231130/models.py +385 -0
- tencentcloud/mongodb/v20190725/models.py +10 -4
- tencentcloud/mps/v20190612/models.py +31 -2
- tencentcloud/mqtt/v20240516/models.py +154 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/ocr/v20181119/models.py +28 -6
- tencentcloud/pts/v20210728/models.py +68 -6
- tencentcloud/redis/v20180412/models.py +0 -66
- tencentcloud/rum/v20210622/models.py +150 -0
- tencentcloud/tag/v20180813/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +192 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/tke/v20180525/models.py +0 -20
- tencentcloud/tms/v20201229/models.py +15 -0
- tencentcloud/trp/v20210515/models.py +0 -6
- tencentcloud/tsf/v20180326/models.py +0 -880
- tencentcloud/vod/v20180717/models.py +8 -8
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +0 -6
- tencentcloud/wedata/v20210820/models.py +173 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/RECORD +53 -53
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1332.dist-info → tencentcloud_sdk_python-3.0.1334.dist-info}/top_level.txt +0 -0
@@ -980,6 +980,29 @@ class MqttClient(AbstractClient):
|
|
980
980
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
981
981
|
|
982
982
|
|
983
|
+
def PublishMessage(self, request):
|
984
|
+
"""发布 MQTT 消息到消息主题或客户端
|
985
|
+
|
986
|
+
:param request: Request instance for PublishMessage.
|
987
|
+
:type request: :class:`tencentcloud.mqtt.v20240516.models.PublishMessageRequest`
|
988
|
+
:rtype: :class:`tencentcloud.mqtt.v20240516.models.PublishMessageResponse`
|
989
|
+
|
990
|
+
"""
|
991
|
+
try:
|
992
|
+
params = request._serialize()
|
993
|
+
headers = request.headers
|
994
|
+
body = self.call("PublishMessage", params, headers=headers)
|
995
|
+
response = json.loads(body)
|
996
|
+
model = models.PublishMessageResponse()
|
997
|
+
model._deserialize(response["Response"])
|
998
|
+
return model
|
999
|
+
except Exception as e:
|
1000
|
+
if isinstance(e, TencentCloudSDKException):
|
1001
|
+
raise
|
1002
|
+
else:
|
1003
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1004
|
+
|
1005
|
+
|
983
1006
|
def RegisterCaCertificate(self, request):
|
984
1007
|
"""注册ca证书
|
985
1008
|
|
@@ -80,6 +80,9 @@ FAILEDOPERATION_IMAGESIZETOOLARGE = 'FailedOperation.ImageSizeTooLarge'
|
|
80
80
|
# 视读区信息与机读区信息不一致
|
81
81
|
FAILEDOPERATION_INCONSISTENCYBETWEENMRZANDVRZ = 'FailedOperation.InconsistencyBetweenMRZAndVRZ'
|
82
82
|
|
83
|
+
# 马来西亚证件识别出的邮编长度不正确
|
84
|
+
FAILEDOPERATION_INVALIDPOSTALCODELENGTH = 'FailedOperation.InvalidPostalCodeLength'
|
85
|
+
|
83
86
|
# 发票数据不一致。温馨提示:新版发票核验接口功能更完整,请尽快切换,如已切换请忽略。
|
84
87
|
FAILEDOPERATION_INVOICEMISMATCH = 'FailedOperation.InvoiceMismatch'
|
85
88
|
|
@@ -30131,9 +30131,9 @@ class SmartStructuralProRequest(AbstractModel):
|
|
30131
30131
|
|
30132
30132
|
def __init__(self):
|
30133
30133
|
r"""
|
30134
|
-
:param _ImageUrl: 图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
30134
|
+
:param _ImageUrl: 图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,WORD,EXCEL,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
30135
30135
|
:type ImageUrl: str
|
30136
|
-
:param _ImageBase64: 图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
30136
|
+
:param _ImageBase64: 图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,WORD,EXCEL,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
30137
30137
|
:type ImageBase64: str
|
30138
30138
|
:param _PdfPageNumber: 需要识别的PDF页面的对应页码,仅支持PDF单页识别,当上传文件为PDF且IsPdf参数值为true时有效,默认值为1。
|
30139
30139
|
:type PdfPageNumber: int
|
@@ -30141,7 +30141,18 @@ class SmartStructuralProRequest(AbstractModel):
|
|
30141
30141
|
:type ItemNames: list of str
|
30142
30142
|
:param _ReturnFullText: 是否开启全文字段识别
|
30143
30143
|
:type ReturnFullText: bool
|
30144
|
-
:param _ConfigId: 配置id支持:
|
30144
|
+
:param _ConfigId: 配置id支持:
|
30145
|
+
General -- 通用场景
|
30146
|
+
InvoiceEng -- 国际invoice模版
|
30147
|
+
WayBillEng --海运订单模板
|
30148
|
+
CustomsDeclaration -- 进出口报关单
|
30149
|
+
WeightNote -- 磅单
|
30150
|
+
MedicalMeter -- 血压仪表识别
|
30151
|
+
BillOfLading -- 海运提单
|
30152
|
+
EntrustmentBook -- 海运托书
|
30153
|
+
WordRecognize -- 手写英文作文模版
|
30154
|
+
Statement -- 对账单识别模板
|
30155
|
+
BookingConfirmation -- 配舱通知书识别模板
|
30145
30156
|
:type ConfigId: str
|
30146
30157
|
:param _EnableCoord: 是否开启全文字段坐标值的识别
|
30147
30158
|
:type EnableCoord: bool
|
@@ -30156,7 +30167,7 @@ class SmartStructuralProRequest(AbstractModel):
|
|
30156
30167
|
|
30157
30168
|
@property
|
30158
30169
|
def ImageUrl(self):
|
30159
|
-
"""图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
30170
|
+
"""图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,WORD,EXCEL,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
30160
30171
|
:rtype: str
|
30161
30172
|
"""
|
30162
30173
|
return self._ImageUrl
|
@@ -30167,7 +30178,7 @@ class SmartStructuralProRequest(AbstractModel):
|
|
30167
30178
|
|
30168
30179
|
@property
|
30169
30180
|
def ImageBase64(self):
|
30170
|
-
"""图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
30181
|
+
"""图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,WORD,EXCEL,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。支持的图片像素:需介于20-10000px之间。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
30171
30182
|
:rtype: str
|
30172
30183
|
"""
|
30173
30184
|
return self._ImageBase64
|
@@ -30211,7 +30222,18 @@ class SmartStructuralProRequest(AbstractModel):
|
|
30211
30222
|
|
30212
30223
|
@property
|
30213
30224
|
def ConfigId(self):
|
30214
|
-
"""配置id支持:
|
30225
|
+
"""配置id支持:
|
30226
|
+
General -- 通用场景
|
30227
|
+
InvoiceEng -- 国际invoice模版
|
30228
|
+
WayBillEng --海运订单模板
|
30229
|
+
CustomsDeclaration -- 进出口报关单
|
30230
|
+
WeightNote -- 磅单
|
30231
|
+
MedicalMeter -- 血压仪表识别
|
30232
|
+
BillOfLading -- 海运提单
|
30233
|
+
EntrustmentBook -- 海运托书
|
30234
|
+
WordRecognize -- 手写英文作文模版
|
30235
|
+
Statement -- 对账单识别模板
|
30236
|
+
BookingConfirmation -- 配舱通知书识别模板
|
30215
30237
|
:rtype: str
|
30216
30238
|
"""
|
30217
30239
|
return self._ConfigId
|
@@ -5877,7 +5877,7 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
5877
5877
|
:type ScenarioId: str
|
5878
5878
|
:param _JobId: 测试任务ID
|
5879
5879
|
:type JobId: str
|
5880
|
-
:param _Context: 加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1
|
5880
|
+
:param _Context: 加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1小时,不与 Offset 参数同时使用
|
5881
5881
|
:type Context: str
|
5882
5882
|
:param _From: 日志开始时间
|
5883
5883
|
:type From: str
|
@@ -5885,12 +5885,14 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
5885
5885
|
:type To: str
|
5886
5886
|
:param _SeverityText: 日志级别debug,info,error
|
5887
5887
|
:type SeverityText: str
|
5888
|
-
:param _InstanceRegion:
|
5888
|
+
:param _InstanceRegion: 地域
|
5889
5889
|
:type InstanceRegion: str
|
5890
5890
|
:param _Instance: 施压引擎节点IP
|
5891
5891
|
:type Instance: str
|
5892
|
-
:param _LogType: request
|
5892
|
+
:param _LogType: request 代表采样日志,engine 代表引擎日志,console 代表用户打印日志
|
5893
5893
|
:type LogType: str
|
5894
|
+
:param _Offset: 日志偏移量,不与Context 参数同时使用
|
5895
|
+
:type Offset: int
|
5894
5896
|
:param _Limit: 返回日志条数,最大100
|
5895
5897
|
:type Limit: int
|
5896
5898
|
:param _ReactionTimeRange: 采样日志响应时间范围
|
@@ -5914,6 +5916,7 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
5914
5916
|
self._InstanceRegion = None
|
5915
5917
|
self._Instance = None
|
5916
5918
|
self._LogType = None
|
5919
|
+
self._Offset = None
|
5917
5920
|
self._Limit = None
|
5918
5921
|
self._ReactionTimeRange = None
|
5919
5922
|
self._Status = None
|
@@ -5956,7 +5959,7 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
5956
5959
|
|
5957
5960
|
@property
|
5958
5961
|
def Context(self):
|
5959
|
-
"""加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1
|
5962
|
+
"""加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1小时,不与 Offset 参数同时使用
|
5960
5963
|
:rtype: str
|
5961
5964
|
"""
|
5962
5965
|
return self._Context
|
@@ -6000,7 +6003,7 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
6000
6003
|
|
6001
6004
|
@property
|
6002
6005
|
def InstanceRegion(self):
|
6003
|
-
"""
|
6006
|
+
"""地域
|
6004
6007
|
:rtype: str
|
6005
6008
|
"""
|
6006
6009
|
return self._InstanceRegion
|
@@ -6022,7 +6025,7 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
6022
6025
|
|
6023
6026
|
@property
|
6024
6027
|
def LogType(self):
|
6025
|
-
"""request
|
6028
|
+
"""request 代表采样日志,engine 代表引擎日志,console 代表用户打印日志
|
6026
6029
|
:rtype: str
|
6027
6030
|
"""
|
6028
6031
|
return self._LogType
|
@@ -6031,6 +6034,17 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
6031
6034
|
def LogType(self, LogType):
|
6032
6035
|
self._LogType = LogType
|
6033
6036
|
|
6037
|
+
@property
|
6038
|
+
def Offset(self):
|
6039
|
+
"""日志偏移量,不与Context 参数同时使用
|
6040
|
+
:rtype: int
|
6041
|
+
"""
|
6042
|
+
return self._Offset
|
6043
|
+
|
6044
|
+
@Offset.setter
|
6045
|
+
def Offset(self, Offset):
|
6046
|
+
self._Offset = Offset
|
6047
|
+
|
6034
6048
|
@property
|
6035
6049
|
def Limit(self):
|
6036
6050
|
"""返回日志条数,最大100
|
@@ -6109,6 +6123,7 @@ class DescribeSampleLogsRequest(AbstractModel):
|
|
6109
6123
|
self._InstanceRegion = params.get("InstanceRegion")
|
6110
6124
|
self._Instance = params.get("Instance")
|
6111
6125
|
self._LogType = params.get("LogType")
|
6126
|
+
self._Offset = params.get("Offset")
|
6112
6127
|
self._Limit = params.get("Limit")
|
6113
6128
|
if params.get("ReactionTimeRange") is not None:
|
6114
6129
|
self._ReactionTimeRange = ReactionTimeRange()
|
@@ -6222,11 +6237,14 @@ class DescribeSampleMatrixBatchQueryRequest(AbstractModel):
|
|
6222
6237
|
:type ScenarioId: str
|
6223
6238
|
:param _Queries: 查询语句
|
6224
6239
|
:type Queries: list of InternalMetricQuery
|
6240
|
+
:param _MaxPoint: 最多返回的数据点个数
|
6241
|
+
:type MaxPoint: int
|
6225
6242
|
"""
|
6226
6243
|
self._JobId = None
|
6227
6244
|
self._ProjectId = None
|
6228
6245
|
self._ScenarioId = None
|
6229
6246
|
self._Queries = None
|
6247
|
+
self._MaxPoint = None
|
6230
6248
|
|
6231
6249
|
@property
|
6232
6250
|
def JobId(self):
|
@@ -6272,6 +6290,17 @@ class DescribeSampleMatrixBatchQueryRequest(AbstractModel):
|
|
6272
6290
|
def Queries(self, Queries):
|
6273
6291
|
self._Queries = Queries
|
6274
6292
|
|
6293
|
+
@property
|
6294
|
+
def MaxPoint(self):
|
6295
|
+
"""最多返回的数据点个数
|
6296
|
+
:rtype: int
|
6297
|
+
"""
|
6298
|
+
return self._MaxPoint
|
6299
|
+
|
6300
|
+
@MaxPoint.setter
|
6301
|
+
def MaxPoint(self, MaxPoint):
|
6302
|
+
self._MaxPoint = MaxPoint
|
6303
|
+
|
6275
6304
|
|
6276
6305
|
def _deserialize(self, params):
|
6277
6306
|
self._JobId = params.get("JobId")
|
@@ -6283,6 +6312,7 @@ class DescribeSampleMatrixBatchQueryRequest(AbstractModel):
|
|
6283
6312
|
obj = InternalMetricQuery()
|
6284
6313
|
obj._deserialize(item)
|
6285
6314
|
self._Queries.append(obj)
|
6315
|
+
self._MaxPoint = params.get("MaxPoint")
|
6286
6316
|
memeber_set = set(params.keys())
|
6287
6317
|
for name, value in vars(self).items():
|
6288
6318
|
property_name = name[1:]
|
@@ -6364,6 +6394,8 @@ class DescribeSampleMatrixQueryRequest(AbstractModel):
|
|
6364
6394
|
:type Filters: list of Filter
|
6365
6395
|
:param _GroupBy: 分组;取值范围参见 DescribeMetricLabelWithValues 接口返回的指标及其支持的标签名
|
6366
6396
|
:type GroupBy: list of str
|
6397
|
+
:param _MaxPoint: 返回的最大数据点个数
|
6398
|
+
:type MaxPoint: int
|
6367
6399
|
"""
|
6368
6400
|
self._JobId = None
|
6369
6401
|
self._ProjectId = None
|
@@ -6372,6 +6404,7 @@ class DescribeSampleMatrixQueryRequest(AbstractModel):
|
|
6372
6404
|
self._Aggregation = None
|
6373
6405
|
self._Filters = None
|
6374
6406
|
self._GroupBy = None
|
6407
|
+
self._MaxPoint = None
|
6375
6408
|
|
6376
6409
|
@property
|
6377
6410
|
def JobId(self):
|
@@ -6450,6 +6483,17 @@ class DescribeSampleMatrixQueryRequest(AbstractModel):
|
|
6450
6483
|
def GroupBy(self, GroupBy):
|
6451
6484
|
self._GroupBy = GroupBy
|
6452
6485
|
|
6486
|
+
@property
|
6487
|
+
def MaxPoint(self):
|
6488
|
+
"""返回的最大数据点个数
|
6489
|
+
:rtype: int
|
6490
|
+
"""
|
6491
|
+
return self._MaxPoint
|
6492
|
+
|
6493
|
+
@MaxPoint.setter
|
6494
|
+
def MaxPoint(self, MaxPoint):
|
6495
|
+
self._MaxPoint = MaxPoint
|
6496
|
+
|
6453
6497
|
|
6454
6498
|
def _deserialize(self, params):
|
6455
6499
|
self._JobId = params.get("JobId")
|
@@ -6464,6 +6508,7 @@ class DescribeSampleMatrixQueryRequest(AbstractModel):
|
|
6464
6508
|
obj._deserialize(item)
|
6465
6509
|
self._Filters.append(obj)
|
6466
6510
|
self._GroupBy = params.get("GroupBy")
|
6511
|
+
self._MaxPoint = params.get("MaxPoint")
|
6467
6512
|
memeber_set = set(params.keys())
|
6468
6513
|
for name, value in vars(self).items():
|
6469
6514
|
property_name = name[1:]
|
@@ -11671,6 +11716,9 @@ class ScriptInfo(AbstractModel):
|
|
11671
11716
|
:type LoadWeight: int
|
11672
11717
|
:param _FileId: 文件 ID
|
11673
11718
|
:type FileId: str
|
11719
|
+
:param _Uploaded: 文件是否已上传,如果已上传,则可以不必填写 EncodedContent,EncodedHar 等内容。
|
11720
|
+
主要用于较大长度脚本上传。
|
11721
|
+
:type Uploaded: bool
|
11674
11722
|
"""
|
11675
11723
|
self._Name = None
|
11676
11724
|
self._Size = None
|
@@ -11680,6 +11728,7 @@ class ScriptInfo(AbstractModel):
|
|
11680
11728
|
self._EncodedHttpArchive = None
|
11681
11729
|
self._LoadWeight = None
|
11682
11730
|
self._FileId = None
|
11731
|
+
self._Uploaded = None
|
11683
11732
|
|
11684
11733
|
@property
|
11685
11734
|
def Name(self):
|
@@ -11770,6 +11819,18 @@ class ScriptInfo(AbstractModel):
|
|
11770
11819
|
def FileId(self, FileId):
|
11771
11820
|
self._FileId = FileId
|
11772
11821
|
|
11822
|
+
@property
|
11823
|
+
def Uploaded(self):
|
11824
|
+
"""文件是否已上传,如果已上传,则可以不必填写 EncodedContent,EncodedHar 等内容。
|
11825
|
+
主要用于较大长度脚本上传。
|
11826
|
+
:rtype: bool
|
11827
|
+
"""
|
11828
|
+
return self._Uploaded
|
11829
|
+
|
11830
|
+
@Uploaded.setter
|
11831
|
+
def Uploaded(self, Uploaded):
|
11832
|
+
self._Uploaded = Uploaded
|
11833
|
+
|
11773
11834
|
|
11774
11835
|
def _deserialize(self, params):
|
11775
11836
|
self._Name = params.get("Name")
|
@@ -11780,6 +11841,7 @@ class ScriptInfo(AbstractModel):
|
|
11780
11841
|
self._EncodedHttpArchive = params.get("EncodedHttpArchive")
|
11781
11842
|
self._LoadWeight = params.get("LoadWeight")
|
11782
11843
|
self._FileId = params.get("FileId")
|
11844
|
+
self._Uploaded = params.get("Uploaded")
|
11783
11845
|
memeber_set = set(params.keys())
|
11784
11846
|
for name, value in vars(self).items():
|
11785
11847
|
property_name = name[1:]
|