tencentcloud-sdk-dts 3.0.491 → 3.0.492

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: 019184b37b9610df345c7c05f1a24b395c94a0e1
4
- data.tar.gz: 75f7cec15eeee5f018e6084e3f75e45fb16fe3b2
3
+ metadata.gz: dbc19c741f894411a89ef5c3b7d3154327e278e9
4
+ data.tar.gz: d0aac162f6c58ff90a639e5cf919d6f6d1b92301
5
5
  SHA512:
6
- metadata.gz: 27af2a2ef1e3247a47a1662008ed00657237bc0929cf75815c4b9ea5c54e1c91ecf92532c1b314d447374c732ac9947a0d3bbb58a3288f99b204d4bd52c9d56f
7
- data.tar.gz: 744dfc6106bc5571bfe12b95187be05c74cf36f66e3f004c56973a2fcbf980095fe2e184aa4cd603df243df24807a422826766078bd830d1b83917bd174a48be
6
+ metadata.gz: 3f5090c355f8edc483b8a43ff7c842643595d0bbd4e09ff58e944049b639e95dc3e7282be760d1e67c3738e9702edbe33a1889050df3920607ed3275c85c9d7d
7
+ data.tar.gz: 546c27a3025bd95b4a993860235d2756b52ab4a8d7ad7b29baf2bfd993fc47c59410dd61fd74e8d9a6c23316622028e8b6e85854e55d029dc0aeecdfa6321cd3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.491
1
+ 3.0.492
@@ -103,7 +103,7 @@ module TencentCloud
103
103
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
104
104
  end
105
105
 
106
- # 恢复处于暂停中的数据同步任务。
106
+ # 恢复处于已暂停状态的数据同步任务。
107
107
 
108
108
  # @param request: Request instance for ContinueSyncJob.
109
109
  # @type request: :class:`Tencentcloud::dts::V20211206::ContinueSyncJobRequest`
@@ -3699,32 +3699,41 @@ module TencentCloud
3699
3699
  # @type JobId: String
3700
3700
  # @param StepIds: 需要跳过校验项的步骤id,需要通过DescribeMigrationCheckJob接口返回StepInfo[i].StepId字段获取,例如:["OptimizeCheck"]
3701
3701
  # @type StepIds: Array
3702
+ # @param ForeignKeyFlag: 当出现外键依赖检查导致校验不通过时、可以通过该字段选择是否迁移外键依赖,当StepIds包含ConstraintCheck且该字段值为shield时表示不迁移外键依赖、当StepIds包含ConstraintCheck且值为migrate时表示迁移外键依赖
3703
+ # @type ForeignKeyFlag: String
3702
3704
 
3703
- attr_accessor :JobId, :StepIds
3705
+ attr_accessor :JobId, :StepIds, :ForeignKeyFlag
3704
3706
 
3705
- def initialize(jobid=nil, stepids=nil)
3707
+ def initialize(jobid=nil, stepids=nil, foreignkeyflag=nil)
3706
3708
  @JobId = jobid
3707
3709
  @StepIds = stepids
3710
+ @ForeignKeyFlag = foreignkeyflag
3708
3711
  end
3709
3712
 
3710
3713
  def deserialize(params)
3711
3714
  @JobId = params['JobId']
3712
3715
  @StepIds = params['StepIds']
3716
+ @ForeignKeyFlag = params['ForeignKeyFlag']
3713
3717
  end
3714
3718
  end
3715
3719
 
3716
3720
  # SkipCheckItem返回参数结构体
3717
3721
  class SkipCheckItemResponse < TencentCloud::Common::AbstractModel
3722
+ # @param Message: 跳过的提示信息
3723
+ # 注意:此字段可能返回 null,表示取不到有效值。
3724
+ # @type Message: String
3718
3725
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3719
3726
  # @type RequestId: String
3720
3727
 
3721
- attr_accessor :RequestId
3728
+ attr_accessor :Message, :RequestId
3722
3729
 
3723
- def initialize(requestid=nil)
3730
+ def initialize(message=nil, requestid=nil)
3731
+ @Message = message
3724
3732
  @RequestId = requestid
3725
3733
  end
3726
3734
 
3727
3735
  def deserialize(params)
3736
+ @Message = params['Message']
3728
3737
  @RequestId = params['RequestId']
3729
3738
  end
3730
3739
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dts
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.491
4
+ version: 3.0.492
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-01-11 00:00:00.000000000 Z
11
+ date: 2023-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common