tencentcloud-sdk-tcss 3.0.1074 → 3.0.1075
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201101/models.rb +34 -10
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a18aaa73ec1f187a144c01b2f1dde4620404031
|
4
|
+
data.tar.gz: 4c64b45ed8718a68715e44a4f7b21aefd53a42ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a77da3fa88493a6efa58ad18d985ad129856b33dbf7c7bcce5d38ec01549bf6a3519781e3b5734b62cb9fe3ba9aa89d3c708af2f43fe85a8010077dc1dab586
|
7
|
+
data.tar.gz: 5ee8bed83ae5aa57325887c512b919c7686a824481fa23ef3e1127fa359af165883dc0c97341338e8ed8e12578adf494fdcb2a91795cd5273b20b62013786263
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1075
|
data/lib/v20201101/models.rb
CHANGED
@@ -970,10 +970,12 @@ module TencentCloud
|
|
970
970
|
# @type WebhookUrl: String
|
971
971
|
# @param WebhookToken: webhook接入token
|
972
972
|
# @type WebhookToken: String
|
973
|
+
# @param InstanceId: tcr实例ID
|
974
|
+
# @type InstanceId: String
|
973
975
|
|
974
|
-
attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectConfig, :NeedScan, :SyncMode, :WebhookUrl, :WebhookToken
|
976
|
+
attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectConfig, :NeedScan, :SyncMode, :WebhookUrl, :WebhookToken, :InstanceId
|
975
977
|
|
976
|
-
def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectconfig=nil, needscan=nil, syncmode=nil, webhookurl=nil, webhooktoken=nil)
|
978
|
+
def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectconfig=nil, needscan=nil, syncmode=nil, webhookurl=nil, webhooktoken=nil, instanceid=nil)
|
977
979
|
@Name = name
|
978
980
|
@Username = username
|
979
981
|
@Password = password
|
@@ -989,6 +991,7 @@ module TencentCloud
|
|
989
991
|
@SyncMode = syncmode
|
990
992
|
@WebhookUrl = webhookurl
|
991
993
|
@WebhookToken = webhooktoken
|
994
|
+
@InstanceId = instanceid
|
992
995
|
end
|
993
996
|
|
994
997
|
def deserialize(params)
|
@@ -1014,6 +1017,7 @@ module TencentCloud
|
|
1014
1017
|
@SyncMode = params['SyncMode']
|
1015
1018
|
@WebhookUrl = params['WebhookUrl']
|
1016
1019
|
@WebhookToken = params['WebhookToken']
|
1020
|
+
@InstanceId = params['InstanceId']
|
1017
1021
|
end
|
1018
1022
|
end
|
1019
1023
|
|
@@ -23621,21 +23625,33 @@ module TencentCloud
|
|
23621
23625
|
|
23622
23626
|
# ModifyAsset请求参数结构体
|
23623
23627
|
class ModifyAssetRequest < TencentCloud::Common::AbstractModel
|
23624
|
-
# @param All:
|
23628
|
+
# @param All: 同步全部普通节点
|
23625
23629
|
# @type All: Boolean
|
23626
|
-
# @param Hosts: 要同步的主机列表uuid
|
23630
|
+
# @param Hosts: 要同步的主机列表uuid
|
23627
23631
|
# @type Hosts: Array
|
23632
|
+
# @param AllSuperHost: 同步全部超级节点
|
23633
|
+
# @type AllSuperHost: Boolean
|
23634
|
+
# @param NodeUniqueIds: 要同步的超级节点唯一id
|
23635
|
+
# @type NodeUniqueIds: Array
|
23636
|
+
# @param TimeoutSec: 超时时间(秒) 最低3600s
|
23637
|
+
# @type TimeoutSec: Integer
|
23628
23638
|
|
23629
|
-
attr_accessor :All, :Hosts
|
23639
|
+
attr_accessor :All, :Hosts, :AllSuperHost, :NodeUniqueIds, :TimeoutSec
|
23630
23640
|
|
23631
|
-
def initialize(all=nil, hosts=nil)
|
23641
|
+
def initialize(all=nil, hosts=nil, allsuperhost=nil, nodeuniqueids=nil, timeoutsec=nil)
|
23632
23642
|
@All = all
|
23633
23643
|
@Hosts = hosts
|
23644
|
+
@AllSuperHost = allsuperhost
|
23645
|
+
@NodeUniqueIds = nodeuniqueids
|
23646
|
+
@TimeoutSec = timeoutsec
|
23634
23647
|
end
|
23635
23648
|
|
23636
23649
|
def deserialize(params)
|
23637
23650
|
@All = params['All']
|
23638
23651
|
@Hosts = params['Hosts']
|
23652
|
+
@AllSuperHost = params['AllSuperHost']
|
23653
|
+
@NodeUniqueIds = params['NodeUniqueIds']
|
23654
|
+
@TimeoutSec = params['TimeoutSec']
|
23639
23655
|
end
|
23640
23656
|
end
|
23641
23657
|
|
@@ -23643,18 +23659,22 @@ module TencentCloud
|
|
23643
23659
|
class ModifyAssetResponse < TencentCloud::Common::AbstractModel
|
23644
23660
|
# @param Status: 同步任务发送结果
|
23645
23661
|
# @type Status: String
|
23662
|
+
# @param TaskId: 任务id
|
23663
|
+
# @type TaskId: Integer
|
23646
23664
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23647
23665
|
# @type RequestId: String
|
23648
23666
|
|
23649
|
-
attr_accessor :Status, :RequestId
|
23667
|
+
attr_accessor :Status, :TaskId, :RequestId
|
23650
23668
|
|
23651
|
-
def initialize(status=nil, requestid=nil)
|
23669
|
+
def initialize(status=nil, taskid=nil, requestid=nil)
|
23652
23670
|
@Status = status
|
23671
|
+
@TaskId = taskid
|
23653
23672
|
@RequestId = requestid
|
23654
23673
|
end
|
23655
23674
|
|
23656
23675
|
def deserialize(params)
|
23657
23676
|
@Status = params['Status']
|
23677
|
+
@TaskId = params['TaskId']
|
23658
23678
|
@RequestId = params['RequestId']
|
23659
23679
|
end
|
23660
23680
|
end
|
@@ -28155,10 +28175,12 @@ module TencentCloud
|
|
28155
28175
|
# @type SyncMode: Integer
|
28156
28176
|
# @param NeedScan: 是否自动授权&扫描,选择增量同步时参数生效,包含所有新增镜像
|
28157
28177
|
# @type NeedScan: Boolean
|
28178
|
+
# @param InstanceId: tcr实例ID
|
28179
|
+
# @type InstanceId: String
|
28158
28180
|
|
28159
|
-
attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectConfig, :RegistryId, :SyncMode, :NeedScan
|
28181
|
+
attr_accessor :Name, :Username, :Password, :Url, :RegistryType, :NetType, :RegistryVersion, :RegistryRegion, :SpeedLimit, :Insecure, :ConnDetectConfig, :RegistryId, :SyncMode, :NeedScan, :InstanceId
|
28160
28182
|
|
28161
|
-
def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectconfig=nil, registryid=nil, syncmode=nil, needscan=nil)
|
28183
|
+
def initialize(name=nil, username=nil, password=nil, url=nil, registrytype=nil, nettype=nil, registryversion=nil, registryregion=nil, speedlimit=nil, insecure=nil, conndetectconfig=nil, registryid=nil, syncmode=nil, needscan=nil, instanceid=nil)
|
28162
28184
|
@Name = name
|
28163
28185
|
@Username = username
|
28164
28186
|
@Password = password
|
@@ -28173,6 +28195,7 @@ module TencentCloud
|
|
28173
28195
|
@RegistryId = registryid
|
28174
28196
|
@SyncMode = syncmode
|
28175
28197
|
@NeedScan = needscan
|
28198
|
+
@InstanceId = instanceid
|
28176
28199
|
end
|
28177
28200
|
|
28178
28201
|
def deserialize(params)
|
@@ -28197,6 +28220,7 @@ module TencentCloud
|
|
28197
28220
|
@RegistryId = params['RegistryId']
|
28198
28221
|
@SyncMode = params['SyncMode']
|
28199
28222
|
@NeedScan = params['NeedScan']
|
28223
|
+
@InstanceId = params['InstanceId']
|
28200
28224
|
end
|
28201
28225
|
end
|
28202
28226
|
|
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.
|
4
|
+
version: 3.0.1075
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|