tencentcloud-sdk-es 3.0.658 → 3.0.659

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/v20180416/models.rb +60 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 760c0529401356a9ce89dd8ee172841a83061ac9
4
- data.tar.gz: aaad47e92a89175fda68b0087a8b1b66abe8c07f
3
+ metadata.gz: 71d20339c9d430e02c477caccb3ece381aa55cc4
4
+ data.tar.gz: 76af994f4b97ede1d81f66ca8303790c0ece608b
5
5
  SHA512:
6
- metadata.gz: b0275389bbdfe90afaea1fb7725f0feb258c221b29944f9175909d50e065cd82ce2f4dbde653a94a6c58b7cfc3b89aa3d3352156f16ad31ee21076cab3fa0893
7
- data.tar.gz: 2021d3624f6b8e44b5188877e99c46a0a5de53e535b4185148116b726ac1f32bc1b1229b1492817907c903b8a83a68d492426f45c0b5e30d4ba493de2839b5b0
6
+ metadata.gz: e35c9265f25f799d0cbb034f47b5c4e71128714b7bd29399a021f73ab6dbaaa36c5c32afde975486ebb99d1a57d805e44a6c2ea5cb0a32b3fc03b3bd78c8bf49
7
+ data.tar.gz: 40d9843567659ec56699502fbbb2a48c9fb78943a279696f4d41d779ece9e636765590b17f145cc37b46716e789b5e91a730c2c015569b3347c0f7d77b8ae3fe
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.658
1
+ 3.0.659
@@ -1593,7 +1593,7 @@ module TencentCloud
1593
1593
  end
1594
1594
  end
1595
1595
 
1596
- # ES公网访问访问控制信息
1596
+ # ES公网访问控制信息
1597
1597
  class EsPublicAcl < TencentCloud::Common::AbstractModel
1598
1598
  # @param BlackIpList: 访问黑名单
1599
1599
  # @type BlackIpList: Array
@@ -3062,10 +3062,13 @@ module TencentCloud
3062
3062
  # @type Tasks: Array
3063
3063
  # @param Progress: 操作进度
3064
3064
  # @type Progress: Float
3065
+ # @param SubAccountUin: 操作者Uin
3066
+ # 注意:此字段可能返回 null,表示取不到有效值。
3067
+ # @type SubAccountUin: String
3065
3068
 
3066
- attr_accessor :Id, :StartTime, :Type, :Detail, :Result, :Tasks, :Progress
3069
+ attr_accessor :Id, :StartTime, :Type, :Detail, :Result, :Tasks, :Progress, :SubAccountUin
3067
3070
 
3068
- def initialize(id=nil, starttime=nil, type=nil, detail=nil, result=nil, tasks=nil, progress=nil)
3071
+ def initialize(id=nil, starttime=nil, type=nil, detail=nil, result=nil, tasks=nil, progress=nil, subaccountuin=nil)
3069
3072
  @Id = id
3070
3073
  @StartTime = starttime
3071
3074
  @Type = type
@@ -3073,6 +3076,7 @@ module TencentCloud
3073
3076
  @Result = result
3074
3077
  @Tasks = tasks
3075
3078
  @Progress = progress
3079
+ @SubAccountUin = subaccountuin
3076
3080
  end
3077
3081
 
3078
3082
  def deserialize(params)
@@ -3093,6 +3097,7 @@ module TencentCloud
3093
3097
  end
3094
3098
  end
3095
3099
  @Progress = params['Progress']
3100
+ @SubAccountUin = params['SubAccountUin']
3096
3101
  end
3097
3102
  end
3098
3103
 
@@ -3238,6 +3243,41 @@ module TencentCloud
3238
3243
  end
3239
3244
  end
3240
3245
 
3246
+ # 任务进度详情
3247
+ class ProcessDetail < TencentCloud::Common::AbstractModel
3248
+ # @param Completed: 已完成数量
3249
+ # 注意:此字段可能返回 null,表示取不到有效值。
3250
+ # @type Completed: Integer
3251
+ # @param Remain: 剩余数量
3252
+ # 注意:此字段可能返回 null,表示取不到有效值。
3253
+ # @type Remain: Integer
3254
+ # @param Total: 总数量
3255
+ # 注意:此字段可能返回 null,表示取不到有效值。
3256
+ # @type Total: Integer
3257
+ # @param TaskType: 任务类型:
3258
+ # 60:重启型任务
3259
+ # 70:分片迁移型任务
3260
+ # 80:节点变配任务
3261
+ # 注意:此字段可能返回 null,表示取不到有效值。
3262
+ # @type TaskType: Integer
3263
+
3264
+ attr_accessor :Completed, :Remain, :Total, :TaskType
3265
+
3266
+ def initialize(completed=nil, remain=nil, total=nil, tasktype=nil)
3267
+ @Completed = completed
3268
+ @Remain = remain
3269
+ @Total = total
3270
+ @TaskType = tasktype
3271
+ end
3272
+
3273
+ def deserialize(params)
3274
+ @Completed = params['Completed']
3275
+ @Remain = params['Remain']
3276
+ @Total = params['Total']
3277
+ @TaskType = params['TaskType']
3278
+ end
3279
+ end
3280
+
3241
3281
  # RestartInstance请求参数结构体
3242
3282
  class RestartInstanceRequest < TencentCloud::Common::AbstractModel
3243
3283
  # @param InstanceId: 实例ID
@@ -3586,15 +3626,19 @@ module TencentCloud
3586
3626
  # @param ElapsedTime: 任务花费时间
3587
3627
  # 注意:此字段可能返回 null,表示取不到有效值。
3588
3628
  # @type ElapsedTime: Integer
3629
+ # @param ProcessInfo: 任务进度详情
3630
+ # 注意:此字段可能返回 null,表示取不到有效值。
3631
+ # @type ProcessInfo: :class:`Tencentcloud::Es.v20180416.models.ProcessDetail`
3589
3632
 
3590
- attr_accessor :Name, :Progress, :FinishTime, :SubTasks, :ElapsedTime
3633
+ attr_accessor :Name, :Progress, :FinishTime, :SubTasks, :ElapsedTime, :ProcessInfo
3591
3634
 
3592
- def initialize(name=nil, progress=nil, finishtime=nil, subtasks=nil, elapsedtime=nil)
3635
+ def initialize(name=nil, progress=nil, finishtime=nil, subtasks=nil, elapsedtime=nil, processinfo=nil)
3593
3636
  @Name = name
3594
3637
  @Progress = progress
3595
3638
  @FinishTime = finishtime
3596
3639
  @SubTasks = subtasks
3597
3640
  @ElapsedTime = elapsedtime
3641
+ @ProcessInfo = processinfo
3598
3642
  end
3599
3643
 
3600
3644
  def deserialize(params)
@@ -3610,6 +3654,10 @@ module TencentCloud
3610
3654
  end
3611
3655
  end
3612
3656
  @ElapsedTime = params['ElapsedTime']
3657
+ unless params['ProcessInfo'].nil?
3658
+ @ProcessInfo = ProcessDetail.new
3659
+ @ProcessInfo.deserialize(params['ProcessInfo'])
3660
+ end
3613
3661
  end
3614
3662
  end
3615
3663
 
@@ -3619,7 +3667,7 @@ module TencentCloud
3619
3667
  # @type InstanceId: String
3620
3668
  # @param Status: 0:开启智能运维;-1:关闭智能运维
3621
3669
  # @type Status: Integer
3622
- # @param CronTime: 智能运维每天定时巡检时间
3670
+ # @param CronTime: 智能运维每天定时巡检时间,时间格式为HH:00:00,例如15:00:00
3623
3671
  # @type CronTime: String
3624
3672
 
3625
3673
  attr_accessor :InstanceId, :Status, :CronTime
@@ -3657,13 +3705,13 @@ module TencentCloud
3657
3705
  class UpdateDictionariesRequest < TencentCloud::Common::AbstractModel
3658
3706
  # @param InstanceId: ES实例ID
3659
3707
  # @type InstanceId: String
3660
- # @param IkMainDicts: IK分词主词典COS地址
3708
+ # @param IkMainDicts: 安装时填IK分词主词典COS地址,删除时填词典名如test.dic
3661
3709
  # @type IkMainDicts: Array
3662
- # @param IkStopwords: IK分词停用词词典COS地址
3710
+ # @param IkStopwords: 安装时填IK分词停用词词典COS地址,删除时填词典名如test.dic
3663
3711
  # @type IkStopwords: Array
3664
- # @param Synonym: 同义词词典COS地址
3712
+ # @param Synonym: 安装时填同义词词典COS地址,删除时填词典名如test.dic
3665
3713
  # @type Synonym: Array
3666
- # @param QQDict: QQ分词词典COS地址
3714
+ # @param QQDict: 安装时填QQ分词词典COS地址,删除时填词典名如test.dic
3667
3715
  # @type QQDict: Array
3668
3716
  # @param UpdateType: 0:安装;1:删除。默认值0
3669
3717
  # @type UpdateType: Integer
@@ -4229,7 +4277,7 @@ module TencentCloud
4229
4277
  class UpgradeInstanceRequest < TencentCloud::Common::AbstractModel
4230
4278
  # @param InstanceId: 实例ID
4231
4279
  # @type InstanceId: String
4232
- # @param EsVersion: 目标ES版本,支持:”6.4.3“, "6.8.2","7.5.1"
4280
+ # @param EsVersion: 目标ES版本,支持:”6.4.3“, "6.8.2","7.5.1", "7.10.1", "7.14.2"
4233
4281
  # @type EsVersion: String
4234
4282
  # @param CheckOnly: 是否只做升级检查,默认值为false
4235
4283
  # @type CheckOnly: Boolean
@@ -4295,7 +4343,7 @@ module TencentCloud
4295
4343
  # @type AutoVoucher: Integer
4296
4344
  # @param VoucherIds: 代金券ID列表(目前仅支持指定一张代金券)
4297
4345
  # @type VoucherIds: Array
4298
- # @param BasicSecurityType: 6.8(及以上版本)基础版是否开启xpack security认证<li>1:不开启</li><li>2:开启</li>
4346
+ # @param BasicSecurityType: 6.8(及以上版本)基础版是否开启xpack security认证<li>1:不开启</li><li>2:开启</li><li>不传参时会默认维持原状,传参时需注意只能由不开启变为开启,无法由开启变为不开启</li>
4299
4347
  # @type BasicSecurityType: Integer
4300
4348
  # @param ForceRestart: 是否强制重启<li>true强制重启</li><li>false不强制重启</li> 默认值false
4301
4349
  # @type ForceRestart: Boolean
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-es
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.658
4
+ version: 3.0.659
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-13 00:00:00.000000000 Z
11
+ date: 2023-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common