tencentcloud-sdk-tione 3.0.690 → 3.0.692
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/v20211111/models.rb +32 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b99980370abee351b1699c60862c69591a9692cc
|
4
|
+
data.tar.gz: beb17c35926123e681c7c850c74baaeddeb082f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91c5fc45f58aefdf7ef054b0236d1756714ad0279032547f2f035928c28306bbdbb82221e85109d5ce5114eb59aec5593b0cb46a6ee99e563abdba0b5173b108
|
7
|
+
data.tar.gz: 832daeaacef75bfb8923390b1320d4d3d2aa4a274245740c60d6d2074077dcfeffabe40e492e326bb9d7fd62fe5826e8fec4aca79e9ddd968c4ea127f58237fa
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.692
|
data/lib/v20211111/models.rb
CHANGED
@@ -1974,6 +1974,28 @@ module TencentCloud
|
|
1974
1974
|
end
|
1975
1975
|
end
|
1976
1976
|
|
1977
|
+
# 跨租户弹性网卡下Pod调用信息
|
1978
|
+
class CrossTenantENIInfo < TencentCloud::Common::AbstractModel
|
1979
|
+
# @param PrimaryIP: Pod IP
|
1980
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1981
|
+
# @type PrimaryIP: String
|
1982
|
+
# @param Port: Pod Port
|
1983
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1984
|
+
# @type Port: String
|
1985
|
+
|
1986
|
+
attr_accessor :PrimaryIP, :Port
|
1987
|
+
|
1988
|
+
def initialize(primaryip=nil, port=nil)
|
1989
|
+
@PrimaryIP = primaryip
|
1990
|
+
@Port = port
|
1991
|
+
end
|
1992
|
+
|
1993
|
+
def deserialize(params)
|
1994
|
+
@PrimaryIP = params['PrimaryIP']
|
1995
|
+
@Port = params['Port']
|
1996
|
+
end
|
1997
|
+
end
|
1998
|
+
|
1977
1999
|
# 自定义指标
|
1978
2000
|
class CustomTrainingData < TencentCloud::Common::AbstractModel
|
1979
2001
|
# @param MetricName: 指标名
|
@@ -7269,10 +7291,13 @@ module TencentCloud
|
|
7269
7291
|
# @param ContainerInfos: 容器列表
|
7270
7292
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7271
7293
|
# @type ContainerInfos: Array
|
7294
|
+
# @param CrossTenantENIInfo: 容器调用信息
|
7295
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7296
|
+
# @type CrossTenantENIInfo: :class:`Tencentcloud::Tione.v20211111.models.CrossTenantENIInfo`
|
7272
7297
|
|
7273
|
-
attr_accessor :Name, :Uid, :ChargeType, :Phase, :IP, :CreateTime, :Containers, :ContainerInfos
|
7298
|
+
attr_accessor :Name, :Uid, :ChargeType, :Phase, :IP, :CreateTime, :Containers, :ContainerInfos, :CrossTenantENIInfo
|
7274
7299
|
|
7275
|
-
def initialize(name=nil, uid=nil, chargetype=nil, phase=nil, ip=nil, createtime=nil, containers=nil, containerinfos=nil)
|
7300
|
+
def initialize(name=nil, uid=nil, chargetype=nil, phase=nil, ip=nil, createtime=nil, containers=nil, containerinfos=nil, crosstenanteniinfo=nil)
|
7276
7301
|
@Name = name
|
7277
7302
|
@Uid = uid
|
7278
7303
|
@ChargeType = chargetype
|
@@ -7281,6 +7306,7 @@ module TencentCloud
|
|
7281
7306
|
@CreateTime = createtime
|
7282
7307
|
@Containers = containers
|
7283
7308
|
@ContainerInfos = containerinfos
|
7309
|
+
@CrossTenantENIInfo = crosstenanteniinfo
|
7284
7310
|
end
|
7285
7311
|
|
7286
7312
|
def deserialize(params)
|
@@ -7302,6 +7328,10 @@ module TencentCloud
|
|
7302
7328
|
@ContainerInfos << container_tmp
|
7303
7329
|
end
|
7304
7330
|
end
|
7331
|
+
unless params['CrossTenantENIInfo'].nil?
|
7332
|
+
@CrossTenantENIInfo = CrossTenantENIInfo.new
|
7333
|
+
@CrossTenantENIInfo.deserialize(params['CrossTenantENIInfo'])
|
7334
|
+
end
|
7305
7335
|
end
|
7306
7336
|
end
|
7307
7337
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tione
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.692
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-02 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/v20191022/client.rb
|
37
36
|
- lib/v20191022/models.rb
|
37
|
+
- lib/v20191022/client.rb
|
38
38
|
- lib/tencentcloud-sdk-tione.rb
|
39
|
-
- lib/v20211111/client.rb
|
40
39
|
- lib/v20211111/models.rb
|
40
|
+
- lib/v20211111/client.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|