tencentcloud-sdk-wedata 3.0.1024 → 3.0.1026
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/models.rb +104 -15
- 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: 3afbb876a802fcd783b525d13187fa445ae19098
|
4
|
+
data.tar.gz: 9fa595e79f751b32c91f0792746308dc99c8aed4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c17947ce7e95b41faf38f853bab3bfbacab4dddc31edfdfa836abe40cf7631bf087904c10913defc8835a80589e9b837540820fb07d191635ff8ea85fbfe5902
|
7
|
+
data.tar.gz: 16ab0baebf988530112a09206f253ed7be15de2ac58c96438c36405aaa8a1a30dda938d3d698bdb47084e3bc265175da378ac4eabcc2d8e0d0db31e0caf15067
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1026
|
data/lib/v20210820/models.rb
CHANGED
@@ -19,27 +19,44 @@ module TencentCloud
|
|
19
19
|
module V20210820
|
20
20
|
# AddProjectUserRole请求参数结构体
|
21
21
|
class AddProjectUserRoleRequest < TencentCloud::Common::AbstractModel
|
22
|
+
# @param ProjectId: 项目id
|
23
|
+
# @type ProjectId: String
|
24
|
+
# @param UserIds: 用户uin
|
25
|
+
# @type UserIds: Array
|
26
|
+
# @param RoleIds: 角色id
|
27
|
+
# @type RoleIds: Array
|
22
28
|
|
29
|
+
attr_accessor :ProjectId, :UserIds, :RoleIds
|
23
30
|
|
24
|
-
def initialize()
|
31
|
+
def initialize(projectid=nil, userids=nil, roleids=nil)
|
32
|
+
@ProjectId = projectid
|
33
|
+
@UserIds = userids
|
34
|
+
@RoleIds = roleids
|
25
35
|
end
|
26
36
|
|
27
37
|
def deserialize(params)
|
38
|
+
@ProjectId = params['ProjectId']
|
39
|
+
@UserIds = params['UserIds']
|
40
|
+
@RoleIds = params['RoleIds']
|
28
41
|
end
|
29
42
|
end
|
30
43
|
|
31
44
|
# AddProjectUserRole返回参数结构体
|
32
45
|
class AddProjectUserRoleResponse < TencentCloud::Common::AbstractModel
|
46
|
+
# @param Data: 返回数据
|
47
|
+
# @type Data: Boolean
|
33
48
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
34
49
|
# @type RequestId: String
|
35
50
|
|
36
|
-
attr_accessor :RequestId
|
51
|
+
attr_accessor :Data, :RequestId
|
37
52
|
|
38
|
-
def initialize(requestid=nil)
|
53
|
+
def initialize(data=nil, requestid=nil)
|
54
|
+
@Data = data
|
39
55
|
@RequestId = requestid
|
40
56
|
end
|
41
57
|
|
42
58
|
def deserialize(params)
|
59
|
+
@Data = params['Data']
|
43
60
|
@RequestId = params['RequestId']
|
44
61
|
end
|
45
62
|
end
|
@@ -649,10 +666,13 @@ module TencentCloud
|
|
649
666
|
# @param LarkGroup: 飞书群,0:未设置,1:成功,2:失败
|
650
667
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
651
668
|
# @type LarkGroup: Integer
|
669
|
+
# @param AlarmMessageSendResult: 发送结果 大json格式
|
670
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
671
|
+
# @type AlarmMessageSendResult: String
|
652
672
|
|
653
|
-
attr_accessor :AlarmId, :AlarmReceiver, :Email, :Sms, :Wechat, :Voice, :Wecom, :Http, :WecomGroup, :LarkGroup
|
673
|
+
attr_accessor :AlarmId, :AlarmReceiver, :Email, :Sms, :Wechat, :Voice, :Wecom, :Http, :WecomGroup, :LarkGroup, :AlarmMessageSendResult
|
654
674
|
|
655
|
-
def initialize(alarmid=nil, alarmreceiver=nil, email=nil, sms=nil, wechat=nil, voice=nil, wecom=nil, http=nil, wecomgroup=nil, larkgroup=nil)
|
675
|
+
def initialize(alarmid=nil, alarmreceiver=nil, email=nil, sms=nil, wechat=nil, voice=nil, wecom=nil, http=nil, wecomgroup=nil, larkgroup=nil, alarmmessagesendresult=nil)
|
656
676
|
@AlarmId = alarmid
|
657
677
|
@AlarmReceiver = alarmreceiver
|
658
678
|
@Email = email
|
@@ -663,6 +683,7 @@ module TencentCloud
|
|
663
683
|
@Http = http
|
664
684
|
@WecomGroup = wecomgroup
|
665
685
|
@LarkGroup = larkgroup
|
686
|
+
@AlarmMessageSendResult = alarmmessagesendresult
|
666
687
|
end
|
667
688
|
|
668
689
|
def deserialize(params)
|
@@ -676,6 +697,7 @@ module TencentCloud
|
|
676
697
|
@Http = params['Http']
|
677
698
|
@WecomGroup = params['WecomGroup']
|
678
699
|
@LarkGroup = params['LarkGroup']
|
700
|
+
@AlarmMessageSendResult = params['AlarmMessageSendResult']
|
679
701
|
end
|
680
702
|
end
|
681
703
|
|
@@ -22843,14 +22865,17 @@ module TencentCloud
|
|
22843
22865
|
# @param CycleType: 生产调度任务任务类型
|
22844
22866
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22845
22867
|
# @type CycleType: Integer
|
22868
|
+
# @param TaskType: 生产任务类型
|
22869
|
+
# @type TaskType: String
|
22846
22870
|
|
22847
|
-
attr_accessor :WorkflowId, :TaskId, :TaskName, :CycleType
|
22871
|
+
attr_accessor :WorkflowId, :TaskId, :TaskName, :CycleType, :TaskType
|
22848
22872
|
|
22849
|
-
def initialize(workflowid=nil, taskid=nil, taskname=nil, cycletype=nil)
|
22873
|
+
def initialize(workflowid=nil, taskid=nil, taskname=nil, cycletype=nil, tasktype=nil)
|
22850
22874
|
@WorkflowId = workflowid
|
22851
22875
|
@TaskId = taskid
|
22852
22876
|
@TaskName = taskname
|
22853
22877
|
@CycleType = cycletype
|
22878
|
+
@TaskType = tasktype
|
22854
22879
|
end
|
22855
22880
|
|
22856
22881
|
def deserialize(params)
|
@@ -22858,6 +22883,7 @@ module TencentCloud
|
|
22858
22883
|
@TaskId = params['TaskId']
|
22859
22884
|
@TaskName = params['TaskName']
|
22860
22885
|
@CycleType = params['CycleType']
|
22886
|
+
@TaskType = params['TaskType']
|
22861
22887
|
end
|
22862
22888
|
end
|
22863
22889
|
|
@@ -24868,10 +24894,27 @@ module TencentCloud
|
|
24868
24894
|
# @param ClusterDeployType: EMR集群部署方式:CVM/TKE
|
24869
24895
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
24870
24896
|
# @type ClusterDeployType: String
|
24897
|
+
# @param Name: 任务名称
|
24898
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24899
|
+
# @type Name: String
|
24900
|
+
# @param ExecDetail: 执行详情
|
24901
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24902
|
+
# @type ExecDetail: String
|
24903
|
+
# @param PipelineTaskCount: 事中关联任务数量
|
24904
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24905
|
+
# @type PipelineTaskCount: Integer
|
24906
|
+
# @param EnableRuleCount: 有效规则数
|
24907
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24908
|
+
# @type EnableRuleCount: Integer
|
24909
|
+
# @param Description: 任务描述
|
24910
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24911
|
+
# @type Description: String
|
24912
|
+
# @param CreateUserName: 监控创建人
|
24913
|
+
# @type CreateUserName: String
|
24871
24914
|
|
24872
|
-
attr_accessor :RuleGroupId, :DatasourceId, :DatasourceName, :DatasourceType, :MonitorType, :UpdateTime, :TableName, :TableId, :TableOwnerName, :ExecStrategy, :Subscription, :DatabaseId, :DatabaseName, :SchemaName, :Permission, :RuleCount, :MonitorStatus, :TableOwnerUserId, :InstanceId, :CreateTime, :StrategyConfig, :SubscribeConfig, :DsEnvType, :ClusterDeployType
|
24915
|
+
attr_accessor :RuleGroupId, :DatasourceId, :DatasourceName, :DatasourceType, :MonitorType, :UpdateTime, :TableName, :TableId, :TableOwnerName, :ExecStrategy, :Subscription, :DatabaseId, :DatabaseName, :SchemaName, :Permission, :RuleCount, :MonitorStatus, :TableOwnerUserId, :InstanceId, :CreateTime, :StrategyConfig, :SubscribeConfig, :DsEnvType, :ClusterDeployType, :Name, :ExecDetail, :PipelineTaskCount, :EnableRuleCount, :Description, :CreateUserName
|
24873
24916
|
|
24874
|
-
def initialize(rulegroupid=nil, datasourceid=nil, datasourcename=nil, datasourcetype=nil, monitortype=nil, updatetime=nil, tablename=nil, tableid=nil, tableownername=nil, execstrategy=nil, subscription=nil, databaseid=nil, databasename=nil, schemaname=nil, permission=nil, rulecount=nil, monitorstatus=nil, tableowneruserid=nil, instanceid=nil, createtime=nil, strategyconfig=nil, subscribeconfig=nil, dsenvtype=nil, clusterdeploytype=nil)
|
24917
|
+
def initialize(rulegroupid=nil, datasourceid=nil, datasourcename=nil, datasourcetype=nil, monitortype=nil, updatetime=nil, tablename=nil, tableid=nil, tableownername=nil, execstrategy=nil, subscription=nil, databaseid=nil, databasename=nil, schemaname=nil, permission=nil, rulecount=nil, monitorstatus=nil, tableowneruserid=nil, instanceid=nil, createtime=nil, strategyconfig=nil, subscribeconfig=nil, dsenvtype=nil, clusterdeploytype=nil, name=nil, execdetail=nil, pipelinetaskcount=nil, enablerulecount=nil, description=nil, createusername=nil)
|
24875
24918
|
@RuleGroupId = rulegroupid
|
24876
24919
|
@DatasourceId = datasourceid
|
24877
24920
|
@DatasourceName = datasourcename
|
@@ -24896,6 +24939,12 @@ module TencentCloud
|
|
24896
24939
|
@SubscribeConfig = subscribeconfig
|
24897
24940
|
@DsEnvType = dsenvtype
|
24898
24941
|
@ClusterDeployType = clusterdeploytype
|
24942
|
+
@Name = name
|
24943
|
+
@ExecDetail = execdetail
|
24944
|
+
@PipelineTaskCount = pipelinetaskcount
|
24945
|
+
@EnableRuleCount = enablerulecount
|
24946
|
+
@Description = description
|
24947
|
+
@CreateUserName = createusername
|
24899
24948
|
end
|
24900
24949
|
|
24901
24950
|
def deserialize(params)
|
@@ -24929,6 +24978,12 @@ module TencentCloud
|
|
24929
24978
|
@SubscribeConfig = params['SubscribeConfig']
|
24930
24979
|
@DsEnvType = params['DsEnvType']
|
24931
24980
|
@ClusterDeployType = params['ClusterDeployType']
|
24981
|
+
@Name = params['Name']
|
24982
|
+
@ExecDetail = params['ExecDetail']
|
24983
|
+
@PipelineTaskCount = params['PipelineTaskCount']
|
24984
|
+
@EnableRuleCount = params['EnableRuleCount']
|
24985
|
+
@Description = params['Description']
|
24986
|
+
@CreateUserName = params['CreateUserName']
|
24932
24987
|
end
|
24933
24988
|
end
|
24934
24989
|
|
@@ -25164,10 +25219,22 @@ module TencentCloud
|
|
25164
25219
|
# @param DlcGroupName: DLC资源组
|
25165
25220
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
25166
25221
|
# @type DlcGroupName: String
|
25222
|
+
# @param RuleGroupName: 任务名称
|
25223
|
+
# @type RuleGroupName: String
|
25224
|
+
# @param DatabaseName: 数据库名称
|
25225
|
+
# @type DatabaseName: String
|
25226
|
+
# @param SchemaName: schema名称
|
25227
|
+
# @type SchemaName: String
|
25228
|
+
# @param TableName: 表名称
|
25229
|
+
# @type TableName: String
|
25230
|
+
# @param DatasourceId: 数据源id
|
25231
|
+
# @type DatasourceId: String
|
25232
|
+
# @param Description: 任务描述
|
25233
|
+
# @type Description: String
|
25167
25234
|
|
25168
|
-
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName
|
25235
|
+
attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName, :RuleGroupName, :DatabaseName, :SchemaName, :TableName, :DatasourceId, :Description
|
25169
25236
|
|
25170
|
-
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil)
|
25237
|
+
def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil, rulegroupname=nil, databasename=nil, schemaname=nil, tablename=nil, datasourceid=nil, description=nil)
|
25171
25238
|
@RuleGroupId = rulegroupid
|
25172
25239
|
@MonitorType = monitortype
|
25173
25240
|
@ExecQueue = execqueue
|
@@ -25186,6 +25253,12 @@ module TencentCloud
|
|
25186
25253
|
@RuleName = rulename
|
25187
25254
|
@TriggerTypes = triggertypes
|
25188
25255
|
@DlcGroupName = dlcgroupname
|
25256
|
+
@RuleGroupName = rulegroupname
|
25257
|
+
@DatabaseName = databasename
|
25258
|
+
@SchemaName = schemaname
|
25259
|
+
@TableName = tablename
|
25260
|
+
@DatasourceId = datasourceid
|
25261
|
+
@Description = description
|
25189
25262
|
end
|
25190
25263
|
|
25191
25264
|
def deserialize(params)
|
@@ -25214,6 +25287,12 @@ module TencentCloud
|
|
25214
25287
|
@RuleName = params['RuleName']
|
25215
25288
|
@TriggerTypes = params['TriggerTypes']
|
25216
25289
|
@DlcGroupName = params['DlcGroupName']
|
25290
|
+
@RuleGroupName = params['RuleGroupName']
|
25291
|
+
@DatabaseName = params['DatabaseName']
|
25292
|
+
@SchemaName = params['SchemaName']
|
25293
|
+
@TableName = params['TableName']
|
25294
|
+
@DatasourceId = params['DatasourceId']
|
25295
|
+
@Description = params['Description']
|
25217
25296
|
end
|
25218
25297
|
end
|
25219
25298
|
|
@@ -25333,16 +25412,20 @@ module TencentCloud
|
|
25333
25412
|
# @param RuleName: 规则名称
|
25334
25413
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
25335
25414
|
# @type RuleName: String
|
25415
|
+
# @param AlarmMessageRule: 发送对象
|
25416
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
25417
|
+
# @type AlarmMessageRule: String
|
25336
25418
|
|
25337
|
-
attr_accessor :RuleGroupId, :Receivers, :SubscribeType, :WebHooks, :RuleId, :RuleName
|
25419
|
+
attr_accessor :RuleGroupId, :Receivers, :SubscribeType, :WebHooks, :RuleId, :RuleName, :AlarmMessageRule
|
25338
25420
|
|
25339
|
-
def initialize(rulegroupid=nil, receivers=nil, subscribetype=nil, webhooks=nil, ruleid=nil, rulename=nil)
|
25421
|
+
def initialize(rulegroupid=nil, receivers=nil, subscribetype=nil, webhooks=nil, ruleid=nil, rulename=nil, alarmmessagerule=nil)
|
25340
25422
|
@RuleGroupId = rulegroupid
|
25341
25423
|
@Receivers = receivers
|
25342
25424
|
@SubscribeType = subscribetype
|
25343
25425
|
@WebHooks = webhooks
|
25344
25426
|
@RuleId = ruleid
|
25345
25427
|
@RuleName = rulename
|
25428
|
+
@AlarmMessageRule = alarmmessagerule
|
25346
25429
|
end
|
25347
25430
|
|
25348
25431
|
def deserialize(params)
|
@@ -25366,6 +25449,7 @@ module TencentCloud
|
|
25366
25449
|
end
|
25367
25450
|
@RuleId = params['RuleId']
|
25368
25451
|
@RuleName = params['RuleName']
|
25452
|
+
@AlarmMessageRule = params['AlarmMessageRule']
|
25369
25453
|
end
|
25370
25454
|
end
|
25371
25455
|
|
@@ -29073,10 +29157,13 @@ module TencentCloud
|
|
29073
29157
|
# @param BusinessType: 业务类型, 0-非默认, 1-默认
|
29074
29158
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
29075
29159
|
# @type BusinessType: Integer
|
29160
|
+
# @param AlarmMessageRule: alarm message rule
|
29161
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29162
|
+
# @type AlarmMessageRule: String
|
29076
29163
|
|
29077
|
-
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :QuietPeriods, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description, :LarkWebHooks, :DingDingWebHooks, :BusinessType
|
29164
|
+
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :QuietPeriods, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description, :LarkWebHooks, :DingDingWebHooks, :BusinessType, :AlarmMessageRule
|
29078
29165
|
|
29079
|
-
def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, quietperiods=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil, larkwebhooks=nil, dingdingwebhooks=nil, businesstype=nil)
|
29166
|
+
def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, quietperiods=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil, larkwebhooks=nil, dingdingwebhooks=nil, businesstype=nil, alarmmessagerule=nil)
|
29080
29167
|
@TaskId = taskid
|
29081
29168
|
@RegularName = regularname
|
29082
29169
|
@RegularStatus = regularstatus
|
@@ -29111,6 +29198,7 @@ module TencentCloud
|
|
29111
29198
|
@LarkWebHooks = larkwebhooks
|
29112
29199
|
@DingDingWebHooks = dingdingwebhooks
|
29113
29200
|
@BusinessType = businesstype
|
29201
|
+
@AlarmMessageRule = alarmmessagerule
|
29114
29202
|
end
|
29115
29203
|
|
29116
29204
|
def deserialize(params)
|
@@ -29162,6 +29250,7 @@ module TencentCloud
|
|
29162
29250
|
@LarkWebHooks = params['LarkWebHooks']
|
29163
29251
|
@DingDingWebHooks = params['DingDingWebHooks']
|
29164
29252
|
@BusinessType = params['BusinessType']
|
29253
|
+
@AlarmMessageRule = params['AlarmMessageRule']
|
29165
29254
|
end
|
29166
29255
|
end
|
29167
29256
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-wedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1026
|
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-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|