tencentcloud-sdk-python 3.0.1367__py2.py3-none-any.whl → 3.0.1369__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.
Files changed (36) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -1
  3. tencentcloud/autoscaling/v20180419/models.py +198 -102
  4. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  5. tencentcloud/cbs/v20170312/models.py +41 -44
  6. tencentcloud/ccc/v20200210/models.py +15 -0
  7. tencentcloud/cdn/v20180606/cdn_client.py +45 -15
  8. tencentcloud/cfs/v20190719/models.py +15 -0
  9. tencentcloud/cvm/v20170312/cvm_client.py +1 -1
  10. tencentcloud/cvm/v20170312/errorcodes.py +1 -1
  11. tencentcloud/cvm/v20170312/models.py +83 -40
  12. tencentcloud/domain/v20180808/domain_client.py +4 -2
  13. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  14. tencentcloud/domain/v20180808/models.py +254 -124
  15. tencentcloud/ioa/v20220601/models.py +19 -4
  16. tencentcloud/iotexplorer/v20190423/models.py +94 -4
  17. tencentcloud/iotvideoindustry/v20201201/models.py +15 -0
  18. tencentcloud/lcic/v20220817/errorcodes.py +1 -1
  19. tencentcloud/lke/v20231130/models.py +10 -2
  20. tencentcloud/mps/v20190612/models.py +2 -2
  21. tencentcloud/ocr/v20181119/models.py +23 -2
  22. tencentcloud/redis/v20180412/models.py +159 -6
  23. tencentcloud/tat/v20201028/errorcodes.py +6 -0
  24. tencentcloud/tat/v20201028/models.py +78 -32
  25. tencentcloud/tcss/v20201101/models.py +45 -0
  26. tencentcloud/teo/v20220901/models.py +35 -10
  27. tencentcloud/trtc/v20190722/models.py +2 -2
  28. tencentcloud/vod/v20180717/models.py +6 -6
  29. tencentcloud/vpc/v20170312/models.py +30 -74
  30. tencentcloud/wedata/v20210820/models.py +322 -0
  31. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  32. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/METADATA +1 -1
  33. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/RECORD +36 -36
  34. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/LICENSE +0 -0
  35. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/WHEEL +0 -0
  36. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/top_level.txt +0 -0
@@ -43177,23 +43177,31 @@ class UpstreamURLRewriteParameters(AbstractModel):
43177
43177
 
43178
43178
  def __init__(self):
43179
43179
  r"""
43180
- :param _Type: 回源 URL 重写类型,仅支持填写 Path。
43180
+ :param _Type: 回源 URL 重写类型。仅支持填写 Path。
43181
43181
  :type Type: str
43182
43182
  :param _Action: 回源 URL 重写动作。取值有:
43183
- <li>replace:替换路径前缀;</li>
43184
- <li>addPrefix:增加路径前缀;</li>
43185
- <li>rmvPrefix:移除路径前缀。</li>
43183
+ <li><b>replace</b>:指替换完整路径。用于将完整的请求 URL Path 替换为指定路径。
43184
+ </li>
43185
+ <li><b>addPrefix</b>:指增加路径前缀。用于增加指定路径前缀至请求 URL Path。
43186
+ </li>
43187
+ <li><b>rmvPrefix</b>:指移除路径前缀。用于移除请求 URL Path 的指定路径前缀。
43188
+ </li>
43189
+ <li><b>regexReplace</b>:指正则替换完整路径。用于通过 Google RE2 正则表达式匹配和替换完整路径。
43190
+ </li>
43186
43191
  :type Action: str
43187
- :param _Value: 回源 URL 重写值,最大长度 1024,必须以 / 开头。<br>注意:当 Action 为 addPrefix 时,不能以 / 结尾;当 Action 为 rmvPrefix 时,不能存在 *。
43192
+ :param _Value: 回源 URL 重写值。需要满足 URL Path 规范,且保证重写后的 Path 以 / 开头,以防止回源 URL 的 Host 被修改,长度范围为 1~1024。当 Action 为 addPrefix 时,不能以 / 结尾;当 Action 为 rmvPrefix 时,不能存在 *;当 Action 为 regexReplace 时,支持用 $NUM 引用正则捕获组,其中 NUM 代表组编号,如 $1,最多支持 $9。
43188
43193
  :type Value: str
43194
+ :param _Regex: 回源 URL 重写用于正则替换匹配完整路径的正则表达式。需要满足 Google RE2 规范,长度范围为 1~1024。当 Action 为 regexReplace 时,此字段必填,否则无需填写此字段。
43195
+ :type Regex: str
43189
43196
  """
43190
43197
  self._Type = None
43191
43198
  self._Action = None
43192
43199
  self._Value = None
43200
+ self._Regex = None
43193
43201
 
43194
43202
  @property
43195
43203
  def Type(self):
43196
- """回源 URL 重写类型,仅支持填写 Path。
43204
+ """回源 URL 重写类型。仅支持填写 Path。
43197
43205
  :rtype: str
43198
43206
  """
43199
43207
  return self._Type
@@ -43205,9 +43213,14 @@ class UpstreamURLRewriteParameters(AbstractModel):
43205
43213
  @property
43206
43214
  def Action(self):
43207
43215
  """回源 URL 重写动作。取值有:
43208
- <li>replace:替换路径前缀;</li>
43209
- <li>addPrefix:增加路径前缀;</li>
43210
- <li>rmvPrefix:移除路径前缀。</li>
43216
+ <li><b>replace</b>:指替换完整路径。用于将完整的请求 URL Path 替换为指定路径。
43217
+ </li>
43218
+ <li><b>addPrefix</b>:指增加路径前缀。用于增加指定路径前缀至请求 URL Path。
43219
+ </li>
43220
+ <li><b>rmvPrefix</b>:指移除路径前缀。用于移除请求 URL Path 的指定路径前缀。
43221
+ </li>
43222
+ <li><b>regexReplace</b>:指正则替换完整路径。用于通过 Google RE2 正则表达式匹配和替换完整路径。
43223
+ </li>
43211
43224
  :rtype: str
43212
43225
  """
43213
43226
  return self._Action
@@ -43218,7 +43231,7 @@ class UpstreamURLRewriteParameters(AbstractModel):
43218
43231
 
43219
43232
  @property
43220
43233
  def Value(self):
43221
- """回源 URL 重写值,最大长度 1024,必须以 / 开头。<br>注意:当 Action 为 addPrefix 时,不能以 / 结尾;当 Action 为 rmvPrefix 时,不能存在 *。
43234
+ """回源 URL 重写值。需要满足 URL Path 规范,且保证重写后的 Path 以 / 开头,以防止回源 URL 的 Host 被修改,长度范围为 1~1024。当 Action 为 addPrefix 时,不能以 / 结尾;当 Action 为 rmvPrefix 时,不能存在 *;当 Action 为 regexReplace 时,支持用 $NUM 引用正则捕获组,其中 NUM 代表组编号,如 $1,最多支持 $9。
43222
43235
  :rtype: str
43223
43236
  """
43224
43237
  return self._Value
@@ -43227,11 +43240,23 @@ class UpstreamURLRewriteParameters(AbstractModel):
43227
43240
  def Value(self, Value):
43228
43241
  self._Value = Value
43229
43242
 
43243
+ @property
43244
+ def Regex(self):
43245
+ """回源 URL 重写用于正则替换匹配完整路径的正则表达式。需要满足 Google RE2 规范,长度范围为 1~1024。当 Action 为 regexReplace 时,此字段必填,否则无需填写此字段。
43246
+ :rtype: str
43247
+ """
43248
+ return self._Regex
43249
+
43250
+ @Regex.setter
43251
+ def Regex(self, Regex):
43252
+ self._Regex = Regex
43253
+
43230
43254
 
43231
43255
  def _deserialize(self, params):
43232
43256
  self._Type = params.get("Type")
43233
43257
  self._Action = params.get("Action")
43234
43258
  self._Value = params.get("Value")
43259
+ self._Regex = params.get("Regex")
43235
43260
  memeber_set = set(params.keys())
43236
43261
  for name, value in vars(self).items():
43237
43262
  property_name = name[1:]
@@ -11606,7 +11606,7 @@ class StartAIConversationRequest(AbstractModel):
11606
11606
  :param _STTConfig: 语音识别配置。
11607
11607
  :type STTConfig: :class:`tencentcloud.trtc.v20190722.models.STTConfig`
11608
11608
  :param _LLMConfig: LLM配置。需符合openai规范,为JSON字符串,示例如下:
11609
- <pre> { <br> &emsp; "LLMType": “大模型类型" // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
11609
+ <pre> { <br> &emsp; "LLMType": "大模型类型", // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
11610
11610
 
11611
11611
  :type LLMConfig: str
11612
11612
  :param _TTSConfig: TTS配置,为JSON字符串,腾讯云TTS示例如下: <pre>{ <br> &emsp; "AppId": 您的应用ID, // Integer 必填<br> &emsp; "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br> &emsp; "SecretId": "您的密钥ID", // String 必填<br> &emsp; "SecretKey": "您的密钥Key", // String 必填<br> &emsp; "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href="https://cloud.tencent.com/document/product/1073/34112">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href="https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823">语音合成音色列表</a>。<br> &emsp; "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href="https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz">语速转换</a><br> &emsp; "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br> &emsp; "EmotionCategory": "angry", // String 非必填 控制合成音频的情感,仅支持多情感音色使用。取值: neutral(中性)、sad(悲伤)、happy(高兴)、angry(生气)、fear(恐惧)、news(新闻)、story(故事)、radio(广播)、poetry(诗歌)、call(客服)、sajiao(撒娇)、disgusted(厌恶)、amaze(震惊)、peaceful(平静)、exciting(兴奋)、aojiao(傲娇)、jieshuo(解说)。<br> &emsp; "EmotionIntensity": 150 // Integer 非必填 控制合成音频情感程度,取值范围为 [50,200],默认为 100;只有 EmotionCategory 不为空时生效。<br> &emsp; }</pre>
@@ -11696,7 +11696,7 @@ class StartAIConversationRequest(AbstractModel):
11696
11696
  @property
11697
11697
  def LLMConfig(self):
11698
11698
  """LLM配置。需符合openai规范,为JSON字符串,示例如下:
11699
- <pre> { <br> &emsp; "LLMType": “大模型类型" // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
11699
+ <pre> { <br> &emsp; "LLMType": "大模型类型", // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
11700
11700
 
11701
11701
  :rtype: str
11702
11702
  """
@@ -27116,9 +27116,9 @@ class DescribeEventConfigResponse(AbstractModel):
27116
27116
 
27117
27117
  def __init__(self):
27118
27118
  r"""
27119
- :param _Mode: 接收事件通知的方式。"PUSH" 为 [HTTP 回调通知](https://cloud.tencent.com/document/product/266/7829#http.E5.9B.9E.E8.B0.83),"PULL" 为 [基于消息队列的可靠通知](https://cloud.tencent.com/document/product/266/7829#.E5.9F.BA.E4.BA.8E.E6.B6.88.E6.81.AF.E9.98.9F.E5.88.97.E7.9A.84.E5.8F.AF.E9.9D.A0.E9.80.9A.E7.9F.A5)。
27119
+ :param _Mode: 接收事件通知的方式。"PUSH" 为 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83),"PULL" 为 [可靠回调](https://cloud.tencent.com/document/product/266/33779#.E5.8F.AF.E9.9D.A0.E5.9B.9E.E8.B0.83)。
27120
27120
  :type Mode: str
27121
- :param _NotificationUrl: 采用 [HTTP 回调通知](https://cloud.tencent.com/document/product/266/7829#http.E5.9B.9E.E8.B0.83) 接收方式时,用于接收 V3 版本事件通知的地址。
27121
+ :param _NotificationUrl: 采用 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83) 模式时,用于接收 V3 版本事件通知的地址。
27122
27122
  :type NotificationUrl: str
27123
27123
  :param _UploadMediaCompleteEventSwitch: 是否接收 [视频上传完成](https://cloud.tencent.com/document/product/266/7830) 事件通知,"OFF" 为忽略该事件通知,"ON" 为接收事件通知。
27124
27124
  :type UploadMediaCompleteEventSwitch: str
@@ -27138,7 +27138,7 @@ class DescribeEventConfigResponse(AbstractModel):
27138
27138
 
27139
27139
  @property
27140
27140
  def Mode(self):
27141
- """接收事件通知的方式。"PUSH" 为 [HTTP 回调通知](https://cloud.tencent.com/document/product/266/7829#http.E5.9B.9E.E8.B0.83),"PULL" 为 [基于消息队列的可靠通知](https://cloud.tencent.com/document/product/266/7829#.E5.9F.BA.E4.BA.8E.E6.B6.88.E6.81.AF.E9.98.9F.E5.88.97.E7.9A.84.E5.8F.AF.E9.9D.A0.E9.80.9A.E7.9F.A5)。
27141
+ """接收事件通知的方式。"PUSH" 为 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83),"PULL" 为 [可靠回调](https://cloud.tencent.com/document/product/266/33779#.E5.8F.AF.E9.9D.A0.E5.9B.9E.E8.B0.83)。
27142
27142
  :rtype: str
27143
27143
  """
27144
27144
  return self._Mode
@@ -27149,7 +27149,7 @@ class DescribeEventConfigResponse(AbstractModel):
27149
27149
 
27150
27150
  @property
27151
27151
  def NotificationUrl(self):
27152
- """采用 [HTTP 回调通知](https://cloud.tencent.com/document/product/266/7829#http.E5.9B.9E.E8.B0.83) 接收方式时,用于接收 V3 版本事件通知的地址。
27152
+ """采用 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83) 模式时,用于接收 V3 版本事件通知的地址。
27153
27153
  :rtype: str
27154
27154
  """
27155
27155
  return self._NotificationUrl
@@ -68474,7 +68474,7 @@ class SplitMediaTaskInput(AbstractModel):
68474
68474
  <li>当数值大于0时(假设为 n),表示转码后的视频持续到原始视频第 n 秒时终止;</li>
68475
68475
  <li>当数值小于0时(假设为 -n),表示转码后的视频持续到原始视频结束 n 秒前终止。</li>
68476
68476
  :type EndTimeOffset: float
68477
- :param _ProcedureName: [任务流模板](/document/product/266/11700#.E4.BB.BB.E5.8A.A1.E6.B5.81.E6.A8.A1.E6.9D.BF)名字,如果要对生成的新视频执行任务流时填写。
68477
+ :param _ProcedureName: [任务流](https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E6.B5.81)名称,如果要对生成的新视频执行任务流时填写。
68478
68478
  :type ProcedureName: str
68479
68479
  :param _OutputConfig: 视频拆条输出信息。
68480
68480
  :type OutputConfig: :class:`tencentcloud.vod.v20180717.models.SplitMediaOutputConfig`
@@ -68526,7 +68526,7 @@ class SplitMediaTaskInput(AbstractModel):
68526
68526
 
68527
68527
  @property
68528
68528
  def ProcedureName(self):
68529
- """[任务流模板](/document/product/266/11700#.E4.BB.BB.E5.8A.A1.E6.B5.81.E6.A8.A1.E6.9D.BF)名字,如果要对生成的新视频执行任务流时填写。
68529
+ """[任务流](https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E6.B5.81)名称,如果要对生成的新视频执行任务流时填写。
68530
68530
  :rtype: str
68531
68531
  """
68532
68532
  return self._ProcedureName
@@ -44367,11 +44367,39 @@ class ISPIPv6CidrBlock(AbstractModel):
44367
44367
 
44368
44368
  def __init__(self):
44369
44369
  r"""
44370
+ :param _IPv6CidrBlock: IPv6 CIdr Block
44371
+ :type IPv6CidrBlock: str
44372
+ :param _ISPType: 网络运营商类型 取值范围:'BGP'-默认, 'CMCC'-中国移动, 'CTCC'-中国电信, 'CUCC'-中国联调
44373
+ :type ISPType: str
44370
44374
  :param _AddressType: IPv6 Cidr 的类型:`GUA`(全球单播地址), `ULA`(唯一本地地址)
44371
44375
  :type AddressType: str
44372
44376
  """
44377
+ self._IPv6CidrBlock = None
44378
+ self._ISPType = None
44373
44379
  self._AddressType = None
44374
44380
 
44381
+ @property
44382
+ def IPv6CidrBlock(self):
44383
+ """IPv6 CIdr Block
44384
+ :rtype: str
44385
+ """
44386
+ return self._IPv6CidrBlock
44387
+
44388
+ @IPv6CidrBlock.setter
44389
+ def IPv6CidrBlock(self, IPv6CidrBlock):
44390
+ self._IPv6CidrBlock = IPv6CidrBlock
44391
+
44392
+ @property
44393
+ def ISPType(self):
44394
+ """网络运营商类型 取值范围:'BGP'-默认, 'CMCC'-中国移动, 'CTCC'-中国电信, 'CUCC'-中国联调
44395
+ :rtype: str
44396
+ """
44397
+ return self._ISPType
44398
+
44399
+ @ISPType.setter
44400
+ def ISPType(self, ISPType):
44401
+ self._ISPType = ISPType
44402
+
44375
44403
  @property
44376
44404
  def AddressType(self):
44377
44405
  """IPv6 Cidr 的类型:`GUA`(全球单播地址), `ULA`(唯一本地地址)
@@ -44385,6 +44413,8 @@ class ISPIPv6CidrBlock(AbstractModel):
44385
44413
 
44386
44414
 
44387
44415
  def _deserialize(self, params):
44416
+ self._IPv6CidrBlock = params.get("IPv6CidrBlock")
44417
+ self._ISPType = params.get("ISPType")
44388
44418
  self._AddressType = params.get("AddressType")
44389
44419
  memeber_set = set(params.keys())
44390
44420
  for name, value in vars(self).items():
@@ -46583,16 +46613,12 @@ class ItemPrice(AbstractModel):
46583
46613
  def __init__(self):
46584
46614
  r"""
46585
46615
  :param _UnitPrice: 按量计费后付费单价,单位:元。
46586
- 注意:此字段可能返回 null,表示取不到有效值。
46587
46616
  :type UnitPrice: float
46588
46617
  :param _ChargeUnit: 按量计费后付费计价单元,可取值范围: HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:实例按小时后付费(POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR): GB:表示计价单元是按每GB来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)。
46589
- 注意:此字段可能返回 null,表示取不到有效值。
46590
46618
  :type ChargeUnit: str
46591
46619
  :param _OriginalPrice: 预付费商品的原价,单位:元。
46592
- 注意:此字段可能返回 null,表示取不到有效值。
46593
46620
  :type OriginalPrice: float
46594
46621
  :param _DiscountPrice: 预付费商品的折扣价,单位:元。
46595
- 注意:此字段可能返回 null,表示取不到有效值。
46596
46622
  :type DiscountPrice: float
46597
46623
  """
46598
46624
  self._UnitPrice = None
@@ -46603,7 +46629,6 @@ class ItemPrice(AbstractModel):
46603
46629
  @property
46604
46630
  def UnitPrice(self):
46605
46631
  """按量计费后付费单价,单位:元。
46606
- 注意:此字段可能返回 null,表示取不到有效值。
46607
46632
  :rtype: float
46608
46633
  """
46609
46634
  return self._UnitPrice
@@ -46615,7 +46640,6 @@ class ItemPrice(AbstractModel):
46615
46640
  @property
46616
46641
  def ChargeUnit(self):
46617
46642
  """按量计费后付费计价单元,可取值范围: HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:实例按小时后付费(POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR): GB:表示计价单元是按每GB来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)。
46618
- 注意:此字段可能返回 null,表示取不到有效值。
46619
46643
  :rtype: str
46620
46644
  """
46621
46645
  return self._ChargeUnit
@@ -46627,7 +46651,6 @@ class ItemPrice(AbstractModel):
46627
46651
  @property
46628
46652
  def OriginalPrice(self):
46629
46653
  """预付费商品的原价,单位:元。
46630
- 注意:此字段可能返回 null,表示取不到有效值。
46631
46654
  :rtype: float
46632
46655
  """
46633
46656
  return self._OriginalPrice
@@ -46639,7 +46662,6 @@ class ItemPrice(AbstractModel):
46639
46662
  @property
46640
46663
  def DiscountPrice(self):
46641
46664
  """预付费商品的折扣价,单位:元。
46642
- 注意:此字段可能返回 null,表示取不到有效值。
46643
46665
  :rtype: float
46644
46666
  """
46645
46667
  return self._DiscountPrice
@@ -54594,36 +54616,26 @@ class NatGateway(AbstractModel):
54594
54616
  :param _Zone: NAT网关所在的可用区。
54595
54617
  :type Zone: str
54596
54618
  :param _DirectConnectGatewayIds: 绑定的专线网关ID。
54597
- 注意:此字段可能返回 null,表示取不到有效值。
54598
54619
  :type DirectConnectGatewayIds: list of str
54599
54620
  :param _SubnetId: 所属子网ID。
54600
- 注意:此字段可能返回 null,表示取不到有效值。
54601
54621
  :type SubnetId: str
54602
54622
  :param _TagSet: 标签键值对。
54603
54623
  :type TagSet: list of Tag
54604
54624
  :param _SecurityGroupSet: NAT网关绑定的安全组列表
54605
- 注意:此字段可能返回 null,表示取不到有效值。
54606
54625
  :type SecurityGroupSet: list of str
54607
54626
  :param _SourceIpTranslationNatRuleSet: NAT网关的SNAT转发规则。
54608
- 注意:此字段可能返回 null,表示取不到有效值。
54609
54627
  :type SourceIpTranslationNatRuleSet: list of SourceIpTranslationNatRule
54610
54628
  :param _IsExclusive: 是否独享型NAT。
54611
- 注意:此字段可能返回 null,表示取不到有效值。
54612
54629
  :type IsExclusive: bool
54613
54630
  :param _ExclusiveGatewayBandwidth: 独享型NAT所在的网关集群的带宽(单位:Mbps),当IsExclusive为false时无此字段。
54614
- 注意:此字段可能返回 null,表示取不到有效值。
54615
54631
  :type ExclusiveGatewayBandwidth: int
54616
54632
  :param _RestrictState: NAT网关是否被封禁。“NORMAL”:未被封禁,“RESTRICTED”:已被封禁。
54617
- 注意:此字段可能返回 null,表示取不到有效值。
54618
54633
  :type RestrictState: str
54619
54634
  :param _NatProductVersion: NAT网关类型,1表示传统型NAT网关,2表示标准型NAT网关
54620
- 注意:此字段可能返回 null,表示取不到有效值。
54621
54635
  :type NatProductVersion: int
54622
54636
  :param _SmartScheduleMode: 是否启用根据目的网段选择SNAT使用的EIP功能
54623
- 注意:此字段可能返回 null,表示取不到有效值。
54624
54637
  :type SmartScheduleMode: bool
54625
54638
  :param _DedicatedClusterId: NAT实例归属的专属集群id
54626
- 注意:此字段可能返回 null,表示取不到有效值。
54627
54639
  :type DedicatedClusterId: str
54628
54640
  """
54629
54641
  self._NatGatewayId = None
@@ -54775,7 +54787,6 @@ class NatGateway(AbstractModel):
54775
54787
  @property
54776
54788
  def DirectConnectGatewayIds(self):
54777
54789
  """绑定的专线网关ID。
54778
- 注意:此字段可能返回 null,表示取不到有效值。
54779
54790
  :rtype: list of str
54780
54791
  """
54781
54792
  return self._DirectConnectGatewayIds
@@ -54787,7 +54798,6 @@ class NatGateway(AbstractModel):
54787
54798
  @property
54788
54799
  def SubnetId(self):
54789
54800
  """所属子网ID。
54790
- 注意:此字段可能返回 null,表示取不到有效值。
54791
54801
  :rtype: str
54792
54802
  """
54793
54803
  return self._SubnetId
@@ -54810,7 +54820,6 @@ class NatGateway(AbstractModel):
54810
54820
  @property
54811
54821
  def SecurityGroupSet(self):
54812
54822
  """NAT网关绑定的安全组列表
54813
- 注意:此字段可能返回 null,表示取不到有效值。
54814
54823
  :rtype: list of str
54815
54824
  """
54816
54825
  return self._SecurityGroupSet
@@ -54822,7 +54831,6 @@ class NatGateway(AbstractModel):
54822
54831
  @property
54823
54832
  def SourceIpTranslationNatRuleSet(self):
54824
54833
  """NAT网关的SNAT转发规则。
54825
- 注意:此字段可能返回 null,表示取不到有效值。
54826
54834
  :rtype: list of SourceIpTranslationNatRule
54827
54835
  """
54828
54836
  return self._SourceIpTranslationNatRuleSet
@@ -54834,7 +54842,6 @@ class NatGateway(AbstractModel):
54834
54842
  @property
54835
54843
  def IsExclusive(self):
54836
54844
  """是否独享型NAT。
54837
- 注意:此字段可能返回 null,表示取不到有效值。
54838
54845
  :rtype: bool
54839
54846
  """
54840
54847
  return self._IsExclusive
@@ -54846,7 +54853,6 @@ class NatGateway(AbstractModel):
54846
54853
  @property
54847
54854
  def ExclusiveGatewayBandwidth(self):
54848
54855
  """独享型NAT所在的网关集群的带宽(单位:Mbps),当IsExclusive为false时无此字段。
54849
- 注意:此字段可能返回 null,表示取不到有效值。
54850
54856
  :rtype: int
54851
54857
  """
54852
54858
  return self._ExclusiveGatewayBandwidth
@@ -54858,7 +54864,6 @@ class NatGateway(AbstractModel):
54858
54864
  @property
54859
54865
  def RestrictState(self):
54860
54866
  """NAT网关是否被封禁。“NORMAL”:未被封禁,“RESTRICTED”:已被封禁。
54861
- 注意:此字段可能返回 null,表示取不到有效值。
54862
54867
  :rtype: str
54863
54868
  """
54864
54869
  return self._RestrictState
@@ -54870,7 +54875,6 @@ class NatGateway(AbstractModel):
54870
54875
  @property
54871
54876
  def NatProductVersion(self):
54872
54877
  """NAT网关类型,1表示传统型NAT网关,2表示标准型NAT网关
54873
- 注意:此字段可能返回 null,表示取不到有效值。
54874
54878
  :rtype: int
54875
54879
  """
54876
54880
  return self._NatProductVersion
@@ -54882,7 +54886,6 @@ class NatGateway(AbstractModel):
54882
54886
  @property
54883
54887
  def SmartScheduleMode(self):
54884
54888
  """是否启用根据目的网段选择SNAT使用的EIP功能
54885
- 注意:此字段可能返回 null,表示取不到有效值。
54886
54889
  :rtype: bool
54887
54890
  """
54888
54891
  return self._SmartScheduleMode
@@ -54894,7 +54897,6 @@ class NatGateway(AbstractModel):
54894
54897
  @property
54895
54898
  def DedicatedClusterId(self):
54896
54899
  """NAT实例归属的专属集群id
54897
- 注意:此字段可能返回 null,表示取不到有效值。
54898
54900
  :rtype: str
54899
54901
  """
54900
54902
  return self._DedicatedClusterId
@@ -55058,13 +55060,10 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
55058
55060
  :param _Description: NAT网关转发规则描述。
55059
55061
  :type Description: str
55060
55062
  :param _NatGatewayId: NAT网关的ID。
55061
- 注意:此字段可能返回 null,表示取不到有效值。
55062
55063
  :type NatGatewayId: str
55063
55064
  :param _VpcId: 私有网络VPC的ID。
55064
- 注意:此字段可能返回 null,表示取不到有效值。
55065
55065
  :type VpcId: str
55066
55066
  :param _CreatedTime: NAT网关转发规则创建时间。
55067
- 注意:此字段可能返回 null,表示取不到有效值。
55068
55067
  :type CreatedTime: str
55069
55068
  """
55070
55069
  self._IpProtocol = None
@@ -55146,7 +55145,6 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
55146
55145
  @property
55147
55146
  def NatGatewayId(self):
55148
55147
  """NAT网关的ID。
55149
- 注意:此字段可能返回 null,表示取不到有效值。
55150
55148
  :rtype: str
55151
55149
  """
55152
55150
  return self._NatGatewayId
@@ -55158,7 +55156,6 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
55158
55156
  @property
55159
55157
  def VpcId(self):
55160
55158
  """私有网络VPC的ID。
55161
- 注意:此字段可能返回 null,表示取不到有效值。
55162
55159
  :rtype: str
55163
55160
  """
55164
55161
  return self._VpcId
@@ -55170,7 +55167,6 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
55170
55167
  @property
55171
55168
  def CreatedTime(self):
55172
55169
  """NAT网关转发规则创建时间。
55173
- 注意:此字段可能返回 null,表示取不到有效值。
55174
55170
  :rtype: str
55175
55171
  """
55176
55172
  return self._CreatedTime
@@ -57576,13 +57572,10 @@ class PrivateNatCrossDomainInfo(AbstractModel):
57576
57572
  def __init__(self):
57577
57573
  r"""
57578
57574
  :param _CcnId: 跨域私网NAT关联的云联网ID
57579
- 注意:此字段可能返回 null,表示取不到有效值。
57580
57575
  :type CcnId: str
57581
57576
  :param _LocalVpcId: 跨域私网NAT本端Vpc
57582
- 注意:此字段可能返回 null,表示取不到有效值。
57583
57577
  :type LocalVpcId: str
57584
57578
  :param _PeerVpcId: 跨域私网NAT对端Vpc
57585
- 注意:此字段可能返回 null,表示取不到有效值。
57586
57579
  :type PeerVpcId: str
57587
57580
  """
57588
57581
  self._CcnId = None
@@ -57592,7 +57585,6 @@ class PrivateNatCrossDomainInfo(AbstractModel):
57592
57585
  @property
57593
57586
  def CcnId(self):
57594
57587
  """跨域私网NAT关联的云联网ID
57595
- 注意:此字段可能返回 null,表示取不到有效值。
57596
57588
  :rtype: str
57597
57589
  """
57598
57590
  return self._CcnId
@@ -57604,7 +57596,6 @@ class PrivateNatCrossDomainInfo(AbstractModel):
57604
57596
  @property
57605
57597
  def LocalVpcId(self):
57606
57598
  """跨域私网NAT本端Vpc
57607
- 注意:此字段可能返回 null,表示取不到有效值。
57608
57599
  :rtype: str
57609
57600
  """
57610
57601
  return self._LocalVpcId
@@ -57616,7 +57607,6 @@ class PrivateNatCrossDomainInfo(AbstractModel):
57616
57607
  @property
57617
57608
  def PeerVpcId(self):
57618
57609
  """跨域私网NAT对端Vpc
57619
- 注意:此字段可能返回 null,表示取不到有效值。
57620
57610
  :rtype: str
57621
57611
  """
57622
57612
  return self._PeerVpcId
@@ -57793,7 +57783,6 @@ class PrivateNatGateway(AbstractModel):
57793
57783
  :param _NatGatewayName: 私网网关名称。
57794
57784
  :type NatGatewayName: str
57795
57785
  :param _VpcId: 私网网关关联`VPC`实例`ID`。
57796
- 注意:此字段可能返回 null,表示取不到有效值。
57797
57786
  :type VpcId: str
57798
57787
  :param _Status: 私网网关当前状态。
57799
57788
  :type Status: str
@@ -57802,22 +57791,16 @@ class PrivateNatGateway(AbstractModel):
57802
57791
  :param _CreatedTime: 创建时间
57803
57792
  :type CreatedTime: str
57804
57793
  :param _TagSet: 标签键值对。
57805
- 注意:此字段可能返回 null,表示取不到有效值。
57806
57794
  :type TagSet: list of Tag
57807
57795
  :param _DirectConnectGatewayIds: 专线网关唯一`ID`
57808
- 注意:此字段可能返回 null,表示取不到有效值。
57809
57796
  :type DirectConnectGatewayIds: list of str
57810
57797
  :param _NatType: 私网网关类型
57811
- 注意:此字段可能返回 null,表示取不到有效值。
57812
57798
  :type NatType: str
57813
57799
  :param _CrossDomainInfo: 私网NAT跨域信息
57814
- 注意:此字段可能返回 null,表示取不到有效值。
57815
57800
  :type CrossDomainInfo: :class:`tencentcloud.vpc.v20170312.models.PrivateNatCrossDomainInfo`
57816
57801
  :param _VpcType: 是否VPC型私网网关
57817
- 注意:此字段可能返回 null,表示取不到有效值。
57818
57802
  :type VpcType: bool
57819
57803
  :param _CcnId: 跨域私网NAT关联的云联网ID
57820
- 注意:此字段可能返回 null,表示取不到有效值。
57821
57804
  :type CcnId: str
57822
57805
  """
57823
57806
  self._NatGatewayId = None
@@ -57858,7 +57841,6 @@ class PrivateNatGateway(AbstractModel):
57858
57841
  @property
57859
57842
  def VpcId(self):
57860
57843
  """私网网关关联`VPC`实例`ID`。
57861
- 注意:此字段可能返回 null,表示取不到有效值。
57862
57844
  :rtype: str
57863
57845
  """
57864
57846
  return self._VpcId
@@ -57903,7 +57885,6 @@ class PrivateNatGateway(AbstractModel):
57903
57885
  @property
57904
57886
  def TagSet(self):
57905
57887
  """标签键值对。
57906
- 注意:此字段可能返回 null,表示取不到有效值。
57907
57888
  :rtype: list of Tag
57908
57889
  """
57909
57890
  return self._TagSet
@@ -57915,7 +57896,6 @@ class PrivateNatGateway(AbstractModel):
57915
57896
  @property
57916
57897
  def DirectConnectGatewayIds(self):
57917
57898
  """专线网关唯一`ID`
57918
- 注意:此字段可能返回 null,表示取不到有效值。
57919
57899
  :rtype: list of str
57920
57900
  """
57921
57901
  return self._DirectConnectGatewayIds
@@ -57927,7 +57907,6 @@ class PrivateNatGateway(AbstractModel):
57927
57907
  @property
57928
57908
  def NatType(self):
57929
57909
  """私网网关类型
57930
- 注意:此字段可能返回 null,表示取不到有效值。
57931
57910
  :rtype: str
57932
57911
  """
57933
57912
  return self._NatType
@@ -57939,7 +57918,6 @@ class PrivateNatGateway(AbstractModel):
57939
57918
  @property
57940
57919
  def CrossDomainInfo(self):
57941
57920
  """私网NAT跨域信息
57942
- 注意:此字段可能返回 null,表示取不到有效值。
57943
57921
  :rtype: :class:`tencentcloud.vpc.v20170312.models.PrivateNatCrossDomainInfo`
57944
57922
  """
57945
57923
  return self._CrossDomainInfo
@@ -57951,7 +57929,6 @@ class PrivateNatGateway(AbstractModel):
57951
57929
  @property
57952
57930
  def VpcType(self):
57953
57931
  """是否VPC型私网网关
57954
- 注意:此字段可能返回 null,表示取不到有效值。
57955
57932
  :rtype: bool
57956
57933
  """
57957
57934
  return self._VpcType
@@ -57963,7 +57940,6 @@ class PrivateNatGateway(AbstractModel):
57963
57940
  @property
57964
57941
  def CcnId(self):
57965
57942
  """跨域私网NAT关联的云联网ID
57966
- 注意:此字段可能返回 null,表示取不到有效值。
57967
57943
  :rtype: str
57968
57944
  """
57969
57945
  return self._CcnId
@@ -64616,7 +64592,6 @@ class SourceIpTranslationNatRule(AbstractModel):
64616
64592
  :param _ResourceId: 资源ID,如果ResourceType为USERDEFINED,可以为空字符串
64617
64593
  :type ResourceId: str
64618
64594
  :param _ResourceType: 资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
64619
- 注意:此字段可能返回 null,表示取不到有效值。
64620
64595
  :type ResourceType: str
64621
64596
  :param _PrivateIpAddress: 源IP/网段
64622
64597
  :type PrivateIpAddress: str
@@ -64627,13 +64602,10 @@ class SourceIpTranslationNatRule(AbstractModel):
64627
64602
  :param _NatGatewaySnatId: Snat规则ID
64628
64603
  :type NatGatewaySnatId: str
64629
64604
  :param _NatGatewayId: NAT网关的ID。
64630
- 注意:此字段可能返回 null,表示取不到有效值。
64631
64605
  :type NatGatewayId: str
64632
64606
  :param _VpcId: 私有网络VPC的ID。
64633
- 注意:此字段可能返回 null,表示取不到有效值。
64634
64607
  :type VpcId: str
64635
64608
  :param _CreatedTime: NAT网关SNAT规则创建时间。
64636
- 注意:此字段可能返回 null,表示取不到有效值。
64637
64609
  :type CreatedTime: str
64638
64610
  """
64639
64611
  self._ResourceId = None
@@ -64660,7 +64632,6 @@ class SourceIpTranslationNatRule(AbstractModel):
64660
64632
  @property
64661
64633
  def ResourceType(self):
64662
64634
  """资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
64663
- 注意:此字段可能返回 null,表示取不到有效值。
64664
64635
  :rtype: str
64665
64636
  """
64666
64637
  return self._ResourceType
@@ -64716,7 +64687,6 @@ class SourceIpTranslationNatRule(AbstractModel):
64716
64687
  @property
64717
64688
  def NatGatewayId(self):
64718
64689
  """NAT网关的ID。
64719
- 注意:此字段可能返回 null,表示取不到有效值。
64720
64690
  :rtype: str
64721
64691
  """
64722
64692
  return self._NatGatewayId
@@ -64728,7 +64698,6 @@ class SourceIpTranslationNatRule(AbstractModel):
64728
64698
  @property
64729
64699
  def VpcId(self):
64730
64700
  """私有网络VPC的ID。
64731
- 注意:此字段可能返回 null,表示取不到有效值。
64732
64701
  :rtype: str
64733
64702
  """
64734
64703
  return self._VpcId
@@ -64740,7 +64709,6 @@ class SourceIpTranslationNatRule(AbstractModel):
64740
64709
  @property
64741
64710
  def CreatedTime(self):
64742
64711
  """NAT网关SNAT规则创建时间。
64743
- 注意:此字段可能返回 null,表示取不到有效值。
64744
64712
  :rtype: str
64745
64713
  """
64746
64714
  return self._CreatedTime
@@ -65873,10 +65841,8 @@ class Tag(AbstractModel):
65873
65841
  def __init__(self):
65874
65842
  r"""
65875
65843
  :param _Key: 标签键
65876
- 注意:此字段可能返回 null,表示取不到有效值。
65877
65844
  :type Key: str
65878
65845
  :param _Value: 标签值
65879
- 注意:此字段可能返回 null,表示取不到有效值。
65880
65846
  :type Value: str
65881
65847
  """
65882
65848
  self._Key = None
@@ -65885,7 +65851,6 @@ class Tag(AbstractModel):
65885
65851
  @property
65886
65852
  def Key(self):
65887
65853
  """标签键
65888
- 注意:此字段可能返回 null,表示取不到有效值。
65889
65854
  :rtype: str
65890
65855
  """
65891
65856
  return self._Key
@@ -65897,7 +65862,6 @@ class Tag(AbstractModel):
65897
65862
  @property
65898
65863
  def Value(self):
65899
65864
  """标签值
65900
- 注意:此字段可能返回 null,表示取不到有效值。
65901
65865
  :rtype: str
65902
65866
  """
65903
65867
  return self._Value
@@ -65928,10 +65892,8 @@ class Tags(AbstractModel):
65928
65892
  def __init__(self):
65929
65893
  r"""
65930
65894
  :param _Key: 标签键
65931
- 注意:此字段可能返回 null,表示取不到有效值。
65932
65895
  :type Key: str
65933
65896
  :param _Value: 标签值
65934
- 注意:此字段可能返回 null,表示取不到有效值。
65935
65897
  :type Value: str
65936
65898
  """
65937
65899
  self._Key = None
@@ -65940,7 +65902,6 @@ class Tags(AbstractModel):
65940
65902
  @property
65941
65903
  def Key(self):
65942
65904
  """标签键
65943
- 注意:此字段可能返回 null,表示取不到有效值。
65944
65905
  :rtype: str
65945
65906
  """
65946
65907
  return self._Key
@@ -65952,7 +65913,6 @@ class Tags(AbstractModel):
65952
65913
  @property
65953
65914
  def Value(self):
65954
65915
  """标签值
65955
- 注意:此字段可能返回 null,表示取不到有效值。
65956
65916
  :rtype: str
65957
65917
  """
65958
65918
  return self._Value
@@ -67129,10 +67089,8 @@ class TranslationNatRule(AbstractModel):
67129
67089
  :param _TranslationIp: 转换`IP`,当转换规则类型为四层时为`IP`池。
67130
67090
  :type TranslationIp: str
67131
67091
  :param _Description: 转换规则描述。
67132
- 注意:此字段可能返回 null,表示取不到有效值。
67133
67092
  :type Description: str
67134
67093
  :param _OriginalIp: 源`IP`,当转换规则类型为三层时有效。
67135
- 注意:此字段可能返回 null,表示取不到有效值。
67136
67094
  :type OriginalIp: str
67137
67095
  :param _CreateTime: 创建时间。
67138
67096
  :type CreateTime: str
@@ -67183,7 +67141,6 @@ class TranslationNatRule(AbstractModel):
67183
67141
  @property
67184
67142
  def Description(self):
67185
67143
  """转换规则描述。
67186
- 注意:此字段可能返回 null,表示取不到有效值。
67187
67144
  :rtype: str
67188
67145
  """
67189
67146
  return self._Description
@@ -67195,7 +67152,6 @@ class TranslationNatRule(AbstractModel):
67195
67152
  @property
67196
67153
  def OriginalIp(self):
67197
67154
  """源`IP`,当转换规则类型为三层时有效。
67198
- 注意:此字段可能返回 null,表示取不到有效值。
67199
67155
  :rtype: str
67200
67156
  """
67201
67157
  return self._OriginalIp