tencentcloud-sdk-cynosdb 3.0.598 → 3.0.600

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5c3c30f042cd10bbb079b6d146b889e765cca28
4
- data.tar.gz: 26ea6157d7b9169244541aaba38298ae76692dff
3
+ metadata.gz: dbb9c26b266563c1db907d6f6a525c9d8f03f619
4
+ data.tar.gz: 27a88ecbddf0a3c9699c96a1e45d593832ac8241
5
5
  SHA512:
6
- metadata.gz: 09d5aa45f580b765de4cd04dd51ff4cc78e61da8d37b45689ef9f754279ff149adbbecc44310d5dba7871fe0b8e8dc28aa9ab362cc6179482293a9ec3e9ec6a3
7
- data.tar.gz: c0904b4c003a32dc19983196c4f99248e23a45a5cc63bb45de62e9e758bd800fcfe746bb96ecc4bd577255573127d091631dbffff86c35b9e3090e82465ace37
6
+ metadata.gz: 80243395e8348b8e43ba160e8e8b0def903a8aec60a0169889c6a579878a80ccd04666750d3cc0b7008a1b8cbc30a1252f00759e0fc8895995457c1603060f0c
7
+ data.tar.gz: 1ec2abf86f35273ec5508415b3e07941aac46e5d1f80e1cae35c9e2aa32595fadffc4e6ed7f966d06aecc0d9f058ee9819190b7cba46b9f310afaf40c2ea92de
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.598
1
+ 3.0.600
@@ -1637,6 +1637,30 @@ module TencentCloud
1637
1637
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1638
1638
  end
1639
1639
 
1640
+ # 查询支持的数据库代理版本
1641
+
1642
+ # @param request: Request instance for DescribeSupportProxyVersion.
1643
+ # @type request: :class:`Tencentcloud::cynosdb::V20190107::DescribeSupportProxyVersionRequest`
1644
+ # @rtype: :class:`Tencentcloud::cynosdb::V20190107::DescribeSupportProxyVersionResponse`
1645
+ def DescribeSupportProxyVersion(request)
1646
+ body = send_request('DescribeSupportProxyVersion', request.serialize)
1647
+ response = JSON.parse(body)
1648
+ if response['Response'].key?('Error') == false
1649
+ model = DescribeSupportProxyVersionResponse.new
1650
+ model.deserialize(response['Response'])
1651
+ model
1652
+ else
1653
+ code = response['Response']['Error']['Code']
1654
+ message = response['Response']['Error']['Message']
1655
+ reqid = response['Response']['RequestId']
1656
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1657
+ end
1658
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1659
+ raise e
1660
+ rescue StandardError => e
1661
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1662
+ end
1663
+
1640
1664
  # 本接口(DescribeZones)用于查询可售卖地域可用区信息。
1641
1665
 
1642
1666
  # @param request: Request instance for DescribeZones.
@@ -5900,6 +5900,52 @@ module TencentCloud
5900
5900
  end
5901
5901
  end
5902
5902
 
5903
+ # DescribeSupportProxyVersion请求参数结构体
5904
+ class DescribeSupportProxyVersionRequest < TencentCloud::Common::AbstractModel
5905
+ # @param ClusterId: 集群ID
5906
+ # @type ClusterId: String
5907
+ # @param ProxyGroupId: 数据库代理组ID
5908
+ # @type ProxyGroupId: String
5909
+
5910
+ attr_accessor :ClusterId, :ProxyGroupId
5911
+
5912
+ def initialize(clusterid=nil, proxygroupid=nil)
5913
+ @ClusterId = clusterid
5914
+ @ProxyGroupId = proxygroupid
5915
+ end
5916
+
5917
+ def deserialize(params)
5918
+ @ClusterId = params['ClusterId']
5919
+ @ProxyGroupId = params['ProxyGroupId']
5920
+ end
5921
+ end
5922
+
5923
+ # DescribeSupportProxyVersion返回参数结构体
5924
+ class DescribeSupportProxyVersionResponse < TencentCloud::Common::AbstractModel
5925
+ # @param SupportProxyVersions: 支持的数据库代理版本集合
5926
+ # 注意:此字段可能返回 null,表示取不到有效值。
5927
+ # @type SupportProxyVersions: Array
5928
+ # @param CurrentProxyVersion: 当前proxy版本号
5929
+ # 注意:此字段可能返回 null,表示取不到有效值。
5930
+ # @type CurrentProxyVersion: String
5931
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5932
+ # @type RequestId: String
5933
+
5934
+ attr_accessor :SupportProxyVersions, :CurrentProxyVersion, :RequestId
5935
+
5936
+ def initialize(supportproxyversions=nil, currentproxyversion=nil, requestid=nil)
5937
+ @SupportProxyVersions = supportproxyversions
5938
+ @CurrentProxyVersion = currentproxyversion
5939
+ @RequestId = requestid
5940
+ end
5941
+
5942
+ def deserialize(params)
5943
+ @SupportProxyVersions = params['SupportProxyVersions']
5944
+ @CurrentProxyVersion = params['CurrentProxyVersion']
5945
+ @RequestId = params['RequestId']
5946
+ end
5947
+ end
5948
+
5903
5949
  # DescribeZones请求参数结构体
5904
5950
  class DescribeZonesRequest < TencentCloud::Common::AbstractModel
5905
5951
  # @param IncludeVirtualZones: 是否包含虚拟区
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cynosdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.598
4
+ version: 3.0.600
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-22 00:00:00.000000000 Z
11
+ date: 2023-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common