tencentcloud-sdk-tse 3.0.901 → 3.0.902
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/v20201207/models.rb +12 -12
- 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: 605f0cdceccad96b6eed4c4e6b1d81d7b8c25aee
|
|
4
|
+
data.tar.gz: 2d57e93950c5bcd478bbda709867f102af3fab82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c07fe4072ce6fdb7b22f69288546b19c498d85c059e7f32a9c2b08b7769fce3ef8d885721a5664cb4c902f2c18746ce772afd49d49be5b2497ac504179c1197a
|
|
7
|
+
data.tar.gz: 398a83400e03c1fa396732a511692cd7bf3774ff119eb93c0ef6ab80501b9e554273e4f8bab3bef133d3e48ec3f0e6d32fc644fc7a50621e255085419df521d4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.902
|
data/lib/v20201207/models.rb
CHANGED
|
@@ -2383,8 +2383,6 @@ module TencentCloud
|
|
|
2383
2383
|
# - tcp
|
|
2384
2384
|
# - udp
|
|
2385
2385
|
# @type Protocol: String
|
|
2386
|
-
# @param Path: 请求路径
|
|
2387
|
-
# @type Path: String
|
|
2388
2386
|
# @param Timeout: 超时时间,单位ms
|
|
2389
2387
|
# @type Timeout: Integer
|
|
2390
2388
|
# @param Retries: 重试次数
|
|
@@ -2398,25 +2396,26 @@ module TencentCloud
|
|
|
2398
2396
|
# @type UpstreamType: String
|
|
2399
2397
|
# @param UpstreamInfo: 服务配置信息
|
|
2400
2398
|
# @type UpstreamInfo: :class:`Tencentcloud::Tse.v20201207.models.KongUpstreamInfo`
|
|
2399
|
+
# @param Path: 请求路径
|
|
2400
|
+
# @type Path: String
|
|
2401
2401
|
|
|
2402
|
-
attr_accessor :GatewayId, :Name, :Protocol, :
|
|
2402
|
+
attr_accessor :GatewayId, :Name, :Protocol, :Timeout, :Retries, :UpstreamType, :UpstreamInfo, :Path
|
|
2403
2403
|
|
|
2404
|
-
def initialize(gatewayid=nil, name=nil, protocol=nil,
|
|
2404
|
+
def initialize(gatewayid=nil, name=nil, protocol=nil, timeout=nil, retries=nil, upstreamtype=nil, upstreaminfo=nil, path=nil)
|
|
2405
2405
|
@GatewayId = gatewayid
|
|
2406
2406
|
@Name = name
|
|
2407
2407
|
@Protocol = protocol
|
|
2408
|
-
@Path = path
|
|
2409
2408
|
@Timeout = timeout
|
|
2410
2409
|
@Retries = retries
|
|
2411
2410
|
@UpstreamType = upstreamtype
|
|
2412
2411
|
@UpstreamInfo = upstreaminfo
|
|
2412
|
+
@Path = path
|
|
2413
2413
|
end
|
|
2414
2414
|
|
|
2415
2415
|
def deserialize(params)
|
|
2416
2416
|
@GatewayId = params['GatewayId']
|
|
2417
2417
|
@Name = params['Name']
|
|
2418
2418
|
@Protocol = params['Protocol']
|
|
2419
|
-
@Path = params['Path']
|
|
2420
2419
|
@Timeout = params['Timeout']
|
|
2421
2420
|
@Retries = params['Retries']
|
|
2422
2421
|
@UpstreamType = params['UpstreamType']
|
|
@@ -2424,6 +2423,7 @@ module TencentCloud
|
|
|
2424
2423
|
@UpstreamInfo = KongUpstreamInfo.new
|
|
2425
2424
|
@UpstreamInfo.deserialize(params['UpstreamInfo'])
|
|
2426
2425
|
end
|
|
2426
|
+
@Path = params['Path']
|
|
2427
2427
|
end
|
|
2428
2428
|
end
|
|
2429
2429
|
|
|
@@ -9489,8 +9489,6 @@ module TencentCloud
|
|
|
9489
9489
|
# - tcp
|
|
9490
9490
|
# - udp
|
|
9491
9491
|
# @type Protocol: String
|
|
9492
|
-
# @param Path: 请求路径
|
|
9493
|
-
# @type Path: String
|
|
9494
9492
|
# @param Timeout: 超时时间,单位ms
|
|
9495
9493
|
# @type Timeout: Integer
|
|
9496
9494
|
# @param Retries: 重试次数
|
|
@@ -9506,26 +9504,27 @@ module TencentCloud
|
|
|
9506
9504
|
# @type UpstreamInfo: :class:`Tencentcloud::Tse.v20201207.models.KongUpstreamInfo`
|
|
9507
9505
|
# @param ID: 服务ID
|
|
9508
9506
|
# @type ID: String
|
|
9507
|
+
# @param Path: 请求路径
|
|
9508
|
+
# @type Path: String
|
|
9509
9509
|
|
|
9510
|
-
attr_accessor :GatewayId, :Name, :Protocol, :
|
|
9510
|
+
attr_accessor :GatewayId, :Name, :Protocol, :Timeout, :Retries, :UpstreamType, :UpstreamInfo, :ID, :Path
|
|
9511
9511
|
|
|
9512
|
-
def initialize(gatewayid=nil, name=nil, protocol=nil,
|
|
9512
|
+
def initialize(gatewayid=nil, name=nil, protocol=nil, timeout=nil, retries=nil, upstreamtype=nil, upstreaminfo=nil, id=nil, path=nil)
|
|
9513
9513
|
@GatewayId = gatewayid
|
|
9514
9514
|
@Name = name
|
|
9515
9515
|
@Protocol = protocol
|
|
9516
|
-
@Path = path
|
|
9517
9516
|
@Timeout = timeout
|
|
9518
9517
|
@Retries = retries
|
|
9519
9518
|
@UpstreamType = upstreamtype
|
|
9520
9519
|
@UpstreamInfo = upstreaminfo
|
|
9521
9520
|
@ID = id
|
|
9521
|
+
@Path = path
|
|
9522
9522
|
end
|
|
9523
9523
|
|
|
9524
9524
|
def deserialize(params)
|
|
9525
9525
|
@GatewayId = params['GatewayId']
|
|
9526
9526
|
@Name = params['Name']
|
|
9527
9527
|
@Protocol = params['Protocol']
|
|
9528
|
-
@Path = params['Path']
|
|
9529
9528
|
@Timeout = params['Timeout']
|
|
9530
9529
|
@Retries = params['Retries']
|
|
9531
9530
|
@UpstreamType = params['UpstreamType']
|
|
@@ -9534,6 +9533,7 @@ module TencentCloud
|
|
|
9534
9533
|
@UpstreamInfo.deserialize(params['UpstreamInfo'])
|
|
9535
9534
|
end
|
|
9536
9535
|
@ID = params['ID']
|
|
9536
|
+
@Path = params['Path']
|
|
9537
9537
|
end
|
|
9538
9538
|
end
|
|
9539
9539
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.902
|
|
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-09-
|
|
11
|
+
date: 2024-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|