tencentcloud-sdk-es 3.0.1183 → 3.0.1185
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/tencentcloud-sdk-es.rb +3 -3
- data/lib/v20180416/models.rb +6 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1860cc18fe8b67e3d4e77191b98d4baed19152d
|
|
4
|
+
data.tar.gz: 787890acf1774d8d903aaea072425877282e8a8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5228b97976b02ba0361fc32582ef976088ec57b85daa58ed59ef2055bbbf89ded3f05c62fb3727ae973d8ba1214b6a60bf3bb135615d92567bbffcb3c2b25b35
|
|
7
|
+
data.tar.gz: 2caab34288a720b552d99c81bbf9650c9e0ae817dbfee78794c375e16c62a9e5b8999643388f81c3a27db3b929b8625f937e8491fa07334caee9a03fa1c703f3
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1185
|
data/lib/tencentcloud-sdk-es.rb
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
require 'tencentcloud-sdk-common'
|
|
4
4
|
|
|
5
|
-
require_relative 'v20180416/client'
|
|
6
|
-
require_relative 'v20180416/models'
|
|
7
|
-
|
|
8
5
|
require_relative 'v20250101/client'
|
|
9
6
|
require_relative 'v20250101/models'
|
|
10
7
|
|
|
8
|
+
require_relative 'v20180416/client'
|
|
9
|
+
require_relative 'v20180416/models'
|
|
10
|
+
|
|
11
11
|
module TencentCloud
|
|
12
12
|
module Es
|
|
13
13
|
end
|
data/lib/v20180416/models.rb
CHANGED
|
@@ -307,6 +307,8 @@ module TencentCloud
|
|
|
307
307
|
# @type PaasEsRepository: String
|
|
308
308
|
# @param UserEsRepository: 客户快照仓库名称
|
|
309
309
|
# @type UserEsRepository: String
|
|
310
|
+
# @param CosBasePath: cos存储文件夹目录
|
|
311
|
+
# @type CosBasePath: String
|
|
310
312
|
# @param StorageDuration: 快照存储周期 单位天
|
|
311
313
|
# @type StorageDuration: Integer
|
|
312
314
|
# @param AutoBackupInterval: 自动备份频率单位小时
|
|
@@ -328,15 +330,16 @@ module TencentCloud
|
|
|
328
330
|
# @param CreateTime: 策略创建时间
|
|
329
331
|
# @type CreateTime: String
|
|
330
332
|
|
|
331
|
-
attr_accessor :IsAutoBackup, :BackupTime, :SnapshotName, :EsRepositoryType, :PaasEsRepository, :UserEsRepository, :StorageDuration, :AutoBackupInterval, :CosRetention, :RetainUntilDate, :RetentionGraceTime, :RemoteCos, :RemoteCosRegion, :StrategyName, :Indices, :CreateTime
|
|
333
|
+
attr_accessor :IsAutoBackup, :BackupTime, :SnapshotName, :EsRepositoryType, :PaasEsRepository, :UserEsRepository, :CosBasePath, :StorageDuration, :AutoBackupInterval, :CosRetention, :RetainUntilDate, :RetentionGraceTime, :RemoteCos, :RemoteCosRegion, :StrategyName, :Indices, :CreateTime
|
|
332
334
|
|
|
333
|
-
def initialize(isautobackup=nil, backuptime=nil, snapshotname=nil, esrepositorytype=nil, paasesrepository=nil, useresrepository=nil, storageduration=nil, autobackupinterval=nil, cosretention=nil, retainuntildate=nil, retentiongracetime=nil, remotecos=nil, remotecosregion=nil, strategyname=nil, indices=nil, createtime=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)
|
|
334
336
|
@IsAutoBackup = isautobackup
|
|
335
337
|
@BackupTime = backuptime
|
|
336
338
|
@SnapshotName = snapshotname
|
|
337
339
|
@EsRepositoryType = esrepositorytype
|
|
338
340
|
@PaasEsRepository = paasesrepository
|
|
339
341
|
@UserEsRepository = useresrepository
|
|
342
|
+
@CosBasePath = cosbasepath
|
|
340
343
|
@StorageDuration = storageduration
|
|
341
344
|
@AutoBackupInterval = autobackupinterval
|
|
342
345
|
@CosRetention = cosretention
|
|
@@ -356,6 +359,7 @@ module TencentCloud
|
|
|
356
359
|
@EsRepositoryType = params['EsRepositoryType']
|
|
357
360
|
@PaasEsRepository = params['PaasEsRepository']
|
|
358
361
|
@UserEsRepository = params['UserEsRepository']
|
|
362
|
+
@CosBasePath = params['CosBasePath']
|
|
359
363
|
@StorageDuration = params['StorageDuration']
|
|
360
364
|
@AutoBackupInterval = params['AutoBackupInterval']
|
|
361
365
|
@CosRetention = params['CosRetention']
|
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.1185
|
|
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-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,11 +33,11 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20180416/models.rb
|
|
37
36
|
- lib/v20180416/client.rb
|
|
38
|
-
- lib/
|
|
39
|
-
- lib/v20250101/models.rb
|
|
37
|
+
- lib/v20180416/models.rb
|
|
40
38
|
- lib/v20250101/client.rb
|
|
39
|
+
- lib/v20250101/models.rb
|
|
40
|
+
- lib/tencentcloud-sdk-es.rb
|
|
41
41
|
- lib/VERSION
|
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
43
43
|
licenses:
|