tencentcloud-sdk-python 3.0.1359__py2.py3-none-any.whl → 3.0.1361__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/batch/v20170312/models.py +14 -44
- tencentcloud/bh/v20230418/bh_client.py +115 -0
- tencentcloud/bh/v20230418/models.py +1064 -131
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +6 -6
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cdwpg/v20201230/models.py +22 -206
- tencentcloud/ckafka/v20190819/ckafka_client.py +46 -0
- tencentcloud/ckafka/v20190819/models.py +367 -0
- tencentcloud/cvm/v20170312/cvm_client.py +10 -7
- tencentcloud/cvm/v20170312/errorcodes.py +3 -0
- tencentcloud/cvm/v20170312/models.py +186 -174
- tencentcloud/cynosdb/v20190107/models.py +105 -0
- tencentcloud/dlc/v20210125/models.py +107 -564
- tencentcloud/dsgc/v20190723/models.py +30 -0
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +214 -0
- tencentcloud/ess/v20201111/models.py +256 -0
- tencentcloud/essbasic/v20210526/models.py +281 -13
- tencentcloud/gaap/v20180529/models.py +0 -166
- tencentcloud/gs/v20191118/errorcodes.py +24 -0
- tencentcloud/gs/v20191118/gs_client.py +138 -0
- tencentcloud/gs/v20191118/models.py +683 -21
- tencentcloud/gwlb/v20240906/gwlb_client.py +5 -7
- tencentcloud/gwlb/v20240906/models.py +72 -54
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +358 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
- tencentcloud/iotexplorer/v20190423/models.py +600 -0
- tencentcloud/kms/v20190118/models.py +71 -0
- tencentcloud/lcic/v20220817/models.py +34 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +4 -1
- tencentcloud/lighthouse/v20200324/models.py +14 -10
- tencentcloud/monitor/v20180724/models.py +2 -2
- tencentcloud/monitor/v20180724/monitor_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +12 -10
- tencentcloud/privatedns/v20201028/models.py +36 -6
- tencentcloud/tan/v20220420/tan_client.py +3 -1
- tencentcloud/tcb/v20180608/models.py +60 -0
- tencentcloud/tione/v20211111/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +53 -0
- tencentcloud/trocket/v20230308/models.py +1398 -66
- tencentcloud/trocket/v20230308/trocket_client.py +214 -0
- tencentcloud/vclm/v20240523/models.py +2 -2
- tencentcloud/vpc/v20170312/models.py +263 -81
- tencentcloud/vpc/v20170312/vpc_client.py +25 -2
- tencentcloud/wedata/v20210820/models.py +2691 -4
- tencentcloud/wedata/v20210820/wedata_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/RECORD +55 -55
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1359.dist-info → tencentcloud_sdk_python-3.0.1361.dist-info}/top_level.txt +0 -0
@@ -23616,6 +23616,7 @@ class FormField(AbstractModel):
|
|
23616
23616
|
"""电子文档的控件填充信息。按照控件类型进行相应的填充。
|
23617
23617
|
|
23618
23618
|
当控件的 ComponentType='TEXT'时,FormField.ComponentValue填入文本内容
|
23619
|
+
|
23619
23620
|
```
|
23620
23621
|
FormField输入示例:
|
23621
23622
|
{
|
@@ -23623,7 +23624,9 @@ class FormField(AbstractModel):
|
|
23623
23624
|
"ComponentValue": "文本内容"
|
23624
23625
|
}
|
23625
23626
|
```
|
23627
|
+
|
23626
23628
|
当控件的 ComponentType='MULTI_LINE_TEXT'时,FormField.ComponentValue填入文本内容,支持自动换行。
|
23629
|
+
|
23627
23630
|
```
|
23628
23631
|
FormField输入示例:
|
23629
23632
|
{
|
@@ -23631,7 +23634,9 @@ class FormField(AbstractModel):
|
|
23631
23634
|
"ComponentValue": "多行文本内容"
|
23632
23635
|
}
|
23633
23636
|
```
|
23637
|
+
|
23634
23638
|
当控件的 ComponentType='CHECK_BOX'时,FormField.ComponentValue填入true或false文本
|
23639
|
+
|
23635
23640
|
```
|
23636
23641
|
FormField输入示例:
|
23637
23642
|
{
|
@@ -23639,7 +23644,9 @@ class FormField(AbstractModel):
|
|
23639
23644
|
"ComponentValue": "true"
|
23640
23645
|
}
|
23641
23646
|
```
|
23647
|
+
|
23642
23648
|
当控件的 ComponentType='FILL_IMAGE'时,FormField.ComponentValue填入图片的资源ID
|
23649
|
+
|
23643
23650
|
```
|
23644
23651
|
FormField输入示例:
|
23645
23652
|
{
|
@@ -23647,7 +23654,9 @@ class FormField(AbstractModel):
|
|
23647
23654
|
"ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
23648
23655
|
}
|
23649
23656
|
```
|
23657
|
+
|
23650
23658
|
当控件的 ComponentType='ATTACHMENT'时,FormField.ComponentValue填入附件图片的资源ID列表,以逗号分隔,单个附件控件最多支持6个资源ID;
|
23659
|
+
|
23651
23660
|
```
|
23652
23661
|
FormField输入示例:
|
23653
23662
|
{
|
@@ -23655,7 +23664,9 @@ class FormField(AbstractModel):
|
|
23655
23664
|
"ComponentValue": "yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx1,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx2,yDwhsxxxxxxxxxxxxxxxxxxxxxxxxxx3"
|
23656
23665
|
}
|
23657
23666
|
```
|
23667
|
+
|
23658
23668
|
当控件的 ComponentType='SELECTOR'时,FormField.ComponentValue填入选择的选项内容;
|
23669
|
+
|
23659
23670
|
```
|
23660
23671
|
FormField输入示例:
|
23661
23672
|
{
|
@@ -23663,7 +23674,9 @@ class FormField(AbstractModel):
|
|
23663
23674
|
"ComponentValue": "选择的内容"
|
23664
23675
|
}
|
23665
23676
|
```
|
23677
|
+
|
23666
23678
|
当控件的 ComponentType='DATE'时,FormField.ComponentValue填入日期内容;
|
23679
|
+
|
23667
23680
|
```
|
23668
23681
|
FormField输入示例:
|
23669
23682
|
{
|
@@ -23671,7 +23684,9 @@ class FormField(AbstractModel):
|
|
23671
23684
|
"ComponentValue": "2023年01月01日"
|
23672
23685
|
}
|
23673
23686
|
```
|
23687
|
+
|
23674
23688
|
当控件的 ComponentType='DISTRICT'时,FormField.ComponentValue填入省市区内容;
|
23689
|
+
|
23675
23690
|
```
|
23676
23691
|
FormField输入示例:
|
23677
23692
|
{
|
@@ -23679,6 +23694,7 @@ class FormField(AbstractModel):
|
|
23679
23694
|
"ComponentValue": "广东省深圳市福田区"
|
23680
23695
|
}
|
23681
23696
|
```
|
23697
|
+
|
23682
23698
|
【数据表格传参说明】
|
23683
23699
|
当控件的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
|
23684
23700
|
输入示例1:
|
@@ -23723,7 +23739,6 @@ class FormField(AbstractModel):
|
|
23723
23739
|
]
|
23724
23740
|
}
|
23725
23741
|
}
|
23726
|
-
|
23727
23742
|
```
|
23728
23743
|
|
23729
23744
|
输入示例2(表格表头宽度比例配置):
|
@@ -23771,10 +23786,8 @@ class FormField(AbstractModel):
|
|
23771
23786
|
]
|
23772
23787
|
}
|
23773
23788
|
}
|
23774
|
-
|
23775
23789
|
```
|
23776
23790
|
|
23777
|
-
|
23778
23791
|
输入示例3(表格设置字体加粗颜色):
|
23779
23792
|
|
23780
23793
|
```
|
@@ -23820,21 +23833,276 @@ class FormField(AbstractModel):
|
|
23820
23833
|
]
|
23821
23834
|
}
|
23822
23835
|
}
|
23836
|
+
```
|
23823
23837
|
|
23838
|
+
输入示例4(表格设置表头不合成到文件):
|
23839
|
+
|
23840
|
+
```
|
23841
|
+
{
|
23842
|
+
"headers": [
|
23843
|
+
{
|
23844
|
+
"content": "序号"
|
23845
|
+
},
|
23846
|
+
{
|
23847
|
+
"content": "品牌"
|
23848
|
+
},
|
23849
|
+
{
|
23850
|
+
"content": "商品名称"
|
23851
|
+
},
|
23852
|
+
{
|
23853
|
+
"content": "粒径"
|
23854
|
+
},
|
23855
|
+
{
|
23856
|
+
"content": "规格"
|
23857
|
+
},
|
23858
|
+
{
|
23859
|
+
"content": "数量(包)"
|
23860
|
+
},
|
23861
|
+
{
|
23862
|
+
"content": "重量(吨)"
|
23863
|
+
}
|
23864
|
+
],
|
23865
|
+
"rowCount": 5,
|
23866
|
+
"body": {
|
23867
|
+
"cells": [
|
23868
|
+
{
|
23869
|
+
"rowStart": 1,
|
23870
|
+
"rowEnd": 1,
|
23871
|
+
"columnStart": 1,
|
23872
|
+
"columnEnd": 1,
|
23873
|
+
"content": "1"
|
23874
|
+
},
|
23875
|
+
{
|
23876
|
+
"rowStart": 1,
|
23877
|
+
"rowEnd": 1,
|
23878
|
+
"columnStart": 2,
|
23879
|
+
"columnEnd": 2,
|
23880
|
+
"content": "品牌名称1"
|
23881
|
+
},
|
23882
|
+
{
|
23883
|
+
"rowStart": 1,
|
23884
|
+
"rowEnd": 1,
|
23885
|
+
"columnStart": 3,
|
23886
|
+
"columnEnd": 3,
|
23887
|
+
"content": "商品名称1"
|
23888
|
+
},
|
23889
|
+
{
|
23890
|
+
"rowStart": 1,
|
23891
|
+
"rowEnd": 1,
|
23892
|
+
"columnStart": 4,
|
23893
|
+
"columnEnd": 4,
|
23894
|
+
"content": "7#"
|
23895
|
+
},
|
23896
|
+
{
|
23897
|
+
"rowStart": 1,
|
23898
|
+
"rowEnd": 1,
|
23899
|
+
"columnStart": 5,
|
23900
|
+
"columnEnd": 5,
|
23901
|
+
"content": "20"
|
23902
|
+
},
|
23903
|
+
{
|
23904
|
+
"rowStart": 1,
|
23905
|
+
"rowEnd": 1,
|
23906
|
+
"columnStart": 6,
|
23907
|
+
"columnEnd": 6,
|
23908
|
+
"content": "50"
|
23909
|
+
},
|
23910
|
+
{
|
23911
|
+
"rowStart": 1,
|
23912
|
+
"rowEnd": 1,
|
23913
|
+
"columnStart": 7,
|
23914
|
+
"columnEnd": 7,
|
23915
|
+
"content": "1.000"
|
23916
|
+
},
|
23917
|
+
{
|
23918
|
+
"rowStart": 2,
|
23919
|
+
"rowEnd": 2,
|
23920
|
+
"columnStart": 1,
|
23921
|
+
"columnEnd": 1,
|
23922
|
+
"content": "2"
|
23923
|
+
},
|
23924
|
+
{
|
23925
|
+
"rowStart": 2,
|
23926
|
+
"rowEnd": 2,
|
23927
|
+
"columnStart": 2,
|
23928
|
+
"columnEnd": 2,
|
23929
|
+
"content": "品牌名称2"
|
23930
|
+
},
|
23931
|
+
{
|
23932
|
+
"rowStart": 2,
|
23933
|
+
"rowEnd": 2,
|
23934
|
+
"columnStart": 3,
|
23935
|
+
"columnEnd": 3,
|
23936
|
+
"content": "商品名称2"
|
23937
|
+
},
|
23938
|
+
{
|
23939
|
+
"rowStart": 2,
|
23940
|
+
"rowEnd": 2,
|
23941
|
+
"columnStart": 4,
|
23942
|
+
"columnEnd": 4,
|
23943
|
+
"content": "5#"
|
23944
|
+
},
|
23945
|
+
{
|
23946
|
+
"rowStart": 2,
|
23947
|
+
"rowEnd": 2,
|
23948
|
+
"columnStart": 5,
|
23949
|
+
"columnEnd": 5,
|
23950
|
+
"content": "20"
|
23951
|
+
},
|
23952
|
+
{
|
23953
|
+
"rowStart": 2,
|
23954
|
+
"rowEnd": 2,
|
23955
|
+
"columnStart": 6,
|
23956
|
+
"columnEnd": 6,
|
23957
|
+
"content": "20"
|
23958
|
+
},
|
23959
|
+
{
|
23960
|
+
"rowStart": 2,
|
23961
|
+
"rowEnd": 2,
|
23962
|
+
"columnStart": 7,
|
23963
|
+
"columnEnd": 7,
|
23964
|
+
"content": "0.400"
|
23965
|
+
},
|
23966
|
+
{
|
23967
|
+
"rowStart": 3,
|
23968
|
+
"rowEnd": 3,
|
23969
|
+
"columnStart": 1,
|
23970
|
+
"columnEnd": 1,
|
23971
|
+
"content": "3"
|
23972
|
+
},
|
23973
|
+
{
|
23974
|
+
"rowStart": 3,
|
23975
|
+
"rowEnd": 3,
|
23976
|
+
"columnStart": 2,
|
23977
|
+
"columnEnd": 2,
|
23978
|
+
"content": "品牌名称3"
|
23979
|
+
},
|
23980
|
+
{
|
23981
|
+
"rowStart": 3,
|
23982
|
+
"rowEnd": 3,
|
23983
|
+
"columnStart": 3,
|
23984
|
+
"columnEnd": 3,
|
23985
|
+
"content": "商品名称3"
|
23986
|
+
},
|
23987
|
+
{
|
23988
|
+
"rowStart": 3,
|
23989
|
+
"rowEnd": 3,
|
23990
|
+
"columnStart": 4,
|
23991
|
+
"columnEnd": 4,
|
23992
|
+
"content": "2#"
|
23993
|
+
},
|
23994
|
+
{
|
23995
|
+
"rowStart": 3,
|
23996
|
+
"rowEnd": 3,
|
23997
|
+
"columnStart": 5,
|
23998
|
+
"columnEnd": 5,
|
23999
|
+
"content": "20"
|
24000
|
+
},
|
24001
|
+
{
|
24002
|
+
"rowStart": 3,
|
24003
|
+
"rowEnd": 3,
|
24004
|
+
"columnStart": 6,
|
24005
|
+
"columnEnd": 6,
|
24006
|
+
"content": "5"
|
24007
|
+
},
|
24008
|
+
{
|
24009
|
+
"rowStart": 3,
|
24010
|
+
"rowEnd": 3,
|
24011
|
+
"columnStart": 7,
|
24012
|
+
"columnEnd": 7,
|
24013
|
+
"content": "0.100"
|
24014
|
+
},
|
24015
|
+
{
|
24016
|
+
"rowStart": 4,
|
24017
|
+
"rowEnd": 4,
|
24018
|
+
"columnStart": 1,
|
24019
|
+
"columnEnd": 1,
|
24020
|
+
"content": "4"
|
24021
|
+
},
|
24022
|
+
{
|
24023
|
+
"rowStart": 4,
|
24024
|
+
"rowEnd": 4,
|
24025
|
+
"columnStart": 2,
|
24026
|
+
"columnEnd": 2,
|
24027
|
+
"content": "品牌名称4"
|
24028
|
+
},
|
24029
|
+
{
|
24030
|
+
"rowStart": 4,
|
24031
|
+
"rowEnd": 4,
|
24032
|
+
"columnStart": 3,
|
24033
|
+
"columnEnd": 3,
|
24034
|
+
"content": "商品名称4"
|
24035
|
+
},
|
24036
|
+
{
|
24037
|
+
"rowStart": 4,
|
24038
|
+
"rowEnd": 4,
|
24039
|
+
"columnStart": 4,
|
24040
|
+
"columnEnd": 4,
|
24041
|
+
"content": "3#"
|
24042
|
+
},
|
24043
|
+
{
|
24044
|
+
"rowStart": 4,
|
24045
|
+
"rowEnd": 4,
|
24046
|
+
"columnStart": 5,
|
24047
|
+
"columnEnd": 5,
|
24048
|
+
"content": "20"
|
24049
|
+
},
|
24050
|
+
{
|
24051
|
+
"rowStart": 4,
|
24052
|
+
"rowEnd": 4,
|
24053
|
+
"columnStart": 6,
|
24054
|
+
"columnEnd": 6,
|
24055
|
+
"content": "10"
|
24056
|
+
},
|
24057
|
+
{
|
24058
|
+
"rowStart": 4,
|
24059
|
+
"rowEnd": 4,
|
24060
|
+
"columnStart": 7,
|
24061
|
+
"columnEnd": 7,
|
24062
|
+
"content": "0.200"
|
24063
|
+
},
|
24064
|
+
{
|
24065
|
+
"rowStart": 5,
|
24066
|
+
"rowEnd": 5,
|
24067
|
+
"columnStart": 1,
|
24068
|
+
"columnEnd": 5,
|
24069
|
+
"content": "合计"
|
24070
|
+
},
|
24071
|
+
{
|
24072
|
+
"rowStart": 5,
|
24073
|
+
"rowEnd": 5,
|
24074
|
+
"columnStart": 6,
|
24075
|
+
"columnEnd": 6,
|
24076
|
+
"content": "85"
|
24077
|
+
},
|
24078
|
+
{
|
24079
|
+
"rowStart": 5,
|
24080
|
+
"rowEnd": 5,
|
24081
|
+
"columnStart": 7,
|
24082
|
+
"columnEnd": 7,
|
24083
|
+
"content": "1.700"
|
24084
|
+
}
|
24085
|
+
]
|
24086
|
+
},
|
24087
|
+
"settings": {
|
24088
|
+
"headerRowDisplay": false
|
24089
|
+
}
|
24090
|
+
}
|
23824
24091
|
```
|
23825
24092
|
|
23826
24093
|
表格参数说明
|
23827
24094
|
|
23828
|
-
| 名称 | 类型 | 描述
|
23829
|
-
| ------------------- | ------- |
|
23830
|
-
| headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100
|
23831
|
-
| rowCount | Integer | 表格内容最大行数
|
23832
|
-
| cells.N.rowStart | Integer | 单元格坐标:行起始index
|
23833
|
-
| cells.N.rowEnd | Integer | 单元格坐标:行结束index
|
23834
|
-
| cells.N.columnStart | Integer | 单元格坐标:列起始index
|
23835
|
-
| cells.N.columnEnd | Integer | 单元格坐标:列结束index
|
23836
|
-
| cells.N.content | String | 单元格内容,字数不超过100
|
23837
|
-
| cells.N.style
|
24095
|
+
| 名称 | 类型 | 描述 |
|
24096
|
+
| ------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------- |
|
24097
|
+
| headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
|
24098
|
+
| rowCount | Integer | 表格内容最大行数 |
|
24099
|
+
| cells.N.rowStart | Integer | 单元格坐标:行起始index |
|
24100
|
+
| cells.N.rowEnd | Integer | 单元格坐标:行结束index |
|
24101
|
+
| cells.N.columnStart | Integer | 单元格坐标:列起始index |
|
24102
|
+
| cells.N.columnEnd | Integer | 单元格坐标:列结束index |
|
24103
|
+
| cells.N.content | String | 单元格内容,字数不超过100 |
|
24104
|
+
| cells.N.style | String | 单元格字体风格配置 ,风格配置的json字符串 如: {"font":"黑体","fontSize":12,"color":"#FFFFFF","bold":true,"align":"CENTER"} |
|
24105
|
+
| settings | Object | 表格全局设定。目前支持设置表头不显示,示例:{"headerRowDisplay":false} |
|
23838
24106
|
|
23839
24107
|
表格参数headers说明
|
23840
24108
|
widthPercent Integer 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35
|