tencentcloud-sdk-ckafka 3.0.895 → 3.0.897
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/v20190819/client.rb +1 -1
- data/lib/v20190819/models.rb +37 -11
- 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: c9d6587934e8bb50ac809689cf8f75f6bf60df75
|
4
|
+
data.tar.gz: 7f54b80acb78c2c83d02885a793a877313f97f4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ed0d72b48905793428ac6516d94a384bfa8b57ac952cff164ec4476aab018a49fe7e9eb20817794c13d55d720bacefe0548a2a850c3fd9888631c635a7cb9e8
|
7
|
+
data.tar.gz: 221dad946a19df866cf2ec6a6d59606a30a78a51744b5af520dd3cf50691b3d09978339fc00581c5ed4ef773b62028c7df209b59a4905824eb69f41a82e99e50
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.897
|
data/lib/v20190819/client.rb
CHANGED
@@ -749,7 +749,7 @@ module TencentCloud
|
|
749
749
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
750
750
|
end
|
751
751
|
|
752
|
-
#
|
752
|
+
# 删除预付费实例,该接口会对实例执行隔离并删除的动作,执行成功后实例会被直接删除销毁
|
753
753
|
|
754
754
|
# @param request: Request instance for DeleteInstancePre.
|
755
755
|
# @type request: :class:`Tencentcloud::ckafka::V20190819::DeleteInstancePreRequest`
|
data/lib/v20190819/models.rb
CHANGED
@@ -2104,10 +2104,12 @@ module TencentCloud
|
|
2104
2104
|
# @type InstanceNum: Integer
|
2105
2105
|
# @param PublicNetworkMonthly: 公网带宽大小,单位 Mbps。默认是没有加上免费 3Mbps 带宽。例如总共需要 3Mbps 公网带宽,此处传 0;总共需要 6Mbps 公网带宽,此处传 3。需要保证传入参数为 3 的整数倍
|
2106
2106
|
# @type PublicNetworkMonthly: Integer
|
2107
|
+
# @param Tags: 标签
|
2108
|
+
# @type Tags: Array
|
2107
2109
|
|
2108
|
-
attr_accessor :InstanceName, :VpcId, :SubnetId, :BandWidth, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly
|
2110
|
+
attr_accessor :InstanceName, :VpcId, :SubnetId, :BandWidth, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags
|
2109
2111
|
|
2110
|
-
def initialize(instancename=nil, vpcid=nil, subnetid=nil, bandwidth=nil, instancetype=nil, msgretentiontime=nil, clusterid=nil, kafkaversion=nil, specificationstype=nil, disktype=nil, disksize=nil, partition=nil, topicnum=nil, zoneid=nil, multizoneflag=nil, zoneids=nil, instancenum=nil, publicnetworkmonthly=nil)
|
2112
|
+
def initialize(instancename=nil, vpcid=nil, subnetid=nil, bandwidth=nil, instancetype=nil, msgretentiontime=nil, clusterid=nil, kafkaversion=nil, specificationstype=nil, disktype=nil, disksize=nil, partition=nil, topicnum=nil, zoneid=nil, multizoneflag=nil, zoneids=nil, instancenum=nil, publicnetworkmonthly=nil, tags=nil)
|
2111
2113
|
@InstanceName = instancename
|
2112
2114
|
@VpcId = vpcid
|
2113
2115
|
@SubnetId = subnetid
|
@@ -2126,6 +2128,7 @@ module TencentCloud
|
|
2126
2128
|
@ZoneIds = zoneids
|
2127
2129
|
@InstanceNum = instancenum
|
2128
2130
|
@PublicNetworkMonthly = publicnetworkmonthly
|
2131
|
+
@Tags = tags
|
2129
2132
|
end
|
2130
2133
|
|
2131
2134
|
def deserialize(params)
|
@@ -2147,6 +2150,14 @@ module TencentCloud
|
|
2147
2150
|
@ZoneIds = params['ZoneIds']
|
2148
2151
|
@InstanceNum = params['InstanceNum']
|
2149
2152
|
@PublicNetworkMonthly = params['PublicNetworkMonthly']
|
2153
|
+
unless params['Tags'].nil?
|
2154
|
+
@Tags = []
|
2155
|
+
params['Tags'].each do |i|
|
2156
|
+
tag_tmp = Tag.new
|
2157
|
+
tag_tmp.deserialize(i)
|
2158
|
+
@Tags << tag_tmp
|
2159
|
+
end
|
2160
|
+
end
|
2150
2161
|
end
|
2151
2162
|
end
|
2152
2163
|
|
@@ -2358,8 +2369,8 @@ module TencentCloud
|
|
2358
2369
|
|
2359
2370
|
attr_accessor :ReturnCode, :ReturnMessage, :Data, :DeleteRouteTimestamp
|
2360
2371
|
extend Gem::Deprecate
|
2361
|
-
deprecate :DeleteRouteTimestamp, :none, 2024,
|
2362
|
-
deprecate :DeleteRouteTimestamp=, :none, 2024,
|
2372
|
+
deprecate :DeleteRouteTimestamp, :none, 2024, 9
|
2373
|
+
deprecate :DeleteRouteTimestamp=, :none, 2024, 9
|
2363
2374
|
|
2364
2375
|
def initialize(returncode=nil, returnmessage=nil, data=nil, deleteroutetimestamp=nil)
|
2365
2376
|
@ReturnCode = returncode
|
@@ -2465,7 +2476,7 @@ module TencentCloud
|
|
2465
2476
|
# @type ClusterId: Integer
|
2466
2477
|
# @param KafkaVersion: 实例版本。目前支持 "0.10.2","1.1.1","2.4.1","2.4.2","2.8.1"。"2.4.1" 与 "2.4.2" 属于同一个版本,传任意一个均可。
|
2467
2478
|
# @type KafkaVersion: String
|
2468
|
-
# @param SpecificationsType: 实例类型。"standard":标准版,"profession"
|
2479
|
+
# @param SpecificationsType: 实例类型。"standard":标准版,"profession":专业版。 (标准版仅国际站支持,国内站目前支持专业版)
|
2469
2480
|
# @type SpecificationsType: String
|
2470
2481
|
# @param DiskType: 专业版实例磁盘类型,标准版实例不需要填写。"CLOUD_SSD":SSD云硬盘;"CLOUD_BASIC":高性能云硬盘。不传默认值为 "CLOUD_BASIC"
|
2471
2482
|
# @type DiskType: String
|
@@ -2487,10 +2498,12 @@ module TencentCloud
|
|
2487
2498
|
# @type InstanceNum: Integer
|
2488
2499
|
# @param PublicNetworkMonthly: 公网带宽大小,单位 Mbps。默认是没有加上免费 3Mbps 带宽。例如总共需要 3Mbps 公网带宽,此处传 0;总共需要 6Mbps 公网带宽,此处传 3。需要保证传入参数为 3 的整数倍
|
2489
2500
|
# @type PublicNetworkMonthly: Integer
|
2501
|
+
# @param Tags: 标签
|
2502
|
+
# @type Tags: Array
|
2490
2503
|
|
2491
|
-
attr_accessor :InstanceName, :VpcId, :SubnetId, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :BandWidth, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly
|
2504
|
+
attr_accessor :InstanceName, :VpcId, :SubnetId, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :BandWidth, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags
|
2492
2505
|
|
2493
|
-
def initialize(instancename=nil, vpcid=nil, subnetid=nil, instancetype=nil, msgretentiontime=nil, clusterid=nil, kafkaversion=nil, specificationstype=nil, disktype=nil, bandwidth=nil, disksize=nil, partition=nil, topicnum=nil, zoneid=nil, multizoneflag=nil, zoneids=nil, instancenum=nil, publicnetworkmonthly=nil)
|
2506
|
+
def initialize(instancename=nil, vpcid=nil, subnetid=nil, instancetype=nil, msgretentiontime=nil, clusterid=nil, kafkaversion=nil, specificationstype=nil, disktype=nil, bandwidth=nil, disksize=nil, partition=nil, topicnum=nil, zoneid=nil, multizoneflag=nil, zoneids=nil, instancenum=nil, publicnetworkmonthly=nil, tags=nil)
|
2494
2507
|
@InstanceName = instancename
|
2495
2508
|
@VpcId = vpcid
|
2496
2509
|
@SubnetId = subnetid
|
@@ -2509,6 +2522,7 @@ module TencentCloud
|
|
2509
2522
|
@ZoneIds = zoneids
|
2510
2523
|
@InstanceNum = instancenum
|
2511
2524
|
@PublicNetworkMonthly = publicnetworkmonthly
|
2525
|
+
@Tags = tags
|
2512
2526
|
end
|
2513
2527
|
|
2514
2528
|
def deserialize(params)
|
@@ -2530,6 +2544,14 @@ module TencentCloud
|
|
2530
2544
|
@ZoneIds = params['ZoneIds']
|
2531
2545
|
@InstanceNum = params['InstanceNum']
|
2532
2546
|
@PublicNetworkMonthly = params['PublicNetworkMonthly']
|
2547
|
+
unless params['Tags'].nil?
|
2548
|
+
@Tags = []
|
2549
|
+
params['Tags'].each do |i|
|
2550
|
+
tag_tmp = Tag.new
|
2551
|
+
tag_tmp.deserialize(i)
|
2552
|
+
@Tags << tag_tmp
|
2553
|
+
end
|
2554
|
+
end
|
2533
2555
|
end
|
2534
2556
|
end
|
2535
2557
|
|
@@ -3788,16 +3810,20 @@ module TencentCloud
|
|
3788
3810
|
|
3789
3811
|
# DeleteRouteTriggerTime请求参数结构体
|
3790
3812
|
class DeleteRouteTriggerTimeRequest < TencentCloud::Common::AbstractModel
|
3813
|
+
# @param InstanceId: 实例id
|
3814
|
+
# @type InstanceId: String
|
3791
3815
|
# @param DelayTime: 修改时间
|
3792
3816
|
# @type DelayTime: String
|
3793
3817
|
|
3794
|
-
attr_accessor :DelayTime
|
3818
|
+
attr_accessor :InstanceId, :DelayTime
|
3795
3819
|
|
3796
|
-
def initialize(delaytime=nil)
|
3820
|
+
def initialize(instanceid=nil, delaytime=nil)
|
3821
|
+
@InstanceId = instanceid
|
3797
3822
|
@DelayTime = delaytime
|
3798
3823
|
end
|
3799
3824
|
|
3800
3825
|
def deserialize(params)
|
3826
|
+
@InstanceId = params['InstanceId']
|
3801
3827
|
@DelayTime = params['DelayTime']
|
3802
3828
|
end
|
3803
3829
|
end
|
@@ -12284,8 +12310,8 @@ module TencentCloud
|
|
12284
12310
|
|
12285
12311
|
attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo, :ExtraFlag
|
12286
12312
|
extend Gem::Deprecate
|
12287
|
-
deprecate :Exflag, :none, 2024,
|
12288
|
-
deprecate :Exflag=, :none, 2024,
|
12313
|
+
deprecate :Exflag, :none, 2024, 9
|
12314
|
+
deprecate :Exflag=, :none, 2024, 9
|
12289
12315
|
|
12290
12316
|
def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil, extraflag=nil)
|
12291
12317
|
@ZoneId = zoneid
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ckafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.897
|
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-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|