tencentcloud-sdk-dlc 3.0.837 → 3.0.839

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: e2934ca33db8cf75485d59a792fd2b541e46976b
4
- data.tar.gz: 0ef8d4ca02f1a19afe732096a07099221393beff
3
+ metadata.gz: c5e8df9fb7f464bae2bc3b32c59d95effd94dbd1
4
+ data.tar.gz: 713257a1176c68cf960c3462381dc258bb1411ae
5
5
  SHA512:
6
- metadata.gz: 7b3e4f2d04fbbd3b0db43f7ca696d45f1120562ea1802fcd7c5a3e1106e3bbb7d5cf485a9da5b5760376442823bbae03805ba6317c46f2621c88dd829e179d1c
7
- data.tar.gz: 6975856ca8b8af62ae73c43e760c70febc0a2f863faa7030e37d9381b023d1599bfb011ef7972a4ba6813af8777d220d8846f762d75e5f9bddcbc02e1f6f1306
6
+ metadata.gz: 02713bb0db53a5d88a5ec9eaa9c45f5b9cfed11c98d3340f06df9bd5a370da4eb4ba98ea470dd9c56014b6d549710f90cdd91f673bf05202d95c2d186b2df426
7
+ data.tar.gz: 7fe4fe742b648d53a66bf2dd96aca6ac436f75070948007040b8d9681922de49b5ee146f245a1e63dcfbcf58426cdbd4a911fdda134018af84b07810b43e7f2b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.837
1
+ 3.0.839
@@ -461,6 +461,30 @@ module TencentCloud
461
461
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
462
462
  end
463
463
 
464
+ # 此接口(CreateCHDFSBindingProduct)用于创建元数据加速桶和产品绑定关系
465
+
466
+ # @param request: Request instance for CreateCHDFSBindingProduct.
467
+ # @type request: :class:`Tencentcloud::dlc::V20210125::CreateCHDFSBindingProductRequest`
468
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::CreateCHDFSBindingProductResponse`
469
+ def CreateCHDFSBindingProduct(request)
470
+ body = send_request('CreateCHDFSBindingProduct', request.serialize)
471
+ response = JSON.parse(body)
472
+ if response['Response'].key?('Error') == false
473
+ model = CreateCHDFSBindingProductResponse.new
474
+ model.deserialize(response['Response'])
475
+ model
476
+ else
477
+ code = response['Response']['Error']['Code']
478
+ message = response['Response']['Error']['Message']
479
+ reqid = response['Response']['RequestId']
480
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
481
+ end
482
+ rescue TencentCloud::Common::TencentCloudSDKException => e
483
+ raise e
484
+ rescue StandardError => e
485
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
486
+ end
487
+
464
488
  # DMS元数据创建库
465
489
 
466
490
  # @param request: Request instance for CreateDMSDatabase.
@@ -989,6 +1013,30 @@ module TencentCloud
989
1013
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
990
1014
  end
991
1015
 
1016
+ # 此接口(DeleteCHDFSBindingProduct)用于删除元数据加速桶和产品绑定关系
1017
+
1018
+ # @param request: Request instance for DeleteCHDFSBindingProduct.
1019
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DeleteCHDFSBindingProductRequest`
1020
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DeleteCHDFSBindingProductResponse`
1021
+ def DeleteCHDFSBindingProduct(request)
1022
+ body = send_request('DeleteCHDFSBindingProduct', request.serialize)
1023
+ response = JSON.parse(body)
1024
+ if response['Response'].key?('Error') == false
1025
+ model = DeleteCHDFSBindingProductResponse.new
1026
+ model.deserialize(response['Response'])
1027
+ model
1028
+ else
1029
+ code = response['Response']['Error']['Code']
1030
+ message = response['Response']['Error']['Message']
1031
+ reqid = response['Response']['RequestId']
1032
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1033
+ end
1034
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1035
+ raise e
1036
+ rescue StandardError => e
1037
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1038
+ end
1039
+
992
1040
  # 删除数据引擎
993
1041
 
994
1042
  # @param request: Request instance for DeleteDataEngine.
@@ -1085,6 +1133,30 @@ module TencentCloud
1085
1133
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1086
1134
  end
1087
1135
 
1136
+ # 本接口(RegisterThirdPartyAccessUser)用于移除第三方平台访问
1137
+
1138
+ # @param request: Request instance for DeleteThirdPartyAccessUser.
1139
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DeleteThirdPartyAccessUserRequest`
1140
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DeleteThirdPartyAccessUserResponse`
1141
+ def DeleteThirdPartyAccessUser(request)
1142
+ body = send_request('DeleteThirdPartyAccessUser', request.serialize)
1143
+ response = JSON.parse(body)
1144
+ if response['Response'].key?('Error') == false
1145
+ model = DeleteThirdPartyAccessUserResponse.new
1146
+ model.deserialize(response['Response'])
1147
+ model
1148
+ else
1149
+ code = response['Response']['Error']['Code']
1150
+ message = response['Response']['Error']['Message']
1151
+ reqid = response['Response']['RequestId']
1152
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1153
+ end
1154
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1155
+ raise e
1156
+ rescue StandardError => e
1157
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1158
+ end
1159
+
1088
1160
  # 删除用户
1089
1161
 
1090
1162
  # @param request: Request instance for DeleteUser.
@@ -1181,6 +1253,30 @@ module TencentCloud
1181
1253
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1182
1254
  end
1183
1255
 
1256
+ # 查询DLC Catalog授权列表
1257
+
1258
+ # @param request: Request instance for DescribeDLCCatalogAccess.
1259
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeDLCCatalogAccessRequest`
1260
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeDLCCatalogAccessResponse`
1261
+ def DescribeDLCCatalogAccess(request)
1262
+ body = send_request('DescribeDLCCatalogAccess', request.serialize)
1263
+ response = JSON.parse(body)
1264
+ if response['Response'].key?('Error') == false
1265
+ model = DescribeDLCCatalogAccessResponse.new
1266
+ model.deserialize(response['Response'])
1267
+ model
1268
+ else
1269
+ code = response['Response']['Error']['Code']
1270
+ message = response['Response']['Error']['Message']
1271
+ reqid = response['Response']['RequestId']
1272
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1273
+ end
1274
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1275
+ raise e
1276
+ rescue StandardError => e
1277
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1278
+ end
1279
+
1184
1280
  # DMS元数据获取库
1185
1281
 
1186
1282
  # @param request: Request instance for DescribeDMSDatabase.
@@ -1709,6 +1805,30 @@ module TencentCloud
1709
1805
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1710
1806
  end
1711
1807
 
1808
+ # 此接口(DescribeOtherCHDFSBindingList)用于查询其他产品元数据加速桶绑定列表
1809
+
1810
+ # @param request: Request instance for DescribeOtherCHDFSBindingList.
1811
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeOtherCHDFSBindingListRequest`
1812
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeOtherCHDFSBindingListResponse`
1813
+ def DescribeOtherCHDFSBindingList(request)
1814
+ body = send_request('DescribeOtherCHDFSBindingList', request.serialize)
1815
+ response = JSON.parse(body)
1816
+ if response['Response'].key?('Error') == false
1817
+ model = DescribeOtherCHDFSBindingListResponse.new
1818
+ model.deserialize(response['Response'])
1819
+ model
1820
+ else
1821
+ code = response['Response']['Error']['Code']
1822
+ message = response['Response']['Error']['Message']
1823
+ reqid = response['Response']['RequestId']
1824
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1825
+ end
1826
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1827
+ raise e
1828
+ rescue StandardError => e
1829
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1830
+ end
1831
+
1712
1832
  # 查询结果下载任务
1713
1833
 
1714
1834
  # @param request: Request instance for DescribeResultDownload.
@@ -1901,6 +2021,30 @@ module TencentCloud
1901
2021
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1902
2022
  end
1903
2023
 
2024
+ # 本接口(DescribeSubUserAccessPolicy)用于开通了第三方平台访问的用户,查询其子用户的访问策略
2025
+
2026
+ # @param request: Request instance for DescribeSubUserAccessPolicy.
2027
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeSubUserAccessPolicyRequest`
2028
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeSubUserAccessPolicyResponse`
2029
+ def DescribeSubUserAccessPolicy(request)
2030
+ body = send_request('DescribeSubUserAccessPolicy', request.serialize)
2031
+ response = JSON.parse(body)
2032
+ if response['Response'].key?('Error') == false
2033
+ model = DescribeSubUserAccessPolicyResponse.new
2034
+ model.deserialize(response['Response'])
2035
+ model
2036
+ else
2037
+ code = response['Response']['Error']['Code']
2038
+ message = response['Response']['Error']['Message']
2039
+ reqid = response['Response']['RequestId']
2040
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2041
+ end
2042
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2043
+ raise e
2044
+ rescue StandardError => e
2045
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2046
+ end
2047
+
1904
2048
  # 本接口(DescribeTable),用于查询单个表的详细信息。
1905
2049
 
1906
2050
  # @param request: Request instance for DescribeTable.
@@ -2069,6 +2213,30 @@ module TencentCloud
2069
2213
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2070
2214
  end
2071
2215
 
2216
+ # 本接口(RegisterThirdPartyAccessUser)查询开通第三方平台访问的用户信息
2217
+
2218
+ # @param request: Request instance for DescribeThirdPartyAccessUser.
2219
+ # @type request: :class:`Tencentcloud::dlc::V20210125::DescribeThirdPartyAccessUserRequest`
2220
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::DescribeThirdPartyAccessUserResponse`
2221
+ def DescribeThirdPartyAccessUser(request)
2222
+ body = send_request('DescribeThirdPartyAccessUser', request.serialize)
2223
+ response = JSON.parse(body)
2224
+ if response['Response'].key?('Error') == false
2225
+ model = DescribeThirdPartyAccessUserResponse.new
2226
+ model.deserialize(response['Response'])
2227
+ model
2228
+ else
2229
+ code = response['Response']['Error']['Code']
2230
+ message = response['Response']['Error']['Message']
2231
+ reqid = response['Response']['RequestId']
2232
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2233
+ end
2234
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2235
+ raise e
2236
+ rescue StandardError => e
2237
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2238
+ end
2239
+
2072
2240
  # 查询可更新配置的引擎列表
2073
2241
 
2074
2242
  # @param request: Request instance for DescribeUpdatableDataEngines.
@@ -2453,6 +2621,30 @@ module TencentCloud
2453
2621
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2454
2622
  end
2455
2623
 
2624
+ # 授权访问DLC Catalog
2625
+
2626
+ # @param request: Request instance for GrantDLCCatalogAccess.
2627
+ # @type request: :class:`Tencentcloud::dlc::V20210125::GrantDLCCatalogAccessRequest`
2628
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::GrantDLCCatalogAccessResponse`
2629
+ def GrantDLCCatalogAccess(request)
2630
+ body = send_request('GrantDLCCatalogAccess', request.serialize)
2631
+ response = JSON.parse(body)
2632
+ if response['Response'].key?('Error') == false
2633
+ model = GrantDLCCatalogAccessResponse.new
2634
+ model.deserialize(response['Response'])
2635
+ model
2636
+ else
2637
+ code = response['Response']['Error']['Code']
2638
+ message = response['Response']['Error']['Message']
2639
+ reqid = response['Response']['RequestId']
2640
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2641
+ end
2642
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2643
+ raise e
2644
+ rescue StandardError => e
2645
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2646
+ end
2647
+
2456
2648
  # 本接口(ListTaskJobLogDetail)用于获取spark 作业任务日志详情
2457
2649
 
2458
2650
  # @param request: Request instance for ListTaskJobLogDetail.
@@ -2765,6 +2957,30 @@ module TencentCloud
2765
2957
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2766
2958
  end
2767
2959
 
2960
+ # 本接口(RegisterThirdPartyAccessUser)用于开通第三方平台访问
2961
+
2962
+ # @param request: Request instance for RegisterThirdPartyAccessUser.
2963
+ # @type request: :class:`Tencentcloud::dlc::V20210125::RegisterThirdPartyAccessUserRequest`
2964
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::RegisterThirdPartyAccessUserResponse`
2965
+ def RegisterThirdPartyAccessUser(request)
2966
+ body = send_request('RegisterThirdPartyAccessUser', request.serialize)
2967
+ response = JSON.parse(body)
2968
+ if response['Response'].key?('Error') == false
2969
+ model = RegisterThirdPartyAccessUserResponse.new
2970
+ model.deserialize(response['Response'])
2971
+ model
2972
+ else
2973
+ code = response['Response']['Error']['Code']
2974
+ message = response['Response']['Error']['Message']
2975
+ reqid = response['Response']['RequestId']
2976
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2977
+ end
2978
+ rescue TencentCloud::Common::TencentCloudSDKException => e
2979
+ raise e
2980
+ rescue StandardError => e
2981
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2982
+ end
2983
+
2768
2984
  # 续费数据引擎
2769
2985
 
2770
2986
  # @param request: Request instance for RenewDataEngine.
@@ -2837,6 +3053,30 @@ module TencentCloud
2837
3053
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2838
3054
  end
2839
3055
 
3056
+ # 撤销DLC Catalog访问权限
3057
+
3058
+ # @param request: Request instance for RevokeDLCCatalogAccess.
3059
+ # @type request: :class:`Tencentcloud::dlc::V20210125::RevokeDLCCatalogAccessRequest`
3060
+ # @rtype: :class:`Tencentcloud::dlc::V20210125::RevokeDLCCatalogAccessResponse`
3061
+ def RevokeDLCCatalogAccess(request)
3062
+ body = send_request('RevokeDLCCatalogAccess', request.serialize)
3063
+ response = JSON.parse(body)
3064
+ if response['Response'].key?('Error') == false
3065
+ model = RevokeDLCCatalogAccessResponse.new
3066
+ model.deserialize(response['Response'])
3067
+ model
3068
+ else
3069
+ code = response['Response']['Error']['Code']
3070
+ message = response['Response']['Error']['Message']
3071
+ reqid = response['Response']['RequestId']
3072
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3073
+ end
3074
+ rescue TencentCloud::Common::TencentCloudSDKException => e
3075
+ raise e
3076
+ rescue StandardError => e
3077
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3078
+ end
3079
+
2840
3080
  # 回滚引擎镜像版本
2841
3081
 
2842
3082
  # @param request: Request instance for RollbackDataEngineImage.
@@ -667,6 +667,51 @@ module TencentCloud
667
667
  end
668
668
  end
669
669
 
670
+ # chdfs产品vpc信息
671
+ class CHDFSProductVpcInfo < TencentCloud::Common::AbstractModel
672
+ # @param VpcId: vpc id
673
+
674
+ # 注意:此字段可能返回 null,表示取不到有效值。
675
+ # @type VpcId: String
676
+ # @param VpcName: vpc名称
677
+ # 注意:此字段可能返回 null,表示取不到有效值。
678
+ # @type VpcName: String
679
+ # @param VpcCidrBlock: vpc子网信息列表
680
+ # 注意:此字段可能返回 null,表示取不到有效值。
681
+ # @type VpcCidrBlock: Array
682
+ # @param RuleId: 规则Id
683
+ # 注意:此字段可能返回 null,表示取不到有效值。
684
+ # @type RuleId: Integer
685
+ # @param AccessGroupId: 权限组Id
686
+ # 注意:此字段可能返回 null,表示取不到有效值。
687
+ # @type AccessGroupId: String
688
+
689
+ attr_accessor :VpcId, :VpcName, :VpcCidrBlock, :RuleId, :AccessGroupId
690
+
691
+ def initialize(vpcid=nil, vpcname=nil, vpccidrblock=nil, ruleid=nil, accessgroupid=nil)
692
+ @VpcId = vpcid
693
+ @VpcName = vpcname
694
+ @VpcCidrBlock = vpccidrblock
695
+ @RuleId = ruleid
696
+ @AccessGroupId = accessgroupid
697
+ end
698
+
699
+ def deserialize(params)
700
+ @VpcId = params['VpcId']
701
+ @VpcName = params['VpcName']
702
+ unless params['VpcCidrBlock'].nil?
703
+ @VpcCidrBlock = []
704
+ params['VpcCidrBlock'].each do |i|
705
+ vpccidrblock_tmp = VpcCidrBlock.new
706
+ vpccidrblock_tmp.deserialize(i)
707
+ @VpcCidrBlock << vpccidrblock_tmp
708
+ end
709
+ end
710
+ @RuleId = params['RuleId']
711
+ @AccessGroupId = params['AccessGroupId']
712
+ end
713
+ end
714
+
670
715
  # CSV类型数据格式
671
716
  class CSV < TencentCloud::Common::AbstractModel
672
717
  # @param CodeCompress: 压缩格式,["Snappy", "Gzip", "None"选一]。
@@ -1204,6 +1249,73 @@ module TencentCloud
1204
1249
  end
1205
1250
  end
1206
1251
 
1252
+ # CreateCHDFSBindingProduct请求参数结构体
1253
+ class CreateCHDFSBindingProductRequest < TencentCloud::Common::AbstractModel
1254
+ # @param MountPoint: 需要绑定的元数据加速桶名
1255
+ # @type MountPoint: String
1256
+ # @param BucketType: 桶的类型,分为cos和lakefs
1257
+ # @type BucketType: String
1258
+ # @param ProductName: 产品名称
1259
+ # @type ProductName: String
1260
+ # @param EngineName: 引擎名称,ProductName选择DLC产品时,必传此参数。其他产品可不传
1261
+ # @type EngineName: String
1262
+ # @param VpcInfo: vpc信息,产品名称为other时必传此参数
1263
+ # @type VpcInfo: Array
1264
+
1265
+ attr_accessor :MountPoint, :BucketType, :ProductName, :EngineName, :VpcInfo
1266
+
1267
+ def initialize(mountpoint=nil, buckettype=nil, productname=nil, enginename=nil, vpcinfo=nil)
1268
+ @MountPoint = mountpoint
1269
+ @BucketType = buckettype
1270
+ @ProductName = productname
1271
+ @EngineName = enginename
1272
+ @VpcInfo = vpcinfo
1273
+ end
1274
+
1275
+ def deserialize(params)
1276
+ @MountPoint = params['MountPoint']
1277
+ @BucketType = params['BucketType']
1278
+ @ProductName = params['ProductName']
1279
+ @EngineName = params['EngineName']
1280
+ unless params['VpcInfo'].nil?
1281
+ @VpcInfo = []
1282
+ params['VpcInfo'].each do |i|
1283
+ vpcinfo_tmp = VpcInfo.new
1284
+ vpcinfo_tmp.deserialize(i)
1285
+ @VpcInfo << vpcinfo_tmp
1286
+ end
1287
+ end
1288
+ end
1289
+ end
1290
+
1291
+ # CreateCHDFSBindingProduct返回参数结构体
1292
+ class CreateCHDFSBindingProductResponse < TencentCloud::Common::AbstractModel
1293
+ # @param MountPointAssociates: 绑定信息
1294
+ # 注意:此字段可能返回 null,表示取不到有效值。
1295
+ # @type MountPointAssociates: Array
1296
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1297
+ # @type RequestId: String
1298
+
1299
+ attr_accessor :MountPointAssociates, :RequestId
1300
+
1301
+ def initialize(mountpointassociates=nil, requestid=nil)
1302
+ @MountPointAssociates = mountpointassociates
1303
+ @RequestId = requestid
1304
+ end
1305
+
1306
+ def deserialize(params)
1307
+ unless params['MountPointAssociates'].nil?
1308
+ @MountPointAssociates = []
1309
+ params['MountPointAssociates'].each do |i|
1310
+ mountpointassociates_tmp = MountPointAssociates.new
1311
+ mountpointassociates_tmp.deserialize(i)
1312
+ @MountPointAssociates << mountpointassociates_tmp
1313
+ end
1314
+ end
1315
+ @RequestId = params['RequestId']
1316
+ end
1317
+ end
1318
+
1207
1319
  # CreateDMSDatabase请求参数结构体
1208
1320
  class CreateDMSDatabaseRequest < TencentCloud::Common::AbstractModel
1209
1321
  # @param Asset: 基础元数据对象
@@ -2775,6 +2887,38 @@ module TencentCloud
2775
2887
  end
2776
2888
  end
2777
2889
 
2890
+ # DLC 数据目录访问权限
2891
+ class DLCCatalogAccess < TencentCloud::Common::AbstractModel
2892
+ # @param VpcId: VPCID
2893
+ # 注意:此字段可能返回 null,表示取不到有效值。
2894
+ # @type VpcId: String
2895
+ # @param Product: 产品类型
2896
+ # 注意:此字段可能返回 null,表示取不到有效值。
2897
+ # @type Product: String
2898
+ # @param Description: 描述信息
2899
+ # 注意:此字段可能返回 null,表示取不到有效值。
2900
+ # @type Description: String
2901
+ # @param CreateTime: 创建时间
2902
+ # 注意:此字段可能返回 null,表示取不到有效值。
2903
+ # @type CreateTime: String
2904
+
2905
+ attr_accessor :VpcId, :Product, :Description, :CreateTime
2906
+
2907
+ def initialize(vpcid=nil, product=nil, description=nil, createtime=nil)
2908
+ @VpcId = vpcid
2909
+ @Product = product
2910
+ @Description = description
2911
+ @CreateTime = createtime
2912
+ end
2913
+
2914
+ def deserialize(params)
2915
+ @VpcId = params['VpcId']
2916
+ @Product = params['Product']
2917
+ @Description = params['Description']
2918
+ @CreateTime = params['CreateTime']
2919
+ end
2920
+ end
2921
+
2778
2922
  # 迁移列对象
2779
2923
  class DMSColumn < TencentCloud::Common::AbstractModel
2780
2924
  # @param Name: 名称
@@ -4082,6 +4226,61 @@ module TencentCloud
4082
4226
  end
4083
4227
  end
4084
4228
 
4229
+ # DeleteCHDFSBindingProduct请求参数结构体
4230
+ class DeleteCHDFSBindingProductRequest < TencentCloud::Common::AbstractModel
4231
+ # @param MountPoint: 需要解绑的元数据加速桶名
4232
+ # @type MountPoint: String
4233
+ # @param BucketType: 桶的类型,分为cos和lakefs
4234
+ # @type BucketType: String
4235
+ # @param ProductName: 产品名称
4236
+ # @type ProductName: String
4237
+ # @param EngineName: 引擎名称,ProductName选择DLC产品时,必传此参数。其他产品可不传
4238
+ # @type EngineName: String
4239
+ # @param VpcInfo: vpc信息,ProductName选择other时,必传此参数
4240
+ # @type VpcInfo: Array
4241
+
4242
+ attr_accessor :MountPoint, :BucketType, :ProductName, :EngineName, :VpcInfo
4243
+
4244
+ def initialize(mountpoint=nil, buckettype=nil, productname=nil, enginename=nil, vpcinfo=nil)
4245
+ @MountPoint = mountpoint
4246
+ @BucketType = buckettype
4247
+ @ProductName = productname
4248
+ @EngineName = enginename
4249
+ @VpcInfo = vpcinfo
4250
+ end
4251
+
4252
+ def deserialize(params)
4253
+ @MountPoint = params['MountPoint']
4254
+ @BucketType = params['BucketType']
4255
+ @ProductName = params['ProductName']
4256
+ @EngineName = params['EngineName']
4257
+ unless params['VpcInfo'].nil?
4258
+ @VpcInfo = []
4259
+ params['VpcInfo'].each do |i|
4260
+ vpcinfo_tmp = VpcInfo.new
4261
+ vpcinfo_tmp.deserialize(i)
4262
+ @VpcInfo << vpcinfo_tmp
4263
+ end
4264
+ end
4265
+ end
4266
+ end
4267
+
4268
+ # DeleteCHDFSBindingProduct返回参数结构体
4269
+ class DeleteCHDFSBindingProductResponse < TencentCloud::Common::AbstractModel
4270
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4271
+ # @type RequestId: String
4272
+
4273
+ attr_accessor :RequestId
4274
+
4275
+ def initialize(requestid=nil)
4276
+ @RequestId = requestid
4277
+ end
4278
+
4279
+ def deserialize(params)
4280
+ @RequestId = params['RequestId']
4281
+ end
4282
+ end
4283
+
4085
4284
  # DeleteDataEngine请求参数结构体
4086
4285
  class DeleteDataEngineRequest < TencentCloud::Common::AbstractModel
4087
4286
  # @param DataEngineNames: 删除虚拟集群的名称数组
@@ -4214,6 +4413,33 @@ module TencentCloud
4214
4413
  end
4215
4414
  end
4216
4415
 
4416
+ # DeleteThirdPartyAccessUser请求参数结构体
4417
+ class DeleteThirdPartyAccessUserRequest < TencentCloud::Common::AbstractModel
4418
+
4419
+
4420
+ def initialize()
4421
+ end
4422
+
4423
+ def deserialize(params)
4424
+ end
4425
+ end
4426
+
4427
+ # DeleteThirdPartyAccessUser返回参数结构体
4428
+ class DeleteThirdPartyAccessUserResponse < TencentCloud::Common::AbstractModel
4429
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4430
+ # @type RequestId: String
4431
+
4432
+ attr_accessor :RequestId
4433
+
4434
+ def initialize(requestid=nil)
4435
+ @RequestId = requestid
4436
+ end
4437
+
4438
+ def deserialize(params)
4439
+ @RequestId = params['RequestId']
4440
+ end
4441
+ end
4442
+
4217
4443
  # DeleteUser请求参数结构体
4218
4444
  class DeleteUserRequest < TencentCloud::Common::AbstractModel
4219
4445
  # @param UserIds: 需要删除的用户的Id
@@ -4357,6 +4583,64 @@ module TencentCloud
4357
4583
  end
4358
4584
  end
4359
4585
 
4586
+ # DescribeDLCCatalogAccess请求参数结构体
4587
+ class DescribeDLCCatalogAccessRequest < TencentCloud::Common::AbstractModel
4588
+ # @param Limit: 显示条数
4589
+ # @type Limit: Integer
4590
+ # @param Offset: 记录数量
4591
+ # @type Offset: Integer
4592
+ # @param Filter: 过滤条件
4593
+ # @type Filter: :class:`Tencentcloud::Dlc.v20210125.models.Filter`
4594
+
4595
+ attr_accessor :Limit, :Offset, :Filter
4596
+
4597
+ def initialize(limit=nil, offset=nil, filter=nil)
4598
+ @Limit = limit
4599
+ @Offset = offset
4600
+ @Filter = filter
4601
+ end
4602
+
4603
+ def deserialize(params)
4604
+ @Limit = params['Limit']
4605
+ @Offset = params['Offset']
4606
+ unless params['Filter'].nil?
4607
+ @Filter = Filter.new
4608
+ @Filter.deserialize(params['Filter'])
4609
+ end
4610
+ end
4611
+ end
4612
+
4613
+ # DescribeDLCCatalogAccess返回参数结构体
4614
+ class DescribeDLCCatalogAccessResponse < TencentCloud::Common::AbstractModel
4615
+ # @param TotalCount: 总数
4616
+ # @type TotalCount: Integer
4617
+ # @param Rows: DLCCatalog授权列表
4618
+ # @type Rows: Array
4619
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4620
+ # @type RequestId: String
4621
+
4622
+ attr_accessor :TotalCount, :Rows, :RequestId
4623
+
4624
+ def initialize(totalcount=nil, rows=nil, requestid=nil)
4625
+ @TotalCount = totalcount
4626
+ @Rows = rows
4627
+ @RequestId = requestid
4628
+ end
4629
+
4630
+ def deserialize(params)
4631
+ @TotalCount = params['TotalCount']
4632
+ unless params['Rows'].nil?
4633
+ @Rows = []
4634
+ params['Rows'].each do |i|
4635
+ dlccatalogaccess_tmp = DLCCatalogAccess.new
4636
+ dlccatalogaccess_tmp.deserialize(i)
4637
+ @Rows << dlccatalogaccess_tmp
4638
+ end
4639
+ end
4640
+ @RequestId = params['RequestId']
4641
+ end
4642
+ end
4643
+
4360
4644
  # DescribeDMSDatabase请求参数结构体
4361
4645
  class DescribeDMSDatabaseRequest < TencentCloud::Common::AbstractModel
4362
4646
  # @param Name: 数据库名称
@@ -5768,6 +6052,53 @@ module TencentCloud
5768
6052
  end
5769
6053
  end
5770
6054
 
6055
+ # DescribeOtherCHDFSBindingList请求参数结构体
6056
+ class DescribeOtherCHDFSBindingListRequest < TencentCloud::Common::AbstractModel
6057
+ # @param BucketId: 桶名
6058
+ # @type BucketId: String
6059
+
6060
+ attr_accessor :BucketId
6061
+
6062
+ def initialize(bucketid=nil)
6063
+ @BucketId = bucketid
6064
+ end
6065
+
6066
+ def deserialize(params)
6067
+ @BucketId = params['BucketId']
6068
+ end
6069
+ end
6070
+
6071
+ # DescribeOtherCHDFSBindingList返回参数结构体
6072
+ class DescribeOtherCHDFSBindingListResponse < TencentCloud::Common::AbstractModel
6073
+ # @param OtherCHDFSBindingList: 非DLC 产品绑定列表
6074
+ # @type OtherCHDFSBindingList: Array
6075
+ # @param Total: 总记录数
6076
+ # @type Total: Integer
6077
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6078
+ # @type RequestId: String
6079
+
6080
+ attr_accessor :OtherCHDFSBindingList, :Total, :RequestId
6081
+
6082
+ def initialize(otherchdfsbindinglist=nil, total=nil, requestid=nil)
6083
+ @OtherCHDFSBindingList = otherchdfsbindinglist
6084
+ @Total = total
6085
+ @RequestId = requestid
6086
+ end
6087
+
6088
+ def deserialize(params)
6089
+ unless params['OtherCHDFSBindingList'].nil?
6090
+ @OtherCHDFSBindingList = []
6091
+ params['OtherCHDFSBindingList'].each do |i|
6092
+ otherchdfsbinding_tmp = OtherCHDFSBinding.new
6093
+ otherchdfsbinding_tmp.deserialize(i)
6094
+ @OtherCHDFSBindingList << otherchdfsbinding_tmp
6095
+ end
6096
+ end
6097
+ @Total = params['Total']
6098
+ @RequestId = params['RequestId']
6099
+ end
6100
+ end
6101
+
5771
6102
  # DescribeResultDownload请求参数结构体
5772
6103
  class DescribeResultDownloadRequest < TencentCloud::Common::AbstractModel
5773
6104
  # @param DownloadId: 查询任务Id
@@ -6255,6 +6586,37 @@ module TencentCloud
6255
6586
  end
6256
6587
  end
6257
6588
 
6589
+ # DescribeSubUserAccessPolicy请求参数结构体
6590
+ class DescribeSubUserAccessPolicyRequest < TencentCloud::Common::AbstractModel
6591
+
6592
+
6593
+ def initialize()
6594
+ end
6595
+
6596
+ def deserialize(params)
6597
+ end
6598
+ end
6599
+
6600
+ # DescribeSubUserAccessPolicy返回参数结构体
6601
+ class DescribeSubUserAccessPolicyResponse < TencentCloud::Common::AbstractModel
6602
+ # @param PolicyDocument: 子用户访问策略
6603
+ # @type PolicyDocument: String
6604
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6605
+ # @type RequestId: String
6606
+
6607
+ attr_accessor :PolicyDocument, :RequestId
6608
+
6609
+ def initialize(policydocument=nil, requestid=nil)
6610
+ @PolicyDocument = policydocument
6611
+ @RequestId = requestid
6612
+ end
6613
+
6614
+ def deserialize(params)
6615
+ @PolicyDocument = params['PolicyDocument']
6616
+ @RequestId = params['RequestId']
6617
+ end
6618
+ end
6619
+
6258
6620
  # DescribeTable请求参数结构体
6259
6621
  class DescribeTableRequest < TencentCloud::Common::AbstractModel
6260
6622
  # @param TableName: 查询对象表名称
@@ -6805,6 +7167,40 @@ module TencentCloud
6805
7167
  end
6806
7168
  end
6807
7169
 
7170
+ # DescribeThirdPartyAccessUser请求参数结构体
7171
+ class DescribeThirdPartyAccessUserRequest < TencentCloud::Common::AbstractModel
7172
+
7173
+
7174
+ def initialize()
7175
+ end
7176
+
7177
+ def deserialize(params)
7178
+ end
7179
+ end
7180
+
7181
+ # DescribeThirdPartyAccessUser返回参数结构体
7182
+ class DescribeThirdPartyAccessUserResponse < TencentCloud::Common::AbstractModel
7183
+ # @param UserInfo: 用户信息
7184
+ # @type UserInfo: :class:`Tencentcloud::Dlc.v20210125.models.OpendThirdAccessUserInfo`
7185
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7186
+ # @type RequestId: String
7187
+
7188
+ attr_accessor :UserInfo, :RequestId
7189
+
7190
+ def initialize(userinfo=nil, requestid=nil)
7191
+ @UserInfo = userinfo
7192
+ @RequestId = requestid
7193
+ end
7194
+
7195
+ def deserialize(params)
7196
+ unless params['UserInfo'].nil?
7197
+ @UserInfo = OpendThirdAccessUserInfo.new
7198
+ @UserInfo.deserialize(params['UserInfo'])
7199
+ end
7200
+ @RequestId = params['RequestId']
7201
+ end
7202
+ end
7203
+
6808
7204
  # DescribeUpdatableDataEngines请求参数结构体
6809
7205
  class DescribeUpdatableDataEnginesRequest < TencentCloud::Common::AbstractModel
6810
7206
  # @param DataEngineConfigCommand: 引擎配置操作命令,UpdateSparkSQLLakefsPath 更新托管表路径,UpdateSparkSQLResultPath 更新结果桶路径
@@ -7926,6 +8322,54 @@ module TencentCloud
7926
8322
  end
7927
8323
  end
7928
8324
 
8325
+ # GrantDLCCatalogAccess请求参数结构体
8326
+ class GrantDLCCatalogAccessRequest < TencentCloud::Common::AbstractModel
8327
+ # @param VpcId: 授权VpcId
8328
+ # @type VpcId: String
8329
+ # @param Product: 产品(EMR|DLC|Doris|Inlong|Wedata)
8330
+ # @type Product: String
8331
+ # @param Description: 描述
8332
+ # @type Description: String
8333
+ # @param VpcUin: VPC所属账号UIN
8334
+ # @type VpcUin: String
8335
+ # @param VpcAppId: VPC所属账号AppId
8336
+ # @type VpcAppId: Integer
8337
+
8338
+ attr_accessor :VpcId, :Product, :Description, :VpcUin, :VpcAppId
8339
+
8340
+ def initialize(vpcid=nil, product=nil, description=nil, vpcuin=nil, vpcappid=nil)
8341
+ @VpcId = vpcid
8342
+ @Product = product
8343
+ @Description = description
8344
+ @VpcUin = vpcuin
8345
+ @VpcAppId = vpcappid
8346
+ end
8347
+
8348
+ def deserialize(params)
8349
+ @VpcId = params['VpcId']
8350
+ @Product = params['Product']
8351
+ @Description = params['Description']
8352
+ @VpcUin = params['VpcUin']
8353
+ @VpcAppId = params['VpcAppId']
8354
+ end
8355
+ end
8356
+
8357
+ # GrantDLCCatalogAccess返回参数结构体
8358
+ class GrantDLCCatalogAccessResponse < TencentCloud::Common::AbstractModel
8359
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8360
+ # @type RequestId: String
8361
+
8362
+ attr_accessor :RequestId
8363
+
8364
+ def initialize(requestid=nil)
8365
+ @RequestId = requestid
8366
+ end
8367
+
8368
+ def deserialize(params)
8369
+ @RequestId = params['RequestId']
8370
+ end
8371
+ end
8372
+
7929
8373
  # hive类型数据源的信息
7930
8374
  class HiveInfo < TencentCloud::Common::AbstractModel
7931
8375
  # @param MetaStoreUrl: hive metastore的地址
@@ -8872,6 +9316,43 @@ module TencentCloud
8872
9316
  end
8873
9317
  end
8874
9318
 
9319
+ # 绑定融合桶信息
9320
+ class MountPointAssociates < TencentCloud::Common::AbstractModel
9321
+ # @param BucketId: 桶Id
9322
+ # 注意:此字段可能返回 null,表示取不到有效值。
9323
+ # @type BucketId: String
9324
+ # @param VpcId: vpcId
9325
+ # 注意:此字段可能返回 null,表示取不到有效值。
9326
+ # @type VpcId: String
9327
+ # @param VpcCidrBlock: 子网地址
9328
+ # 注意:此字段可能返回 null,表示取不到有效值。
9329
+ # @type VpcCidrBlock: String
9330
+ # @param AccessGroupId: 权限组Id
9331
+ # 注意:此字段可能返回 null,表示取不到有效值。
9332
+ # @type AccessGroupId: String
9333
+ # @param AccessRuleId: 权限规则Id
9334
+ # 注意:此字段可能返回 null,表示取不到有效值。
9335
+ # @type AccessRuleId: Integer
9336
+
9337
+ attr_accessor :BucketId, :VpcId, :VpcCidrBlock, :AccessGroupId, :AccessRuleId
9338
+
9339
+ def initialize(bucketid=nil, vpcid=nil, vpccidrblock=nil, accessgroupid=nil, accessruleid=nil)
9340
+ @BucketId = bucketid
9341
+ @VpcId = vpcid
9342
+ @VpcCidrBlock = vpccidrblock
9343
+ @AccessGroupId = accessgroupid
9344
+ @AccessRuleId = accessruleid
9345
+ end
9346
+
9347
+ def deserialize(params)
9348
+ @BucketId = params['BucketId']
9349
+ @VpcId = params['VpcId']
9350
+ @VpcCidrBlock = params['VpcCidrBlock']
9351
+ @AccessGroupId = params['AccessGroupId']
9352
+ @AccessRuleId = params['AccessRuleId']
9353
+ end
9354
+ end
9355
+
8875
9356
  # Mysql类型数据源信息
8876
9357
  class MysqlInfo < TencentCloud::Common::AbstractModel
8877
9358
  # @param JdbcUrl: 连接mysql的jdbc url
@@ -9296,6 +9777,38 @@ module TencentCloud
9296
9777
  end
9297
9778
  end
9298
9779
 
9780
+ # 开通了第三方访问的用户信息
9781
+ class OpendThirdAccessUserInfo < TencentCloud::Common::AbstractModel
9782
+ # @param Id: id信息
9783
+ # 注意:此字段可能返回 null,表示取不到有效值。
9784
+ # @type Id: Integer
9785
+ # @param Uin: 用户主UIN
9786
+ # 注意:此字段可能返回 null,表示取不到有效值。
9787
+ # @type Uin: String
9788
+ # @param AppId: 用户AppId
9789
+ # 注意:此字段可能返回 null,表示取不到有效值。
9790
+ # @type AppId: String
9791
+ # @param CreateTime: 开通时间
9792
+ # 注意:此字段可能返回 null,表示取不到有效值。
9793
+ # @type CreateTime: String
9794
+
9795
+ attr_accessor :Id, :Uin, :AppId, :CreateTime
9796
+
9797
+ def initialize(id=nil, uin=nil, appid=nil, createtime=nil)
9798
+ @Id = id
9799
+ @Uin = uin
9800
+ @AppId = appid
9801
+ @CreateTime = createtime
9802
+ end
9803
+
9804
+ def deserialize(params)
9805
+ @Id = params['Id']
9806
+ @Uin = params['Uin']
9807
+ @AppId = params['AppId']
9808
+ @CreateTime = params['CreateTime']
9809
+ end
9810
+ end
9811
+
9299
9812
  # 数据格式其它类型。
9300
9813
  class Other < TencentCloud::Common::AbstractModel
9301
9814
  # @param Format: 枚举类型,默认值为Json,可选值为[Json, Parquet, ORC, AVRD]之一。
@@ -9312,6 +9825,45 @@ module TencentCloud
9312
9825
  end
9313
9826
  end
9314
9827
 
9828
+ # 非DLC产品CHDFS绑定
9829
+ class OtherCHDFSBinding < TencentCloud::Common::AbstractModel
9830
+ # @param ProductName: 产品名称
9831
+ # 注意:此字段可能返回 null,表示取不到有效值。
9832
+ # @type ProductName: String
9833
+ # @param SuperUser: 用户名称(该字段已废弃)
9834
+ # 注意:此字段可能返回 null,表示取不到有效值。
9835
+ # @type SuperUser: Array
9836
+ # @param VpcInfo: vpc配置信息
9837
+ # 注意:此字段可能返回 null,表示取不到有效值。
9838
+ # @type VpcInfo: Array
9839
+ # @param IsBind: 是否与该桶绑定(该字段已废弃)
9840
+ # 注意:此字段可能返回 null,表示取不到有效值。
9841
+ # @type IsBind: Boolean
9842
+
9843
+ attr_accessor :ProductName, :SuperUser, :VpcInfo, :IsBind
9844
+
9845
+ def initialize(productname=nil, superuser=nil, vpcinfo=nil, isbind=nil)
9846
+ @ProductName = productname
9847
+ @SuperUser = superuser
9848
+ @VpcInfo = vpcinfo
9849
+ @IsBind = isbind
9850
+ end
9851
+
9852
+ def deserialize(params)
9853
+ @ProductName = params['ProductName']
9854
+ @SuperUser = params['SuperUser']
9855
+ unless params['VpcInfo'].nil?
9856
+ @VpcInfo = []
9857
+ params['VpcInfo'].each do |i|
9858
+ chdfsproductvpcinfo_tmp = CHDFSProductVpcInfo.new
9859
+ chdfsproductvpcinfo_tmp.deserialize(i)
9860
+ @VpcInfo << chdfsproductvpcinfo_tmp
9861
+ end
9862
+ end
9863
+ @IsBind = params['IsBind']
9864
+ end
9865
+ end
9866
+
9315
9867
  # 其他数据源
9316
9868
  class OtherDatasourceConnection < TencentCloud::Common::AbstractModel
9317
9869
  # @param Location: 网络参数
@@ -9703,6 +10255,33 @@ module TencentCloud
9703
10255
  end
9704
10256
  end
9705
10257
 
10258
+ # RegisterThirdPartyAccessUser请求参数结构体
10259
+ class RegisterThirdPartyAccessUserRequest < TencentCloud::Common::AbstractModel
10260
+
10261
+
10262
+ def initialize()
10263
+ end
10264
+
10265
+ def deserialize(params)
10266
+ end
10267
+ end
10268
+
10269
+ # RegisterThirdPartyAccessUser返回参数结构体
10270
+ class RegisterThirdPartyAccessUserResponse < TencentCloud::Common::AbstractModel
10271
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10272
+ # @type RequestId: String
10273
+
10274
+ attr_accessor :RequestId
10275
+
10276
+ def initialize(requestid=nil)
10277
+ @RequestId = requestid
10278
+ end
10279
+
10280
+ def deserialize(params)
10281
+ @RequestId = params['RequestId']
10282
+ end
10283
+ end
10284
+
9706
10285
  # RenewDataEngine请求参数结构体
9707
10286
  class RenewDataEngineRequest < TencentCloud::Common::AbstractModel
9708
10287
  # @param DataEngineName: CU队列名称
@@ -9876,6 +10455,38 @@ module TencentCloud
9876
10455
  end
9877
10456
  end
9878
10457
 
10458
+ # RevokeDLCCatalogAccess请求参数结构体
10459
+ class RevokeDLCCatalogAccessRequest < TencentCloud::Common::AbstractModel
10460
+ # @param VpcId: VpcID
10461
+ # @type VpcId: String
10462
+
10463
+ attr_accessor :VpcId
10464
+
10465
+ def initialize(vpcid=nil)
10466
+ @VpcId = vpcid
10467
+ end
10468
+
10469
+ def deserialize(params)
10470
+ @VpcId = params['VpcId']
10471
+ end
10472
+ end
10473
+
10474
+ # RevokeDLCCatalogAccess返回参数结构体
10475
+ class RevokeDLCCatalogAccessResponse < TencentCloud::Common::AbstractModel
10476
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10477
+ # @type RequestId: String
10478
+
10479
+ attr_accessor :RequestId
10480
+
10481
+ def initialize(requestid=nil)
10482
+ @RequestId = requestid
10483
+ end
10484
+
10485
+ def deserialize(params)
10486
+ @RequestId = params['RequestId']
10487
+ end
10488
+ end
10489
+
9879
10490
  # RollbackDataEngineImage请求参数结构体
9880
10491
  class RollbackDataEngineImageRequest < TencentCloud::Common::AbstractModel
9881
10492
  # @param DataEngineId: 引擎ID
@@ -12194,6 +12805,60 @@ module TencentCloud
12194
12805
  end
12195
12806
  end
12196
12807
 
12808
+ # VPC子网信息
12809
+ class VpcCidrBlock < TencentCloud::Common::AbstractModel
12810
+ # @param CidrId: 子网Id
12811
+ # 注意:此字段可能返回 null,表示取不到有效值。
12812
+ # @type CidrId: String
12813
+ # @param CidrAddr: 子网网段
12814
+ # 注意:此字段可能返回 null,表示取不到有效值。
12815
+ # @type CidrAddr: String
12816
+
12817
+ attr_accessor :CidrId, :CidrAddr
12818
+
12819
+ def initialize(cidrid=nil, cidraddr=nil)
12820
+ @CidrId = cidrid
12821
+ @CidrAddr = cidraddr
12822
+ end
12823
+
12824
+ def deserialize(params)
12825
+ @CidrId = params['CidrId']
12826
+ @CidrAddr = params['CidrAddr']
12827
+ end
12828
+ end
12829
+
12830
+ # vpc信息
12831
+ class VpcInfo < TencentCloud::Common::AbstractModel
12832
+ # @param VpcId: vpc Id
12833
+ # 注意:此字段可能返回 null,表示取不到有效值。
12834
+ # @type VpcId: String
12835
+ # @param VpcCidrBlock: vpc子网
12836
+ # 注意:此字段可能返回 null,表示取不到有效值。
12837
+ # @type VpcCidrBlock: String
12838
+ # @param RuleId: 规则Id
12839
+ # 注意:此字段可能返回 null,表示取不到有效值。
12840
+ # @type RuleId: Integer
12841
+ # @param AccessGroupId: 权限组Id
12842
+ # 注意:此字段可能返回 null,表示取不到有效值。
12843
+ # @type AccessGroupId: String
12844
+
12845
+ attr_accessor :VpcId, :VpcCidrBlock, :RuleId, :AccessGroupId
12846
+
12847
+ def initialize(vpcid=nil, vpccidrblock=nil, ruleid=nil, accessgroupid=nil)
12848
+ @VpcId = vpcid
12849
+ @VpcCidrBlock = vpccidrblock
12850
+ @RuleId = ruleid
12851
+ @AccessGroupId = accessgroupid
12852
+ end
12853
+
12854
+ def deserialize(params)
12855
+ @VpcId = params['VpcId']
12856
+ @VpcCidrBlock = params['VpcCidrBlock']
12857
+ @RuleId = params['RuleId']
12858
+ @AccessGroupId = params['AccessGroupId']
12859
+ end
12860
+ end
12861
+
12197
12862
  # 工作组详细信息
12198
12863
  class WorkGroupDetailInfo < TencentCloud::Common::AbstractModel
12199
12864
  # @param WorkGroupId: 工作组Id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dlc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.837
4
+ version: 3.0.839
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-04 00:00:00.000000000 Z
11
+ date: 2024-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common