tencentcloud-sdk-clb 1.0.235 → 1.0.237

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/v20180317/models.rb +26 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc6f50c5ddf907b8186d2d36ad3642ea0a63c7cb
4
- data.tar.gz: 5057ddc86da22e91eba96b7b45be957396c253ab
3
+ metadata.gz: 4c5a8b835dec619356db015f7a877d717856a791
4
+ data.tar.gz: 112be9f1a7a1344d05a1162dc1822b7ccb58f356
5
5
  SHA512:
6
- metadata.gz: fbf66ca5db14c3e17786908dd73f20e7c5988dd489e0a7ff8f9f7c45b1cd08f3e04bc8ce197646098e7bb5d32e1e3e0984f11fb2e5cf4c0e3463ec49f4b149d0
7
- data.tar.gz: 568579a197a43086ff86fbf6c45a38035467a9830cafc6e4e8239b819f2dc55bfce097f98fce68dc573f6e08ed3d7c40f6e5ed0d25973ec9f1b1696a4267f12d
6
+ metadata.gz: 005674c9a40ed32bb5a1dc00e21af6ea729ad0209d216c9bde25dd032f11e5a4640542e838830098693441bad58d055006ce36d43b478fe950ff0cb1e7719164
7
+ data.tar.gz: 9d7831a97c8384fdc5ef1b4d8085ca43332ee6397bad5ac4f87a033d3536e056dd5d4498909196ebcfac61c38c4f975aac5752324047841bf26e874f1bc9d25f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.235
1
+ 1.0.237
@@ -817,6 +817,8 @@ module TencentCloud
817
817
  # @type SnatIps: Array
818
818
  # @param ClusterIds: 公网独占集群ID或者CDCId。
819
819
  # @type ClusterIds: Array
820
+ # @param SlaType: 性能保障规格。
821
+ # @type SlaType: String
820
822
  # @param ClusterTag: Stgw独占集群的标签。
821
823
  # @type ClusterTag: String
822
824
  # @param Zones: 仅适用于私有网络内网负载均衡。内网就近接入时,选择可用区下发。
@@ -824,9 +826,9 @@ module TencentCloud
824
826
  # @param EipAddressId: EIP 的唯一 ID,形如:eip-11112222,仅适用于内网负载均衡绑定EIP。
825
827
  # @type EipAddressId: String
826
828
 
827
- attr_accessor :LoadBalancerId, :LoadBalancerName, :ProjectId, :MasterZoneId, :SlaveZoneId, :ZoneId, :InternetAccessible, :VipIsp, :Vip, :Tags, :ExclusiveCluster, :BandwidthPackageId, :SnatPro, :SnatIps, :ClusterIds, :ClusterTag, :Zones, :EipAddressId
829
+ attr_accessor :LoadBalancerId, :LoadBalancerName, :ProjectId, :MasterZoneId, :SlaveZoneId, :ZoneId, :InternetAccessible, :VipIsp, :Vip, :Tags, :ExclusiveCluster, :BandwidthPackageId, :SnatPro, :SnatIps, :ClusterIds, :SlaType, :ClusterTag, :Zones, :EipAddressId
828
830
 
829
- def initialize(loadbalancerid=nil, loadbalancername=nil, projectid=nil, masterzoneid=nil, slavezoneid=nil, zoneid=nil, internetaccessible=nil, vipisp=nil, vip=nil, tags=nil, exclusivecluster=nil, bandwidthpackageid=nil, snatpro=nil, snatips=nil, clusterids=nil, clustertag=nil, zones=nil, eipaddressid=nil)
831
+ def initialize(loadbalancerid=nil, loadbalancername=nil, projectid=nil, masterzoneid=nil, slavezoneid=nil, zoneid=nil, internetaccessible=nil, vipisp=nil, vip=nil, tags=nil, exclusivecluster=nil, bandwidthpackageid=nil, snatpro=nil, snatips=nil, clusterids=nil, slatype=nil, clustertag=nil, zones=nil, eipaddressid=nil)
830
832
  @LoadBalancerId = loadbalancerid
831
833
  @LoadBalancerName = loadbalancername
832
834
  @ProjectId = projectid
@@ -842,6 +844,7 @@ module TencentCloud
842
844
  @SnatPro = snatpro
843
845
  @SnatIps = snatips
844
846
  @ClusterIds = clusterids
847
+ @SlaType = slatype
845
848
  @ClusterTag = clustertag
846
849
  @Zones = zones
847
850
  @EipAddressId = eipaddressid
@@ -883,6 +886,7 @@ module TencentCloud
883
886
  end
884
887
  end
885
888
  @ClusterIds = params['ClusterIds']
889
+ @SlaType = params['SlaType']
886
890
  @ClusterTag = params['ClusterTag']
887
891
  @Zones = params['Zones']
888
892
  @EipAddressId = params['EipAddressId']
@@ -1428,18 +1432,23 @@ module TencentCloud
1428
1432
  class CreateLoadBalancerResponse < TencentCloud::Common::AbstractModel
1429
1433
  # @param LoadBalancerIds: 由负载均衡实例唯一 ID 组成的数组。
1430
1434
  # @type LoadBalancerIds: Array
1435
+ # @param DealName: 订单号。
1436
+ # 注意:此字段可能返回 null,表示取不到有效值。
1437
+ # @type DealName: String
1431
1438
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1432
1439
  # @type RequestId: String
1433
1440
 
1434
- attr_accessor :LoadBalancerIds, :RequestId
1441
+ attr_accessor :LoadBalancerIds, :DealName, :RequestId
1435
1442
 
1436
- def initialize(loadbalancerids=nil, requestid=nil)
1443
+ def initialize(loadbalancerids=nil, dealname=nil, requestid=nil)
1437
1444
  @LoadBalancerIds = loadbalancerids
1445
+ @DealName = dealname
1438
1446
  @RequestId = requestid
1439
1447
  end
1440
1448
 
1441
1449
  def deserialize(params)
1442
1450
  @LoadBalancerIds = params['LoadBalancerIds']
1451
+ @DealName = params['DealName']
1443
1452
  @RequestId = params['RequestId']
1444
1453
  end
1445
1454
  end
@@ -3612,15 +3621,19 @@ module TencentCloud
3612
3621
  class DescribeTaskStatusRequest < TencentCloud::Common::AbstractModel
3613
3622
  # @param TaskId: 请求ID,即接口返回的 RequestId 参数。
3614
3623
  # @type TaskId: String
3624
+ # @param DealName: 订单ID。
3625
+ # @type DealName: String
3615
3626
 
3616
- attr_accessor :TaskId
3627
+ attr_accessor :TaskId, :DealName
3617
3628
 
3618
- def initialize(taskid=nil)
3629
+ def initialize(taskid=nil, dealname=nil)
3619
3630
  @TaskId = taskid
3631
+ @DealName = dealname
3620
3632
  end
3621
3633
 
3622
3634
  def deserialize(params)
3623
3635
  @TaskId = params['TaskId']
3636
+ @DealName = params['DealName']
3624
3637
  end
3625
3638
  end
3626
3639
 
@@ -3628,18 +3641,23 @@ module TencentCloud
3628
3641
  class DescribeTaskStatusResponse < TencentCloud::Common::AbstractModel
3629
3642
  # @param Status: 任务的当前状态。 0:成功,1:失败,2:进行中。
3630
3643
  # @type Status: Integer
3644
+ # @param LoadBalancerIds: 由负载均衡实例唯一 ID 组成的数组。
3645
+ # 注意:此字段可能返回 null,表示取不到有效值。
3646
+ # @type LoadBalancerIds: Array
3631
3647
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3632
3648
  # @type RequestId: String
3633
3649
 
3634
- attr_accessor :Status, :RequestId
3650
+ attr_accessor :Status, :LoadBalancerIds, :RequestId
3635
3651
 
3636
- def initialize(status=nil, requestid=nil)
3652
+ def initialize(status=nil, loadbalancerids=nil, requestid=nil)
3637
3653
  @Status = status
3654
+ @LoadBalancerIds = loadbalancerids
3638
3655
  @RequestId = requestid
3639
3656
  end
3640
3657
 
3641
3658
  def deserialize(params)
3642
3659
  @Status = params['Status']
3660
+ @LoadBalancerIds = params['LoadBalancerIds']
3643
3661
  @RequestId = params['RequestId']
3644
3662
  end
3645
3663
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-clb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.235
4
+ version: 1.0.237
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-05 00:00:00.000000000 Z
11
+ date: 2022-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common