tencentcloud-sdk-ckafka 3.0.941 → 3.0.942
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/models.rb +15 -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: bec1e2538805c1015be90244c0a8493da700a540
|
4
|
+
data.tar.gz: a3f37beb1636322447b22eb3440bfcd49e44d67c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8de85777933294e1012ebc2538d5561ece8c15198ab25e0143551889fd2e96acb909a8a177c033bb24d52de798d4eed56d29bcb243634be7c16c8184e51e6ccc
|
7
|
+
data.tar.gz: 2d60c532273452a494be23ca442fea202c5f5c79c08f624f0f91d0767267ad1bb58a79defb277002447de4d01a175c7fd02e5c8231e443235f1dd47843914439
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.942
|
data/lib/v20190819/models.rb
CHANGED
@@ -2035,7 +2035,7 @@ module TencentCloud
|
|
2035
2035
|
# @param DealNames: 订单号列表
|
2036
2036
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2037
2037
|
# @type DealNames: Array
|
2038
|
-
# @param InstanceId:
|
2038
|
+
# @param InstanceId: ckafka集群实例Id,当购买多个实例时,默认返回购买的第一个实例 id
|
2039
2039
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2040
2040
|
# @type InstanceId: String
|
2041
2041
|
# @param DealNameInstanceIdMapping: 订单和购买实例对应映射列表
|
@@ -2369,8 +2369,8 @@ module TencentCloud
|
|
2369
2369
|
|
2370
2370
|
attr_accessor :ReturnCode, :ReturnMessage, :Data, :DeleteRouteTimestamp
|
2371
2371
|
extend Gem::Deprecate
|
2372
|
-
deprecate :DeleteRouteTimestamp, :none, 2024,
|
2373
|
-
deprecate :DeleteRouteTimestamp=, :none, 2024,
|
2372
|
+
deprecate :DeleteRouteTimestamp, :none, 2024, 11
|
2373
|
+
deprecate :DeleteRouteTimestamp=, :none, 2024, 11
|
2374
2374
|
|
2375
2375
|
def initialize(returncode=nil, returnmessage=nil, data=nil, deleteroutetimestamp=nil)
|
2376
2376
|
@ReturnCode = returncode
|
@@ -2462,9 +2462,9 @@ module TencentCloud
|
|
2462
2462
|
|
2463
2463
|
# CreatePostPaidInstance请求参数结构体
|
2464
2464
|
class CreatePostPaidInstanceRequest < TencentCloud::Common::AbstractModel
|
2465
|
-
# @param InstanceName:
|
2465
|
+
# @param InstanceName: ckafka集群实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
|
2466
2466
|
# @type InstanceName: String
|
2467
|
-
# @param VpcId: 创建的实例默认接入点所在的 vpc 对应 vpcId。目前不支持创建基础网络实例,因此该参数必填
|
2467
|
+
# @param VpcId: 私有网络Id 创建的实例默认接入点所在的 vpc 对应 vpcId。目前不支持创建基础网络实例,因此该参数必填
|
2468
2468
|
# @type VpcId: String
|
2469
2469
|
# @param SubnetId: 子网id。创建实例默认接入点所在的子网对应的子网 id
|
2470
2470
|
# @type SubnetId: String
|
@@ -2500,10 +2500,12 @@ module TencentCloud
|
|
2500
2500
|
# @type PublicNetworkMonthly: Integer
|
2501
2501
|
# @param Tags: 标签
|
2502
2502
|
# @type Tags: Array
|
2503
|
+
# @param ElasticBandwidthSwitch: 弹性带宽开关 0不开启 1开启(0默认
|
2504
|
+
# @type ElasticBandwidthSwitch: Integer
|
2503
2505
|
|
2504
|
-
attr_accessor :InstanceName, :VpcId, :SubnetId, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :BandWidth, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags
|
2506
|
+
attr_accessor :InstanceName, :VpcId, :SubnetId, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :BandWidth, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags, :ElasticBandwidthSwitch
|
2505
2507
|
|
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)
|
2508
|
+
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, elasticbandwidthswitch=nil)
|
2507
2509
|
@InstanceName = instancename
|
2508
2510
|
@VpcId = vpcid
|
2509
2511
|
@SubnetId = subnetid
|
@@ -2523,6 +2525,7 @@ module TencentCloud
|
|
2523
2525
|
@InstanceNum = instancenum
|
2524
2526
|
@PublicNetworkMonthly = publicnetworkmonthly
|
2525
2527
|
@Tags = tags
|
2528
|
+
@ElasticBandwidthSwitch = elasticbandwidthswitch
|
2526
2529
|
end
|
2527
2530
|
|
2528
2531
|
def deserialize(params)
|
@@ -2552,6 +2555,7 @@ module TencentCloud
|
|
2552
2555
|
@Tags << tag_tmp
|
2553
2556
|
end
|
2554
2557
|
end
|
2558
|
+
@ElasticBandwidthSwitch = params['ElasticBandwidthSwitch']
|
2555
2559
|
end
|
2556
2560
|
end
|
2557
2561
|
|
@@ -9192,8 +9196,8 @@ module TencentCloud
|
|
9192
9196
|
|
9193
9197
|
attr_accessor :InstanceId, :MsgRetentionTime, :InstanceName, :Config, :DynamicRetentionConfig, :RebalanceTime, :PublicNetwork, :DynamicDiskConfig, :MaxMessageByte
|
9194
9198
|
extend Gem::Deprecate
|
9195
|
-
deprecate :DynamicDiskConfig, :none, 2024,
|
9196
|
-
deprecate :DynamicDiskConfig=, :none, 2024,
|
9199
|
+
deprecate :DynamicDiskConfig, :none, 2024, 11
|
9200
|
+
deprecate :DynamicDiskConfig=, :none, 2024, 11
|
9197
9201
|
|
9198
9202
|
def initialize(instanceid=nil, msgretentiontime=nil, instancename=nil, config=nil, dynamicretentionconfig=nil, rebalancetime=nil, publicnetwork=nil, dynamicdiskconfig=nil, maxmessagebyte=nil)
|
9199
9203
|
@InstanceId = instanceid
|
@@ -12372,8 +12376,8 @@ module TencentCloud
|
|
12372
12376
|
|
12373
12377
|
attr_accessor :ZoneId, :IsInternalApp, :AppId, :Flag, :ZoneName, :ZoneStatus, :Exflag, :SoldOut, :SalesInfo, :ExtraFlag
|
12374
12378
|
extend Gem::Deprecate
|
12375
|
-
deprecate :Exflag, :none, 2024,
|
12376
|
-
deprecate :Exflag=, :none, 2024,
|
12379
|
+
deprecate :Exflag, :none, 2024, 11
|
12380
|
+
deprecate :Exflag=, :none, 2024, 11
|
12377
12381
|
|
12378
12382
|
def initialize(zoneid=nil, isinternalapp=nil, appid=nil, flag=nil, zonename=nil, zonestatus=nil, exflag=nil, soldout=nil, salesinfo=nil, extraflag=nil)
|
12379
12383
|
@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.942
|
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-
|
11
|
+
date: 2024-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|