tencentcloud-sdk-es 3.0.657 → 3.0.659

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.
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: 42467db673f62c6ec4f2614d325a27eef8f7abe7
4
- data.tar.gz: 223c6a675313198df407837d017003e7c11dd047
3
+ metadata.gz: 71d20339c9d430e02c477caccb3ece381aa55cc4
4
+ data.tar.gz: 76af994f4b97ede1d81f66ca8303790c0ece608b
5
5
  SHA512:
6
- metadata.gz: 56dc6ef3f21c53a1752c5a0e4bd93aae9bb0bb1084b55bf33007e3585496e27926a839182dcd899756517e1d4364ccc8d15f9a3880c3f3998f3b2aa794a822be
7
- data.tar.gz: 0ad406300ce3c85e3de9246d139a5289d60f4e4678e38f76590977374527fa1998b9aee993009a3bbe0c7d9bd8a17504c30340e7480c43c96783b4b4b2e7f788
6
+ metadata.gz: e35c9265f25f799d0cbb034f47b5c4e71128714b7bd29399a021f73ab6dbaaa36c5c32afde975486ebb99d1a57d805e44a6c2ea5cb0a32b3fc03b3bd78c8bf49
7
+ data.tar.gz: 40d9843567659ec56699502fbbb2a48c9fb78943a279696f4d41d779ece9e636765590b17f145cc37b46716e789b5e91a730c2c015569b3347c0f7d77b8ae3fe
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.657
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.657
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-12 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