tencentcloud-sdk-apigateway 3.0.658 → 3.0.659
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/v20180808/models.rb +25 -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: f38376ff9718a8b254d7700aa72306a877fe2ed0
|
|
4
|
+
data.tar.gz: 254b1abae0f06b862242a09be182ea19d4cf6833
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9f98b9941e2870779c40b3668f1bcb2fa21e6cb511eece5935abeee0f2167b640814b6f241031bd5992a926a4d86eda281cf767c4ba9f931eda880b36c82bd2
|
|
7
|
+
data.tar.gz: 0cf3eef8378274b92347cf9eb0ed9b7db7864e020290a02e74af772c6764697315635ffc0bab5150f3b1ac9d0ceb86cef84554af841919c5840827a57201d77d
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.659
|
data/lib/v20180808/models.rb
CHANGED
|
@@ -6524,10 +6524,22 @@ module TencentCloud
|
|
|
6524
6524
|
# @type DealName: String
|
|
6525
6525
|
# @param ResourceId: 资源ID同唯一id
|
|
6526
6526
|
# @type ResourceId: String
|
|
6527
|
+
# @param OuterIpList: 公网IP列表
|
|
6528
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6529
|
+
# @type OuterIpList: Array
|
|
6530
|
+
# @param InnerIpList: 内网IP列表
|
|
6531
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6532
|
+
# @type InnerIpList: Array
|
|
6533
|
+
# @param InstanceChargePrepaid: 专享实例计费信息
|
|
6534
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6535
|
+
# @type InstanceChargePrepaid: :class:`Tencentcloud::Apigateway.v20180808.models.InstanceChargePrepaid`
|
|
6536
|
+
# @param UniqVpcId: 所属vpc
|
|
6537
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6538
|
+
# @type UniqVpcId: String
|
|
6527
6539
|
|
|
6528
|
-
attr_accessor :InstanceId, :InstanceName, :InstanceDescription, :InstanceChargeType, :InstanceType, :InstanceState, :CreatedTime, :DealName, :ResourceId
|
|
6540
|
+
attr_accessor :InstanceId, :InstanceName, :InstanceDescription, :InstanceChargeType, :InstanceType, :InstanceState, :CreatedTime, :DealName, :ResourceId, :OuterIpList, :InnerIpList, :InstanceChargePrepaid, :UniqVpcId
|
|
6529
6541
|
|
|
6530
|
-
def initialize(instanceid=nil, instancename=nil, instancedescription=nil, instancechargetype=nil, instancetype=nil, instancestate=nil, createdtime=nil, dealname=nil, resourceid=nil)
|
|
6542
|
+
def initialize(instanceid=nil, instancename=nil, instancedescription=nil, instancechargetype=nil, instancetype=nil, instancestate=nil, createdtime=nil, dealname=nil, resourceid=nil, outeriplist=nil, inneriplist=nil, instancechargeprepaid=nil, uniqvpcid=nil)
|
|
6531
6543
|
@InstanceId = instanceid
|
|
6532
6544
|
@InstanceName = instancename
|
|
6533
6545
|
@InstanceDescription = instancedescription
|
|
@@ -6537,6 +6549,10 @@ module TencentCloud
|
|
|
6537
6549
|
@CreatedTime = createdtime
|
|
6538
6550
|
@DealName = dealname
|
|
6539
6551
|
@ResourceId = resourceid
|
|
6552
|
+
@OuterIpList = outeriplist
|
|
6553
|
+
@InnerIpList = inneriplist
|
|
6554
|
+
@InstanceChargePrepaid = instancechargeprepaid
|
|
6555
|
+
@UniqVpcId = uniqvpcid
|
|
6540
6556
|
end
|
|
6541
6557
|
|
|
6542
6558
|
def deserialize(params)
|
|
@@ -6549,6 +6565,13 @@ module TencentCloud
|
|
|
6549
6565
|
@CreatedTime = params['CreatedTime']
|
|
6550
6566
|
@DealName = params['DealName']
|
|
6551
6567
|
@ResourceId = params['ResourceId']
|
|
6568
|
+
@OuterIpList = params['OuterIpList']
|
|
6569
|
+
@InnerIpList = params['InnerIpList']
|
|
6570
|
+
unless params['InstanceChargePrepaid'].nil?
|
|
6571
|
+
@InstanceChargePrepaid = InstanceChargePrepaid.new
|
|
6572
|
+
@InstanceChargePrepaid.deserialize(params['InstanceChargePrepaid'])
|
|
6573
|
+
end
|
|
6574
|
+
@UniqVpcId = params['UniqVpcId']
|
|
6552
6575
|
end
|
|
6553
6576
|
end
|
|
6554
6577
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-apigateway
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.659
|
|
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-09-
|
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|