tencentcloud-sdk-es 3.0.1086 → 3.0.1087

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 +27 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e58a996c116a0ce43d4a5f30449f0ae15232e41
4
- data.tar.gz: e3c2caf7daed893db366dfbc472f5e7dd69b92ef
3
+ metadata.gz: a6fd9c230b512c84db812a7f48fb08c98935b611
4
+ data.tar.gz: f274ab2bb647d41aef325eab08ad0c85608fe0fa
5
5
  SHA512:
6
- metadata.gz: 835848cb7380b410088e9ba82a37d2ca2b55226522b27143541dcc1d2c8cddcfeea4c9070f06c8b92be02cc22c82ba1a0a259a8e056d89e922a7adbea6b0013c
7
- data.tar.gz: d0376db7a8e4550c2e0113e988e47fa20c84d391f94e256fa478ca19b3a0bfa9c2b819778775f71668e4012d5db70b580a52c9a08174418003c9a859b390b6b3
6
+ metadata.gz: c1cccf3031a2515ed37ecc7408c62782d99396aea89d2e535d71dd3c0f609ed8e6980e0e7b3785ca863cd13e851cf99cc49fd0b553d0f58c2b299602fe2eb3bf
7
+ data.tar.gz: 0eb84a3b71ebe2c4342436e067c27998acc955dd56800f36017f41a2c23183a8dfdbbbe9465fbc10cd604520a18b00b36666acbafb69c7ff7c096f56056367c2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1086
1
+ 3.0.1087
@@ -252,17 +252,33 @@ module TencentCloud
252
252
  # @type IsAutoBackup: Boolean
253
253
  # @param BackupTime: 自动备份执行时间(精确到小时), e.g. "22:00"
254
254
  # @type BackupTime: String
255
-
256
- attr_accessor :IsAutoBackup, :BackupTime
257
-
258
- def initialize(isautobackup=nil, backuptime=nil)
255
+ # @param EsRepositoryType: 0 腾讯云仓库; 1 客户仓库
256
+ # @type EsRepositoryType: Integer
257
+ # @param UserEsRepository: 客户快照仓库名称
258
+ # @type UserEsRepository: String
259
+ # @param StorageDuration: 快照存储周期 单位天
260
+ # @type StorageDuration: Integer
261
+ # @param AutoBackupInterval: 自动备份频率单位小时
262
+ # @type AutoBackupInterval: Integer
263
+
264
+ attr_accessor :IsAutoBackup, :BackupTime, :EsRepositoryType, :UserEsRepository, :StorageDuration, :AutoBackupInterval
265
+
266
+ def initialize(isautobackup=nil, backuptime=nil, esrepositorytype=nil, useresrepository=nil, storageduration=nil, autobackupinterval=nil)
259
267
  @IsAutoBackup = isautobackup
260
268
  @BackupTime = backuptime
269
+ @EsRepositoryType = esrepositorytype
270
+ @UserEsRepository = useresrepository
271
+ @StorageDuration = storageduration
272
+ @AutoBackupInterval = autobackupinterval
261
273
  end
262
274
 
263
275
  def deserialize(params)
264
276
  @IsAutoBackup = params['IsAutoBackup']
265
277
  @BackupTime = params['BackupTime']
278
+ @EsRepositoryType = params['EsRepositoryType']
279
+ @UserEsRepository = params['UserEsRepository']
280
+ @StorageDuration = params['StorageDuration']
281
+ @AutoBackupInterval = params['AutoBackupInterval']
266
282
  end
267
283
  end
268
284
 
@@ -6369,6 +6385,9 @@ module TencentCloud
6369
6385
  # @param Uuid: 快照Uuid
6370
6386
  # 注意:此字段可能返回 null,表示取不到有效值。
6371
6387
  # @type Uuid: String
6388
+ # @param Repository: 仓库名称
6389
+ # 注意:此字段可能返回 null,表示取不到有效值。
6390
+ # @type Repository: String
6372
6391
  # @param Version: 该快照所属集群的版本号
6373
6392
  # 注意:此字段可能返回 null,表示取不到有效值。
6374
6393
  # @type Version: String
@@ -6414,11 +6433,12 @@ module TencentCloud
6414
6433
  # 注意:此字段可能返回 null,表示取不到有效值。
6415
6434
  # @type UserBackUp: String
6416
6435
 
6417
- attr_accessor :SnapshotName, :Uuid, :Version, :Indices, :DataStreams, :State, :StartTime, :EndTime, :DurationInMillis, :TotalShards, :FailedShards, :SuccessfulShards, :Failures, :UserBackUp
6436
+ attr_accessor :SnapshotName, :Uuid, :Repository, :Version, :Indices, :DataStreams, :State, :StartTime, :EndTime, :DurationInMillis, :TotalShards, :FailedShards, :SuccessfulShards, :Failures, :UserBackUp
6418
6437
 
6419
- def initialize(snapshotname=nil, uuid=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)
6438
+ 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)
6420
6439
  @SnapshotName = snapshotname
6421
6440
  @Uuid = uuid
6441
+ @Repository = repository
6422
6442
  @Version = version
6423
6443
  @Indices = indices
6424
6444
  @DataStreams = datastreams
@@ -6436,6 +6456,7 @@ module TencentCloud
6436
6456
  def deserialize(params)
6437
6457
  @SnapshotName = params['SnapshotName']
6438
6458
  @Uuid = params['Uuid']
6459
+ @Repository = params['Repository']
6439
6460
  @Version = params['Version']
6440
6461
  @Indices = params['Indices']
6441
6462
  @DataStreams = params['DataStreams']
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.1086
4
+ version: 3.0.1087
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-06-22 00:00:00.000000000 Z
11
+ date: 2025-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common