tencentcloud-sdk-tcss 3.0.930 → 3.0.931

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201101/models.rb +137 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 599f7c4a64c2d550dae26848fa7c05bf508427d1
4
- data.tar.gz: 845ada197aff2dd4e8c444ca8d632904d71a46b1
3
+ metadata.gz: c4e1c1512a4651e9cca57fe9aa85d9ecb505f877
4
+ data.tar.gz: 1bc17c55bcbfb1df02374f3e50c39ef6ccee73f1
5
5
  SHA512:
6
- metadata.gz: 8e7f9a0d3f8e4b71b4079ad9891ef51f0d538b93eacab0bafa9ccdea520dacdecb9f2e2a6c6f0d4b8115f408886a0a24e6f3f25c5853d292db4794370e453a8f
7
- data.tar.gz: b9d3bcfc2b180137f0da7525aa773f2340062174fd07fb4b213b8420264ad029ae9bf48127c960890b0200aae51003da8f9e141e020c0fccc33767cffcc0be1c
6
+ metadata.gz: a7d717f83cc287b26ecd17b5e34644a1a35f5d3cafd647e1083dcd2340f680b9d2745ce0a52de21dc4282feb6321b0ca393e4b14b23a5a07a5b9a346732bacf7
7
+ data.tar.gz: ba338670c31e908f29c104a5a6ccba07eacd37fe3f45e1617972682d51d8fe6e2d5d1ce325b72e96f4dd6ac5aaad63d962a0b3fa5fc22aee0c2bd953af02ea2d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.930
1
+ 3.0.931
@@ -9873,27 +9873,73 @@ module TencentCloud
9873
9873
 
9874
9874
  # DescribeAssetImageRegistryRegistryList请求参数结构体
9875
9875
  class DescribeAssetImageRegistryRegistryListRequest < TencentCloud::Common::AbstractModel
9876
+ # @param Limit: 需要返回的数量,默认为10,最大值为100
9877
+ # @type Limit: Integer
9878
+ # @param Offset: 偏移量,默认为0
9879
+ # @type Offset: Integer
9880
+ # @param Filters: 过滤字段
9881
+ # IsAuthorized是否授权,取值全部all,未授权0,已授权1
9882
+ # @type Filters: Array
9883
+ # @param By: 排序字段
9884
+ # @type By: String
9885
+ # @param Order: 排序方式,asc,desc
9886
+ # @type Order: String
9876
9887
 
9888
+ attr_accessor :Limit, :Offset, :Filters, :By, :Order
9877
9889
 
9878
- def initialize()
9890
+ def initialize(limit=nil, offset=nil, filters=nil, by=nil, order=nil)
9891
+ @Limit = limit
9892
+ @Offset = offset
9893
+ @Filters = filters
9894
+ @By = by
9895
+ @Order = order
9879
9896
  end
9880
9897
 
9881
9898
  def deserialize(params)
9899
+ @Limit = params['Limit']
9900
+ @Offset = params['Offset']
9901
+ unless params['Filters'].nil?
9902
+ @Filters = []
9903
+ params['Filters'].each do |i|
9904
+ assetfilters_tmp = AssetFilters.new
9905
+ assetfilters_tmp.deserialize(i)
9906
+ @Filters << assetfilters_tmp
9907
+ end
9908
+ end
9909
+ @By = params['By']
9910
+ @Order = params['Order']
9882
9911
  end
9883
9912
  end
9884
9913
 
9885
9914
  # DescribeAssetImageRegistryRegistryList返回参数结构体
9886
9915
  class DescribeAssetImageRegistryRegistryListResponse < TencentCloud::Common::AbstractModel
9916
+ # @param List: 镜像仓库列表
9917
+ # 注意:此字段可能返回 null,表示取不到有效值。
9918
+ # @type List: Array
9919
+ # @param TotalCount: 总数量
9920
+ # 注意:此字段可能返回 null,表示取不到有效值。
9921
+ # @type TotalCount: Integer
9887
9922
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9888
9923
  # @type RequestId: String
9889
9924
 
9890
- attr_accessor :RequestId
9925
+ attr_accessor :List, :TotalCount, :RequestId
9891
9926
 
9892
- def initialize(requestid=nil)
9927
+ def initialize(list=nil, totalcount=nil, requestid=nil)
9928
+ @List = list
9929
+ @TotalCount = totalcount
9893
9930
  @RequestId = requestid
9894
9931
  end
9895
9932
 
9896
9933
  def deserialize(params)
9934
+ unless params['List'].nil?
9935
+ @List = []
9936
+ params['List'].each do |i|
9937
+ imagereporegistryinfo_tmp = ImageRepoRegistryInfo.new
9938
+ imagereporegistryinfo_tmp.deserialize(i)
9939
+ @List << imagereporegistryinfo_tmp
9940
+ end
9941
+ end
9942
+ @TotalCount = params['TotalCount']
9897
9943
  @RequestId = params['RequestId']
9898
9944
  end
9899
9945
  end
@@ -22387,6 +22433,94 @@ module TencentCloud
22387
22433
  end
22388
22434
  end
22389
22435
 
22436
+ # 容器安全镜像仓库列表
22437
+ class ImageRepoRegistryInfo < TencentCloud::Common::AbstractModel
22438
+ # @param RegistryId: 仓库id
22439
+ # @type RegistryId: Integer
22440
+ # @param Name: 仓库名
22441
+ # @type Name: String
22442
+ # @param RegistryType: 仓库类型,列表:harbor、tcr
22443
+ # @type RegistryType: String
22444
+ # @param Url: 仓库url
22445
+ # @type Url: String
22446
+ # @param NetType: 网络类型,列表:public
22447
+ # @type NetType: String
22448
+ # @param RegistryRegion: 区域,列表:default
22449
+ # @type RegistryRegion: String
22450
+ # @param RegistryVersion: 仓库版本
22451
+ # @type RegistryVersion: String
22452
+ # @param ConnectMsg: 仓库连接错误信息,待废弃,请使用ConnDetectException
22453
+ # 注意:此字段可能返回 null,表示取不到有效值。
22454
+ # @type ConnectMsg: String
22455
+ # @param ConnDetectType: 联通性检测方式
22456
+ # @type ConnDetectType: String
22457
+ # @param ConnDetectHostCount: 联通性检测主机数
22458
+ # @type ConnDetectHostCount: Integer
22459
+ # @param ConnDetectDetail: 联通性检测详情
22460
+ # @type ConnDetectDetail: Array
22461
+ # @param InstanceID: tcr情况下的instance_id
22462
+ # @type InstanceID: String
22463
+ # @param LatestSyncTime: 最近同步成功时间
22464
+ # @type LatestSyncTime: String
22465
+ # @param SyncStatus: 同步状态
22466
+ # @type SyncStatus: String
22467
+ # @param SyncFailReason: 同步失败原因
22468
+ # @type SyncFailReason: String
22469
+ # @param SyncSolution: 同步失败解决方案
22470
+ # @type SyncSolution: String
22471
+ # @param SyncMessage: 同步失败信息
22472
+ # @type SyncMessage: String
22473
+
22474
+ attr_accessor :RegistryId, :Name, :RegistryType, :Url, :NetType, :RegistryRegion, :RegistryVersion, :ConnectMsg, :ConnDetectType, :ConnDetectHostCount, :ConnDetectDetail, :InstanceID, :LatestSyncTime, :SyncStatus, :SyncFailReason, :SyncSolution, :SyncMessage
22475
+
22476
+ def initialize(registryid=nil, name=nil, registrytype=nil, url=nil, nettype=nil, registryregion=nil, registryversion=nil, connectmsg=nil, conndetecttype=nil, conndetecthostcount=nil, conndetectdetail=nil, instanceid=nil, latestsynctime=nil, syncstatus=nil, syncfailreason=nil, syncsolution=nil, syncmessage=nil)
22477
+ @RegistryId = registryid
22478
+ @Name = name
22479
+ @RegistryType = registrytype
22480
+ @Url = url
22481
+ @NetType = nettype
22482
+ @RegistryRegion = registryregion
22483
+ @RegistryVersion = registryversion
22484
+ @ConnectMsg = connectmsg
22485
+ @ConnDetectType = conndetecttype
22486
+ @ConnDetectHostCount = conndetecthostcount
22487
+ @ConnDetectDetail = conndetectdetail
22488
+ @InstanceID = instanceid
22489
+ @LatestSyncTime = latestsynctime
22490
+ @SyncStatus = syncstatus
22491
+ @SyncFailReason = syncfailreason
22492
+ @SyncSolution = syncsolution
22493
+ @SyncMessage = syncmessage
22494
+ end
22495
+
22496
+ def deserialize(params)
22497
+ @RegistryId = params['RegistryId']
22498
+ @Name = params['Name']
22499
+ @RegistryType = params['RegistryType']
22500
+ @Url = params['Url']
22501
+ @NetType = params['NetType']
22502
+ @RegistryRegion = params['RegistryRegion']
22503
+ @RegistryVersion = params['RegistryVersion']
22504
+ @ConnectMsg = params['ConnectMsg']
22505
+ @ConnDetectType = params['ConnDetectType']
22506
+ @ConnDetectHostCount = params['ConnDetectHostCount']
22507
+ unless params['ConnDetectDetail'].nil?
22508
+ @ConnDetectDetail = []
22509
+ params['ConnDetectDetail'].each do |i|
22510
+ registryconndetectresult_tmp = RegistryConnDetectResult.new
22511
+ registryconndetectresult_tmp.deserialize(i)
22512
+ @ConnDetectDetail << registryconndetectresult_tmp
22513
+ end
22514
+ end
22515
+ @InstanceID = params['InstanceID']
22516
+ @LatestSyncTime = params['LatestSyncTime']
22517
+ @SyncStatus = params['SyncStatus']
22518
+ @SyncFailReason = params['SyncFailReason']
22519
+ @SyncSolution = params['SyncSolution']
22520
+ @SyncMessage = params['SyncMessage']
22521
+ end
22522
+ end
22523
+
22390
22524
  # 容器安全镜像高危行为信息
22391
22525
  class ImageRisk < TencentCloud::Common::AbstractModel
22392
22526
  # @param Behavior: 高危行为
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.930
4
+ version: 3.0.931
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-22 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common