tencentcloud-sdk-ckafka 3.0.942 → 3.0.943

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190819/models.rb +20 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bec1e2538805c1015be90244c0a8493da700a540
4
- data.tar.gz: a3f37beb1636322447b22eb3440bfcd49e44d67c
3
+ metadata.gz: e9847a184db9daa4e2c7f61f0ba0516caf245cdb
4
+ data.tar.gz: f9572c9905cf7e9633fe7c6d395633b3ca42b9eb
5
5
  SHA512:
6
- metadata.gz: 8de85777933294e1012ebc2538d5561ece8c15198ab25e0143551889fd2e96acb909a8a177c033bb24d52de798d4eed56d29bcb243634be7c16c8184e51e6ccc
7
- data.tar.gz: 2d60c532273452a494be23ca442fea202c5f5c79c08f624f0f91d0767267ad1bb58a79defb277002447de4d01a175c7fd02e5c8231e443235f1dd47843914439
6
+ metadata.gz: 648b551cdbcba52b6c41ebb86911e2a26d645e016d5c862e408e3d1fa26de78bfc55122d297f296b0058d521a3b09e2371bff4cd75016f93c954a8e26dc5def0
7
+ data.tar.gz: 59c95fd140c4bffbb9f594caa760b8791ed24ab7d8551e3d56267f64eafc9c9e414f6c0e6ba46de0e1a3a46184ba729981f5a680cb44ca390b76dcbd56171e2b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.942
1
+ 3.0.943
@@ -2068,9 +2068,9 @@ module TencentCloud
2068
2068
 
2069
2069
  # CreateInstancePost请求参数结构体
2070
2070
  class CreateInstancePostRequest < TencentCloud::Common::AbstractModel
2071
- # @param InstanceName: 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
2071
+ # @param InstanceName: ckafka集群实例Name,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
2072
2072
  # @type InstanceName: String
2073
- # @param VpcId: 创建的实例默认接入点所在的 vpc 对应 vpcId。目前不支持创建基础网络实例,因此该参数必填
2073
+ # @param VpcId: 私有网络Id 创建的实例默认接入点所在的 vpc 对应 vpcId。目前不支持创建基础网络实例,因此该参数必填
2074
2074
  # @type VpcId: String
2075
2075
  # @param SubnetId: 子网id。创建实例默认接入点所在的子网对应的子网 id
2076
2076
  # @type SubnetId: String
@@ -2106,10 +2106,12 @@ module TencentCloud
2106
2106
  # @type PublicNetworkMonthly: Integer
2107
2107
  # @param Tags: 标签
2108
2108
  # @type Tags: Array
2109
+ # @param ElasticBandwidthSwitch: 弹性带宽开关 0不开启 1开启(0默认)
2110
+ # @type ElasticBandwidthSwitch: Integer
2109
2111
 
2110
- attr_accessor :InstanceName, :VpcId, :SubnetId, :BandWidth, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags
2112
+ attr_accessor :InstanceName, :VpcId, :SubnetId, :BandWidth, :InstanceType, :MsgRetentionTime, :ClusterId, :KafkaVersion, :SpecificationsType, :DiskType, :DiskSize, :Partition, :TopicNum, :ZoneId, :MultiZoneFlag, :ZoneIds, :InstanceNum, :PublicNetworkMonthly, :Tags, :ElasticBandwidthSwitch
2111
2113
 
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)
2114
+ 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, elasticbandwidthswitch=nil)
2113
2115
  @InstanceName = instancename
2114
2116
  @VpcId = vpcid
2115
2117
  @SubnetId = subnetid
@@ -2129,6 +2131,7 @@ module TencentCloud
2129
2131
  @InstanceNum = instancenum
2130
2132
  @PublicNetworkMonthly = publicnetworkmonthly
2131
2133
  @Tags = tags
2134
+ @ElasticBandwidthSwitch = elasticbandwidthswitch
2132
2135
  end
2133
2136
 
2134
2137
  def deserialize(params)
@@ -2158,6 +2161,7 @@ module TencentCloud
2158
2161
  @Tags << tag_tmp
2159
2162
  end
2160
2163
  end
2164
+ @ElasticBandwidthSwitch = params['ElasticBandwidthSwitch']
2161
2165
  end
2162
2166
  end
2163
2167
 
@@ -2220,7 +2224,7 @@ module TencentCloud
2220
2224
  # @param DealNames: 订单号列表
2221
2225
  # 注意:此字段可能返回 null,表示取不到有效值。
2222
2226
  # @type DealNames: Array
2223
- # @param InstanceId: 实例Id,当购买多个实例时,默认返回购买的第一个实例 id
2227
+ # @param InstanceId: ckafka集群实例Id,当购买多个实例时,默认返回购买的第一个实例 id
2224
2228
  # 注意:此字段可能返回 null,表示取不到有效值。
2225
2229
  # @type InstanceId: String
2226
2230
  # @param DealNameInstanceIdMapping: 订单和购买实例对应映射列表
@@ -2253,7 +2257,7 @@ module TencentCloud
2253
2257
 
2254
2258
  # CreateInstancePre请求参数结构体
2255
2259
  class CreateInstancePreRequest < TencentCloud::Common::AbstractModel
2256
- # @param InstanceName: 实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
2260
+ # @param InstanceName: ckafka集群实例Name,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
2257
2261
  # @type InstanceName: String
2258
2262
  # @param ZoneId: 可用区。当购买多可用区实例时,当前参数为主可用区。需要保证传入的参数和 SubnetId 所在子网属于同一个可用区
2259
2263
  # @type ZoneId: Integer
@@ -2261,7 +2265,7 @@ module TencentCloud
2261
2265
  # @type Period: String
2262
2266
  # @param InstanceType: 国际站标准版实例规格。目前只有国际站标准版使用当前字段区分规格,国内站标准版使用峰值带宽区分规格。除了国际站标准版外的所有实例填写 1 即可。国际站标准版实例:入门型(general)]填写1;[标准型(standard)]填写2;[进阶型(advanced)]填写3;[容量型(capacity)]填写4;[高阶型1(specialized-1)]填写5;[高阶型2(specialized-2)]填写6;[高阶型3(specialized-3)]填写7;[高阶型4(specialized-4)]填写8。
2263
2267
  # @type InstanceType: Integer
2264
- # @param VpcId: vpcId,必填
2268
+ # @param VpcId: 私有网络Id,必填
2265
2269
  # @type VpcId: String
2266
2270
  # @param SubnetId: 子网id,必填
2267
2271
  # @type SubnetId: String
@@ -2277,7 +2281,7 @@ module TencentCloud
2277
2281
  # @type SpecificationsType: String
2278
2282
  # @param DiskSize: 磁盘大小,如果跟控制台规格配比不相符,则无法创建成功
2279
2283
  # @type DiskSize: Integer
2280
- # @param BandWidth: 带宽,如果跟控制台规格配比不相符,则无法创建成功
2284
+ # @param BandWidth: 实例带宽,单位MB/s; 最小值:20MB/s, 高级版最大值:360MB/s,专业版最大值:100000MB/s 标准版固定带宽规格: 40MB/s, 100MB/s, 150MB/s
2281
2285
  # @type BandWidth: Integer
2282
2286
  # @param Partition: 分区大小,如果跟控制台规格配比不相符,则无法创建成功
2283
2287
  # @type Partition: Integer
@@ -2295,10 +2299,12 @@ module TencentCloud
2295
2299
  # @type InstanceNum: Integer
2296
2300
  # @param AutoVoucher: 是否自动选择代金券:1-是;0否。默认为0
2297
2301
  # @type AutoVoucher: Integer
2302
+ # @param ElasticBandwidthSwitch: 弹性带宽开关 0不开启 1开启(0默认)
2303
+ # @type ElasticBandwidthSwitch: Integer
2298
2304
 
2299
- attr_accessor :InstanceName, :ZoneId, :Period, :InstanceType, :VpcId, :SubnetId, :MsgRetentionTime, :ClusterId, :RenewFlag, :KafkaVersion, :SpecificationsType, :DiskSize, :BandWidth, :Partition, :Tags, :DiskType, :MultiZoneFlag, :ZoneIds, :PublicNetworkMonthly, :InstanceNum, :AutoVoucher
2305
+ attr_accessor :InstanceName, :ZoneId, :Period, :InstanceType, :VpcId, :SubnetId, :MsgRetentionTime, :ClusterId, :RenewFlag, :KafkaVersion, :SpecificationsType, :DiskSize, :BandWidth, :Partition, :Tags, :DiskType, :MultiZoneFlag, :ZoneIds, :PublicNetworkMonthly, :InstanceNum, :AutoVoucher, :ElasticBandwidthSwitch
2300
2306
 
2301
- def initialize(instancename=nil, zoneid=nil, period=nil, instancetype=nil, vpcid=nil, subnetid=nil, msgretentiontime=nil, clusterid=nil, renewflag=nil, kafkaversion=nil, specificationstype=nil, disksize=nil, bandwidth=nil, partition=nil, tags=nil, disktype=nil, multizoneflag=nil, zoneids=nil, publicnetworkmonthly=nil, instancenum=nil, autovoucher=nil)
2307
+ def initialize(instancename=nil, zoneid=nil, period=nil, instancetype=nil, vpcid=nil, subnetid=nil, msgretentiontime=nil, clusterid=nil, renewflag=nil, kafkaversion=nil, specificationstype=nil, disksize=nil, bandwidth=nil, partition=nil, tags=nil, disktype=nil, multizoneflag=nil, zoneids=nil, publicnetworkmonthly=nil, instancenum=nil, autovoucher=nil, elasticbandwidthswitch=nil)
2302
2308
  @InstanceName = instancename
2303
2309
  @ZoneId = zoneid
2304
2310
  @Period = period
@@ -2320,6 +2326,7 @@ module TencentCloud
2320
2326
  @PublicNetworkMonthly = publicnetworkmonthly
2321
2327
  @InstanceNum = instancenum
2322
2328
  @AutoVoucher = autovoucher
2329
+ @ElasticBandwidthSwitch = elasticbandwidthswitch
2323
2330
  end
2324
2331
 
2325
2332
  def deserialize(params)
@@ -2351,6 +2358,7 @@ module TencentCloud
2351
2358
  @PublicNetworkMonthly = params['PublicNetworkMonthly']
2352
2359
  @InstanceNum = params['InstanceNum']
2353
2360
  @AutoVoucher = params['AutoVoucher']
2361
+ @ElasticBandwidthSwitch = params['ElasticBandwidthSwitch']
2354
2362
  end
2355
2363
  end
2356
2364
 
@@ -10124,7 +10132,7 @@ module TencentCloud
10124
10132
 
10125
10133
  # 操作类型返回的Data结构
10126
10134
  class OperateResponseData < TencentCloud::Common::AbstractModel
10127
- # @param FlowId: FlowId11
10135
+ # @param FlowId: 流程Id
10128
10136
  # 注意:此字段可能返回 null,表示取不到有效值。
10129
10137
  # @type FlowId: Integer
10130
10138
  # @param RouteDTO: RouteIdDto
@@ -10798,7 +10806,7 @@ module TencentCloud
10798
10806
 
10799
10807
  # RouteDTO
10800
10808
  class RouteDTO < TencentCloud::Common::AbstractModel
10801
- # @param RouteId: RouteId11
10809
+ # @param RouteId: 路由Id
10802
10810
  # 注意:此字段可能返回 null,表示取不到有效值。
10803
10811
  # @type RouteId: Integer
10804
10812
 
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.942
4
+ version: 3.0.943
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-15 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common