tencentcloud-sdk-es 3.0.1178 → 3.0.1184
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/v20180416/models.rb +154 -8
- 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: 4809f55480656e550587a8549523b0a84c7c10f4
|
|
4
|
+
data.tar.gz: db443c17090a33c6c237fd98006a0804222214a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f88004bc9b0ecbceadd3748843edde75bb45e40ecdc4e0b29cd5ea2168a8193423325ae0cbadc8c92b1b5007462c48efb67253309550734f33998a8c0544c74
|
|
7
|
+
data.tar.gz: d659fccb4e86f6d8c74067aad5c63b16a8aa4391056b0ca161949a58d12606d6ab615476b935de8c2e19cb872e49123f7baff9de65b26bbced5c71c54f56fe92
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1184
|
data/lib/v20180416/models.rb
CHANGED
|
@@ -299,33 +299,77 @@ module TencentCloud
|
|
|
299
299
|
# @type IsAutoBackup: Boolean
|
|
300
300
|
# @param BackupTime: 自动备份执行时间(精确到小时), e.g. "22:00"
|
|
301
301
|
# @type BackupTime: String
|
|
302
|
+
# @param SnapshotName: 备份快照前缀
|
|
303
|
+
# @type SnapshotName: String
|
|
302
304
|
# @param EsRepositoryType: 0 腾讯云仓库; 1 客户仓库
|
|
303
305
|
# @type EsRepositoryType: Integer
|
|
306
|
+
# @param PaasEsRepository: 托管快照仓库名称
|
|
307
|
+
# @type PaasEsRepository: String
|
|
304
308
|
# @param UserEsRepository: 客户快照仓库名称
|
|
305
309
|
# @type UserEsRepository: String
|
|
310
|
+
# @param CosBasePath: cos存储文件夹目录
|
|
311
|
+
# @type CosBasePath: String
|
|
306
312
|
# @param StorageDuration: 快照存储周期 单位天
|
|
307
313
|
# @type StorageDuration: Integer
|
|
308
314
|
# @param AutoBackupInterval: 自动备份频率单位小时
|
|
309
315
|
# @type AutoBackupInterval: Integer
|
|
316
|
+
# @param CosRetention: 备份锁定 0 不锁定; 1 锁定
|
|
317
|
+
# @type CosRetention: Integer
|
|
318
|
+
# @param RetainUntilDate: 锁定截止日期 2022-12-10T08:34:48.000Z
|
|
319
|
+
# @type RetainUntilDate: String
|
|
320
|
+
# @param RetentionGraceTime: 锁定宽限期
|
|
321
|
+
# @type RetentionGraceTime: Integer
|
|
322
|
+
# @param RemoteCos: 跨地域备份 0 不跨地域; 1 跨地域
|
|
323
|
+
# @type RemoteCos: Integer
|
|
324
|
+
# @param RemoteCosRegion: 跨地域备份地域名称 ap-guangzhou
|
|
325
|
+
# @type RemoteCosRegion: String
|
|
326
|
+
# @param StrategyName: 策略名称
|
|
327
|
+
# @type StrategyName: String
|
|
328
|
+
# @param Indices: 备份索引列表,如果不填表示备份所有索引
|
|
329
|
+
# @type Indices: String
|
|
330
|
+
# @param CreateTime: 策略创建时间
|
|
331
|
+
# @type CreateTime: String
|
|
310
332
|
|
|
311
|
-
attr_accessor :IsAutoBackup, :BackupTime, :EsRepositoryType, :UserEsRepository, :StorageDuration, :AutoBackupInterval
|
|
333
|
+
attr_accessor :IsAutoBackup, :BackupTime, :SnapshotName, :EsRepositoryType, :PaasEsRepository, :UserEsRepository, :CosBasePath, :StorageDuration, :AutoBackupInterval, :CosRetention, :RetainUntilDate, :RetentionGraceTime, :RemoteCos, :RemoteCosRegion, :StrategyName, :Indices, :CreateTime
|
|
312
334
|
|
|
313
|
-
def initialize(isautobackup=nil, backuptime=nil, esrepositorytype=nil, useresrepository=nil, storageduration=nil, autobackupinterval=nil)
|
|
335
|
+
def initialize(isautobackup=nil, backuptime=nil, snapshotname=nil, esrepositorytype=nil, paasesrepository=nil, useresrepository=nil, cosbasepath=nil, storageduration=nil, autobackupinterval=nil, cosretention=nil, retainuntildate=nil, retentiongracetime=nil, remotecos=nil, remotecosregion=nil, strategyname=nil, indices=nil, createtime=nil)
|
|
314
336
|
@IsAutoBackup = isautobackup
|
|
315
337
|
@BackupTime = backuptime
|
|
338
|
+
@SnapshotName = snapshotname
|
|
316
339
|
@EsRepositoryType = esrepositorytype
|
|
340
|
+
@PaasEsRepository = paasesrepository
|
|
317
341
|
@UserEsRepository = useresrepository
|
|
342
|
+
@CosBasePath = cosbasepath
|
|
318
343
|
@StorageDuration = storageduration
|
|
319
344
|
@AutoBackupInterval = autobackupinterval
|
|
345
|
+
@CosRetention = cosretention
|
|
346
|
+
@RetainUntilDate = retainuntildate
|
|
347
|
+
@RetentionGraceTime = retentiongracetime
|
|
348
|
+
@RemoteCos = remotecos
|
|
349
|
+
@RemoteCosRegion = remotecosregion
|
|
350
|
+
@StrategyName = strategyname
|
|
351
|
+
@Indices = indices
|
|
352
|
+
@CreateTime = createtime
|
|
320
353
|
end
|
|
321
354
|
|
|
322
355
|
def deserialize(params)
|
|
323
356
|
@IsAutoBackup = params['IsAutoBackup']
|
|
324
357
|
@BackupTime = params['BackupTime']
|
|
358
|
+
@SnapshotName = params['SnapshotName']
|
|
325
359
|
@EsRepositoryType = params['EsRepositoryType']
|
|
360
|
+
@PaasEsRepository = params['PaasEsRepository']
|
|
326
361
|
@UserEsRepository = params['UserEsRepository']
|
|
362
|
+
@CosBasePath = params['CosBasePath']
|
|
327
363
|
@StorageDuration = params['StorageDuration']
|
|
328
364
|
@AutoBackupInterval = params['AutoBackupInterval']
|
|
365
|
+
@CosRetention = params['CosRetention']
|
|
366
|
+
@RetainUntilDate = params['RetainUntilDate']
|
|
367
|
+
@RetentionGraceTime = params['RetentionGraceTime']
|
|
368
|
+
@RemoteCos = params['RemoteCos']
|
|
369
|
+
@RemoteCosRegion = params['RemoteCosRegion']
|
|
370
|
+
@StrategyName = params['StrategyName']
|
|
371
|
+
@Indices = params['Indices']
|
|
372
|
+
@CreateTime = params['CreateTime']
|
|
329
373
|
end
|
|
330
374
|
end
|
|
331
375
|
|
|
@@ -398,19 +442,51 @@ module TencentCloud
|
|
|
398
442
|
# @type SnapshotName: String
|
|
399
443
|
# @param Indices: 索引名称
|
|
400
444
|
# @type Indices: String
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
445
|
+
# @param EsRepositoryType: 0 腾讯云仓库; 1 客户仓库
|
|
446
|
+
# @type EsRepositoryType: Integer
|
|
447
|
+
# @param UserEsRepository: 客户快照仓库名称
|
|
448
|
+
# @type UserEsRepository: String
|
|
449
|
+
# @param StorageDuration: 快照存储周期 单位天,范围[0, INF), 如果没有设置则默认7天
|
|
450
|
+
# @type StorageDuration: Integer
|
|
451
|
+
# @param CosRetention: 备份锁定 0 不锁定; 1 锁定
|
|
452
|
+
# @type CosRetention: Integer
|
|
453
|
+
# @param RetainUntilDate: 锁定截止日期 2022-12-10T08:34:48.000Z
|
|
454
|
+
# @type RetainUntilDate: String
|
|
455
|
+
# @param RetentionGraceTime: 锁定宽限期,单位天
|
|
456
|
+
# @type RetentionGraceTime: Integer
|
|
457
|
+
# @param RemoteCos: 跨地域备份 0 不跨地域; 1 跨地域
|
|
458
|
+
# @type RemoteCos: Integer
|
|
459
|
+
# @param RemoteCosRegion: 跨地域备份地域名称 ap-guangzhou
|
|
460
|
+
# @type RemoteCosRegion: String
|
|
461
|
+
|
|
462
|
+
attr_accessor :InstanceId, :SnapshotName, :Indices, :EsRepositoryType, :UserEsRepository, :StorageDuration, :CosRetention, :RetainUntilDate, :RetentionGraceTime, :RemoteCos, :RemoteCosRegion
|
|
463
|
+
|
|
464
|
+
def initialize(instanceid=nil, snapshotname=nil, indices=nil, esrepositorytype=nil, useresrepository=nil, storageduration=nil, cosretention=nil, retainuntildate=nil, retentiongracetime=nil, remotecos=nil, remotecosregion=nil)
|
|
405
465
|
@InstanceId = instanceid
|
|
406
466
|
@SnapshotName = snapshotname
|
|
407
467
|
@Indices = indices
|
|
468
|
+
@EsRepositoryType = esrepositorytype
|
|
469
|
+
@UserEsRepository = useresrepository
|
|
470
|
+
@StorageDuration = storageduration
|
|
471
|
+
@CosRetention = cosretention
|
|
472
|
+
@RetainUntilDate = retainuntildate
|
|
473
|
+
@RetentionGraceTime = retentiongracetime
|
|
474
|
+
@RemoteCos = remotecos
|
|
475
|
+
@RemoteCosRegion = remotecosregion
|
|
408
476
|
end
|
|
409
477
|
|
|
410
478
|
def deserialize(params)
|
|
411
479
|
@InstanceId = params['InstanceId']
|
|
412
480
|
@SnapshotName = params['SnapshotName']
|
|
413
481
|
@Indices = params['Indices']
|
|
482
|
+
@EsRepositoryType = params['EsRepositoryType']
|
|
483
|
+
@UserEsRepository = params['UserEsRepository']
|
|
484
|
+
@StorageDuration = params['StorageDuration']
|
|
485
|
+
@CosRetention = params['CosRetention']
|
|
486
|
+
@RetainUntilDate = params['RetainUntilDate']
|
|
487
|
+
@RetentionGraceTime = params['RetentionGraceTime']
|
|
488
|
+
@RemoteCos = params['RemoteCos']
|
|
489
|
+
@RemoteCosRegion = params['RemoteCosRegion']
|
|
414
490
|
end
|
|
415
491
|
end
|
|
416
492
|
|
|
@@ -6935,10 +7011,52 @@ module TencentCloud
|
|
|
6935
7011
|
# @param UserBackUp: 是否用户备份
|
|
6936
7012
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6937
7013
|
# @type UserBackUp: String
|
|
7014
|
+
# @param EsRepositoryType: 0 腾讯云仓库; 1 客户仓库
|
|
7015
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7016
|
+
# @type EsRepositoryType: Integer
|
|
7017
|
+
# @param PaasEsRepository: 托管快照仓库名称
|
|
7018
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7019
|
+
# @type PaasEsRepository: String
|
|
7020
|
+
# @param UserEsRepository: 客户快照仓库名称
|
|
7021
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7022
|
+
# @type UserEsRepository: String
|
|
7023
|
+
# @param StorageDuration: 快照存储周期 单位天,范围[0, INF), 如果没有设置则默认7天
|
|
7024
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7025
|
+
# @type StorageDuration: Integer
|
|
7026
|
+
# @param AutoBackupInterval: 自动备份频率, 如果是0,则等效24
|
|
7027
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7028
|
+
# @type AutoBackupInterval: Integer
|
|
7029
|
+
# @param CosRetention: 备份锁定 0 不锁定; 1 锁定
|
|
7030
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7031
|
+
# @type CosRetention: Integer
|
|
7032
|
+
# @param RetainUntilDate: 锁定截止日期 2022-12-10T08:34:48.000Z
|
|
7033
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7034
|
+
# @type RetainUntilDate: String
|
|
7035
|
+
# @param RetentionGraceTime: 锁定宽限期,单位天
|
|
7036
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7037
|
+
# @type RetentionGraceTime: Integer
|
|
7038
|
+
# @param IsLocked: 是否已经备份锁定 0 不锁定; 1 锁定
|
|
7039
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7040
|
+
# @type IsLocked: Integer
|
|
7041
|
+
# @param RemoteCos: 跨地域备份 0 不跨地域; 1 跨地域
|
|
7042
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7043
|
+
# @type RemoteCos: Integer
|
|
7044
|
+
# @param RemoteCosRegion: 跨地域备份地域名称 ap-guangzhou
|
|
7045
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7046
|
+
# @type RemoteCosRegion: String
|
|
7047
|
+
# @param CosEncryption: 备份加密 0 不加密; 1 加密
|
|
7048
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7049
|
+
# @type CosEncryption: Integer
|
|
7050
|
+
# @param KmsKey: kms密钥
|
|
7051
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7052
|
+
# @type KmsKey: String
|
|
7053
|
+
# @param StrategyName: 策略名称
|
|
7054
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
7055
|
+
# @type StrategyName: String
|
|
6938
7056
|
|
|
6939
|
-
attr_accessor :SnapshotName, :Uuid, :Repository, :Version, :Indices, :DataStreams, :State, :StartTime, :EndTime, :DurationInMillis, :TotalShards, :FailedShards, :SuccessfulShards, :Failures, :UserBackUp
|
|
7057
|
+
attr_accessor :SnapshotName, :Uuid, :Repository, :Version, :Indices, :DataStreams, :State, :StartTime, :EndTime, :DurationInMillis, :TotalShards, :FailedShards, :SuccessfulShards, :Failures, :UserBackUp, :EsRepositoryType, :PaasEsRepository, :UserEsRepository, :StorageDuration, :AutoBackupInterval, :CosRetention, :RetainUntilDate, :RetentionGraceTime, :IsLocked, :RemoteCos, :RemoteCosRegion, :CosEncryption, :KmsKey, :StrategyName
|
|
6940
7058
|
|
|
6941
|
-
def initialize(snapshotname=nil, uuid=nil, repository=nil, version=nil, indices=nil, datastreams=nil, state=nil, starttime=nil, endtime=nil, durationinmillis=nil, totalshards=nil, failedshards=nil, successfulshards=nil, failures=nil, userbackup=nil)
|
|
7059
|
+
def initialize(snapshotname=nil, uuid=nil, repository=nil, version=nil, indices=nil, datastreams=nil, state=nil, starttime=nil, endtime=nil, durationinmillis=nil, totalshards=nil, failedshards=nil, successfulshards=nil, failures=nil, userbackup=nil, esrepositorytype=nil, paasesrepository=nil, useresrepository=nil, storageduration=nil, autobackupinterval=nil, cosretention=nil, retainuntildate=nil, retentiongracetime=nil, islocked=nil, remotecos=nil, remotecosregion=nil, cosencryption=nil, kmskey=nil, strategyname=nil)
|
|
6942
7060
|
@SnapshotName = snapshotname
|
|
6943
7061
|
@Uuid = uuid
|
|
6944
7062
|
@Repository = repository
|
|
@@ -6954,6 +7072,20 @@ module TencentCloud
|
|
|
6954
7072
|
@SuccessfulShards = successfulshards
|
|
6955
7073
|
@Failures = failures
|
|
6956
7074
|
@UserBackUp = userbackup
|
|
7075
|
+
@EsRepositoryType = esrepositorytype
|
|
7076
|
+
@PaasEsRepository = paasesrepository
|
|
7077
|
+
@UserEsRepository = useresrepository
|
|
7078
|
+
@StorageDuration = storageduration
|
|
7079
|
+
@AutoBackupInterval = autobackupinterval
|
|
7080
|
+
@CosRetention = cosretention
|
|
7081
|
+
@RetainUntilDate = retainuntildate
|
|
7082
|
+
@RetentionGraceTime = retentiongracetime
|
|
7083
|
+
@IsLocked = islocked
|
|
7084
|
+
@RemoteCos = remotecos
|
|
7085
|
+
@RemoteCosRegion = remotecosregion
|
|
7086
|
+
@CosEncryption = cosencryption
|
|
7087
|
+
@KmsKey = kmskey
|
|
7088
|
+
@StrategyName = strategyname
|
|
6957
7089
|
end
|
|
6958
7090
|
|
|
6959
7091
|
def deserialize(params)
|
|
@@ -6979,6 +7111,20 @@ module TencentCloud
|
|
|
6979
7111
|
end
|
|
6980
7112
|
end
|
|
6981
7113
|
@UserBackUp = params['UserBackUp']
|
|
7114
|
+
@EsRepositoryType = params['EsRepositoryType']
|
|
7115
|
+
@PaasEsRepository = params['PaasEsRepository']
|
|
7116
|
+
@UserEsRepository = params['UserEsRepository']
|
|
7117
|
+
@StorageDuration = params['StorageDuration']
|
|
7118
|
+
@AutoBackupInterval = params['AutoBackupInterval']
|
|
7119
|
+
@CosRetention = params['CosRetention']
|
|
7120
|
+
@RetainUntilDate = params['RetainUntilDate']
|
|
7121
|
+
@RetentionGraceTime = params['RetentionGraceTime']
|
|
7122
|
+
@IsLocked = params['IsLocked']
|
|
7123
|
+
@RemoteCos = params['RemoteCos']
|
|
7124
|
+
@RemoteCosRegion = params['RemoteCosRegion']
|
|
7125
|
+
@CosEncryption = params['CosEncryption']
|
|
7126
|
+
@KmsKey = params['KmsKey']
|
|
7127
|
+
@StrategyName = params['StrategyName']
|
|
6982
7128
|
end
|
|
6983
7129
|
end
|
|
6984
7130
|
|
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.
|
|
4
|
+
version: 3.0.1184
|
|
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-12-
|
|
11
|
+
date: 2025-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|