tencentcloud-sdk-tione 3.0.1127 → 3.0.1138

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/v20211111/models.rb +46 -14
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fac42af0b49503708d8fe91d15d20ff21790372f
4
- data.tar.gz: 58374abcd254eb8e33bf96c6c43c294ca856634c
3
+ metadata.gz: 63e012c7f7b84aa3e9cf78b9686553af9278d776
4
+ data.tar.gz: 9043690802507ae64ec00caa4f295ae7b3d4e638
5
5
  SHA512:
6
- metadata.gz: ac0c27c2a8e60eb7e2054458a9cd891d04a6bac9aeeece340b0c1242f8424d9302e50852577ef2c565d8406e76741a64a4d71c98caef01ffe0673efe99c1cdef
7
- data.tar.gz: 5504b2694e9c70622c43d4d460dc2fce4ddd52e7759f1b1a54e1dc383c865b39bf04e3ca55fb19202933693928051dc14b58ece87c1237a25810b90d085f718c
6
+ metadata.gz: 832f0abd642daecef97e7afc0d2deb17556a1a903c0d1d248e2ee7a8af710efc85ce7adb83fca530f31735a996fbc42cf2bd29019b318c6d969672060b66476a
7
+ data.tar.gz: ac708129f3bcdebb364a1618a4bd82f318d7531b314a0f645a0fa94ec5ac1c598b1a2dcf75f3833a8bfc992c77be381282c6452d62d827917bf0b250176e4587
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1127
1
+ 3.0.1138
@@ -6486,8 +6486,8 @@ module TencentCloud
6486
6486
 
6487
6487
  attr_accessor :Name, :Uid, :ChargeType, :Phase, :IP, :CreateTime, :Containers, :ContainerInfos, :CrossTenantENIInfo, :Status, :StartScheduleTime, :Message, :NodeIP, :NodeId, :ResourceGroupId, :ResourceGroupName, :ResourceInfo
6488
6488
  extend Gem::Deprecate
6489
- deprecate :Containers, :none, 2025, 8
6490
- deprecate :Containers=, :none, 2025, 8
6489
+ deprecate :Containers, :none, 2025, 9
6490
+ deprecate :Containers=, :none, 2025, 9
6491
6491
 
6492
6492
  def initialize(name=nil, uid=nil, chargetype=nil, phase=nil, ip=nil, createtime=nil, containers=nil, containerinfos=nil, crosstenanteniinfo=nil, status=nil, startscheduletime=nil, message=nil, nodeip=nil, nodeid=nil, resourcegroupid=nil, resourcegroupname=nil, resourceinfo=nil)
6493
6493
  @Name = name
@@ -6596,6 +6596,30 @@ module TencentCloud
6596
6596
  end
6597
6597
  end
6598
6598
 
6599
+ # SSH pod访问信息
6600
+ class PodSSHInfo < TencentCloud::Common::AbstractModel
6601
+ # @param Host: pod访问ip
6602
+ # @type Host: String
6603
+ # @param Port: pod ssh访问端口
6604
+ # @type Port: Integer
6605
+ # @param LoginCommand: ssh访问命令
6606
+ # @type LoginCommand: String
6607
+
6608
+ attr_accessor :Host, :Port, :LoginCommand
6609
+
6610
+ def initialize(host=nil, port=nil, logincommand=nil)
6611
+ @Host = host
6612
+ @Port = port
6613
+ @LoginCommand = logincommand
6614
+ end
6615
+
6616
+ def deserialize(params)
6617
+ @Host = params['Host']
6618
+ @Port = params['Port']
6619
+ @LoginCommand = params['LoginCommand']
6620
+ end
6621
+ end
6622
+
6599
6623
  # 私有连接信息
6600
6624
  class PrivateLinkInfo < TencentCloud::Common::AbstractModel
6601
6625
  # @param VpcId: 私有连接所在的VPCID
@@ -7143,15 +7167,19 @@ module TencentCloud
7143
7167
  # @param IsAddressChanged: 登录地址是否改变
7144
7168
  # 注意:此字段可能返回 null,表示取不到有效值。
7145
7169
  # @type IsAddressChanged: Boolean
7170
+ # @param PodSSHInfo: POD访问信息
7171
+ # 注意:此字段可能返回 null,表示取不到有效值。
7172
+ # @type PodSSHInfo: :class:`Tencentcloud::Tione.v20211111.models.PodSSHInfo`
7146
7173
 
7147
- attr_accessor :Enable, :PublicKey, :Port, :LoginCommand, :IsAddressChanged
7174
+ attr_accessor :Enable, :PublicKey, :Port, :LoginCommand, :IsAddressChanged, :PodSSHInfo
7148
7175
 
7149
- def initialize(enable=nil, publickey=nil, port=nil, logincommand=nil, isaddresschanged=nil)
7176
+ def initialize(enable=nil, publickey=nil, port=nil, logincommand=nil, isaddresschanged=nil, podsshinfo=nil)
7150
7177
  @Enable = enable
7151
7178
  @PublicKey = publickey
7152
7179
  @Port = port
7153
7180
  @LoginCommand = logincommand
7154
7181
  @IsAddressChanged = isaddresschanged
7182
+ @PodSSHInfo = podsshinfo
7155
7183
  end
7156
7184
 
7157
7185
  def deserialize(params)
@@ -7160,6 +7188,10 @@ module TencentCloud
7160
7188
  @Port = params['Port']
7161
7189
  @LoginCommand = params['LoginCommand']
7162
7190
  @IsAddressChanged = params['IsAddressChanged']
7191
+ unless params['PodSSHInfo'].nil?
7192
+ @PodSSHInfo = PodSSHInfo.new
7193
+ @PodSSHInfo.deserialize(params['PodSSHInfo'])
7194
+ end
7163
7195
  end
7164
7196
  end
7165
7197
 
@@ -7339,10 +7371,10 @@ module TencentCloud
7339
7371
 
7340
7372
  attr_accessor :ServiceGroupId, :ServiceId, :ServiceGroupName, :ServiceDescription, :ServiceInfo, :ClusterId, :Region, :Namespace, :ChargeType, :ResourceGroupId, :ResourceGroupName, :Tags, :IngressName, :CreatedBy, :CreateTime, :UpdateTime, :Uin, :SubUin, :AppId, :BusinessStatus, :ServiceLimit, :ScheduledAction, :CreateFailedReason, :Status, :BillingInfo, :Weight, :CreateSource, :Version, :LatestVersion, :ResourceGroupSWType, :ArchiveStatus, :DeployType, :InstancePerReplicas, :MonitorSource, :SubUinName, :SchedulingPolicy, :ExternalResourceGroups
7341
7373
  extend Gem::Deprecate
7342
- deprecate :ServiceLimit, :none, 2025, 8
7343
- deprecate :ServiceLimit=, :none, 2025, 8
7344
- deprecate :ScheduledAction, :none, 2025, 8
7345
- deprecate :ScheduledAction=, :none, 2025, 8
7374
+ deprecate :ServiceLimit, :none, 2025, 9
7375
+ deprecate :ServiceLimit=, :none, 2025, 9
7376
+ deprecate :ScheduledAction, :none, 2025, 9
7377
+ deprecate :ScheduledAction=, :none, 2025, 9
7346
7378
 
7347
7379
  def initialize(servicegroupid=nil, serviceid=nil, servicegroupname=nil, servicedescription=nil, serviceinfo=nil, clusterid=nil, region=nil, namespace=nil, chargetype=nil, resourcegroupid=nil, resourcegroupname=nil, tags=nil, ingressname=nil, createdby=nil, createtime=nil, updatetime=nil, uin=nil, subuin=nil, appid=nil, businessstatus=nil, servicelimit=nil, scheduledaction=nil, createfailedreason=nil, status=nil, billinginfo=nil, weight=nil, createsource=nil, version=nil, latestversion=nil, resourcegroupswtype=nil, archivestatus=nil, deploytype=nil, instanceperreplicas=nil, monitorsource=nil, subuinname=nil, schedulingpolicy=nil, externalresourcegroups=nil)
7348
7380
  @ServiceGroupId = servicegroupid
@@ -7888,10 +7920,10 @@ module TencentCloud
7888
7920
 
7889
7921
  attr_accessor :Replicas, :ImageInfo, :Env, :Resources, :InstanceType, :ModelInfo, :LogEnable, :LogConfig, :AuthorizationEnable, :HorizontalPodAutoscaler, :Status, :Weight, :ResourceTotal, :OldReplicas, :HybridBillingPrepaidReplicas, :OldHybridBillingPrepaidReplicas, :ModelHotUpdateEnable, :InstanceAlias, :ScaleMode, :CronScaleJobs, :ScaleStrategy, :ScheduledAction, :PodList, :Pods, :PodInfos, :ServiceLimit, :ModelTurboEnable, :VolumeMount, :InferCodeInfo, :Command, :ServiceEIP, :ServicePort, :TerminationGracePeriodSeconds, :PreStopCommand, :GrpcEnable, :HealthProbe, :RollingUpdate, :InstancePerReplicas, :VolumeMounts
7890
7922
  extend Gem::Deprecate
7891
- deprecate :PodList, :none, 2025, 8
7892
- deprecate :PodList=, :none, 2025, 8
7893
- deprecate :Pods, :none, 2025, 8
7894
- deprecate :Pods=, :none, 2025, 8
7923
+ deprecate :PodList, :none, 2025, 9
7924
+ deprecate :PodList=, :none, 2025, 9
7925
+ deprecate :Pods, :none, 2025, 9
7926
+ deprecate :Pods=, :none, 2025, 9
7895
7927
 
7896
7928
  def initialize(replicas=nil, imageinfo=nil, env=nil, resources=nil, instancetype=nil, modelinfo=nil, logenable=nil, logconfig=nil, authorizationenable=nil, horizontalpodautoscaler=nil, status=nil, weight=nil, resourcetotal=nil, oldreplicas=nil, hybridbillingprepaidreplicas=nil, oldhybridbillingprepaidreplicas=nil, modelhotupdateenable=nil, instancealias=nil, scalemode=nil, cronscalejobs=nil, scalestrategy=nil, scheduledaction=nil, podlist=nil, pods=nil, podinfos=nil, servicelimit=nil, modelturboenable=nil, volumemount=nil, infercodeinfo=nil, command=nil, serviceeip=nil, serviceport=nil, terminationgraceperiodseconds=nil, prestopcommand=nil, grpcenable=nil, healthprobe=nil, rollingupdate=nil, instanceperreplicas=nil, volumemounts=nil)
7897
7929
  @Replicas = replicas
@@ -9161,8 +9193,8 @@ module TencentCloud
9161
9193
 
9162
9194
  attr_accessor :Replicas, :UpdatedReplicas, :ReadyReplicas, :AvailableReplicas, :UnavailableReplicas, :Status, :StatefulSetCondition, :Conditions, :Reason
9163
9195
  extend Gem::Deprecate
9164
- deprecate :StatefulSetCondition, :none, 2025, 8
9165
- deprecate :StatefulSetCondition=, :none, 2025, 8
9196
+ deprecate :StatefulSetCondition, :none, 2025, 9
9197
+ deprecate :StatefulSetCondition=, :none, 2025, 9
9166
9198
 
9167
9199
  def initialize(replicas=nil, updatedreplicas=nil, readyreplicas=nil, availablereplicas=nil, unavailablereplicas=nil, status=nil, statefulsetcondition=nil, conditions=nil, reason=nil)
9168
9200
  @Replicas = replicas
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.1127
4
+ version: 3.0.1138
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-08-22 00:00:00.000000000 Z
11
+ date: 2025-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common