tencentcloud-sdk-tse 1.0.286 → 1.0.287
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/v20201207/models.rb +20 -6
- 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: 20b75891636d48011ea7248420905c641b668b3c
|
4
|
+
data.tar.gz: 49fb3051093f8656aec0bf76923bb81722598e1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4fadae210089b1d3bed79b2e2ec77ce170585be5adf006b5da5af0d51a680e4e6e574de9b458041d168763fafcf81e0988e90b4501c397994a3f5fe71fae24b3
|
7
|
+
data.tar.gz: 2ed6c4bcfe5ae05bd3ce65a8a6c60b5bf24efbde1894e4be31971121ffc934c099cbb41c66e60dfb79198f7bf9abf67c7ed49e7a2742cf96121d2d01be795088
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.287
|
data/lib/v20201207/models.rb
CHANGED
@@ -24,17 +24,22 @@ module TencentCloud
|
|
24
24
|
# @param BoundClusterType: 绑定的kubernetes的集群类型,分tke和eks两种
|
25
25
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
26
26
|
# @type BoundClusterType: String
|
27
|
+
# @param SyncMode: 服务同步模式,all为全量同步,demand为按需同步
|
28
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29
|
+
# @type SyncMode: String
|
27
30
|
|
28
|
-
attr_accessor :BoundClusterId, :BoundClusterType
|
31
|
+
attr_accessor :BoundClusterId, :BoundClusterType, :SyncMode
|
29
32
|
|
30
|
-
def initialize(boundclusterid=nil, boundclustertype=nil)
|
33
|
+
def initialize(boundclusterid=nil, boundclustertype=nil, syncmode=nil)
|
31
34
|
@BoundClusterId = boundclusterid
|
32
35
|
@BoundClusterType = boundclustertype
|
36
|
+
@SyncMode = syncmode
|
33
37
|
end
|
34
38
|
|
35
39
|
def deserialize(params)
|
36
40
|
@BoundClusterId = params['BoundClusterId']
|
37
41
|
@BoundClusterType = params['BoundClusterType']
|
42
|
+
@SyncMode = params['SyncMode']
|
38
43
|
end
|
39
44
|
end
|
40
45
|
|
@@ -370,10 +375,13 @@ module TencentCloud
|
|
370
375
|
# @param ConfigInfoVisible: 引擎实例是否展示参数配置页面
|
371
376
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
372
377
|
# @type ConfigInfoVisible: Boolean
|
378
|
+
# @param ConsoleDefaultPwd: 引擎实例控制台默认密码
|
379
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
380
|
+
# @type ConsoleDefaultPwd: String
|
373
381
|
|
374
|
-
attr_accessor :InstanceId, :Name, :Edition, :Status, :SpecId, :Replica, :Type, :VpcId, :SubnetIds, :EnableStorage, :StorageType, :StorageCapacity, :Paymode, :EKSClusterID, :CreateTime, :EnvInfos, :EngineRegion, :EnableInternet, :VpcInfos, :ServiceGovernanceInfos, :Tags, :EnableConsoleInternet, :EnableConsoleIntranet, :ConfigInfoVisible
|
382
|
+
attr_accessor :InstanceId, :Name, :Edition, :Status, :SpecId, :Replica, :Type, :VpcId, :SubnetIds, :EnableStorage, :StorageType, :StorageCapacity, :Paymode, :EKSClusterID, :CreateTime, :EnvInfos, :EngineRegion, :EnableInternet, :VpcInfos, :ServiceGovernanceInfos, :Tags, :EnableConsoleInternet, :EnableConsoleIntranet, :ConfigInfoVisible, :ConsoleDefaultPwd
|
375
383
|
|
376
|
-
def initialize(instanceid=nil, name=nil, edition=nil, status=nil, specid=nil, replica=nil, type=nil, vpcid=nil, subnetids=nil, enablestorage=nil, storagetype=nil, storagecapacity=nil, paymode=nil, eksclusterid=nil, createtime=nil, envinfos=nil, engineregion=nil, enableinternet=nil, vpcinfos=nil, servicegovernanceinfos=nil, tags=nil, enableconsoleinternet=nil, enableconsoleintranet=nil, configinfovisible=nil)
|
384
|
+
def initialize(instanceid=nil, name=nil, edition=nil, status=nil, specid=nil, replica=nil, type=nil, vpcid=nil, subnetids=nil, enablestorage=nil, storagetype=nil, storagecapacity=nil, paymode=nil, eksclusterid=nil, createtime=nil, envinfos=nil, engineregion=nil, enableinternet=nil, vpcinfos=nil, servicegovernanceinfos=nil, tags=nil, enableconsoleinternet=nil, enableconsoleintranet=nil, configinfovisible=nil, consoledefaultpwd=nil)
|
377
385
|
@InstanceId = instanceid
|
378
386
|
@Name = name
|
379
387
|
@Edition = edition
|
@@ -398,6 +406,7 @@ module TencentCloud
|
|
398
406
|
@EnableConsoleInternet = enableconsoleinternet
|
399
407
|
@EnableConsoleIntranet = enableconsoleintranet
|
400
408
|
@ConfigInfoVisible = configinfovisible
|
409
|
+
@ConsoleDefaultPwd = consoledefaultpwd
|
401
410
|
end
|
402
411
|
|
403
412
|
def deserialize(params)
|
@@ -453,6 +462,7 @@ module TencentCloud
|
|
453
462
|
@EnableConsoleInternet = params['EnableConsoleInternet']
|
454
463
|
@EnableConsoleIntranet = params['EnableConsoleIntranet']
|
455
464
|
@ConfigInfoVisible = params['ConfigInfoVisible']
|
465
|
+
@ConsoleDefaultPwd = params['ConsoleDefaultPwd']
|
456
466
|
end
|
457
467
|
end
|
458
468
|
|
@@ -468,15 +478,18 @@ module TencentCloud
|
|
468
478
|
# @type AuthOpen: Boolean
|
469
479
|
# @param Features: 该实例支持的功能,鉴权就是 Auth
|
470
480
|
# @type Features: Array
|
481
|
+
# @param MainPassword: 主账户名默认为 polaris,该值为主账户的默认密码
|
482
|
+
# @type MainPassword: String
|
471
483
|
|
472
|
-
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features
|
484
|
+
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword
|
473
485
|
|
474
|
-
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil)
|
486
|
+
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil)
|
475
487
|
@EngineRegion = engineregion
|
476
488
|
@BoundK8SInfos = boundk8sinfos
|
477
489
|
@VpcInfos = vpcinfos
|
478
490
|
@AuthOpen = authopen
|
479
491
|
@Features = features
|
492
|
+
@MainPassword = mainpassword
|
480
493
|
end
|
481
494
|
|
482
495
|
def deserialize(params)
|
@@ -499,6 +512,7 @@ module TencentCloud
|
|
499
512
|
end
|
500
513
|
@AuthOpen = params['AuthOpen']
|
501
514
|
@Features = params['Features']
|
515
|
+
@MainPassword = params['MainPassword']
|
502
516
|
end
|
503
517
|
end
|
504
518
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.287
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|