tencentcloud-sdk-tcss 3.0.621 → 3.0.623

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/v20201101/models.rb +130 -17
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 367fff4494012f7f1fbd6cfcc51fc7855fd3feda
4
- data.tar.gz: 9d84f7d3ab00b7e3b12c97cbedf8d280572d397e
3
+ metadata.gz: 3a56338b4492c2ce7e3a3ffeb9ed8a30c85ac89d
4
+ data.tar.gz: be93f8fcaf3116e98e5ee5927f5203a4869ea5e9
5
5
  SHA512:
6
- metadata.gz: d7b3d08ede9842f0d36fda1ee006d237c1bde33263ceb4705ba730d85f6d8db581d4063987580077802facfec6f02321a847f85823a61c9000922aeb6aa68eb7
7
- data.tar.gz: b6f7c37719f6c198c810f9b7feb397601fd4f63b1e353f170e54ee0af45d4158fad76c4c9521ac54724e95568687b88271cdd440b4e74850acd82114b898be23
6
+ metadata.gz: d0c6dbd0dcd8279f04f411c0ba3aade09963b2f4867d33864b13d8d16394534e2fc8dfe19c94e103b3255f671d4abe8b1c2a53e3640053a190a52b7d80456e09
7
+ data.tar.gz: fd83886d464533792d7083f51f0721a99f82d1f4d13b9a6248356f774a37c6c5233157c009d75012a3a6428e8c39f4666422fd7991dc6868acb0bb28072ac598
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.621
1
+ 3.0.623
@@ -974,10 +974,12 @@ module TencentCloud
974
974
  # @type SpeedLimit: Integer
975
975
  # @param Insecure: 安全模式(证书校验):0(默认) 非安全模式(跳过证书校验):1
976
976
  # @type Insecure: Integer
977
+ # @param ConnDetectConfig: 联通性检测的记录ID
978
+ # @type ConnDetectConfig: Array
977
979
 
978
- attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure
980
+ attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectConfig
979
981
 
980
- def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil)
982
+ def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectconfig=nil)
981
983
  @Name = name
982
984
  @Username = username
983
985
  @Password = password
@@ -988,6 +990,7 @@ module TencentCloud
988
990
  @RegistryRegion = registryregion
989
991
  @SpeedLimit = speedlimit
990
992
  @Insecure = insecure
993
+ @ConnDetectConfig = conndetectconfig
991
994
  end
992
995
 
993
996
  def deserialize(params)
@@ -1001,6 +1004,14 @@ module TencentCloud
1001
1004
  @RegistryRegion = params['RegistryRegion']
1002
1005
  @SpeedLimit = params['SpeedLimit']
1003
1006
  @Insecure = params['Insecure']
1007
+ unless params['ConnDetectConfig'].nil?
1008
+ @ConnDetectConfig = []
1009
+ params['ConnDetectConfig'].each do |i|
1010
+ conndetectconfig_tmp = ConnDetectConfig.new
1011
+ conndetectconfig_tmp.deserialize(i)
1012
+ @ConnDetectConfig << conndetectconfig_tmp
1013
+ end
1014
+ end
1004
1015
  end
1005
1016
  end
1006
1017
 
@@ -3452,6 +3463,26 @@ module TencentCloud
3452
3463
  end
3453
3464
  end
3454
3465
 
3466
+ # 联通性检测配置
3467
+ class ConnDetectConfig < TencentCloud::Common::AbstractModel
3468
+ # @param Quuid: 主机quuid
3469
+ # @type Quuid: String
3470
+ # @param Uuid: 主机uuid
3471
+ # @type Uuid: String
3472
+
3473
+ attr_accessor :Quuid, :Uuid
3474
+
3475
+ def initialize(quuid=nil, uuid=nil)
3476
+ @Quuid = quuid
3477
+ @Uuid = uuid
3478
+ end
3479
+
3480
+ def deserialize(params)
3481
+ @Quuid = params['Quuid']
3482
+ @Uuid = params['Uuid']
3483
+ end
3484
+ end
3485
+
3455
3486
  # 容器列表集合
3456
3487
  class ContainerInfo < TencentCloud::Common::AbstractModel
3457
3488
  # @param ContainerID: 容器id
@@ -3819,16 +3850,20 @@ module TencentCloud
3819
3850
 
3820
3851
  # CreateAssetImageRegistryScanTaskOneKey返回参数结构体
3821
3852
  class CreateAssetImageRegistryScanTaskOneKeyResponse < TencentCloud::Common::AbstractModel
3853
+ # @param TaskID: 扫描任务id
3854
+ # @type TaskID: Integer
3822
3855
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3823
3856
  # @type RequestId: String
3824
3857
 
3825
- attr_accessor :RequestId
3858
+ attr_accessor :TaskID, :RequestId
3826
3859
 
3827
- def initialize(requestid=nil)
3860
+ def initialize(taskid=nil, requestid=nil)
3861
+ @TaskID = taskid
3828
3862
  @RequestId = requestid
3829
3863
  end
3830
3864
 
3831
3865
  def deserialize(params)
3866
+ @TaskID = params['TaskID']
3832
3867
  @RequestId = params['RequestId']
3833
3868
  end
3834
3869
  end
@@ -3889,16 +3924,20 @@ module TencentCloud
3889
3924
 
3890
3925
  # CreateAssetImageRegistryScanTask返回参数结构体
3891
3926
  class CreateAssetImageRegistryScanTaskResponse < TencentCloud::Common::AbstractModel
3927
+ # @param TaskID: 返回的任务ID
3928
+ # @type TaskID: Integer
3892
3929
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3893
3930
  # @type RequestId: String
3894
3931
 
3895
- attr_accessor :RequestId
3932
+ attr_accessor :TaskID, :RequestId
3896
3933
 
3897
- def initialize(requestid=nil)
3934
+ def initialize(taskid=nil, requestid=nil)
3935
+ @TaskID = taskid
3898
3936
  @RequestId = requestid
3899
3937
  end
3900
3938
 
3901
3939
  def deserialize(params)
3940
+ @TaskID = params['TaskID']
3902
3941
  @RequestId = params['RequestId']
3903
3942
  end
3904
3943
  end
@@ -9349,7 +9388,7 @@ module TencentCloud
9349
9388
  # @param RegistryVersion: 仓库版本
9350
9389
  # 注意:此字段可能返回 null,表示取不到有效值。
9351
9390
  # @type RegistryVersion: String
9352
- # @param NetType: 网络类型,列表:public(公网)
9391
+ # @param NetType: 网络类型,列表:public(公网),private(私网)
9353
9392
  # @type NetType: String
9354
9393
  # @param RegistryRegion: 区域,列表:default(默认)
9355
9394
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -9360,12 +9399,16 @@ module TencentCloud
9360
9399
  # @param Insecure: 安全模式(证书校验):0(默认) 非安全模式(跳过证书校验):1
9361
9400
  # 注意:此字段可能返回 null,表示取不到有效值。
9362
9401
  # @type Insecure: Integer
9402
+ # @param ConnDetectDetail: 联通性检测结果详情
9403
+ # @type ConnDetectDetail: Array
9404
+ # @param InstanceID: tcr情况下instance_id
9405
+ # @type InstanceID: String
9363
9406
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9364
9407
  # @type RequestId: String
9365
9408
 
9366
- attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :RegistryVersion, :NetType, :RegistryRegion, :SpeedLimit, :Insecure, :RequestId
9409
+ attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :RegistryVersion, :NetType, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectDetail, :InstanceID, :RequestId
9367
9410
 
9368
- def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, registryversion=nil, nettype=nil, registryregion=nil, speedlimit=nil, insecure=nil, requestid=nil)
9411
+ def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, registryversion=nil, nettype=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectdetail=nil, instanceid=nil, requestid=nil)
9369
9412
  @Name = name
9370
9413
  @Username = username
9371
9414
  @Password = password
@@ -9376,6 +9419,8 @@ module TencentCloud
9376
9419
  @RegistryRegion = registryregion
9377
9420
  @SpeedLimit = speedlimit
9378
9421
  @Insecure = insecure
9422
+ @ConnDetectDetail = conndetectdetail
9423
+ @InstanceID = instanceid
9379
9424
  @RequestId = requestid
9380
9425
  end
9381
9426
 
@@ -9390,6 +9435,15 @@ module TencentCloud
9390
9435
  @RegistryRegion = params['RegistryRegion']
9391
9436
  @SpeedLimit = params['SpeedLimit']
9392
9437
  @Insecure = params['Insecure']
9438
+ unless params['ConnDetectDetail'].nil?
9439
+ @ConnDetectDetail = []
9440
+ params['ConnDetectDetail'].each do |i|
9441
+ registryconndetectresult_tmp = RegistryConnDetectResult.new
9442
+ registryconndetectresult_tmp.deserialize(i)
9443
+ @ConnDetectDetail << registryconndetectresult_tmp
9444
+ end
9445
+ end
9446
+ @InstanceID = params['InstanceID']
9393
9447
  @RequestId = params['RequestId']
9394
9448
  end
9395
9449
  end
@@ -9583,13 +9637,16 @@ module TencentCloud
9583
9637
  # @type All: Boolean
9584
9638
  # @param Id: 需要获取进度的镜像列表Id
9585
9639
  # @type Id: Array
9640
+ # @param TaskID: 获取进度的任务ID
9641
+ # @type TaskID: Integer
9586
9642
 
9587
- attr_accessor :Images, :All, :Id
9643
+ attr_accessor :Images, :All, :Id, :TaskID
9588
9644
 
9589
- def initialize(images=nil, all=nil, id=nil)
9645
+ def initialize(images=nil, all=nil, id=nil, taskid=nil)
9590
9646
  @Images = images
9591
9647
  @All = all
9592
9648
  @Id = id
9649
+ @TaskID = taskid
9593
9650
  end
9594
9651
 
9595
9652
  def deserialize(params)
@@ -9603,6 +9660,7 @@ module TencentCloud
9603
9660
  end
9604
9661
  @All = params['All']
9605
9662
  @Id = params['Id']
9663
+ @TaskID = params['TaskID']
9606
9664
  end
9607
9665
  end
9608
9666
 
@@ -21898,13 +21956,16 @@ module TencentCloud
21898
21956
  # @type Images: Array
21899
21957
  # @param Id: 扫描的镜像列表Id
21900
21958
  # @type Id: Array
21959
+ # @param TaskID: 停止的任务ID
21960
+ # @type TaskID: Integer
21901
21961
 
21902
- attr_accessor :All, :Images, :Id
21962
+ attr_accessor :All, :Images, :Id, :TaskID
21903
21963
 
21904
- def initialize(all=nil, images=nil, id=nil)
21964
+ def initialize(all=nil, images=nil, id=nil, taskid=nil)
21905
21965
  @All = all
21906
21966
  @Images = images
21907
21967
  @Id = id
21968
+ @TaskID = taskid
21908
21969
  end
21909
21970
 
21910
21971
  def deserialize(params)
@@ -21918,6 +21979,7 @@ module TencentCloud
21918
21979
  end
21919
21980
  end
21920
21981
  @Id = params['Id']
21982
+ @TaskID = params['TaskID']
21921
21983
  end
21922
21984
  end
21923
21985
 
@@ -21951,16 +22013,19 @@ module TencentCloud
21951
22013
  # @type ExcludeImageList: Array
21952
22014
  # @param OnlyScanLatest: 是否仅扫描各repository最新版本的镜像
21953
22015
  # @type OnlyScanLatest: Boolean
22016
+ # @param TaskID: 停止的任务ID
22017
+ # @type TaskID: Integer
21954
22018
 
21955
- attr_accessor :All, :Images, :Id, :Filters, :ExcludeImageList, :OnlyScanLatest
22019
+ attr_accessor :All, :Images, :Id, :Filters, :ExcludeImageList, :OnlyScanLatest, :TaskID
21956
22020
 
21957
- def initialize(all=nil, images=nil, id=nil, filters=nil, excludeimagelist=nil, onlyscanlatest=nil)
22021
+ def initialize(all=nil, images=nil, id=nil, filters=nil, excludeimagelist=nil, onlyscanlatest=nil, taskid=nil)
21958
22022
  @All = all
21959
22023
  @Images = images
21960
22024
  @Id = id
21961
22025
  @Filters = filters
21962
22026
  @ExcludeImageList = excludeimagelist
21963
22027
  @OnlyScanLatest = onlyscanlatest
22028
+ @TaskID = taskid
21964
22029
  end
21965
22030
 
21966
22031
  def deserialize(params)
@@ -21984,6 +22049,7 @@ module TencentCloud
21984
22049
  end
21985
22050
  @ExcludeImageList = params['ExcludeImageList']
21986
22051
  @OnlyScanLatest = params['OnlyScanLatest']
22052
+ @TaskID = params['TaskID']
21987
22053
  end
21988
22054
  end
21989
22055
 
@@ -24087,6 +24153,42 @@ module TencentCloud
24087
24153
  end
24088
24154
  end
24089
24155
 
24156
+ # 镜像仓库联通性检测结果
24157
+ class RegistryConnDetectResult < TencentCloud::Common::AbstractModel
24158
+ # @param Quuid: 联通性检测的主机quuid 或者 backend
24159
+ # @type Quuid: String
24160
+ # @param Uuid: 联通性检测的主机uuid 或者 backend
24161
+ # @type Uuid: String
24162
+ # @param ConnDetectStatus: 检测结果状态
24163
+ # @type ConnDetectStatus: String
24164
+ # @param ConnDetectMessage: 检测结果信息
24165
+ # @type ConnDetectMessage: String
24166
+ # @param Solution: 失败的解决方案
24167
+ # @type Solution: String
24168
+ # @param FailReason: 失败原因
24169
+ # @type FailReason: String
24170
+
24171
+ attr_accessor :Quuid, :Uuid, :ConnDetectStatus, :ConnDetectMessage, :Solution, :FailReason
24172
+
24173
+ def initialize(quuid=nil, uuid=nil, conndetectstatus=nil, conndetectmessage=nil, solution=nil, failreason=nil)
24174
+ @Quuid = quuid
24175
+ @Uuid = uuid
24176
+ @ConnDetectStatus = conndetectstatus
24177
+ @ConnDetectMessage = conndetectmessage
24178
+ @Solution = solution
24179
+ @FailReason = failreason
24180
+ end
24181
+
24182
+ def deserialize(params)
24183
+ @Quuid = params['Quuid']
24184
+ @Uuid = params['Uuid']
24185
+ @ConnDetectStatus = params['ConnDetectStatus']
24186
+ @ConnDetectMessage = params['ConnDetectMessage']
24187
+ @Solution = params['Solution']
24188
+ @FailReason = params['FailReason']
24189
+ end
24190
+ end
24191
+
24090
24192
  # RemoveAssetImageRegistryRegistryDetail请求参数结构体
24091
24193
  class RemoveAssetImageRegistryRegistryDetailRequest < TencentCloud::Common::AbstractModel
24092
24194
  # @param RegistryId: 仓库唯一id
@@ -25974,10 +26076,12 @@ module TencentCloud
25974
26076
  # @type SpeedLimit: Integer
25975
26077
  # @param Insecure: 安全模式(证书校验):0(默认) 非安全模式(跳过证书校验):1
25976
26078
  # @type Insecure: Integer
26079
+ # @param ConnDetectConfig: 联通性检测的配置
26080
+ # @type ConnDetectConfig: Array
25977
26081
 
25978
- attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure
26082
+ attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectConfig
25979
26083
 
25980
- def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil)
26084
+ def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectconfig=nil)
25981
26085
  @Name = name
25982
26086
  @Username = username
25983
26087
  @Password = password
@@ -25988,6 +26092,7 @@ module TencentCloud
25988
26092
  @RegistryRegion = registryregion
25989
26093
  @SpeedLimit = speedlimit
25990
26094
  @Insecure = insecure
26095
+ @ConnDetectConfig = conndetectconfig
25991
26096
  end
25992
26097
 
25993
26098
  def deserialize(params)
@@ -26001,6 +26106,14 @@ module TencentCloud
26001
26106
  @RegistryRegion = params['RegistryRegion']
26002
26107
  @SpeedLimit = params['SpeedLimit']
26003
26108
  @Insecure = params['Insecure']
26109
+ unless params['ConnDetectConfig'].nil?
26110
+ @ConnDetectConfig = []
26111
+ params['ConnDetectConfig'].each do |i|
26112
+ conndetectconfig_tmp = ConnDetectConfig.new
26113
+ conndetectconfig_tmp.deserialize(i)
26114
+ @ConnDetectConfig << conndetectconfig_tmp
26115
+ end
26116
+ end
26004
26117
  end
26005
26118
  end
26006
26119
 
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.621
4
+ version: 3.0.623
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-07-26 00:00:00.000000000 Z
11
+ date: 2023-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common