tencentcloud-sdk-tione 3.0.691 → 3.0.693

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20211111/models.rb +32 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0a24e0db629e3fbb0fe0f7c8704de57743a6c42
4
- data.tar.gz: 6976c33e72bd369b8365189f10a6036e7bcc485f
3
+ metadata.gz: c749b8fbc7e0ccba4aafafcb7482021d38bff916
4
+ data.tar.gz: 34e7d2c1ef5463b5c18ded2e091d31a90fe35d2f
5
5
  SHA512:
6
- metadata.gz: 055aa876f7d9fb2f2fba97847f409206b021dceb83d07a3e164004b498169b4df29f2345038a90cbccd8c2cbbb5f59fdf4fd4add4581290b9223826d29cf688e
7
- data.tar.gz: d890d2ce768985575d1a21c4d77e0d6b0d24405da62520aaf83627e88cf94bf810f58ecd8f891ec6bdb650fe3f95970ffacc300b551dd03597c84dc53a3fab8e
6
+ metadata.gz: 9298387fcdfabd6c14465780274fbcfa49e679d2c048896ccffa7cabf424d3f1d083f72b563ede49d9c542212ad40cd9947e5ec84a3e3ddfd941f897b4d1d971
7
+ data.tar.gz: 8e13f2d9d3dac71aeea30e6c3a9018ff2c747675e84a2e0d90e263cbbe15839a9899f8e606d195c1e1ddec496c667f24b1a92be4e50316caba93ca4008acb310
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.691
1
+ 3.0.693
@@ -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.691
4
+ version: 3.0.693
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-01 00:00:00.000000000 Z
11
+ date: 2023-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common