tencentcloud-sdk-tdmq 3.0.1023 → 3.0.1024

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9389b4a920fd4d34c68bc884627e8f7f0493b2d2
4
- data.tar.gz: a3052b2d6849d21bfb1674ebfc37f7d5367a7d51
3
+ metadata.gz: 86f7ed03e15115d041b1a237de73df35212cbc7c
4
+ data.tar.gz: 6bdc0ebd485ebc4b59b4a245165eac15cb822803
5
5
  SHA512:
6
- metadata.gz: 51156030fad4841a5ca173602b554919363e7a1bd924b1230261e1b88beeb5b5e7e58b63fcde67d57e52741b9f52200abe9b9f67e578bc3b7739283e2b0581d0
7
- data.tar.gz: 909fe90f330f5c8699c908bdccd2352f8b427633540b07f642b030d9682a6f5e225225e8179f57852107ac55e085f7fe4b9ea5ea4c0c8cc42571c5d4d3502018
6
+ metadata.gz: fbbc549cfdede7f981c166bf08fbc109883b42a2849a304467a6364a6d8e902643cfbe9abe61436297be064de10b639007cda161ae58ee75170dddec9dae8c03
7
+ data.tar.gz: 43f5edefe909414821c8c59d1a0fdf73f40b74e0964f06d7d06d0fe3cb1bec83aeb8bca92a28d944af686a6528c51be3565ac53d50710591df00c4919cc190c5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1023
1
+ 3.0.1024
@@ -2913,30 +2913,6 @@ module TencentCloud
2913
2913
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2914
2914
  end
2915
2915
 
2916
- # RabbitMQ专享版修改公网管控台,vpc15672开关
2917
-
2918
- # @param request: Request instance for ModifyPublicNetworkAccessPoint.
2919
- # @type request: :class:`Tencentcloud::tdmq::V20200217::ModifyPublicNetworkAccessPointRequest`
2920
- # @rtype: :class:`Tencentcloud::tdmq::V20200217::ModifyPublicNetworkAccessPointResponse`
2921
- def ModifyPublicNetworkAccessPoint(request)
2922
- body = send_request('ModifyPublicNetworkAccessPoint', request.serialize)
2923
- response = JSON.parse(body)
2924
- if response['Response'].key?('Error') == false
2925
- model = ModifyPublicNetworkAccessPointResponse.new
2926
- model.deserialize(response['Response'])
2927
- model
2928
- else
2929
- code = response['Response']['Error']['Code']
2930
- message = response['Response']['Error']['Message']
2931
- reqid = response['Response']['RequestId']
2932
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2933
- end
2934
- rescue TencentCloud::Common::TencentCloudSDKException => e
2935
- raise e
2936
- rescue StandardError => e
2937
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2938
- end
2939
-
2940
2916
  # 修改pulsar专业版公网安全策略
2941
2917
 
2942
2918
  # @param request: Request instance for ModifyPublicNetworkSecurityPolicy.
@@ -8964,62 +8964,6 @@ module TencentCloud
8964
8964
  end
8965
8965
  end
8966
8966
 
8967
- # ModifyPublicNetworkAccessPoint请求参数结构体
8968
- class ModifyPublicNetworkAccessPointRequest < TencentCloud::Common::AbstractModel
8969
- # @param ClusterId: 集群名字
8970
- # @type ClusterId: String
8971
- # @param PublicNetworkAccessPointStatus: 是否开启
8972
- # @type PublicNetworkAccessPointStatus: Boolean
8973
- # @param SwitchOwner: 必填,公网控制台的开关/Vpc控制台的开关,示例值,Public/Vpc
8974
- # @type SwitchOwner: String
8975
- # @param VpcId: Vpc
8976
- # @type VpcId: String
8977
- # @param SubnetId: 子网
8978
- # @type SubnetId: String
8979
- # @param SelectIp: 子网下面指定ip作为vpc接入点
8980
- # @type SelectIp: String
8981
-
8982
- attr_accessor :ClusterId, :PublicNetworkAccessPointStatus, :SwitchOwner, :VpcId, :SubnetId, :SelectIp
8983
-
8984
- def initialize(clusterid=nil, publicnetworkaccesspointstatus=nil, switchowner=nil, vpcid=nil, subnetid=nil, selectip=nil)
8985
- @ClusterId = clusterid
8986
- @PublicNetworkAccessPointStatus = publicnetworkaccesspointstatus
8987
- @SwitchOwner = switchowner
8988
- @VpcId = vpcid
8989
- @SubnetId = subnetid
8990
- @SelectIp = selectip
8991
- end
8992
-
8993
- def deserialize(params)
8994
- @ClusterId = params['ClusterId']
8995
- @PublicNetworkAccessPointStatus = params['PublicNetworkAccessPointStatus']
8996
- @SwitchOwner = params['SwitchOwner']
8997
- @VpcId = params['VpcId']
8998
- @SubnetId = params['SubnetId']
8999
- @SelectIp = params['SelectIp']
9000
- end
9001
- end
9002
-
9003
- # ModifyPublicNetworkAccessPoint返回参数结构体
9004
- class ModifyPublicNetworkAccessPointResponse < TencentCloud::Common::AbstractModel
9005
- # @param ModifyResult: 修改结果
9006
- # @type ModifyResult: String
9007
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9008
- # @type RequestId: String
9009
-
9010
- attr_accessor :ModifyResult, :RequestId
9011
-
9012
- def initialize(modifyresult=nil, requestid=nil)
9013
- @ModifyResult = modifyresult
9014
- @RequestId = requestid
9015
- end
9016
-
9017
- def deserialize(params)
9018
- @ModifyResult = params['ModifyResult']
9019
- @RequestId = params['RequestId']
9020
- end
9021
- end
9022
-
9023
8967
  # ModifyPublicNetworkSecurityPolicy请求参数结构体
9024
8968
  class ModifyPublicNetworkSecurityPolicyRequest < TencentCloud::Common::AbstractModel
9025
8969
  # @param InstanceId: 集群id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tdmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1023
4
+ version: 3.0.1024
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-19 00:00:00.000000000 Z
11
+ date: 2025-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common