antchain-bot 1.12.26__py3-none-any.whl → 1.12.27__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.
- {antchain_bot-1.12.26.dist-info → antchain_bot-1.12.27.dist-info}/METADATA +1 -1
- antchain_bot-1.12.27.dist-info/RECORD +8 -0
- antchain_sdk_bot/__init__.py +1 -1
- antchain_sdk_bot/client.py +2 -2
- antchain_sdk_bot/models.py +7 -0
- antchain_bot-1.12.26.dist-info/RECORD +0 -8
- {antchain_bot-1.12.26.dist-info → antchain_bot-1.12.27.dist-info}/LICENSE +0 -0
- {antchain_bot-1.12.26.dist-info → antchain_bot-1.12.27.dist-info}/WHEEL +0 -0
- {antchain_bot-1.12.26.dist-info → antchain_bot-1.12.27.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
antchain_sdk_bot/__init__.py,sha256=TE0cZ0YffcEk9XmGUHt6p6NpNsbhrDoqOFEhmEd6gqw,23
|
|
2
|
+
antchain_sdk_bot/client.py,sha256=OwhjBAqAhqmddQxl9-ZJ2OsoLQCZmFgxHGWeQRoqOXI,635194
|
|
3
|
+
antchain_sdk_bot/models.py,sha256=2kiavQT4sbGRWtCRRg1sVNqZtpnNbbzGn5pXFETqB3g,1642723
|
|
4
|
+
antchain_bot-1.12.27.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
antchain_bot-1.12.27.dist-info/METADATA,sha256=r4vgD-65HvlgqRqE5YNdDRvQh8NioSmXGynqMPFSvIw,1989
|
|
6
|
+
antchain_bot-1.12.27.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
+
antchain_bot-1.12.27.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
+
antchain_bot-1.12.27.dist-info/RECORD,,
|
antchain_sdk_bot/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.12.
|
|
1
|
+
__version__ = '1.12.27'
|
antchain_sdk_bot/client.py
CHANGED
|
@@ -135,7 +135,7 @@ class Client:
|
|
|
135
135
|
'req_msg_id': AntchainUtils.get_nonce(),
|
|
136
136
|
'access_key': self._access_key_id,
|
|
137
137
|
'base_sdk_version': 'TeaSDK-2.0',
|
|
138
|
-
'sdk_version': '1.12.
|
|
138
|
+
'sdk_version': '1.12.27',
|
|
139
139
|
'_prod_code': 'BOT',
|
|
140
140
|
'_prod_channel': 'undefined'
|
|
141
141
|
}
|
|
@@ -239,7 +239,7 @@ class Client:
|
|
|
239
239
|
'req_msg_id': AntchainUtils.get_nonce(),
|
|
240
240
|
'access_key': self._access_key_id,
|
|
241
241
|
'base_sdk_version': 'TeaSDK-2.0',
|
|
242
|
-
'sdk_version': '1.12.
|
|
242
|
+
'sdk_version': '1.12.27',
|
|
243
243
|
'_prod_code': 'BOT',
|
|
244
244
|
'_prod_channel': 'undefined'
|
|
245
245
|
}
|
antchain_sdk_bot/models.py
CHANGED
|
@@ -9255,6 +9255,7 @@ class OnlinePressureTestTask(TeaModel):
|
|
|
9255
9255
|
project_id: str = None,
|
|
9256
9256
|
pt_task_id: str = None,
|
|
9257
9257
|
failure_reason: str = None,
|
|
9258
|
+
extra_info: str = None,
|
|
9258
9259
|
):
|
|
9259
9260
|
# DATE
|
|
9260
9261
|
self.gmt_create = gmt_create
|
|
@@ -9289,6 +9290,8 @@ class OnlinePressureTestTask(TeaModel):
|
|
|
9289
9290
|
self.pt_task_id = pt_task_id
|
|
9290
9291
|
# 压测不通过的原因
|
|
9291
9292
|
self.failure_reason = failure_reason
|
|
9293
|
+
# 拓展信息
|
|
9294
|
+
self.extra_info = extra_info
|
|
9292
9295
|
|
|
9293
9296
|
def validate(self):
|
|
9294
9297
|
if self.gmt_create is not None:
|
|
@@ -9338,6 +9341,8 @@ class OnlinePressureTestTask(TeaModel):
|
|
|
9338
9341
|
result['pt_task_id'] = self.pt_task_id
|
|
9339
9342
|
if self.failure_reason is not None:
|
|
9340
9343
|
result['failure_reason'] = self.failure_reason
|
|
9344
|
+
if self.extra_info is not None:
|
|
9345
|
+
result['extra_info'] = self.extra_info
|
|
9341
9346
|
return result
|
|
9342
9347
|
|
|
9343
9348
|
def from_map(self, m: dict = None):
|
|
@@ -9366,6 +9371,8 @@ class OnlinePressureTestTask(TeaModel):
|
|
|
9366
9371
|
self.pt_task_id = m.get('pt_task_id')
|
|
9367
9372
|
if m.get('failure_reason') is not None:
|
|
9368
9373
|
self.failure_reason = m.get('failure_reason')
|
|
9374
|
+
if m.get('extra_info') is not None:
|
|
9375
|
+
self.extra_info = m.get('extra_info')
|
|
9369
9376
|
return self
|
|
9370
9377
|
|
|
9371
9378
|
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
antchain_sdk_bot/__init__.py,sha256=8T51yS61QWS2MTc-tYzn8V5_JvI-ilQNopAXV34dbxE,23
|
|
2
|
-
antchain_sdk_bot/client.py,sha256=e2JmZfS_HfLRj8zU07UvELV5PGTDB4C6RyoPFXNGVsY,635194
|
|
3
|
-
antchain_sdk_bot/models.py,sha256=Z_ZNdwEpcb63f1g-BMZtQ4W7WoVp2kPFSZNJA5E9pJk,1642446
|
|
4
|
-
antchain_bot-1.12.26.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
antchain_bot-1.12.26.dist-info/METADATA,sha256=n8jkZ_wPA9v0W6e72Qqi1vWREJowml4YvOE42ZKO6gU,1989
|
|
6
|
-
antchain_bot-1.12.26.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
-
antchain_bot-1.12.26.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
-
antchain_bot-1.12.26.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|