tencentcloud-sdk-mrs 3.0.940 → 3.0.942
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200910/models.rb +24 -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: eadcf6732b6f940bf4237ef024155cdf14d9d068
|
4
|
+
data.tar.gz: 17429afc34b6cd89af60d64301812d4cd5129fd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9876ebaffe59ccb5dcaed79e538cd9ff0b10b395646100669a88267e436c97a7294c3f87624a70466b0159d1e6b5e35b8a2998e5a8bbb7785ef3135fd545339e
|
7
|
+
data.tar.gz: 8e838bbffa65b791e4741e63790cabbf6952e873faf92f3e01b988f321694282c48dec3ced119fbbcf55eb5df9ca56e146b2aeb6f5cbdb33871ade52e04926cc
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.942
|
data/lib/v20200910/models.rb
CHANGED
@@ -606,6 +606,9 @@ module TencentCloud
|
|
606
606
|
# @type Pinyin: String
|
607
607
|
|
608
608
|
attr_accessor :Text, :GenericName, :BarndName, :EnName, :Pinyin
|
609
|
+
extend Gem::Deprecate
|
610
|
+
deprecate :BarndName, :none, 2024, 11
|
611
|
+
deprecate :BarndName=, :none, 2024, 11
|
609
612
|
|
610
613
|
def initialize(text=nil, genericname=nil, barndname=nil, enname=nil, pinyin=nil)
|
611
614
|
@Text = text
|
@@ -1964,15 +1967,21 @@ module TencentCloud
|
|
1964
1967
|
# @param Pinyin: 拼音
|
1965
1968
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1966
1969
|
# @type Pinyin: String
|
1970
|
+
# @param BrandName: 品牌名
|
1971
|
+
# @type BrandName: String
|
1967
1972
|
|
1968
|
-
attr_accessor :Text, :GenericName, :BarndName, :EnName, :Pinyin
|
1973
|
+
attr_accessor :Text, :GenericName, :BarndName, :EnName, :Pinyin, :BrandName
|
1974
|
+
extend Gem::Deprecate
|
1975
|
+
deprecate :BarndName, :none, 2024, 11
|
1976
|
+
deprecate :BarndName=, :none, 2024, 11
|
1969
1977
|
|
1970
|
-
def initialize(text=nil, genericname=nil, barndname=nil, enname=nil, pinyin=nil)
|
1978
|
+
def initialize(text=nil, genericname=nil, barndname=nil, enname=nil, pinyin=nil, brandname=nil)
|
1971
1979
|
@Text = text
|
1972
1980
|
@GenericName = genericname
|
1973
1981
|
@BarndName = barndname
|
1974
1982
|
@EnName = enname
|
1975
1983
|
@Pinyin = pinyin
|
1984
|
+
@BrandName = brandname
|
1976
1985
|
end
|
1977
1986
|
|
1978
1987
|
def deserialize(params)
|
@@ -1981,6 +1990,7 @@ module TencentCloud
|
|
1981
1990
|
@BarndName = params['BarndName']
|
1982
1991
|
@EnName = params['EnName']
|
1983
1992
|
@Pinyin = params['Pinyin']
|
1993
|
+
@BrandName = params['BrandName']
|
1984
1994
|
end
|
1985
1995
|
end
|
1986
1996
|
|
@@ -5400,12 +5410,15 @@ module TencentCloud
|
|
5400
5410
|
# @type Image: :class:`Tencentcloud::Mrs.v20200910.models.ImageInfo`
|
5401
5411
|
# @param MaskFlag: 图片脱敏选项, 不传默认都脱敏
|
5402
5412
|
# @type MaskFlag: :class:`Tencentcloud::Mrs.v20200910.models.ImageMaskFlags`
|
5413
|
+
# @param AutoFixImageDirection: 是否自动矫正图片方向
|
5414
|
+
# @type AutoFixImageDirection: Boolean
|
5403
5415
|
|
5404
|
-
attr_accessor :Image, :MaskFlag
|
5416
|
+
attr_accessor :Image, :MaskFlag, :AutoFixImageDirection
|
5405
5417
|
|
5406
|
-
def initialize(image=nil, maskflag=nil)
|
5418
|
+
def initialize(image=nil, maskflag=nil, autofiximagedirection=nil)
|
5407
5419
|
@Image = image
|
5408
5420
|
@MaskFlag = maskflag
|
5421
|
+
@AutoFixImageDirection = autofiximagedirection
|
5409
5422
|
end
|
5410
5423
|
|
5411
5424
|
def deserialize(params)
|
@@ -5417,6 +5430,7 @@ module TencentCloud
|
|
5417
5430
|
@MaskFlag = ImageMaskFlags.new
|
5418
5431
|
@MaskFlag.deserialize(params['MaskFlag'])
|
5419
5432
|
end
|
5433
|
+
@AutoFixImageDirection = params['AutoFixImageDirection']
|
5420
5434
|
end
|
5421
5435
|
end
|
5422
5436
|
|
@@ -5475,12 +5489,15 @@ module TencentCloud
|
|
5475
5489
|
# @type Image: :class:`Tencentcloud::Mrs.v20200910.models.ImageInfo`
|
5476
5490
|
# @param MaskFlag: 图片脱敏选项, 不传默认都脱敏
|
5477
5491
|
# @type MaskFlag: :class:`Tencentcloud::Mrs.v20200910.models.ImageMaskFlags`
|
5492
|
+
# @param AutoFixImageDirection: 是否自动矫正图片方向
|
5493
|
+
# @type AutoFixImageDirection: Boolean
|
5478
5494
|
|
5479
|
-
attr_accessor :Image, :MaskFlag
|
5495
|
+
attr_accessor :Image, :MaskFlag, :AutoFixImageDirection
|
5480
5496
|
|
5481
|
-
def initialize(image=nil, maskflag=nil)
|
5497
|
+
def initialize(image=nil, maskflag=nil, autofiximagedirection=nil)
|
5482
5498
|
@Image = image
|
5483
5499
|
@MaskFlag = maskflag
|
5500
|
+
@AutoFixImageDirection = autofiximagedirection
|
5484
5501
|
end
|
5485
5502
|
|
5486
5503
|
def deserialize(params)
|
@@ -5492,6 +5509,7 @@ module TencentCloud
|
|
5492
5509
|
@MaskFlag = ImageMaskFlags.new
|
5493
5510
|
@MaskFlag.deserialize(params['MaskFlag'])
|
5494
5511
|
end
|
5512
|
+
@AutoFixImageDirection = params['AutoFixImageDirection']
|
5495
5513
|
end
|
5496
5514
|
end
|
5497
5515
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.942
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|