tencentcloud-sdk-wedata 3.0.801 → 3.0.802
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/client.rb +0 -264
- data/lib/v20210820/models.rb +41 -823
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59573e675a170e81d2480235fb67c4447a4a6406
|
4
|
+
data.tar.gz: d0386999a188b9b8b40f2f9921acc31300aaafba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3cf473eb0daa318695b429836c05efd15f4bf1647ad5c1be0f2fa233302e1adf1eeaf050f3f23340cc826e60ec6f876c084b661639903159d5be576d6a29cb1
|
7
|
+
data.tar.gz: f1252d99934fe3f6a13678d6b2854d5294895abd1e7cf4049d571d5e8fae076bb3b01f4f83055b4579d52e8967527c46fa8f0bfe23f86490221f626cc7868663
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.802
|
data/lib/v20210820/client.rb
CHANGED
@@ -970,30 +970,6 @@ module TencentCloud
|
|
970
970
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
971
971
|
end
|
972
972
|
|
973
|
-
# 注册采集器
|
974
|
-
|
975
|
-
# @param request: Request instance for CreateInLongAgent.
|
976
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::CreateInLongAgentRequest`
|
977
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::CreateInLongAgentResponse`
|
978
|
-
def CreateInLongAgent(request)
|
979
|
-
body = send_request('CreateInLongAgent', request.serialize)
|
980
|
-
response = JSON.parse(body)
|
981
|
-
if response['Response'].key?('Error') == false
|
982
|
-
model = CreateInLongAgentResponse.new
|
983
|
-
model.deserialize(response['Response'])
|
984
|
-
model
|
985
|
-
else
|
986
|
-
code = response['Response']['Error']['Code']
|
987
|
-
message = response['Response']['Error']['Message']
|
988
|
-
reqid = response['Response']['RequestId']
|
989
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
990
|
-
end
|
991
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
992
|
-
raise e
|
993
|
-
rescue StandardError => e
|
994
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
995
|
-
end
|
996
|
-
|
997
973
|
# 创建集成节点
|
998
974
|
|
999
975
|
# @param request: Request instance for CreateIntegrationNode.
|
@@ -1478,30 +1454,6 @@ module TencentCloud
|
|
1478
1454
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1479
1455
|
end
|
1480
1456
|
|
1481
|
-
# 删除采集器
|
1482
|
-
|
1483
|
-
# @param request: Request instance for DeleteInLongAgent.
|
1484
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DeleteInLongAgentRequest`
|
1485
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteInLongAgentResponse`
|
1486
|
-
def DeleteInLongAgent(request)
|
1487
|
-
body = send_request('DeleteInLongAgent', request.serialize)
|
1488
|
-
response = JSON.parse(body)
|
1489
|
-
if response['Response'].key?('Error') == false
|
1490
|
-
model = DeleteInLongAgentResponse.new
|
1491
|
-
model.deserialize(response['Response'])
|
1492
|
-
model
|
1493
|
-
else
|
1494
|
-
code = response['Response']['Error']['Code']
|
1495
|
-
message = response['Response']['Error']['Message']
|
1496
|
-
reqid = response['Response']['RequestId']
|
1497
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1498
|
-
end
|
1499
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1500
|
-
raise e
|
1501
|
-
rescue StandardError => e
|
1502
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1503
|
-
end
|
1504
|
-
|
1505
1457
|
# 删除集成节点
|
1506
1458
|
|
1507
1459
|
# @param request: Request instance for DeleteIntegrationNode.
|
@@ -2199,30 +2151,6 @@ module TencentCloud
|
|
2199
2151
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2200
2152
|
end
|
2201
2153
|
|
2202
|
-
# 获取集群命名空间列表
|
2203
|
-
|
2204
|
-
# @param request: Request instance for DescribeClusterNamespaceList.
|
2205
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeClusterNamespaceListRequest`
|
2206
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeClusterNamespaceListResponse`
|
2207
|
-
def DescribeClusterNamespaceList(request)
|
2208
|
-
body = send_request('DescribeClusterNamespaceList', request.serialize)
|
2209
|
-
response = JSON.parse(body)
|
2210
|
-
if response['Response'].key?('Error') == false
|
2211
|
-
model = DescribeClusterNamespaceListResponse.new
|
2212
|
-
model.deserialize(response['Response'])
|
2213
|
-
model
|
2214
|
-
else
|
2215
|
-
code = response['Response']['Error']['Code']
|
2216
|
-
message = response['Response']['Error']['Message']
|
2217
|
-
reqid = response['Response']['RequestId']
|
2218
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2219
|
-
end
|
2220
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2221
|
-
raise e
|
2222
|
-
rescue StandardError => e
|
2223
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2224
|
-
end
|
2225
|
-
|
2226
2154
|
# 列出字段血缘信息
|
2227
2155
|
|
2228
2156
|
# @param request: Request instance for DescribeColumnLineage.
|
@@ -3117,102 +3045,6 @@ module TencentCloud
|
|
3117
3045
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3118
3046
|
end
|
3119
3047
|
|
3120
|
-
# 获取采集器列表
|
3121
|
-
|
3122
|
-
# @param request: Request instance for DescribeInLongAgentList.
|
3123
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentListRequest`
|
3124
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentListResponse`
|
3125
|
-
def DescribeInLongAgentList(request)
|
3126
|
-
body = send_request('DescribeInLongAgentList', request.serialize)
|
3127
|
-
response = JSON.parse(body)
|
3128
|
-
if response['Response'].key?('Error') == false
|
3129
|
-
model = DescribeInLongAgentListResponse.new
|
3130
|
-
model.deserialize(response['Response'])
|
3131
|
-
model
|
3132
|
-
else
|
3133
|
-
code = response['Response']['Error']['Code']
|
3134
|
-
message = response['Response']['Error']['Message']
|
3135
|
-
reqid = response['Response']['RequestId']
|
3136
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3137
|
-
end
|
3138
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3139
|
-
raise e
|
3140
|
-
rescue StandardError => e
|
3141
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3142
|
-
end
|
3143
|
-
|
3144
|
-
# 查询采集器关联的任务列表
|
3145
|
-
|
3146
|
-
# @param request: Request instance for DescribeInLongAgentTaskList.
|
3147
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentTaskListRequest`
|
3148
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentTaskListResponse`
|
3149
|
-
def DescribeInLongAgentTaskList(request)
|
3150
|
-
body = send_request('DescribeInLongAgentTaskList', request.serialize)
|
3151
|
-
response = JSON.parse(body)
|
3152
|
-
if response['Response'].key?('Error') == false
|
3153
|
-
model = DescribeInLongAgentTaskListResponse.new
|
3154
|
-
model.deserialize(response['Response'])
|
3155
|
-
model
|
3156
|
-
else
|
3157
|
-
code = response['Response']['Error']['Code']
|
3158
|
-
message = response['Response']['Error']['Message']
|
3159
|
-
reqid = response['Response']['RequestId']
|
3160
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3161
|
-
end
|
3162
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3163
|
-
raise e
|
3164
|
-
rescue StandardError => e
|
3165
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3166
|
-
end
|
3167
|
-
|
3168
|
-
# 获取采集器所在集群的VPC列表
|
3169
|
-
|
3170
|
-
# @param request: Request instance for DescribeInLongAgentVpcList.
|
3171
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentVpcListRequest`
|
3172
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongAgentVpcListResponse`
|
3173
|
-
def DescribeInLongAgentVpcList(request)
|
3174
|
-
body = send_request('DescribeInLongAgentVpcList', request.serialize)
|
3175
|
-
response = JSON.parse(body)
|
3176
|
-
if response['Response'].key?('Error') == false
|
3177
|
-
model = DescribeInLongAgentVpcListResponse.new
|
3178
|
-
model.deserialize(response['Response'])
|
3179
|
-
model
|
3180
|
-
else
|
3181
|
-
code = response['Response']['Error']['Code']
|
3182
|
-
message = response['Response']['Error']['Message']
|
3183
|
-
reqid = response['Response']['RequestId']
|
3184
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3185
|
-
end
|
3186
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3187
|
-
raise e
|
3188
|
-
rescue StandardError => e
|
3189
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3190
|
-
end
|
3191
|
-
|
3192
|
-
# 获取TKE集群列表
|
3193
|
-
|
3194
|
-
# @param request: Request instance for DescribeInLongTkeClusterList.
|
3195
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeInLongTkeClusterListRequest`
|
3196
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeInLongTkeClusterListResponse`
|
3197
|
-
def DescribeInLongTkeClusterList(request)
|
3198
|
-
body = send_request('DescribeInLongTkeClusterList', request.serialize)
|
3199
|
-
response = JSON.parse(body)
|
3200
|
-
if response['Response'].key?('Error') == false
|
3201
|
-
model = DescribeInLongTkeClusterListResponse.new
|
3202
|
-
model.deserialize(response['Response'])
|
3203
|
-
model
|
3204
|
-
else
|
3205
|
-
code = response['Response']['Error']['Code']
|
3206
|
-
message = response['Response']['Error']['Message']
|
3207
|
-
reqid = response['Response']['RequestId']
|
3208
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3209
|
-
end
|
3210
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3211
|
-
raise e
|
3212
|
-
rescue StandardError => e
|
3213
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3214
|
-
end
|
3215
|
-
|
3216
3048
|
# 根据周期类型查询所有实例
|
3217
3049
|
|
3218
3050
|
# @param request: Request instance for DescribeInstanceByCycle.
|
@@ -3526,30 +3358,6 @@ module TencentCloud
|
|
3526
3358
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3527
3359
|
end
|
3528
3360
|
|
3529
|
-
# 数据集成大屏采集器状态分布统计
|
3530
|
-
|
3531
|
-
# @param request: Request instance for DescribeIntegrationStatisticsAgentStatus.
|
3532
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsAgentStatusRequest`
|
3533
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeIntegrationStatisticsAgentStatusResponse`
|
3534
|
-
def DescribeIntegrationStatisticsAgentStatus(request)
|
3535
|
-
body = send_request('DescribeIntegrationStatisticsAgentStatus', request.serialize)
|
3536
|
-
response = JSON.parse(body)
|
3537
|
-
if response['Response'].key?('Error') == false
|
3538
|
-
model = DescribeIntegrationStatisticsAgentStatusResponse.new
|
3539
|
-
model.deserialize(response['Response'])
|
3540
|
-
model
|
3541
|
-
else
|
3542
|
-
code = response['Response']['Error']['Code']
|
3543
|
-
message = response['Response']['Error']['Message']
|
3544
|
-
reqid = response['Response']['RequestId']
|
3545
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
3546
|
-
end
|
3547
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
3548
|
-
raise e
|
3549
|
-
rescue StandardError => e
|
3550
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3551
|
-
end
|
3552
|
-
|
3553
3361
|
# 数据集成大屏实例状态统计趋势
|
3554
3362
|
|
3555
3363
|
# @param request: Request instance for DescribeIntegrationStatisticsInstanceTrend.
|
@@ -4945,30 +4753,6 @@ module TencentCloud
|
|
4945
4753
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4946
4754
|
end
|
4947
4755
|
|
4948
|
-
# 获取数据标准规则详情
|
4949
|
-
|
4950
|
-
# @param request: Request instance for DescribeStandardRuleDetailInfoList.
|
4951
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeStandardRuleDetailInfoListRequest`
|
4952
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeStandardRuleDetailInfoListResponse`
|
4953
|
-
def DescribeStandardRuleDetailInfoList(request)
|
4954
|
-
body = send_request('DescribeStandardRuleDetailInfoList', request.serialize)
|
4955
|
-
response = JSON.parse(body)
|
4956
|
-
if response['Response'].key?('Error') == false
|
4957
|
-
model = DescribeStandardRuleDetailInfoListResponse.new
|
4958
|
-
model.deserialize(response['Response'])
|
4959
|
-
model
|
4960
|
-
else
|
4961
|
-
code = response['Response']['Error']['Code']
|
4962
|
-
message = response['Response']['Error']['Message']
|
4963
|
-
reqid = response['Response']['RequestId']
|
4964
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
4965
|
-
end
|
4966
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
4967
|
-
raise e
|
4968
|
-
rescue StandardError => e
|
4969
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
4970
|
-
end
|
4971
|
-
|
4972
4756
|
# 任务状态趋势
|
4973
4757
|
|
4974
4758
|
# @param request: Request instance for DescribeStatisticInstanceStatusTrendOps.
|
@@ -7078,30 +6862,6 @@ module TencentCloud
|
|
7078
6862
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7079
6863
|
end
|
7080
6864
|
|
7081
|
-
# 重启采集器
|
7082
|
-
|
7083
|
-
# @param request: Request instance for RestartInLongAgent.
|
7084
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::RestartInLongAgentRequest`
|
7085
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::RestartInLongAgentResponse`
|
7086
|
-
def RestartInLongAgent(request)
|
7087
|
-
body = send_request('RestartInLongAgent', request.serialize)
|
7088
|
-
response = JSON.parse(body)
|
7089
|
-
if response['Response'].key?('Error') == false
|
7090
|
-
model = RestartInLongAgentResponse.new
|
7091
|
-
model.deserialize(response['Response'])
|
7092
|
-
model
|
7093
|
-
else
|
7094
|
-
code = response['Response']['Error']['Code']
|
7095
|
-
message = response['Response']['Error']['Message']
|
7096
|
-
reqid = response['Response']['RequestId']
|
7097
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7098
|
-
end
|
7099
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7100
|
-
raise e
|
7101
|
-
rescue StandardError => e
|
7102
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7103
|
-
end
|
7104
|
-
|
7105
6865
|
# 继续集成任务
|
7106
6866
|
|
7107
6867
|
# @param request: Request instance for ResumeIntegrationTask.
|
@@ -7635,30 +7395,6 @@ module TencentCloud
|
|
7635
7395
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7636
7396
|
end
|
7637
7397
|
|
7638
|
-
# 更新采集器
|
7639
|
-
|
7640
|
-
# @param request: Request instance for UpdateInLongAgent.
|
7641
|
-
# @type request: :class:`Tencentcloud::wedata::V20210820::UpdateInLongAgentRequest`
|
7642
|
-
# @rtype: :class:`Tencentcloud::wedata::V20210820::UpdateInLongAgentResponse`
|
7643
|
-
def UpdateInLongAgent(request)
|
7644
|
-
body = send_request('UpdateInLongAgent', request.serialize)
|
7645
|
-
response = JSON.parse(body)
|
7646
|
-
if response['Response'].key?('Error') == false
|
7647
|
-
model = UpdateInLongAgentResponse.new
|
7648
|
-
model.deserialize(response['Response'])
|
7649
|
-
model
|
7650
|
-
else
|
7651
|
-
code = response['Response']['Error']['Code']
|
7652
|
-
message = response['Response']['Error']['Message']
|
7653
|
-
reqid = response['Response']['RequestId']
|
7654
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
7655
|
-
end
|
7656
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
7657
|
-
raise e
|
7658
|
-
rescue StandardError => e
|
7659
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
7660
|
-
end
|
7661
|
-
|
7662
7398
|
# 修改工作流责任人
|
7663
7399
|
|
7664
7400
|
# @param request: Request instance for UpdateWorkflowOwner.
|