tencentcloud-sdk-tke 3.0.371 → 3.0.381

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/v20180525/models.rb +25 -6
  4. metadata +9 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b889c9b17b1ef977509741e02851ec86f7ffad3
4
- data.tar.gz: bec40e733e82140296ed0eb3e83a6e03fb98207d
3
+ metadata.gz: 8033bde2fbc1e647da7f487f96aa347c3b8b9c98
4
+ data.tar.gz: 3bc24c39c898c70585f0a2c897e10dec7a234901
5
5
  SHA512:
6
- metadata.gz: 634223e09a486159703748044f6a4cddd01cca5b64cbae3ad28faa635925a54974cbe77bfb0db15c1373807eeea41dcfe465f215b4e78b3a280a7c804ddfc800
7
- data.tar.gz: 6e7d71508da7fb3e68009c065eeabe136d4d50774ba188b09ca0124807cc4ddde4604cf79c8cddd2feda7237f4d1b81c64b6224d79c63be64291066f9fded7f3
6
+ metadata.gz: 415b58e39161cec317994462af9e4dbfd7a917da8c18ac14c9568c459e290b994bccc2b1305b571ea007e716dde085412fc7ecf1329ceeb80c9e28eb5dc06f0e
7
+ data.tar.gz: 3eb49778e95b1c4aba9de8c5d78549ebfd3ef26a776f3797f7ac4612d8e429a196411f32d1bf33217a71445ece89913c9dd123f78e76b5554a687aff2764441c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.371
1
+ 3.0.381
@@ -7644,14 +7644,17 @@ module TencentCloud
7644
7644
  # @type NodeName: String
7645
7645
  # @param Config: json格式的节点配置
7646
7646
  # @type Config: String
7647
+ # @param ScriptVersion: 可以下载某个历史版本的edgectl脚本,默认下载最新版本,edgectl版本信息可以在脚本里查看
7648
+ # @type ScriptVersion: String
7647
7649
 
7648
- attr_accessor :ClusterId, :Interface, :NodeName, :Config
7650
+ attr_accessor :ClusterId, :Interface, :NodeName, :Config, :ScriptVersion
7649
7651
 
7650
- def initialize(clusterid=nil, interface=nil, nodename=nil, config=nil)
7652
+ def initialize(clusterid=nil, interface=nil, nodename=nil, config=nil, scriptversion=nil)
7651
7653
  @ClusterId = clusterid
7652
7654
  @Interface = interface
7653
7655
  @NodeName = nodename
7654
7656
  @Config = config
7657
+ @ScriptVersion = scriptversion
7655
7658
  end
7656
7659
 
7657
7660
  def deserialize(params)
@@ -7659,6 +7662,7 @@ module TencentCloud
7659
7662
  @Interface = params['Interface']
7660
7663
  @NodeName = params['NodeName']
7661
7664
  @Config = params['Config']
7665
+ @ScriptVersion = params['ScriptVersion']
7662
7666
  end
7663
7667
  end
7664
7668
 
@@ -7670,15 +7674,19 @@ module TencentCloud
7670
7674
  # @type Token: String
7671
7675
  # @param Command: 下载命令
7672
7676
  # @type Command: String
7677
+ # @param ScriptVersion: edgectl脚本版本,默认拉取最新版本
7678
+ # 注意:此字段可能返回 null,表示取不到有效值。
7679
+ # @type ScriptVersion: String
7673
7680
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7674
7681
  # @type RequestId: String
7675
7682
 
7676
- attr_accessor :Link, :Token, :Command, :RequestId
7683
+ attr_accessor :Link, :Token, :Command, :ScriptVersion, :RequestId
7677
7684
 
7678
- def initialize(link=nil, token=nil, command=nil, requestid=nil)
7685
+ def initialize(link=nil, token=nil, command=nil, scriptversion=nil, requestid=nil)
7679
7686
  @Link = link
7680
7687
  @Token = token
7681
7688
  @Command = command
7689
+ @ScriptVersion = scriptversion
7682
7690
  @RequestId = requestid
7683
7691
  end
7684
7692
 
@@ -7686,6 +7694,7 @@ module TencentCloud
7686
7694
  @Link = params['Link']
7687
7695
  @Token = params['Token']
7688
7696
  @Command = params['Command']
7697
+ @ScriptVersion = params['ScriptVersion']
7689
7698
  @RequestId = params['RequestId']
7690
7699
  end
7691
7700
  end
@@ -8184,11 +8193,19 @@ module TencentCloud
8184
8193
  # @param ExtraArgs: 集群自定义参数
8185
8194
  # 注意:此字段可能返回 null,表示取不到有效值。
8186
8195
  # @type ExtraArgs: :class:`Tencentcloud::Tke.v20180525.models.EdgeClusterExtraArgs`
8196
+ # @param Runtime: 运行时类型,支持"docker"和"containerd",默认为docker
8197
+ # 注意:此字段可能返回 null,表示取不到有效值。
8198
+ # @type Runtime: String
8199
+ # @param ProxyMode: 集群kube-proxy转发模式,支持"iptables"和"ipvs",默认为iptables
8200
+ # 注意:此字段可能返回 null,表示取不到有效值。
8201
+ # @type ProxyMode: String
8187
8202
 
8188
- attr_accessor :ExtraArgs
8203
+ attr_accessor :ExtraArgs, :Runtime, :ProxyMode
8189
8204
 
8190
- def initialize(extraargs=nil)
8205
+ def initialize(extraargs=nil, runtime=nil, proxymode=nil)
8191
8206
  @ExtraArgs = extraargs
8207
+ @Runtime = runtime
8208
+ @ProxyMode = proxymode
8192
8209
  end
8193
8210
 
8194
8211
  def deserialize(params)
@@ -8196,6 +8213,8 @@ module TencentCloud
8196
8213
  @ExtraArgs = EdgeClusterExtraArgs.new
8197
8214
  @ExtraArgs.deserialize(params['ExtraArgs'])
8198
8215
  end
8216
+ @Runtime = params['Runtime']
8217
+ @ProxyMode = params['ProxyMode']
8199
8218
  end
8200
8219
  end
8201
8220
 
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.371
4
+ version: 3.0.381
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-08-01 00:00:00.000000000 Z
11
+ date: 2022-08-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
27
  description: Tencent Cloud Ruby SDK is the official software development kit, which
@@ -33,10 +33,10 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/VERSION
37
36
  - lib/tencentcloud-sdk-tke.rb
38
- - lib/v20180525/client.rb
39
37
  - lib/v20180525/models.rb
38
+ - lib/v20180525/client.rb
39
+ - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses:
42
42
  - Apache-2.0
@@ -49,17 +49,17 @@ require_paths:
49
49
  - lib
50
50
  required_ruby_version: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - ">="
57
+ - - '>='
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
61
  rubyforge_project:
62
- rubygems_version: 2.6.14
62
+ rubygems_version: 2.0.14
63
63
  signing_key:
64
64
  specification_version: 4
65
65
  summary: Tencent Cloud SDK for Ruby - TKE