tencentcloud-sdk-cbs 3.0.473 → 3.0.474

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: e060bf62051f794fdbe59fddb62f278c98e288b1
4
- data.tar.gz: cbde742b5d74917d9cf31d82f4be10c207231b7e
3
+ metadata.gz: 6f4b0d8744a97f6fa4457222d6521b4f91179128
4
+ data.tar.gz: 2407321050a44848a99298d86684834afe9a0e76
5
5
  SHA512:
6
- metadata.gz: e9d52509dbb162e908f01d5af9646f73605018106f54c4d5b9d75bf97173ef19b770a13bc86f046d4f50ac79b6a85aa89877134dbd13fb325413b19cfae045b7
7
- data.tar.gz: cd1cc9259137c1c5bc1088dcf3487c54f47d7300595f8062e9671a10208c8d26b113561763bbe48114d001bb34f3c64dd645b9bea8724c70ebd28e29cc7c9d35
6
+ metadata.gz: 2408a56c1edd573a8d49183d119d245f7a3f8c513e654a2a05f7a2f533a1c84aa8011bd84232a544f4427b11b9d1bf0748b10b8cf94f3ad3c7ccb9ab4e3109b0
7
+ data.tar.gz: f801b277a1a9b7049856df3727772623beeb9b5969576ab359adc7d2674ade6925e3fc3e88640ccbc0eb5c2aea7730dd111e7aff052cebb05cc4a7fce581325e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.473
1
+ 3.0.474
@@ -532,9 +532,7 @@ module TencentCloud
532
532
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
533
533
  end
534
534
 
535
- # 本接口(DescribeSnapshotOperationLogs)用于查询快照操作日志列表。
536
-
537
- # 可根据快照ID过滤。快照ID形如:snap-a1kmcp13。
535
+ # 查询快照操作日志功能已迁移至LookUpEvents接口(https://cloud.tencent.com/document/product/629/12359),本接口(DescribeSnapshotOperationLogs)即将下线,后续不再提供调用,请知悉。
538
536
 
539
537
  # @param request: Request instance for DescribeSnapshotOperationLogs.
540
538
  # @type request: :class:`Tencentcloud::cbs::V20170312::DescribeSnapshotOperationLogsRequest`
@@ -1277,17 +1277,17 @@ module TencentCloud
1277
1277
  # @param Filters: 过滤条件。支持以下条件:
1278
1278
  # <li>snapshot-id - Array of String - 是否必填:是 - 按快照ID过滤,每个请求最多可指定10个快照ID。
1279
1279
  # @type Filters: Array
1280
- # @param BeginTime: 要查询的操作日志的起始时间,例如:“2019-11-22 00:00:00"
1281
- # @type BeginTime: String
1282
1280
  # @param EndTime: 要查询的操作日志的截止时间,例如:“2019-11-22 23:59:59"
1283
1281
  # @type EndTime: String
1282
+ # @param BeginTime: 要查询的操作日志的起始时间,例如:“2019-11-22 00:00:00"
1283
+ # @type BeginTime: String
1284
1284
 
1285
- attr_accessor :Filters, :BeginTime, :EndTime
1285
+ attr_accessor :Filters, :EndTime, :BeginTime
1286
1286
 
1287
- def initialize(filters=nil, begintime=nil, endtime=nil)
1287
+ def initialize(filters=nil, endtime=nil, begintime=nil)
1288
1288
  @Filters = filters
1289
- @BeginTime = begintime
1290
1289
  @EndTime = endtime
1290
+ @BeginTime = begintime
1291
1291
  end
1292
1292
 
1293
1293
  def deserialize(params)
@@ -1299,8 +1299,8 @@ module TencentCloud
1299
1299
  @Filters << filter_tmp
1300
1300
  end
1301
1301
  end
1302
- @BeginTime = params['BeginTime']
1303
1302
  @EndTime = params['EndTime']
1303
+ @BeginTime = params['BeginTime']
1304
1304
  end
1305
1305
  end
1306
1306
 
@@ -2980,11 +2980,20 @@ module TencentCloud
2980
2980
  end
2981
2981
  end
2982
2982
 
2983
- # 快照操作日志。
2983
+ # 快照操作日志,已废弃。
2984
2984
  class SnapshotOperationLog < TencentCloud::Common::AbstractModel
2985
+ # @param OperationState: 操作的状态。取值范围:
2986
+ # SUCCESS :表示操作成功
2987
+ # FAILED :表示操作失败
2988
+ # PROCESSING :表示操作中。
2989
+ # @type OperationState: String
2990
+ # @param StartTime: 开始时间。
2991
+ # @type StartTime: String
2985
2992
  # @param Operator: 操作者的UIN。
2986
2993
  # 注意:此字段可能返回 null,表示取不到有效值。
2987
2994
  # @type Operator: String
2995
+ # @param SnapshotId: 操作的快照ID。
2996
+ # @type SnapshotId: String
2988
2997
  # @param Operation: 操作类型。取值范围:
2989
2998
  # SNAP_OPERATION_DELETE:删除快照
2990
2999
  # SNAP_OPERATION_ROLLBACK:回滚快照
@@ -2994,35 +3003,26 @@ module TencentCloud
2994
3003
  # ASP_OPERATION_CREATE_SNAP:由定期快照策略创建快照
2995
3004
  # ASP_OPERATION_DELETE_SNAP:由定期快照策略删除快照
2996
3005
  # @type Operation: String
2997
- # @param SnapshotId: 操作的快照ID。
2998
- # @type SnapshotId: String
2999
- # @param OperationState: 操作的状态。取值范围:
3000
- # SUCCESS :表示操作成功
3001
- # FAILED :表示操作失败
3002
- # PROCESSING :表示操作中。
3003
- # @type OperationState: String
3004
- # @param StartTime: 开始时间。
3005
- # @type StartTime: String
3006
3006
  # @param EndTime: 结束时间。
3007
3007
  # @type EndTime: String
3008
3008
 
3009
- attr_accessor :Operator, :Operation, :SnapshotId, :OperationState, :StartTime, :EndTime
3009
+ attr_accessor :OperationState, :StartTime, :Operator, :SnapshotId, :Operation, :EndTime
3010
3010
 
3011
- def initialize(operator=nil, operation=nil, snapshotid=nil, operationstate=nil, starttime=nil, endtime=nil)
3012
- @Operator = operator
3013
- @Operation = operation
3014
- @SnapshotId = snapshotid
3011
+ def initialize(operationstate=nil, starttime=nil, operator=nil, snapshotid=nil, operation=nil, endtime=nil)
3015
3012
  @OperationState = operationstate
3016
3013
  @StartTime = starttime
3014
+ @Operator = operator
3015
+ @SnapshotId = snapshotid
3016
+ @Operation = operation
3017
3017
  @EndTime = endtime
3018
3018
  end
3019
3019
 
3020
3020
  def deserialize(params)
3021
- @Operator = params['Operator']
3022
- @Operation = params['Operation']
3023
- @SnapshotId = params['SnapshotId']
3024
3021
  @OperationState = params['OperationState']
3025
3022
  @StartTime = params['StartTime']
3023
+ @Operator = params['Operator']
3024
+ @SnapshotId = params['SnapshotId']
3025
+ @Operation = params['Operation']
3026
3026
  @EndTime = params['EndTime']
3027
3027
  end
3028
3028
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.473
4
+ version: 3.0.474
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-14 00:00:00.000000000 Z
11
+ date: 2022-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common