tencentcloud-sdk-sqlserver 3.0.925 → 3.0.927

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/v20180328/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 151eb00748ce9155e91bf77ed7c555755261d9b6
4
- data.tar.gz: 995563be4964d830a847d5954221b68c776569e3
3
+ metadata.gz: dc35e2b665bebc9885181a5404e81654bd01c9b3
4
+ data.tar.gz: d55508a5994d48df98bef8ab3687bf9b20691a7e
5
5
  SHA512:
6
- metadata.gz: b9c6ba747106630abd499b018f6a6d2a10f298cff5070903b1c36b4c6905925f944e243d4d7e4c82866aebdb027b3521bcc4254ce232c69708e952e6075bd013
7
- data.tar.gz: dfac026e64fb52af2dcfc61f96c2fa8cafa6354a54eb2ae56a87732ed27b52e3c6c92911441a77a294947952b0ef5509f59ad8489d9732ec811c4c1ec0afbf7a
6
+ metadata.gz: b702a29414a6c96d702fb0d3a744cf7cfdc3cadf59a7f283053168fb0d25f0074f66bfaa7f67dd5d26ab6e7da9a58b6d7cf856d55d5fb96ed107777d5ba9a5ef
7
+ data.tar.gz: a3a1bd8a70945a7eb2979d69092446409e389ff194b0ee1d3e370cc2ee8315a1980ca0445800b31d66d630dfe06b8c0b3ef248fab9c30d2dd6ce84878090cc64
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.925
1
+ 3.0.927
@@ -6520,10 +6520,12 @@ module TencentCloud
6520
6520
  # @type OrderBy: String
6521
6521
  # @param OrderByType: 排序规则(desc-降序,asc-升序),默认desc
6522
6522
  # @type OrderByType: String
6523
+ # @param FlowId: 回档异步任务ID
6524
+ # @type FlowId: Integer
6523
6525
 
6524
- attr_accessor :InstanceId, :StartTime, :EndTime, :RestoreType, :TargetRegion, :TargetType, :Status, :Offset, :Limit, :OrderBy, :OrderByType
6526
+ attr_accessor :InstanceId, :StartTime, :EndTime, :RestoreType, :TargetRegion, :TargetType, :Status, :Offset, :Limit, :OrderBy, :OrderByType, :FlowId
6525
6527
 
6526
- def initialize(instanceid=nil, starttime=nil, endtime=nil, restoretype=nil, targetregion=nil, targettype=nil, status=nil, offset=nil, limit=nil, orderby=nil, orderbytype=nil)
6528
+ def initialize(instanceid=nil, starttime=nil, endtime=nil, restoretype=nil, targetregion=nil, targettype=nil, status=nil, offset=nil, limit=nil, orderby=nil, orderbytype=nil, flowid=nil)
6527
6529
  @InstanceId = instanceid
6528
6530
  @StartTime = starttime
6529
6531
  @EndTime = endtime
@@ -6535,6 +6537,7 @@ module TencentCloud
6535
6537
  @Limit = limit
6536
6538
  @OrderBy = orderby
6537
6539
  @OrderByType = orderbytype
6540
+ @FlowId = flowid
6538
6541
  end
6539
6542
 
6540
6543
  def deserialize(params)
@@ -6549,6 +6552,7 @@ module TencentCloud
6549
6552
  @Limit = params['Limit']
6550
6553
  @OrderBy = params['OrderBy']
6551
6554
  @OrderByType = params['OrderByType']
6555
+ @FlowId = params['FlowId']
6552
6556
  end
6553
6557
  end
6554
6558
 
@@ -10620,10 +10624,12 @@ module TencentCloud
10620
10624
  # @type EndTime: String
10621
10625
  # @param Status: 回档状态,0-初始化,1-运行中,2-成功,3-失败
10622
10626
  # @type Status: Integer
10627
+ # @param FlowId: 回档异步任务ID
10628
+ # @type FlowId: Integer
10623
10629
 
10624
- attr_accessor :TargetInstanceId, :TargetInstanceName, :TargetInstanceStatus, :TargetRegion, :RestoreId, :TargetType, :RestoreType, :RestoreTime, :StartTime, :EndTime, :Status
10630
+ attr_accessor :TargetInstanceId, :TargetInstanceName, :TargetInstanceStatus, :TargetRegion, :RestoreId, :TargetType, :RestoreType, :RestoreTime, :StartTime, :EndTime, :Status, :FlowId
10625
10631
 
10626
- def initialize(targetinstanceid=nil, targetinstancename=nil, targetinstancestatus=nil, targetregion=nil, restoreid=nil, targettype=nil, restoretype=nil, restoretime=nil, starttime=nil, endtime=nil, status=nil)
10632
+ def initialize(targetinstanceid=nil, targetinstancename=nil, targetinstancestatus=nil, targetregion=nil, restoreid=nil, targettype=nil, restoretype=nil, restoretime=nil, starttime=nil, endtime=nil, status=nil, flowid=nil)
10627
10633
  @TargetInstanceId = targetinstanceid
10628
10634
  @TargetInstanceName = targetinstancename
10629
10635
  @TargetInstanceStatus = targetinstancestatus
@@ -10635,6 +10641,7 @@ module TencentCloud
10635
10641
  @StartTime = starttime
10636
10642
  @EndTime = endtime
10637
10643
  @Status = status
10644
+ @FlowId = flowid
10638
10645
  end
10639
10646
 
10640
10647
  def deserialize(params)
@@ -10649,6 +10656,7 @@ module TencentCloud
10649
10656
  @StartTime = params['StartTime']
10650
10657
  @EndTime = params['EndTime']
10651
10658
  @Status = params['Status']
10659
+ @FlowId = params['FlowId']
10652
10660
  end
10653
10661
  end
10654
10662
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-sqlserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.925
4
+ version: 3.0.927
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-16 00:00:00.000000000 Z
11
+ date: 2024-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common