tencentcloud-sdk-tione 3.0.569 → 3.0.570
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 +9 -4
- 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: f78db22f6af072e2bb5882302c5d1088f7feee10
|
|
4
|
+
data.tar.gz: 91e607e661adde4d8e601c6c316d03b3d58d8a0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eba9a0a91e2fa15bc3850134719d3b4d0c90f817c9141108b252f35377ae1cb34f066253e5acabc906dcfc2c2a6e952ef8b8f1edeba419f7bd41ef5d11e93486
|
|
7
|
+
data.tar.gz: 924bcd8e10309a3d7ac0605fcc66830860f4549016342c37f272b3712abbb6fcb92b041eb2b71425fe6a7ef361bdb976bd16061cbdf7dd7640e5bb48b20647f1
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.570
|
data/lib/v20211111/models.rb
CHANGED
|
@@ -158,7 +158,7 @@ module TencentCloud
|
|
|
158
158
|
# @type Region: String
|
|
159
159
|
# @param ChargeType: 计费模式
|
|
160
160
|
# @type ChargeType: String
|
|
161
|
-
# @param ResourceGroupId: 包年包月资源组
|
|
161
|
+
# @param ResourceGroupId: 包年包月资源组ID
|
|
162
162
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
163
163
|
# @type ResourceGroupId: String
|
|
164
164
|
# @param ResourceGroupName: 包年包月资源组名称
|
|
@@ -223,7 +223,7 @@ module TencentCloud
|
|
|
223
223
|
# @param FailureReason: 失败原因
|
|
224
224
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
225
225
|
# @type FailureReason: String
|
|
226
|
-
# @param BillingInfo: 计费金额信息,eg:2.00元/小时 (for
|
|
226
|
+
# @param BillingInfo: 计费金额信息,eg:2.00元/小时 (for 按量计费)
|
|
227
227
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
228
228
|
# @type BillingInfo: String
|
|
229
229
|
# @param PodList: 运行中的Pod的名字
|
|
@@ -4729,10 +4729,13 @@ module TencentCloud
|
|
|
4729
4729
|
# @param MinBlockSizeTf: FROZEN_GRAPH、SAVED_MODEL格式在进行优化时切分子图的最小算子数目,一般无需进行改动,默认为10
|
|
4730
4730
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4731
4731
|
# @type MinBlockSizeTf: String
|
|
4732
|
+
# @param PipelineArgs: Stable Diffusion 模型优化参数
|
|
4733
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4734
|
+
# @type PipelineArgs: String
|
|
4732
4735
|
|
|
4733
|
-
attr_accessor :MaxNNZ, :SlotNum, :CpuCachePercentage, :GpuCachePercentage, :EnableDistributed, :MinBlockSizePt, :MinBlockSizeTf
|
|
4736
|
+
attr_accessor :MaxNNZ, :SlotNum, :CpuCachePercentage, :GpuCachePercentage, :EnableDistributed, :MinBlockSizePt, :MinBlockSizeTf, :PipelineArgs
|
|
4734
4737
|
|
|
4735
|
-
def initialize(maxnnz=nil, slotnum=nil, cpucachepercentage=nil, gpucachepercentage=nil, enabledistributed=nil, minblocksizept=nil, minblocksizetf=nil)
|
|
4738
|
+
def initialize(maxnnz=nil, slotnum=nil, cpucachepercentage=nil, gpucachepercentage=nil, enabledistributed=nil, minblocksizept=nil, minblocksizetf=nil, pipelineargs=nil)
|
|
4736
4739
|
@MaxNNZ = maxnnz
|
|
4737
4740
|
@SlotNum = slotnum
|
|
4738
4741
|
@CpuCachePercentage = cpucachepercentage
|
|
@@ -4740,6 +4743,7 @@ module TencentCloud
|
|
|
4740
4743
|
@EnableDistributed = enabledistributed
|
|
4741
4744
|
@MinBlockSizePt = minblocksizept
|
|
4742
4745
|
@MinBlockSizeTf = minblocksizetf
|
|
4746
|
+
@PipelineArgs = pipelineargs
|
|
4743
4747
|
end
|
|
4744
4748
|
|
|
4745
4749
|
def deserialize(params)
|
|
@@ -4750,6 +4754,7 @@ module TencentCloud
|
|
|
4750
4754
|
@EnableDistributed = params['EnableDistributed']
|
|
4751
4755
|
@MinBlockSizePt = params['MinBlockSizePt']
|
|
4752
4756
|
@MinBlockSizeTf = params['MinBlockSizeTf']
|
|
4757
|
+
@PipelineArgs = params['PipelineArgs']
|
|
4753
4758
|
end
|
|
4754
4759
|
end
|
|
4755
4760
|
|
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.570
|
|
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-05-
|
|
11
|
+
date: 2023-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|