tencentcloud-sdk-python 3.0.1456__py2.py3-none-any.whl → 3.0.1457__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1456'
17
+ __version__ = '3.0.1457'
@@ -4640,12 +4640,16 @@ class ContainerWorkLoadInfo(AbstractModel):
4640
4640
 
4641
4641
  def __init__(self):
4642
4642
  r"""
4643
- :param _Kind: 工作负载的类型,支持
4644
- - deployment
4645
- - statefulset
4646
- - daemonset
4647
- - job
4648
- - cronjob
4643
+ :param _Kind: 工作负载的类型,支持的取值如下:
4644
+ - deployment:无状态应用部署控制器。可管理无状态应用的多副本 Pod;支持滚动更新和回滚,实现无缝发布;通过 ReplicaSet 确保指定数量的 Pod 副本持续运行。适合 Web 服务、API 服务、微服务等不需要持久化存储或唯一标识的应用。
4645
+
4646
+ - statefulset:用于管理有状态应用的控制器。可以为每个 Pod 提供稳定的、唯一的标识(有序的主机名和网络标识);能提供稳定的持久化存储(PVC 随 Pod 的迁移而保留);Pod 的创建、扩展、删除和更新都遵循确定的顺序。适合数据库(MySQL、MongoDB)、消息队列(Kafka、RabbitMQ)、集群应用等需要稳定网络标识和持久化存储的应用。
4647
+
4648
+ - daemonset:确保所有(或特定)节点上都运行一个 Pod 副本的控制器。会在每个符合条件的 Node 上自动部署并运行一个 Pod;当新节点加入集群时,会自动在新节点上创建 Pod;适合运行节点级别的后台任务或服务,例如日志收集(Fluentd、Filebeat)、节点监控(Node Exporter)、网络插件(Calico、Weave Net)等场景。
4649
+
4650
+ - job:用于运行一次性任务的控制器。可创建一个或多个 Pod 来执行任务,直到成功完成;当任务完成后,Pod 不会重启(除非配置了重启策略);可以指定任务的并行度和重试次数。适合数据处理、批量任务、数据库迁移、离线计算等一次性执行完成后就退出的任务。
4651
+
4652
+ - cronjob:基于时间调度的 Job 控制器。类似于 Linux 的 cron,按照预定的时间表周期性地创建并运行 Job。每个调度周期都会创建一个新的 Job 来执行任务。适合定期备份、发送报告、数据清理、定时同步等需要周期性执行的任务。
4649
4653
  :type Kind: str
4650
4654
  :param _Name: 工作负载的名称
4651
4655
  :type Name: str
@@ -4661,12 +4665,16 @@ class ContainerWorkLoadInfo(AbstractModel):
4661
4665
 
4662
4666
  @property
4663
4667
  def Kind(self):
4664
- """工作负载的类型,支持
4665
- - deployment
4666
- - statefulset
4667
- - daemonset
4668
- - job
4669
- - cronjob
4668
+ """工作负载的类型,支持的取值如下:
4669
+ - deployment:无状态应用部署控制器。可管理无状态应用的多副本 Pod;支持滚动更新和回滚,实现无缝发布;通过 ReplicaSet 确保指定数量的 Pod 副本持续运行。适合 Web 服务、API 服务、微服务等不需要持久化存储或唯一标识的应用。
4670
+
4671
+ - statefulset:用于管理有状态应用的控制器。可以为每个 Pod 提供稳定的、唯一的标识(有序的主机名和网络标识);能提供稳定的持久化存储(PVC 随 Pod 的迁移而保留);Pod 的创建、扩展、删除和更新都遵循确定的顺序。适合数据库(MySQL、MongoDB)、消息队列(Kafka、RabbitMQ)、集群应用等需要稳定网络标识和持久化存储的应用。
4672
+
4673
+ - daemonset:确保所有(或特定)节点上都运行一个 Pod 副本的控制器。会在每个符合条件的 Node 上自动部署并运行一个 Pod;当新节点加入集群时,会自动在新节点上创建 Pod;适合运行节点级别的后台任务或服务,例如日志收集(Fluentd、Filebeat)、节点监控(Node Exporter)、网络插件(Calico、Weave Net)等场景。
4674
+
4675
+ - job:用于运行一次性任务的控制器。可创建一个或多个 Pod 来执行任务,直到成功完成;当任务完成后,Pod 不会重启(除非配置了重启策略);可以指定任务的并行度和重试次数。适合数据处理、批量任务、数据库迁移、离线计算等一次性执行完成后就退出的任务。
4676
+
4677
+ - cronjob:基于时间调度的 Job 控制器。类似于 Linux 的 cron,按照预定的时间表周期性地创建并运行 Job。每个调度周期都会创建一个新的 Job 来执行任务。适合定期备份、发送报告、数据清理、定时同步等需要周期性执行的任务。
4670
4678
  :rtype: str
4671
4679
  """
4672
4680
  return self._Kind
@@ -8122,6 +8122,10 @@ class IntentionVerifyData(AbstractModel):
8122
8122
  :param _AsrResultSimilarity: 本次流程用户语音与传入文本比对的相似度分值,取值范围 [0.00, 100.00]。只有配置了相似度阈值后才进行语音校验并返回相似度分值。
8123
8123
  注意:此字段可能返回 null,表示取不到有效值。
8124
8124
  :type AsrResultSimilarity: str
8125
+ :param _IntentionVerifyAudio: 意愿确认环节中录制的音频(base64)。
8126
+ - 若不存在则为空字符串。
8127
+ 注意:此字段可能返回 null,表示取不到有效值。
8128
+ :type IntentionVerifyAudio: str
8125
8129
  """
8126
8130
  self._IntentionVerifyVideo = None
8127
8131
  self._AsrResult = None
@@ -8129,6 +8133,7 @@ class IntentionVerifyData(AbstractModel):
8129
8133
  self._ErrorMessage = None
8130
8134
  self._IntentionVerifyBestFrame = None
8131
8135
  self._AsrResultSimilarity = None
8136
+ self._IntentionVerifyAudio = None
8132
8137
 
8133
8138
  @property
8134
8139
  def IntentionVerifyVideo(self):
@@ -8210,6 +8215,19 @@ class IntentionVerifyData(AbstractModel):
8210
8215
 
8211
8216
  self._AsrResultSimilarity = AsrResultSimilarity
8212
8217
 
8218
+ @property
8219
+ def IntentionVerifyAudio(self):
8220
+ """意愿确认环节中录制的音频(base64)。
8221
+ - 若不存在则为空字符串。
8222
+ 注意:此字段可能返回 null,表示取不到有效值。
8223
+ :rtype: str
8224
+ """
8225
+ return self._IntentionVerifyAudio
8226
+
8227
+ @IntentionVerifyAudio.setter
8228
+ def IntentionVerifyAudio(self, IntentionVerifyAudio):
8229
+ self._IntentionVerifyAudio = IntentionVerifyAudio
8230
+
8213
8231
 
8214
8232
  def _deserialize(self, params):
8215
8233
  self._IntentionVerifyVideo = params.get("IntentionVerifyVideo")
@@ -8218,6 +8236,7 @@ class IntentionVerifyData(AbstractModel):
8218
8236
  self._ErrorMessage = params.get("ErrorMessage")
8219
8237
  self._IntentionVerifyBestFrame = params.get("IntentionVerifyBestFrame")
8220
8238
  self._AsrResultSimilarity = params.get("AsrResultSimilarity")
8239
+ self._IntentionVerifyAudio = params.get("IntentionVerifyAudio")
8221
8240
  memeber_set = set(params.keys())
8222
8241
  for name, value in vars(self).items():
8223
8242
  property_name = name[1:]
@@ -164,6 +164,52 @@ class IoaClient(AbstractClient):
164
164
  raise TencentCloudSDKException(type(e).__name__, str(e))
165
165
 
166
166
 
167
+ def DescribeAggrSoftDetail(self, request):
168
+ """聚合的软件详情
169
+
170
+ :param request: Request instance for DescribeAggrSoftDetail.
171
+ :type request: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDetailRequest`
172
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDetailResponse`
173
+
174
+ """
175
+ try:
176
+ params = request._serialize()
177
+ headers = request.headers
178
+ body = self.call("DescribeAggrSoftDetail", params, headers=headers)
179
+ response = json.loads(body)
180
+ model = models.DescribeAggrSoftDetailResponse()
181
+ model._deserialize(response["Response"])
182
+ return model
183
+ except Exception as e:
184
+ if isinstance(e, TencentCloudSDKException):
185
+ raise
186
+ else:
187
+ raise TencentCloudSDKException(type(e).__name__, str(e))
188
+
189
+
190
+ def DescribeAggrSoftDeviceList(self, request):
191
+ """聚合软件的已安装终端列表
192
+
193
+ :param request: Request instance for DescribeAggrSoftDeviceList.
194
+ :type request: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDeviceListRequest`
195
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeAggrSoftDeviceListResponse`
196
+
197
+ """
198
+ try:
199
+ params = request._serialize()
200
+ headers = request.headers
201
+ body = self.call("DescribeAggrSoftDeviceList", params, headers=headers)
202
+ response = json.loads(body)
203
+ model = models.DescribeAggrSoftDeviceListResponse()
204
+ model._deserialize(response["Response"])
205
+ return model
206
+ except Exception as e:
207
+ if isinstance(e, TencentCloudSDKException):
208
+ raise
209
+ else:
210
+ raise TencentCloudSDKException(type(e).__name__, str(e))
211
+
212
+
167
213
  def DescribeDLPFileDetectResult(self, request):
168
214
  """webservice查询文件检测结果
169
215
 
@@ -210,6 +256,29 @@ class IoaClient(AbstractClient):
210
256
  raise TencentCloudSDKException(type(e).__name__, str(e))
211
257
 
212
258
 
259
+ def DescribeDeviceDetailList(self, request):
260
+ """基于软件查看终端详情列表,私有化调用path为:capi/Software/DescribeDeviceDetailList
261
+
262
+ :param request: Request instance for DescribeDeviceDetailList.
263
+ :type request: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceDetailListRequest`
264
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceDetailListResponse`
265
+
266
+ """
267
+ try:
268
+ params = request._serialize()
269
+ headers = request.headers
270
+ body = self.call("DescribeDeviceDetailList", params, headers=headers)
271
+ response = json.loads(body)
272
+ model = models.DescribeDeviceDetailListResponse()
273
+ model._deserialize(response["Response"])
274
+ return model
275
+ except Exception as e:
276
+ if isinstance(e, TencentCloudSDKException):
277
+ raise
278
+ else:
279
+ raise TencentCloudSDKException(type(e).__name__, str(e))
280
+
281
+
213
282
  def DescribeDeviceHardwareInfoList(self, request):
214
283
  """查询满足条件的查询终端硬件信息列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceHardwareInfoList
215
284
 
@@ -417,6 +486,29 @@ class IoaClient(AbstractClient):
417
486
  raise TencentCloudSDKException(type(e).__name__, str(e))
418
487
 
419
488
 
489
+ def ExportSoftwareInformationList(self, request):
490
+ """导出基于指定终端查看软件信息详情列表查询,私有化调用path为:capi/Software/ExportSoftwareInformationList
491
+
492
+ :param request: Request instance for ExportSoftwareInformationList.
493
+ :type request: :class:`tencentcloud.ioa.v20220601.models.ExportSoftwareInformationListRequest`
494
+ :rtype: :class:`tencentcloud.ioa.v20220601.models.ExportSoftwareInformationListResponse`
495
+
496
+ """
497
+ try:
498
+ params = request._serialize()
499
+ headers = request.headers
500
+ body = self.call("ExportSoftwareInformationList", params, headers=headers)
501
+ response = json.loads(body)
502
+ model = models.ExportSoftwareInformationListResponse()
503
+ model._deserialize(response["Response"])
504
+ return model
505
+ except Exception as e:
506
+ if isinstance(e, TencentCloudSDKException):
507
+ raise
508
+ else:
509
+ raise TencentCloudSDKException(type(e).__name__, str(e))
510
+
511
+
420
512
  def ModifyVirtualDeviceGroups(self, request):
421
513
  """终端自定义分组增减终端,私有化调用path为:/capi/Assets/Device/ModifyVirtualDeviceGroups
422
514