tencentcloud-sdk-oceanus 3.0.711 → 3.0.713

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: 037674675d52933012b70cb8e011a2c9ff175ffd
4
- data.tar.gz: 1787c68359b18c10ff1c856d401cf71287189123
3
+ metadata.gz: c14dbfc225146f369e281bd40ed33dbf75ffd1e0
4
+ data.tar.gz: 2182167c4f8d4ab2a1d7401e20179d7d4ec1c458
5
5
  SHA512:
6
- metadata.gz: d35a24616e80f3fd352c4051268a18f49c8b9539122851c1bc67fd15454bb0f509ced69de60c782883d128b9c2e0793951f7e3074cf8f913a3959e20b33562c0
7
- data.tar.gz: 269d6a4a33091cb2d1ce9ad38a87b723c6140c7a39b87e5d8efa21e0ca590ae9d823b33b157b209c4498dd9c630e5d632e26f3a1009973ed135c91a0e8b18215
6
+ metadata.gz: 580fb1213f2696367ea58dcd0a2830e61f7d8bb8e3bbb4090c6b2712b931d66bfab5d4acacbf5c4e12ce0945e8ff1305d89bcf59c0de0323dcabdf4303b99e68
7
+ data.tar.gz: 95fc2ee69946ba5eb0368c6c2b4bef75f4a528bd4d97dc0ff2bfce77b6eec3722ab67b55841c8db7695f6e66f6808af2137d47ced98399296690635a39b3602e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.711
1
+ 3.0.713
@@ -735,7 +735,6 @@ module TencentCloud
735
735
  # 假设作业运行状态,则先停止作业,再启动作业,中间状态丢失
736
736
  # 假设作业暂停状态,则将作业更改为停止状态,中间状态丢失
737
737
 
738
-
739
738
  # @param request: Request instance for ModifyJob.
740
739
  # @type request: :class:`Tencentcloud::oceanus::V20190422::ModifyJobRequest`
741
740
  # @rtype: :class:`Tencentcloud::oceanus::V20190422::ModifyJobResponse`
@@ -2746,10 +2746,16 @@ module TencentCloud
2746
2746
  # @param JobGraph: 算子拓扑图
2747
2747
  # 注意:此字段可能返回 null,表示取不到有效值。
2748
2748
  # @type JobGraph: :class:`Tencentcloud::Oceanus.v20190422.models.JobGraph`
2749
+ # @param EsServerlessIndex: es索引
2750
+ # 注意:此字段可能返回 null,表示取不到有效值。
2751
+ # @type EsServerlessIndex: String
2752
+ # @param EsServerlessSpace: es空间
2753
+ # 注意:此字段可能返回 null,表示取不到有效值。
2754
+ # @type EsServerlessSpace: String
2749
2755
 
2750
- attr_accessor :JobId, :EntrypointClass, :ProgramArgs, :Remark, :CreateTime, :Version, :DefaultParallelism, :Properties, :ResourceRefDetails, :CreatorUin, :UpdateTime, :COSBucket, :LogCollect, :MaxParallelism, :JobManagerSpec, :TaskManagerSpec, :ClsLogsetId, :ClsTopicId, :PythonVersion, :AutoRecover, :LogLevel, :ClazzLevels, :ExpertModeOn, :ExpertModeConfiguration, :TraceModeOn, :TraceModeConfiguration, :CheckpointRetainedNum, :JobGraph
2756
+ attr_accessor :JobId, :EntrypointClass, :ProgramArgs, :Remark, :CreateTime, :Version, :DefaultParallelism, :Properties, :ResourceRefDetails, :CreatorUin, :UpdateTime, :COSBucket, :LogCollect, :MaxParallelism, :JobManagerSpec, :TaskManagerSpec, :ClsLogsetId, :ClsTopicId, :PythonVersion, :AutoRecover, :LogLevel, :ClazzLevels, :ExpertModeOn, :ExpertModeConfiguration, :TraceModeOn, :TraceModeConfiguration, :CheckpointRetainedNum, :JobGraph, :EsServerlessIndex, :EsServerlessSpace
2751
2757
 
2752
- def initialize(jobid=nil, entrypointclass=nil, programargs=nil, remark=nil, createtime=nil, version=nil, defaultparallelism=nil, properties=nil, resourcerefdetails=nil, creatoruin=nil, updatetime=nil, cosbucket=nil, logcollect=nil, maxparallelism=nil, jobmanagerspec=nil, taskmanagerspec=nil, clslogsetid=nil, clstopicid=nil, pythonversion=nil, autorecover=nil, loglevel=nil, clazzlevels=nil, expertmodeon=nil, expertmodeconfiguration=nil, tracemodeon=nil, tracemodeconfiguration=nil, checkpointretainednum=nil, jobgraph=nil)
2758
+ def initialize(jobid=nil, entrypointclass=nil, programargs=nil, remark=nil, createtime=nil, version=nil, defaultparallelism=nil, properties=nil, resourcerefdetails=nil, creatoruin=nil, updatetime=nil, cosbucket=nil, logcollect=nil, maxparallelism=nil, jobmanagerspec=nil, taskmanagerspec=nil, clslogsetid=nil, clstopicid=nil, pythonversion=nil, autorecover=nil, loglevel=nil, clazzlevels=nil, expertmodeon=nil, expertmodeconfiguration=nil, tracemodeon=nil, tracemodeconfiguration=nil, checkpointretainednum=nil, jobgraph=nil, esserverlessindex=nil, esserverlessspace=nil)
2753
2759
  @JobId = jobid
2754
2760
  @EntrypointClass = entrypointclass
2755
2761
  @ProgramArgs = programargs
@@ -2778,6 +2784,8 @@ module TencentCloud
2778
2784
  @TraceModeConfiguration = tracemodeconfiguration
2779
2785
  @CheckpointRetainedNum = checkpointretainednum
2780
2786
  @JobGraph = jobgraph
2787
+ @EsServerlessIndex = esserverlessindex
2788
+ @EsServerlessSpace = esserverlessspace
2781
2789
  end
2782
2790
 
2783
2791
  def deserialize(params)
@@ -2839,6 +2847,8 @@ module TencentCloud
2839
2847
  @JobGraph = JobGraph.new
2840
2848
  @JobGraph.deserialize(params['JobGraph'])
2841
2849
  end
2850
+ @EsServerlessIndex = params['EsServerlessIndex']
2851
+ @EsServerlessSpace = params['EsServerlessSpace']
2842
2852
  end
2843
2853
  end
2844
2854
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-oceanus
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.711
4
+ version: 3.0.713
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-23 00:00:00.000000000 Z
11
+ date: 2023-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common