tencentcloud-sdk-tse 3.0.844 → 3.0.845
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 +80 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cec5fa3642e708d14c67d03d76a17d30495fe72a
|
4
|
+
data.tar.gz: 304e5d308187e3c7e2c90e3de37b87390b64a28c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40ea72167202ad468690730b767e7d7275d83d2c79aee5cc1c3e39c3bb2a81301fb00a17d151398459195973738e6d493a3c174352254ee95b73238e97529949
|
7
|
+
data.tar.gz: 78fc5f9d338b02ca89129ecd5b9e4e2e591ef0836954cddcf94698d14352d86ce854865836595f0fb8dd79b34636c73c17f85c6396b9342c6e872d51b14492bf
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.845
|
data/lib/v20201207/models.rb
CHANGED
@@ -6331,20 +6331,61 @@ module TencentCloud
|
|
6331
6331
|
|
6332
6332
|
# DescribePublicAddressConfig返回参数结构体
|
6333
6333
|
class DescribePublicAddressConfigResponse < TencentCloud::Common::AbstractModel
|
6334
|
+
# @param Result: 公网地址信息
|
6335
|
+
# @type Result: :class:`Tencentcloud::Tse.v20201207.models.DescribePublicAddressConfigResult`
|
6334
6336
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6335
6337
|
# @type RequestId: String
|
6336
6338
|
|
6337
|
-
attr_accessor :RequestId
|
6339
|
+
attr_accessor :Result, :RequestId
|
6338
6340
|
|
6339
|
-
def initialize(requestid=nil)
|
6341
|
+
def initialize(result=nil, requestid=nil)
|
6342
|
+
@Result = result
|
6340
6343
|
@RequestId = requestid
|
6341
6344
|
end
|
6342
6345
|
|
6343
6346
|
def deserialize(params)
|
6347
|
+
unless params['Result'].nil?
|
6348
|
+
@Result = DescribePublicAddressConfigResult.new
|
6349
|
+
@Result.deserialize(params['Result'])
|
6350
|
+
end
|
6344
6351
|
@RequestId = params['RequestId']
|
6345
6352
|
end
|
6346
6353
|
end
|
6347
6354
|
|
6355
|
+
# 获取云原生api网关公网地址信息响应结果
|
6356
|
+
class DescribePublicAddressConfigResult < TencentCloud::Common::AbstractModel
|
6357
|
+
# @param GatewayId: 网关实例id
|
6358
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6359
|
+
# @type GatewayId: String
|
6360
|
+
# @param ConfigList: 公网地址信息
|
6361
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6362
|
+
# @type ConfigList: Array
|
6363
|
+
# @param TotalCount: 总个数
|
6364
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6365
|
+
# @type TotalCount: Integer
|
6366
|
+
|
6367
|
+
attr_accessor :GatewayId, :ConfigList, :TotalCount
|
6368
|
+
|
6369
|
+
def initialize(gatewayid=nil, configlist=nil, totalcount=nil)
|
6370
|
+
@GatewayId = gatewayid
|
6371
|
+
@ConfigList = configlist
|
6372
|
+
@TotalCount = totalcount
|
6373
|
+
end
|
6374
|
+
|
6375
|
+
def deserialize(params)
|
6376
|
+
@GatewayId = params['GatewayId']
|
6377
|
+
unless params['ConfigList'].nil?
|
6378
|
+
@ConfigList = []
|
6379
|
+
params['ConfigList'].each do |i|
|
6380
|
+
publicaddressconfig_tmp = PublicAddressConfig.new
|
6381
|
+
publicaddressconfig_tmp.deserialize(i)
|
6382
|
+
@ConfigList << publicaddressconfig_tmp
|
6383
|
+
end
|
6384
|
+
end
|
6385
|
+
@TotalCount = params['TotalCount']
|
6386
|
+
end
|
6387
|
+
end
|
6388
|
+
|
6348
6389
|
# DescribePublicNetwork请求参数结构体
|
6349
6390
|
class DescribePublicNetworkRequest < TencentCloud::Common::AbstractModel
|
6350
6391
|
# @param GatewayId: 云原生API网关实例ID。
|
@@ -10283,6 +10324,43 @@ module TencentCloud
|
|
10283
10324
|
end
|
10284
10325
|
end
|
10285
10326
|
|
10327
|
+
# 公网地址信息
|
10328
|
+
class PublicAddressConfig < TencentCloud::Common::AbstractModel
|
10329
|
+
# @param Vip: 公网 ip
|
10330
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10331
|
+
# @type Vip: String
|
10332
|
+
# @param InternetMaxBandwidthOut: 公网最大带宽
|
10333
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10334
|
+
# @type InternetMaxBandwidthOut: Integer
|
10335
|
+
# @param GroupId: 公网所属分组 id
|
10336
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10337
|
+
# @type GroupId: String
|
10338
|
+
# @param GroupName: 公网所属分组名
|
10339
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10340
|
+
# @type GroupName: String
|
10341
|
+
# @param NetworkId: 公网负载均衡 id
|
10342
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10343
|
+
# @type NetworkId: String
|
10344
|
+
|
10345
|
+
attr_accessor :Vip, :InternetMaxBandwidthOut, :GroupId, :GroupName, :NetworkId
|
10346
|
+
|
10347
|
+
def initialize(vip=nil, internetmaxbandwidthout=nil, groupid=nil, groupname=nil, networkid=nil)
|
10348
|
+
@Vip = vip
|
10349
|
+
@InternetMaxBandwidthOut = internetmaxbandwidthout
|
10350
|
+
@GroupId = groupid
|
10351
|
+
@GroupName = groupname
|
10352
|
+
@NetworkId = networkid
|
10353
|
+
end
|
10354
|
+
|
10355
|
+
def deserialize(params)
|
10356
|
+
@Vip = params['Vip']
|
10357
|
+
@InternetMaxBandwidthOut = params['InternetMaxBandwidthOut']
|
10358
|
+
@GroupId = params['GroupId']
|
10359
|
+
@GroupName = params['GroupName']
|
10360
|
+
@NetworkId = params['NetworkId']
|
10361
|
+
end
|
10362
|
+
end
|
10363
|
+
|
10286
10364
|
# PublishConfigFiles请求参数结构体
|
10287
10365
|
class PublishConfigFilesRequest < TencentCloud::Common::AbstractModel
|
10288
10366
|
# @param InstanceId: TSE实例id
|
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.845
|
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-06-
|
11
|
+
date: 2024-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-tse.rb
|
37
36
|
- lib/v20201207/models.rb
|
38
37
|
- lib/v20201207/client.rb
|
38
|
+
- lib/tencentcloud-sdk-tse.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|