tencentcloud-sdk-tsf 3.0.1069 → 3.0.1071
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/v20180326/models.rb +13 -2
- 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: f197bd046339a823809129a4974cade356a5159b
|
4
|
+
data.tar.gz: 61cca76ec61c92b15ae8b584726eb5b0a7ff11a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cdb2af35f961e6bc954b11a04aef6f91f46a2639b89bd2e61be9771bd1f352cef702555bdc349cccad999a98744a392bec13bdf729191dd69302544aeeced16
|
7
|
+
data.tar.gz: a649b5a3600595a172e2d8ae3aeb5866309cf2c7a0bc49f33662168b4ff95fa557b9da81082736f0e36f7462e2971a8465aea82ffd7758ba7beb9d7ccbcbb747
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1071
|
data/lib/v20180326/models.rb
CHANGED
@@ -1108,19 +1108,30 @@ module TencentCloud
|
|
1108
1108
|
# @type MaxUnbalanceQuantity: Integer
|
1109
1109
|
# @param IsForceSchedule: -
|
1110
1110
|
# @type IsForceSchedule: Boolean
|
1111
|
+
# @param Paths: -
|
1112
|
+
# @type Paths: Array
|
1111
1113
|
|
1112
|
-
attr_accessor :ScatterDimension, :MaxUnbalanceQuantity, :IsForceSchedule
|
1114
|
+
attr_accessor :ScatterDimension, :MaxUnbalanceQuantity, :IsForceSchedule, :Paths
|
1113
1115
|
|
1114
|
-
def initialize(scatterdimension=nil, maxunbalancequantity=nil, isforceschedule=nil)
|
1116
|
+
def initialize(scatterdimension=nil, maxunbalancequantity=nil, isforceschedule=nil, paths=nil)
|
1115
1117
|
@ScatterDimension = scatterdimension
|
1116
1118
|
@MaxUnbalanceQuantity = maxunbalancequantity
|
1117
1119
|
@IsForceSchedule = isforceschedule
|
1120
|
+
@Paths = paths
|
1118
1121
|
end
|
1119
1122
|
|
1120
1123
|
def deserialize(params)
|
1121
1124
|
@ScatterDimension = params['ScatterDimension']
|
1122
1125
|
@MaxUnbalanceQuantity = params['MaxUnbalanceQuantity']
|
1123
1126
|
@IsForceSchedule = params['IsForceSchedule']
|
1127
|
+
unless params['Paths'].nil?
|
1128
|
+
@Paths = []
|
1129
|
+
params['Paths'].each do |i|
|
1130
|
+
commonoption_tmp = CommonOption.new
|
1131
|
+
commonoption_tmp.deserialize(i)
|
1132
|
+
@Paths << commonoption_tmp
|
1133
|
+
end
|
1134
|
+
end
|
1124
1135
|
end
|
1125
1136
|
end
|
1126
1137
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tsf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1071
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|