tencentcloud-sdk-wedata 3.0.1025 → 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 +34 -7
- 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
|
|
@@ -29135,10 +29157,13 @@ module TencentCloud
|
|
29135
29157
|
# @param BusinessType: 业务类型, 0-非默认, 1-默认
|
29136
29158
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
29137
29159
|
# @type BusinessType: Integer
|
29160
|
+
# @param AlarmMessageRule: alarm message rule
|
29161
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29162
|
+
# @type AlarmMessageRule: String
|
29138
29163
|
|
29139
|
-
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
|
29140
29165
|
|
29141
|
-
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)
|
29142
29167
|
@TaskId = taskid
|
29143
29168
|
@RegularName = regularname
|
29144
29169
|
@RegularStatus = regularstatus
|
@@ -29173,6 +29198,7 @@ module TencentCloud
|
|
29173
29198
|
@LarkWebHooks = larkwebhooks
|
29174
29199
|
@DingDingWebHooks = dingdingwebhooks
|
29175
29200
|
@BusinessType = businesstype
|
29201
|
+
@AlarmMessageRule = alarmmessagerule
|
29176
29202
|
end
|
29177
29203
|
|
29178
29204
|
def deserialize(params)
|
@@ -29224,6 +29250,7 @@ module TencentCloud
|
|
29224
29250
|
@LarkWebHooks = params['LarkWebHooks']
|
29225
29251
|
@DingDingWebHooks = params['DingDingWebHooks']
|
29226
29252
|
@BusinessType = params['BusinessType']
|
29253
|
+
@AlarmMessageRule = params['AlarmMessageRule']
|
29227
29254
|
end
|
29228
29255
|
end
|
29229
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
|