tencentcloud-sdk-tione 3.0.508 → 3.0.509
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20211111/models.rb +35 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9943966891b9f8d0fb766e7c33ad89ad4cae77d
|
4
|
+
data.tar.gz: bf35d0f81f099c077d2ce15716c9306c079119c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99dc90393ed5fbcca6a0d6d98a27eaaf4ce4b1ec027dab10b17b4a951a008fcc42666771fd617fac82f62d40a510f0c735ff70ee9168fa243b8051f86e540a31
|
7
|
+
data.tar.gz: d58750c34283b37d4596acae1eee7683487396eb2d554362dc76932503451dd05b14d6a29ae6fc2d3d08a4abade420f603e26a52a5e8ee03bf71a19ea7adbb90
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.509
|
data/lib/v20211111/models.rb
CHANGED
@@ -1756,10 +1756,19 @@ module TencentCloud
|
|
1756
1756
|
# @param DatasetScope: 数据集范围
|
1757
1757
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1758
1758
|
# @type DatasetScope: String
|
1759
|
+
# @param OcrScene: 数据集OCR子场景
|
1760
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1761
|
+
# @type OcrScene: String
|
1762
|
+
# @param AnnotationKeyStatus: 数据集字典修改状态
|
1763
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1764
|
+
# @type AnnotationKeyStatus: String
|
1765
|
+
# @param ContentType: 文本数据集导入方式
|
1766
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1767
|
+
# @type ContentType: String
|
1759
1768
|
|
1760
|
-
attr_accessor :DatasetId, :DatasetName, :Creator, :DatasetVersion, :DatasetType, :DatasetTags, :DatasetAnnotationTaskName, :DatasetAnnotationTaskId, :Process, :DatasetStatus, :ErrorMsg, :CreateTime, :UpdateTime, :ExternalTaskType, :DatasetSize, :FileNum, :StorageDataPath, :StorageLabelPath, :DatasetVersions, :AnnotationStatus, :AnnotationType, :AnnotationFormat, :DatasetScope
|
1769
|
+
attr_accessor :DatasetId, :DatasetName, :Creator, :DatasetVersion, :DatasetType, :DatasetTags, :DatasetAnnotationTaskName, :DatasetAnnotationTaskId, :Process, :DatasetStatus, :ErrorMsg, :CreateTime, :UpdateTime, :ExternalTaskType, :DatasetSize, :FileNum, :StorageDataPath, :StorageLabelPath, :DatasetVersions, :AnnotationStatus, :AnnotationType, :AnnotationFormat, :DatasetScope, :OcrScene, :AnnotationKeyStatus, :ContentType
|
1761
1770
|
|
1762
|
-
def initialize(datasetid=nil, datasetname=nil, creator=nil, datasetversion=nil, datasettype=nil, datasettags=nil, datasetannotationtaskname=nil, datasetannotationtaskid=nil, process=nil, datasetstatus=nil, errormsg=nil, createtime=nil, updatetime=nil, externaltasktype=nil, datasetsize=nil, filenum=nil, storagedatapath=nil, storagelabelpath=nil, datasetversions=nil, annotationstatus=nil, annotationtype=nil, annotationformat=nil, datasetscope=nil)
|
1771
|
+
def initialize(datasetid=nil, datasetname=nil, creator=nil, datasetversion=nil, datasettype=nil, datasettags=nil, datasetannotationtaskname=nil, datasetannotationtaskid=nil, process=nil, datasetstatus=nil, errormsg=nil, createtime=nil, updatetime=nil, externaltasktype=nil, datasetsize=nil, filenum=nil, storagedatapath=nil, storagelabelpath=nil, datasetversions=nil, annotationstatus=nil, annotationtype=nil, annotationformat=nil, datasetscope=nil, ocrscene=nil, annotationkeystatus=nil, contenttype=nil)
|
1763
1772
|
@DatasetId = datasetid
|
1764
1773
|
@DatasetName = datasetname
|
1765
1774
|
@Creator = creator
|
@@ -1783,6 +1792,9 @@ module TencentCloud
|
|
1783
1792
|
@AnnotationType = annotationtype
|
1784
1793
|
@AnnotationFormat = annotationformat
|
1785
1794
|
@DatasetScope = datasetscope
|
1795
|
+
@OcrScene = ocrscene
|
1796
|
+
@AnnotationKeyStatus = annotationkeystatus
|
1797
|
+
@ContentType = contenttype
|
1786
1798
|
end
|
1787
1799
|
|
1788
1800
|
def deserialize(params)
|
@@ -1829,6 +1841,9 @@ module TencentCloud
|
|
1829
1841
|
@AnnotationType = params['AnnotationType']
|
1830
1842
|
@AnnotationFormat = params['AnnotationFormat']
|
1831
1843
|
@DatasetScope = params['DatasetScope']
|
1844
|
+
@OcrScene = params['OcrScene']
|
1845
|
+
@AnnotationKeyStatus = params['AnnotationKeyStatus']
|
1846
|
+
@ContentType = params['ContentType']
|
1832
1847
|
end
|
1833
1848
|
end
|
1834
1849
|
|
@@ -1900,10 +1915,16 @@ module TencentCloud
|
|
1900
1915
|
# @param DatasetScope: 数据集范围
|
1901
1916
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1902
1917
|
# @type DatasetScope: String
|
1918
|
+
# @param OcrScene: 数据集OCR子场景
|
1919
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1920
|
+
# @type OcrScene: String
|
1921
|
+
# @param AnnotationKeyStatus: 数据集字典修改状态
|
1922
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1923
|
+
# @type AnnotationKeyStatus: String
|
1903
1924
|
|
1904
|
-
attr_accessor :DatasetId, :DatasetName, :Creator, :DatasetVersion, :DatasetType, :DatasetTags, :DatasetAnnotationTaskName, :DatasetAnnotationTaskId, :Process, :DatasetStatus, :ErrorMsg, :CreateTime, :UpdateTime, :ExternalTaskType, :DatasetSize, :FileNum, :StorageDataPath, :StorageLabelPath, :AnnotationStatus, :AnnotationType, :AnnotationFormat, :DatasetScope
|
1925
|
+
attr_accessor :DatasetId, :DatasetName, :Creator, :DatasetVersion, :DatasetType, :DatasetTags, :DatasetAnnotationTaskName, :DatasetAnnotationTaskId, :Process, :DatasetStatus, :ErrorMsg, :CreateTime, :UpdateTime, :ExternalTaskType, :DatasetSize, :FileNum, :StorageDataPath, :StorageLabelPath, :AnnotationStatus, :AnnotationType, :AnnotationFormat, :DatasetScope, :OcrScene, :AnnotationKeyStatus
|
1905
1926
|
|
1906
|
-
def initialize(datasetid=nil, datasetname=nil, creator=nil, datasetversion=nil, datasettype=nil, datasettags=nil, datasetannotationtaskname=nil, datasetannotationtaskid=nil, process=nil, datasetstatus=nil, errormsg=nil, createtime=nil, updatetime=nil, externaltasktype=nil, datasetsize=nil, filenum=nil, storagedatapath=nil, storagelabelpath=nil, annotationstatus=nil, annotationtype=nil, annotationformat=nil, datasetscope=nil)
|
1927
|
+
def initialize(datasetid=nil, datasetname=nil, creator=nil, datasetversion=nil, datasettype=nil, datasettags=nil, datasetannotationtaskname=nil, datasetannotationtaskid=nil, process=nil, datasetstatus=nil, errormsg=nil, createtime=nil, updatetime=nil, externaltasktype=nil, datasetsize=nil, filenum=nil, storagedatapath=nil, storagelabelpath=nil, annotationstatus=nil, annotationtype=nil, annotationformat=nil, datasetscope=nil, ocrscene=nil, annotationkeystatus=nil)
|
1907
1928
|
@DatasetId = datasetid
|
1908
1929
|
@DatasetName = datasetname
|
1909
1930
|
@Creator = creator
|
@@ -1926,6 +1947,8 @@ module TencentCloud
|
|
1926
1947
|
@AnnotationType = annotationtype
|
1927
1948
|
@AnnotationFormat = annotationformat
|
1928
1949
|
@DatasetScope = datasetscope
|
1950
|
+
@OcrScene = ocrscene
|
1951
|
+
@AnnotationKeyStatus = annotationkeystatus
|
1929
1952
|
end
|
1930
1953
|
|
1931
1954
|
def deserialize(params)
|
@@ -1964,6 +1987,8 @@ module TencentCloud
|
|
1964
1987
|
@AnnotationType = params['AnnotationType']
|
1965
1988
|
@AnnotationFormat = params['AnnotationFormat']
|
1966
1989
|
@DatasetScope = params['DatasetScope']
|
1990
|
+
@OcrScene = params['OcrScene']
|
1991
|
+
@AnnotationKeyStatus = params['AnnotationKeyStatus']
|
1967
1992
|
end
|
1968
1993
|
end
|
1969
1994
|
|
@@ -6619,19 +6644,23 @@ module TencentCloud
|
|
6619
6644
|
# @type TotalCost: Integer
|
6620
6645
|
# @param RealTotalCost: 优惠后的价格,单位:分
|
6621
6646
|
# @type RealTotalCost: Integer
|
6647
|
+
# @param SpecCount: 计费项数量
|
6648
|
+
# @type SpecCount: Integer
|
6622
6649
|
|
6623
|
-
attr_accessor :SpecName, :TotalCost, :RealTotalCost
|
6650
|
+
attr_accessor :SpecName, :TotalCost, :RealTotalCost, :SpecCount
|
6624
6651
|
|
6625
|
-
def initialize(specname=nil, totalcost=nil, realtotalcost=nil)
|
6652
|
+
def initialize(specname=nil, totalcost=nil, realtotalcost=nil, speccount=nil)
|
6626
6653
|
@SpecName = specname
|
6627
6654
|
@TotalCost = totalcost
|
6628
6655
|
@RealTotalCost = realtotalcost
|
6656
|
+
@SpecCount = speccount
|
6629
6657
|
end
|
6630
6658
|
|
6631
6659
|
def deserialize(params)
|
6632
6660
|
@SpecName = params['SpecName']
|
6633
6661
|
@TotalCost = params['TotalCost']
|
6634
6662
|
@RealTotalCost = params['RealTotalCost']
|
6663
|
+
@SpecCount = params['SpecCount']
|
6635
6664
|
end
|
6636
6665
|
end
|
6637
6666
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tione
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.509
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|