tencentcloud-sdk-cls 3.0.938 → 3.0.940

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +68 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c34c94d655baa59da9a608d586f232ab9273f012
4
- data.tar.gz: 31400c8113350bf398b6263a05cb1ba4326c9608
3
+ metadata.gz: 678b6d2777816e06e408cfa09e383394c2e719ce
4
+ data.tar.gz: 546783843432f3a1112e0081e57df346325b8eeb
5
5
  SHA512:
6
- metadata.gz: 26d8b49ff79eae3e3464d021b7465b1a038925d64edccf3f9e8bf70d319d2691850a9f1f3d4760f480cd64530a751c20dcd3f6afd743dccac0e882e34e6b5b51
7
- data.tar.gz: ac37560c0bfcb61efcdfd41d67b71bab910b025897309aafaf03c2446df1076a71a02b663b8984a6aa0b420cd0d3c65e0e4d9ef30c98f9e86fb4047a77d8bd29
6
+ metadata.gz: 57bcea235fccb90fd741931b29430f792d2039f909a81321c8def033843f74adfa94ee817ad4f1b4fc78286025d9de0ec31208fbe26ffd226373488ca49aa052
7
+ data.tar.gz: 46b4d7463faaca0a83ffeaeb52788757431263ddf5451d26d4e2cbfe38038263eeb138f94df9e5f57418ea85094360e378140680ad0a46343070ea9d1bb40115
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.938
1
+ 3.0.940
@@ -3773,10 +3773,16 @@ module TencentCloud
3773
3773
  # @param DataTransformType: 数据加工类型。0:标准加工任务;1:前置加工任务。
3774
3774
  # 注意:此字段可能返回 null,表示取不到有效值。
3775
3775
  # @type DataTransformType: Integer
3776
+ # @param KeepFailureLog: 保留失败日志状态。 1:不保留,2:保留
3777
+ # 注意:此字段可能返回 null,表示取不到有效值。
3778
+ # @type KeepFailureLog: Integer
3779
+ # @param FailureLogKey: 失败日志的字段名称
3780
+ # 注意:此字段可能返回 null,表示取不到有效值。
3781
+ # @type FailureLogKey: String
3776
3782
 
3777
- attr_accessor :Name, :TaskId, :EnableFlag, :Type, :SrcTopicId, :Status, :CreateTime, :UpdateTime, :LastEnableTime, :SrcTopicName, :LogsetId, :DstResources, :EtlContent, :DataTransformType
3783
+ attr_accessor :Name, :TaskId, :EnableFlag, :Type, :SrcTopicId, :Status, :CreateTime, :UpdateTime, :LastEnableTime, :SrcTopicName, :LogsetId, :DstResources, :EtlContent, :DataTransformType, :KeepFailureLog, :FailureLogKey
3778
3784
 
3779
- def initialize(name=nil, taskid=nil, enableflag=nil, type=nil, srctopicid=nil, status=nil, createtime=nil, updatetime=nil, lastenabletime=nil, srctopicname=nil, logsetid=nil, dstresources=nil, etlcontent=nil, datatransformtype=nil)
3785
+ def initialize(name=nil, taskid=nil, enableflag=nil, type=nil, srctopicid=nil, status=nil, createtime=nil, updatetime=nil, lastenabletime=nil, srctopicname=nil, logsetid=nil, dstresources=nil, etlcontent=nil, datatransformtype=nil, keepfailurelog=nil, failurelogkey=nil)
3780
3786
  @Name = name
3781
3787
  @TaskId = taskid
3782
3788
  @EnableFlag = enableflag
@@ -3791,6 +3797,8 @@ module TencentCloud
3791
3797
  @DstResources = dstresources
3792
3798
  @EtlContent = etlcontent
3793
3799
  @DataTransformType = datatransformtype
3800
+ @KeepFailureLog = keepfailurelog
3801
+ @FailureLogKey = failurelogkey
3794
3802
  end
3795
3803
 
3796
3804
  def deserialize(params)
@@ -3815,6 +3823,8 @@ module TencentCloud
3815
3823
  end
3816
3824
  @EtlContent = params['EtlContent']
3817
3825
  @DataTransformType = params['DataTransformType']
3826
+ @KeepFailureLog = params['KeepFailureLog']
3827
+ @FailureLogKey = params['FailureLogKey']
3818
3828
  end
3819
3829
  end
3820
3830
 
@@ -6368,11 +6378,21 @@ module TencentCloud
6368
6378
 
6369
6379
  # DescribeShippers请求参数结构体
6370
6380
  class DescribeShippersRequest < TencentCloud::Common::AbstractModel
6371
- # @param Filters: - shipperName:按照【投递规则名称】进行过滤。类型:String。必选:否
6372
- # - shipperId:按照【投递规则ID】进行过滤。类型:String。必选:否
6373
- # - topicId:按照【日志主题】进行过滤。类型:String。必选:否
6381
+ # @param Filters: - shipperName:按照【投递规则名称】进行过滤。
6382
+ # 类型:String
6383
+ # 必选:否
6384
+ # - shipperId:按照【投递规则ID】进行过滤。
6385
+ # 类型:String。
6386
+ # 必选:否
6387
+ # - topicId:按照【日志主题】进行过滤。
6388
+ # 类型:String。
6389
+ # 必选:否
6390
+ # - taskStatus
6391
+ # 按照【任务运行状态】进行过滤。 支持`0`:停止,`1`:运行中,`2`:异常
6392
+ # 类型:String
6393
+ # 必选:否
6374
6394
 
6375
- # 每次请求的Filters的上限为10,Filter.Values的上限为5
6395
+ # 每次请求的Filters的上限为10,Filter.Values的上限为10
6376
6396
  # @type Filters: Array
6377
6397
  # @param Offset: 分页的偏移量,默认值为0
6378
6398
  # @type Offset: Integer
@@ -7997,6 +8017,8 @@ module TencentCloud
7997
8017
  class ModifyAlarmNoticeRequest < TencentCloud::Common::AbstractModel
7998
8018
  # @param AlarmNoticeId: 通知渠道组ID。
7999
8019
  # @type AlarmNoticeId: String
8020
+ # @param Tags: 标签描述列表,通过指定该参数可以同时绑定标签到相应的通知渠道组。最大支持10个标签键值对,并且不能有重复的键值对。
8021
+ # @type Tags: Array
8000
8022
  # @param Name: 通知渠道组名称。
8001
8023
  # @type Name: String
8002
8024
  # @param Type: 通知类型。可选值:
@@ -8006,7 +8028,7 @@ module TencentCloud
8006
8028
  # @type Type: String
8007
8029
  # @param NoticeReceivers: 通知接收对象。
8008
8030
  # @type NoticeReceivers: Array
8009
- # @param WebCallbacks: 接口回调信息(包括企业微信)。
8031
+ # @param WebCallbacks: 接口回调信息(包括企业微信等)。
8010
8032
  # @type WebCallbacks: Array
8011
8033
  # @param NoticeRules: 通知规则。
8012
8034
 
@@ -8015,20 +8037,50 @@ module TencentCloud
8015
8037
  # - Type、NoticeReceivers和WebCallbacks是一组配置,NoticeRules是另一组配置,2组配置互斥。
8016
8038
  # - 传其中一组数据,则另一组数据置空。
8017
8039
  # @type NoticeRules: Array
8040
+ # @param JumpDomain: 调用链接域名。http:// 或者 https:// 开头,不能/结尾
8041
+ # @type JumpDomain: String
8042
+ # @param DeliverStatus: 投递日志开关。
8043
+
8044
+ # 参数值:
8045
+ # 1:关闭;
8018
8046
 
8019
- attr_accessor :AlarmNoticeId, :Name, :Type, :NoticeReceivers, :WebCallbacks, :NoticeRules
8047
+ # 2:开启
8048
+ # @type DeliverStatus: Integer
8049
+ # @param DeliverConfig: 投递日志配置。
8050
+ # @type DeliverConfig: :class:`Tencentcloud::Cls.v20201016.models.DeliverConfig`
8051
+ # @param AlarmShieldStatus: 免登录操作告警开关。
8020
8052
 
8021
- def initialize(alarmnoticeid=nil, name=nil, type=nil, noticereceivers=nil, webcallbacks=nil, noticerules=nil)
8053
+ # 参数值:
8054
+ # 1:关闭
8055
+ # 2:开启(默认开启)
8056
+ # @type AlarmShieldStatus: Integer
8057
+
8058
+ attr_accessor :AlarmNoticeId, :Tags, :Name, :Type, :NoticeReceivers, :WebCallbacks, :NoticeRules, :JumpDomain, :DeliverStatus, :DeliverConfig, :AlarmShieldStatus
8059
+
8060
+ def initialize(alarmnoticeid=nil, tags=nil, name=nil, type=nil, noticereceivers=nil, webcallbacks=nil, noticerules=nil, jumpdomain=nil, deliverstatus=nil, deliverconfig=nil, alarmshieldstatus=nil)
8022
8061
  @AlarmNoticeId = alarmnoticeid
8062
+ @Tags = tags
8023
8063
  @Name = name
8024
8064
  @Type = type
8025
8065
  @NoticeReceivers = noticereceivers
8026
8066
  @WebCallbacks = webcallbacks
8027
8067
  @NoticeRules = noticerules
8068
+ @JumpDomain = jumpdomain
8069
+ @DeliverStatus = deliverstatus
8070
+ @DeliverConfig = deliverconfig
8071
+ @AlarmShieldStatus = alarmshieldstatus
8028
8072
  end
8029
8073
 
8030
8074
  def deserialize(params)
8031
8075
  @AlarmNoticeId = params['AlarmNoticeId']
8076
+ unless params['Tags'].nil?
8077
+ @Tags = []
8078
+ params['Tags'].each do |i|
8079
+ tag_tmp = Tag.new
8080
+ tag_tmp.deserialize(i)
8081
+ @Tags << tag_tmp
8082
+ end
8083
+ end
8032
8084
  @Name = params['Name']
8033
8085
  @Type = params['Type']
8034
8086
  unless params['NoticeReceivers'].nil?
@@ -8055,6 +8107,13 @@ module TencentCloud
8055
8107
  @NoticeRules << noticerule_tmp
8056
8108
  end
8057
8109
  end
8110
+ @JumpDomain = params['JumpDomain']
8111
+ @DeliverStatus = params['DeliverStatus']
8112
+ unless params['DeliverConfig'].nil?
8113
+ @DeliverConfig = DeliverConfig.new
8114
+ @DeliverConfig.deserialize(params['DeliverConfig'])
8115
+ end
8116
+ @AlarmShieldStatus = params['AlarmShieldStatus']
8058
8117
  end
8059
8118
  end
8060
8119
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.938
4
+ version: 3.0.940
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-11-07 00:00:00.000000000 Z
11
+ date: 2024-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common