action_for_product 方法
命名空间和模块:tencent.cloud.core.client.UniversalClient
简要
调用给定 Tencent Cloud 产品的指定 Tencent Cloud API 并获得结果。
与方法 action
或 action_async
不同,该方法提供对多个 Tencent Cloud 产品的 Tencent Cloud API 混合调用的能力。例如我们可以在适用于 Cloud Virtual Machine 产品的通用产品客户端中调用适用于 Serverless Cloud Function 产品的 Tencent Cloud API,而不局限于当前客户端所绑定的 Tencent Cloud 产品 ID 的限制,我们将该高级特性称之为对 Tencent Cloud 产品的混合调用。
参数
该方法具有以下参数,其参数、参数类型和参数描述如下:
参数
类型
必选
描述
product_id
str
是
Tencent Cloud 产品唯一标识符。
例如:cvm
region_id
str
是
数据中心园区的可用区唯一标识符。
例如:ap-shanghai-1
action_id
str
是
Tencent Cloud API 唯一标识符。
例如:DescribeZones
action_parameters
dict
否
包含 Tencent Cloud API 参数和参数值的字典实例。
对于没有参数的 Tencent Cloud API,该参数应该被设置为 None
。
action_version
str
是
Tencent Cloud API 版本名称。
例如:2017-03-12
action_endpoint
str
否
Tencent Cloud API 端点主机名。
例如:cvm.tencentcloudapi.com
返回值
该方法返回包含给定 Tencent Cloud API 响应结构的字典实例。
异常
该方法可能会主动引发以下异常类型:
ValueError
参数值或类型不符合预期。
RequestError
Tencent Cloud SDK for Python 请求给定 Tencent Cloud API 时出错,这可能是由于网络原因所引起的。
ResponseError
Tencent Cloud SDK for Python 解析给定 Tencent Cloud API 响应内容结构时出错,这可能是由于响应内容不符合预期所引起的(例如使用非 Tencent Cloud API v3 版本)。
ActionError
给定 Tencent Cloud API 遇到错误,这可能是由于访问凭据无效、参数值或类型不符合预期等引起。
示例
接下来我们将通过一段 Python 代码向您演示如何使用该方法:
您或许已经注意到,我们已在适用于 Cloud Virtual Machine 产品的通用产品客户端中调用 Serverless Cloud Function 产品提供的 Tencent Cloud API。
适用于
Tencent Cloud SDK for Python
基础软件包:tencent-cloud-sdk-core >= 0.1.3
最后更新于