tencentcloud-sdk-tione 3.0.1192 → 3.0.1198

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3672cab9636a302e536d0cd2aa893c5290c6127
4
- data.tar.gz: 789e888fbd296b8bb7d13b090bb81999285e0167
3
+ metadata.gz: 58582e92b4a16872f21430a5e2f8b1354d008ac5
4
+ data.tar.gz: 7634094a0dba9fb5396bc28442d41e5675803b7b
5
5
  SHA512:
6
- metadata.gz: 6c632b5b53cbe1550f45cf373f375eee9e10262ace4e28c0301186c00445748aa0776f9690f714a49f8f3ed6463bf59b06d454a6f0ee8352c6ada4b4234548ab
7
- data.tar.gz: 2bda587db93c4bdd0fdc6cbf365482f2740e9b0e7804c41576e8bf7ee0c859b254a6347e25f1fa09462183e36bd1ff3a317cca70f7cd71998827d769984ef743
6
+ metadata.gz: cd555400e9f1a5e482d415457201cb96139adcbffa151e30388887f87c939ea726417370131fe68ef4fb9c1ea7dd9343aa389f6389af930510636f92c849f16c
7
+ data.tar.gz: c721960aeee41237a97b833a104120ea7054d04a53a8b682f2622f714c4a5ca42d62259fa2b91627e031a7ebd99d9abfb1f391012b552fd79cc8634a33813e9f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1192
1
+ 3.0.1198
@@ -2,12 +2,12 @@
2
2
 
3
3
  require 'tencentcloud-sdk-common'
4
4
 
5
- require_relative 'v20191022/client'
6
- require_relative 'v20191022/models'
7
-
8
5
  require_relative 'v20211111/client'
9
6
  require_relative 'v20211111/models'
10
7
 
8
+ require_relative 'v20191022/client'
9
+ require_relative 'v20191022/models'
10
+
11
11
  module TencentCloud
12
12
  module Tione
13
13
  end
@@ -1162,6 +1162,30 @@ module TencentCloud
1162
1162
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1163
1163
  end
1164
1164
 
1165
+ # 修改Notebook
1166
+
1167
+ # @param request: Request instance for ModifyNotebook.
1168
+ # @type request: :class:`Tencentcloud::tione::V20211111::ModifyNotebookRequest`
1169
+ # @rtype: :class:`Tencentcloud::tione::V20211111::ModifyNotebookResponse`
1170
+ def ModifyNotebook(request)
1171
+ body = send_request('ModifyNotebook', request.serialize)
1172
+ response = JSON.parse(body)
1173
+ if response['Response'].key?('Error') == false
1174
+ model = ModifyNotebookResponse.new
1175
+ model.deserialize(response['Response'])
1176
+ model
1177
+ else
1178
+ code = response['Response']['Error']['Code']
1179
+ message = response['Response']['Error']['Message']
1180
+ reqid = response['Response']['RequestId']
1181
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1182
+ end
1183
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1184
+ raise e
1185
+ rescue StandardError => e
1186
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1187
+ end
1188
+
1165
1189
  # 修改Notebook标签
1166
1190
 
1167
1191
  # @param request: Request instance for ModifyNotebookTags.
@@ -2291,8 +2291,8 @@ module TencentCloud
2291
2291
 
2292
2292
  attr_accessor :ServiceId, :ServiceCategory
2293
2293
  extend Gem::Deprecate
2294
- deprecate :ServiceCategory, :none, 2025, 12
2295
- deprecate :ServiceCategory=, :none, 2025, 12
2294
+ deprecate :ServiceCategory, :none, 2026, 1
2295
+ deprecate :ServiceCategory=, :none, 2026, 1
2296
2296
 
2297
2297
  def initialize(serviceid=nil, servicecategory=nil)
2298
2298
  @ServiceId = serviceid
@@ -2473,7 +2473,7 @@ module TencentCloud
2473
2473
  # 2. Filter.Values: 长度为1且Filter.Fuzzy=true时,支持模糊查询; 不为1时,精确查询
2474
2474
  # 3. 每次请求的Filters的上限为10,Filter.Values的上限为100
2475
2475
  # @type Filters: Array
2476
- # @param Offset: 分页查询起始位置,如:Limit为10,第一页Offset为0,第二页Offset为10....即每页左边为闭区间; 默认0
2476
+ # @param Offset: 分页查询起始位置,如:Limit为10,第一页Offset为0,第二页Offset为10...即每页左边为闭区间; 默认0
2477
2477
  # @type Offset: Integer
2478
2478
  # @param Limit: 分页查询每页大小,默认20
2479
2479
  # @type Limit: Integer
@@ -3329,7 +3329,7 @@ module TencentCloud
3329
3329
  # @type OrderField: String
3330
3330
  # @param Order: 排序方向; 枚举值: ASC | DESC;默认DESC
3331
3331
  # @type Order: String
3332
- # @param Offset: 分页查询起始位置,如:Limit为100,第一页Offset为0,第二页Offset为100....即每页左边为闭区间; 默认0
3332
+ # @param Offset: 分页查询起始位置,如:Limit为100,第一页Offset为0,第二页Offset为100...即每页左边为闭区间; 默认0
3333
3333
  # @type Offset: Integer
3334
3334
  # @param Limit: 分页查询每页大小,最大20000; 默认10
3335
3335
  # @type Limit: Integer
@@ -3407,8 +3407,8 @@ module TencentCloud
3407
3407
 
3408
3408
  attr_accessor :ServiceGroupId, :ServiceCategory
3409
3409
  extend Gem::Deprecate
3410
- deprecate :ServiceCategory, :none, 2025, 12
3411
- deprecate :ServiceCategory=, :none, 2025, 12
3410
+ deprecate :ServiceCategory, :none, 2026, 1
3411
+ deprecate :ServiceCategory=, :none, 2026, 1
3412
3412
 
3413
3413
  def initialize(servicegroupid=nil, servicecategory=nil)
3414
3414
  @ServiceGroupId = servicegroupid
@@ -3494,8 +3494,8 @@ module TencentCloud
3494
3494
 
3495
3495
  attr_accessor :ServiceGroupId, :ServiceCategory
3496
3496
  extend Gem::Deprecate
3497
- deprecate :ServiceCategory, :none, 2025, 12
3498
- deprecate :ServiceCategory=, :none, 2025, 12
3497
+ deprecate :ServiceCategory, :none, 2026, 1
3498
+ deprecate :ServiceCategory=, :none, 2026, 1
3499
3499
 
3500
3500
  def initialize(servicegroupid=nil, servicecategory=nil)
3501
3501
  @ServiceGroupId = servicegroupid
@@ -3552,8 +3552,8 @@ module TencentCloud
3552
3552
 
3553
3553
  attr_accessor :Offset, :Limit, :Order, :OrderField, :Filters, :TagFilters, :ServiceCategory
3554
3554
  extend Gem::Deprecate
3555
- deprecate :ServiceCategory, :none, 2025, 12
3556
- deprecate :ServiceCategory=, :none, 2025, 12
3555
+ deprecate :ServiceCategory, :none, 2026, 1
3556
+ deprecate :ServiceCategory=, :none, 2026, 1
3557
3557
 
3558
3558
  def initialize(offset=nil, limit=nil, order=nil, orderfield=nil, filters=nil, tagfilters=nil, servicecategory=nil)
3559
3559
  @Offset = offset
@@ -3685,8 +3685,8 @@ module TencentCloud
3685
3685
 
3686
3686
  attr_accessor :ServiceId, :ServiceCategory
3687
3687
  extend Gem::Deprecate
3688
- deprecate :ServiceCategory, :none, 2025, 12
3689
- deprecate :ServiceCategory=, :none, 2025, 12
3688
+ deprecate :ServiceCategory, :none, 2026, 1
3689
+ deprecate :ServiceCategory=, :none, 2026, 1
3690
3690
 
3691
3691
  def initialize(serviceid=nil, servicecategory=nil)
3692
3692
  @ServiceId = serviceid
@@ -6027,6 +6027,176 @@ module TencentCloud
6027
6027
  end
6028
6028
  end
6029
6029
 
6030
+ # ModifyNotebook请求参数结构体
6031
+ class ModifyNotebookRequest < TencentCloud::Common::AbstractModel
6032
+ # @param Id: notebook id
6033
+ # @type Id: String
6034
+ # @param Name: 名称。不超过60个字符,仅支持中英文、数字、下划线"_"、短横"-",只能以中英文、数字开头
6035
+ # @type Name: String
6036
+ # @param ChargeType: (不允许修改)计算资源付费模式 ,可选值为:
6037
+ # PREPAID:预付费,即包年包月
6038
+ # POSTPAID_BY_HOUR:按小时后付费
6039
+ # @type ChargeType: String
6040
+ # @param ResourceConf: 计算资源配置
6041
+ # @type ResourceConf: :class:`Tencentcloud::Tione.v20211111.models.ResourceConf`
6042
+ # @param AutoStopping: 是否自动停止
6043
+ # @type AutoStopping: Boolean
6044
+ # @param DirectInternetAccess: 是否访问公网
6045
+ # @type DirectInternetAccess: Boolean
6046
+ # @param RootAccess: 是否ROOT权限
6047
+ # @type RootAccess: Boolean
6048
+ # @param LogEnable: 是否上报日志
6049
+ # @type LogEnable: Boolean
6050
+ # @param ResourceGroupId: 资源组ID(for预付费)
6051
+ # @type ResourceGroupId: String
6052
+ # @param VpcId: (不允许修改)Vpc-Id
6053
+ # @type VpcId: String
6054
+ # @param SubnetId: (不允许修改)子网Id
6055
+ # @type SubnetId: String
6056
+ # @param VolumeSizeInGB: 存储卷大小,单位GB
6057
+ # @type VolumeSizeInGB: Integer
6058
+ # @param VolumeSourceType: (不允许修改)存储的类型。取值包含:
6059
+ # FREE: 预付费的免费存储
6060
+ # CLOUD_PREMIUM: 高性能云硬盘
6061
+ # CLOUD_SSD: SSD云硬盘
6062
+ # CFS: CFS存储,包含NFS和turbo
6063
+ # @type VolumeSourceType: String
6064
+ # @param VolumeSourceCFS: (不允许修改)CFS存储的配置
6065
+ # @type VolumeSourceCFS: :class:`Tencentcloud::Tione.v20211111.models.CFSConfig`
6066
+ # @param LogConfig: 日志配置
6067
+ # @type LogConfig: :class:`Tencentcloud::Tione.v20211111.models.LogConfig`
6068
+ # @param LifecycleScriptId: 生命周期脚本的ID
6069
+ # @type LifecycleScriptId: String
6070
+ # @param DefaultCodeRepoId: 默认GIT存储库的ID
6071
+ # @type DefaultCodeRepoId: String
6072
+ # @param AdditionalCodeRepoIds: 其他GIT存储库的ID,最多3个
6073
+ # @type AdditionalCodeRepoIds: Array
6074
+ # @param AutomaticStopTime: 自动停止时间,单位小时
6075
+ # @type AutomaticStopTime: Integer
6076
+ # @param Tags: 标签配置
6077
+ # @type Tags: Array
6078
+ # @param DataConfigs: 数据配置,只支持WEDATA_HDFS
6079
+ # @type DataConfigs: Array
6080
+ # @param ImageInfo: 镜像信息
6081
+ # @type ImageInfo: :class:`Tencentcloud::Tione.v20211111.models.ImageInfo`
6082
+ # @param ImageType: 镜像类型,包括SYSTEM、TCR、CCR
6083
+ # @type ImageType: String
6084
+ # @param SSHConfig: SSH配置
6085
+ # @type SSHConfig: :class:`Tencentcloud::Tione.v20211111.models.SSHConfig`
6086
+ # @param Envs: 自定义环境变量
6087
+ # @type Envs: Array
6088
+
6089
+ attr_accessor :Id, :Name, :ChargeType, :ResourceConf, :AutoStopping, :DirectInternetAccess, :RootAccess, :LogEnable, :ResourceGroupId, :VpcId, :SubnetId, :VolumeSizeInGB, :VolumeSourceType, :VolumeSourceCFS, :LogConfig, :LifecycleScriptId, :DefaultCodeRepoId, :AdditionalCodeRepoIds, :AutomaticStopTime, :Tags, :DataConfigs, :ImageInfo, :ImageType, :SSHConfig, :Envs
6090
+
6091
+ def initialize(id=nil, name=nil, chargetype=nil, resourceconf=nil, autostopping=nil, directinternetaccess=nil, rootaccess=nil, logenable=nil, resourcegroupid=nil, vpcid=nil, subnetid=nil, volumesizeingb=nil, volumesourcetype=nil, volumesourcecfs=nil, logconfig=nil, lifecyclescriptid=nil, defaultcoderepoid=nil, additionalcoderepoids=nil, automaticstoptime=nil, tags=nil, dataconfigs=nil, imageinfo=nil, imagetype=nil, sshconfig=nil, envs=nil)
6092
+ @Id = id
6093
+ @Name = name
6094
+ @ChargeType = chargetype
6095
+ @ResourceConf = resourceconf
6096
+ @AutoStopping = autostopping
6097
+ @DirectInternetAccess = directinternetaccess
6098
+ @RootAccess = rootaccess
6099
+ @LogEnable = logenable
6100
+ @ResourceGroupId = resourcegroupid
6101
+ @VpcId = vpcid
6102
+ @SubnetId = subnetid
6103
+ @VolumeSizeInGB = volumesizeingb
6104
+ @VolumeSourceType = volumesourcetype
6105
+ @VolumeSourceCFS = volumesourcecfs
6106
+ @LogConfig = logconfig
6107
+ @LifecycleScriptId = lifecyclescriptid
6108
+ @DefaultCodeRepoId = defaultcoderepoid
6109
+ @AdditionalCodeRepoIds = additionalcoderepoids
6110
+ @AutomaticStopTime = automaticstoptime
6111
+ @Tags = tags
6112
+ @DataConfigs = dataconfigs
6113
+ @ImageInfo = imageinfo
6114
+ @ImageType = imagetype
6115
+ @SSHConfig = sshconfig
6116
+ @Envs = envs
6117
+ end
6118
+
6119
+ def deserialize(params)
6120
+ @Id = params['Id']
6121
+ @Name = params['Name']
6122
+ @ChargeType = params['ChargeType']
6123
+ unless params['ResourceConf'].nil?
6124
+ @ResourceConf = ResourceConf.new
6125
+ @ResourceConf.deserialize(params['ResourceConf'])
6126
+ end
6127
+ @AutoStopping = params['AutoStopping']
6128
+ @DirectInternetAccess = params['DirectInternetAccess']
6129
+ @RootAccess = params['RootAccess']
6130
+ @LogEnable = params['LogEnable']
6131
+ @ResourceGroupId = params['ResourceGroupId']
6132
+ @VpcId = params['VpcId']
6133
+ @SubnetId = params['SubnetId']
6134
+ @VolumeSizeInGB = params['VolumeSizeInGB']
6135
+ @VolumeSourceType = params['VolumeSourceType']
6136
+ unless params['VolumeSourceCFS'].nil?
6137
+ @VolumeSourceCFS = CFSConfig.new
6138
+ @VolumeSourceCFS.deserialize(params['VolumeSourceCFS'])
6139
+ end
6140
+ unless params['LogConfig'].nil?
6141
+ @LogConfig = LogConfig.new
6142
+ @LogConfig.deserialize(params['LogConfig'])
6143
+ end
6144
+ @LifecycleScriptId = params['LifecycleScriptId']
6145
+ @DefaultCodeRepoId = params['DefaultCodeRepoId']
6146
+ @AdditionalCodeRepoIds = params['AdditionalCodeRepoIds']
6147
+ @AutomaticStopTime = params['AutomaticStopTime']
6148
+ unless params['Tags'].nil?
6149
+ @Tags = []
6150
+ params['Tags'].each do |i|
6151
+ tag_tmp = Tag.new
6152
+ tag_tmp.deserialize(i)
6153
+ @Tags << tag_tmp
6154
+ end
6155
+ end
6156
+ unless params['DataConfigs'].nil?
6157
+ @DataConfigs = []
6158
+ params['DataConfigs'].each do |i|
6159
+ dataconfig_tmp = DataConfig.new
6160
+ dataconfig_tmp.deserialize(i)
6161
+ @DataConfigs << dataconfig_tmp
6162
+ end
6163
+ end
6164
+ unless params['ImageInfo'].nil?
6165
+ @ImageInfo = ImageInfo.new
6166
+ @ImageInfo.deserialize(params['ImageInfo'])
6167
+ end
6168
+ @ImageType = params['ImageType']
6169
+ unless params['SSHConfig'].nil?
6170
+ @SSHConfig = SSHConfig.new
6171
+ @SSHConfig.deserialize(params['SSHConfig'])
6172
+ end
6173
+ unless params['Envs'].nil?
6174
+ @Envs = []
6175
+ params['Envs'].each do |i|
6176
+ envvar_tmp = EnvVar.new
6177
+ envvar_tmp.deserialize(i)
6178
+ @Envs << envvar_tmp
6179
+ end
6180
+ end
6181
+ end
6182
+ end
6183
+
6184
+ # ModifyNotebook返回参数结构体
6185
+ class ModifyNotebookResponse < TencentCloud::Common::AbstractModel
6186
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6187
+ # @type RequestId: String
6188
+
6189
+ attr_accessor :RequestId
6190
+
6191
+ def initialize(requestid=nil)
6192
+ @RequestId = requestid
6193
+ end
6194
+
6195
+ def deserialize(params)
6196
+ @RequestId = params['RequestId']
6197
+ end
6198
+ end
6199
+
6030
6200
  # ModifyNotebookTags请求参数结构体
6031
6201
  class ModifyNotebookTagsRequest < TencentCloud::Common::AbstractModel
6032
6202
  # @param Id: Notebook Id
@@ -6709,8 +6879,8 @@ module TencentCloud
6709
6879
 
6710
6880
  attr_accessor :Name, :Uid, :ChargeType, :Phase, :IP, :CreateTime, :Containers, :ContainerInfos, :CrossTenantENIInfo, :Status, :StartScheduleTime, :Message, :NodeIP, :NodeId, :ResourceGroupId, :ResourceGroupName, :ResourceInfo
6711
6881
  extend Gem::Deprecate
6712
- deprecate :Containers, :none, 2025, 12
6713
- deprecate :Containers=, :none, 2025, 12
6882
+ deprecate :Containers, :none, 2026, 1
6883
+ deprecate :Containers=, :none, 2026, 1
6714
6884
 
6715
6885
  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)
6716
6886
  @Name = name
@@ -7605,10 +7775,10 @@ module TencentCloud
7605
7775
 
7606
7776
  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
7607
7777
  extend Gem::Deprecate
7608
- deprecate :ServiceLimit, :none, 2025, 12
7609
- deprecate :ServiceLimit=, :none, 2025, 12
7610
- deprecate :ScheduledAction, :none, 2025, 12
7611
- deprecate :ScheduledAction=, :none, 2025, 12
7778
+ deprecate :ServiceLimit, :none, 2026, 1
7779
+ deprecate :ServiceLimit=, :none, 2026, 1
7780
+ deprecate :ScheduledAction, :none, 2026, 1
7781
+ deprecate :ScheduledAction=, :none, 2026, 1
7612
7782
 
7613
7783
  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)
7614
7784
  @ServiceGroupId = servicegroupid
@@ -8152,10 +8322,10 @@ module TencentCloud
8152
8322
 
8153
8323
  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, :SchedulingStrategy, :NodeCount
8154
8324
  extend Gem::Deprecate
8155
- deprecate :PodList, :none, 2025, 12
8156
- deprecate :PodList=, :none, 2025, 12
8157
- deprecate :Pods, :none, 2025, 12
8158
- deprecate :Pods=, :none, 2025, 12
8325
+ deprecate :PodList, :none, 2026, 1
8326
+ deprecate :PodList=, :none, 2026, 1
8327
+ deprecate :Pods, :none, 2026, 1
8328
+ deprecate :Pods=, :none, 2026, 1
8159
8329
 
8160
8330
  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, schedulingstrategy=nil, nodecount=nil)
8161
8331
  @Replicas = replicas
@@ -9429,8 +9599,8 @@ module TencentCloud
9429
9599
 
9430
9600
  attr_accessor :Replicas, :UpdatedReplicas, :ReadyReplicas, :AvailableReplicas, :UnavailableReplicas, :Status, :StatefulSetCondition, :Conditions, :Reason
9431
9601
  extend Gem::Deprecate
9432
- deprecate :StatefulSetCondition, :none, 2025, 12
9433
- deprecate :StatefulSetCondition=, :none, 2025, 12
9602
+ deprecate :StatefulSetCondition, :none, 2026, 1
9603
+ deprecate :StatefulSetCondition=, :none, 2026, 1
9434
9604
 
9435
9605
  def initialize(replicas=nil, updatedreplicas=nil, readyreplicas=nil, availablereplicas=nil, unavailablereplicas=nil, status=nil, statefulsetcondition=nil, conditions=nil, reason=nil)
9436
9606
  @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.1192
4
+ version: 3.0.1198
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-12-29 00:00:00.000000000 Z
11
+ date: 2026-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - lib/tencentcloud-sdk-tione.rb
36
37
  - lib/v20211111/client.rb
37
38
  - lib/v20211111/models.rb
38
- - lib/tencentcloud-sdk-tione.rb
39
39
  - lib/v20191022/client.rb
40
40
  - lib/v20191022/models.rb
41
41
  - lib/VERSION