tencentcloud-sdk-tcm 3.0.843 → 3.0.844

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210413/models.rb +25 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 717b387d40c762702031e4076258adc686a8445f
4
- data.tar.gz: c2406739b115335b70985375a182e546536a6b52
3
+ metadata.gz: 14cdf48342fcd6668ca541998df7c041bbf89c4b
4
+ data.tar.gz: 7c05fe1b7c574dbb23bc083aad6db9b4e8394b53
5
5
  SHA512:
6
- metadata.gz: 530a90020c0701fb0b5bf72698ff54982ddad3f6f0647872f63ffae4022dd38d45a6065ac417bc6c05662c6a8695b231a410102b2080ed5c331e0d85c94689d4
7
- data.tar.gz: 7b86b5dc323dbea9cdcd2cc5bf7ef14d0a72b15b1f17a7e65be6926a8e24d32d4bddc1c432b8a07f5c4b01577832034be71e0de616007d16493e9a9f4ab9ea0f
6
+ metadata.gz: 17bf61f49b58c5dea0208083029cc485caf8820120a98ccdb3d52eb0f1709641df8c3b411f80b24e40bf9cfd2e66ea6ceae3e1f1f80fab79329eff01c1868a93
7
+ data.tar.gz: 7905614278e5009d212774b18f025efd1afbb1c6c31a1dfe27a398abd0ad0823789b21c86d59c57dfed19cffb2bf17bbc9c85a40e4d33a8b9e1f9f5fa831cd8e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.843
1
+ 3.0.844
@@ -27,19 +27,24 @@ module TencentCloud
27
27
  # @param InstanceId: APM 实例,如果创建时传入的参数为空,则表示自动创建 APM 实例。
28
28
  # 注意:此字段可能返回 null,表示取不到有效值。
29
29
  # @type InstanceId: String
30
+ # @param NeedDelete: 是否要删除APM实例
31
+ # 注意:此字段可能返回 null,表示取不到有效值。
32
+ # @type NeedDelete: Boolean
30
33
 
31
- attr_accessor :Enable, :Region, :InstanceId
34
+ attr_accessor :Enable, :Region, :InstanceId, :NeedDelete
32
35
 
33
- def initialize(enable=nil, region=nil, instanceid=nil)
36
+ def initialize(enable=nil, region=nil, instanceid=nil, needdelete=nil)
34
37
  @Enable = enable
35
38
  @Region = region
36
39
  @InstanceId = instanceid
40
+ @NeedDelete = needdelete
37
41
  end
38
42
 
39
43
  def deserialize(params)
40
44
  @Enable = params['Enable']
41
45
  @Region = params['Region']
42
46
  @InstanceId = params['InstanceId']
47
+ @NeedDelete = params['NeedDelete']
43
48
  end
44
49
  end
45
50
 
@@ -423,16 +428,22 @@ module TencentCloud
423
428
  # 第三方 Prometheus 配置参数
424
429
  class CustomPromConfig < TencentCloud::Common::AbstractModel
425
430
  # @param Url: Prometheus 访问地址
431
+ # 注意:此字段可能返回 null,表示取不到有效值。
426
432
  # @type Url: String
427
433
  # @param AuthType: 认证方式
434
+ # 注意:此字段可能返回 null,表示取不到有效值。
428
435
  # @type AuthType: String
429
436
  # @param IsPublicAddr: 是否公网地址,缺省为 false
437
+ # 注意:此字段可能返回 null,表示取不到有效值。
430
438
  # @type IsPublicAddr: Boolean
431
439
  # @param VpcId: 虚拟网络id
440
+ # 注意:此字段可能返回 null,表示取不到有效值。
432
441
  # @type VpcId: String
433
442
  # @param Username: Prometheus 用户名(用于 basic 认证方式)
443
+ # 注意:此字段可能返回 null,表示取不到有效值。
434
444
  # @type Username: String
435
445
  # @param Password: Prometheus 密码(用于 basic 认证方式)
446
+ # 注意:此字段可能返回 null,表示取不到有效值。
436
447
  # @type Password: String
437
448
 
438
449
  attr_accessor :Url, :AuthType, :IsPublicAddr, :VpcId, :Username, :Password
@@ -1205,10 +1216,16 @@ module TencentCloud
1205
1216
  # @param CrossRegionConfig: 负载均衡跨地域配置
1206
1217
  # 注意:此字段可能返回 null,表示取不到有效值。
1207
1218
  # @type CrossRegionConfig: :class:`Tencentcloud::Tcm.v20210413.models.CrossRegionConfig`
1219
+ # @param MasterZoneID: 设置跨可用区容灾时的主可用区ID
1220
+ # 注意:此字段可能返回 null,表示取不到有效值。
1221
+ # @type MasterZoneID: String
1222
+ # @param SlaveZoneID: 设置跨可用区容灾时的备可用区ID
1223
+ # 注意:此字段可能返回 null,表示取不到有效值。
1224
+ # @type SlaveZoneID: String
1208
1225
 
1209
- attr_accessor :LoadBalancerType, :SubnetId, :InternetChargeType, :InternetMaxBandwidthOut, :ZoneID, :VipIsp, :TgwGroupName, :AddressIPVersion, :Tags, :ExtensiveClusters, :CrossRegionConfig
1226
+ attr_accessor :LoadBalancerType, :SubnetId, :InternetChargeType, :InternetMaxBandwidthOut, :ZoneID, :VipIsp, :TgwGroupName, :AddressIPVersion, :Tags, :ExtensiveClusters, :CrossRegionConfig, :MasterZoneID, :SlaveZoneID
1210
1227
 
1211
- def initialize(loadbalancertype=nil, subnetid=nil, internetchargetype=nil, internetmaxbandwidthout=nil, zoneid=nil, vipisp=nil, tgwgroupname=nil, addressipversion=nil, tags=nil, extensiveclusters=nil, crossregionconfig=nil)
1228
+ def initialize(loadbalancertype=nil, subnetid=nil, internetchargetype=nil, internetmaxbandwidthout=nil, zoneid=nil, vipisp=nil, tgwgroupname=nil, addressipversion=nil, tags=nil, extensiveclusters=nil, crossregionconfig=nil, masterzoneid=nil, slavezoneid=nil)
1212
1229
  @LoadBalancerType = loadbalancertype
1213
1230
  @SubnetId = subnetid
1214
1231
  @InternetChargeType = internetchargetype
@@ -1220,6 +1237,8 @@ module TencentCloud
1220
1237
  @Tags = tags
1221
1238
  @ExtensiveClusters = extensiveclusters
1222
1239
  @CrossRegionConfig = crossregionconfig
1240
+ @MasterZoneID = masterzoneid
1241
+ @SlaveZoneID = slavezoneid
1223
1242
  end
1224
1243
 
1225
1244
  def deserialize(params)
@@ -1247,6 +1266,8 @@ module TencentCloud
1247
1266
  @CrossRegionConfig = CrossRegionConfig.new
1248
1267
  @CrossRegionConfig.deserialize(params['CrossRegionConfig'])
1249
1268
  end
1269
+ @MasterZoneID = params['MasterZoneID']
1270
+ @SlaveZoneID = params['SlaveZoneID']
1250
1271
  end
1251
1272
  end
1252
1273
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcm
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.843
4
+ version: 3.0.844
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-13 00:00:00.000000000 Z
11
+ date: 2024-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common